diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f76b82111..58d696013 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -25,9 +25,6 @@ on:
- '**/packages.lock.json'
env:
- DOTNET_INSTALL_DIR: '.\.dotnet'
- DOTNET_VERSION: '9.0.3xx'
- DOTNET_QUALITY: 'ga'
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
jobs:
@@ -49,6 +46,14 @@ jobs:
with:
submodules: recursive
+ - name: 'Preparing Environment Variables'
+ if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }}
+ run: |
+ $env = Get-Content env.json | ConvertFrom-Json
+ foreach ($prop in $env.PSObject.Properties) {
+ echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV
+ }
+
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
@@ -62,7 +67,7 @@ jobs:
- name: Build
run: |
- dotnet publish CollapseLauncher -c ${{matrix.Configuration}} -p:PublishProfile=Publish-DebugCIRelease -p:PublishDir=".\debug-build\"
+ dotnet publish CollapseLauncher -c ${{matrix.Configuration}} -p:PublishProfile=Publish-DebugCIRelease -p:PublishDir=".\debug-build\" -p:PublishAot=false
- name: Upload Artifact
uses: actions/upload-artifact@v4
@@ -70,6 +75,14 @@ jobs:
name: collapse_${{ matrix.platform }}-${{ matrix.configuration }}_${{ matrix.framework }}_${{ github.sha }}
path: ./CollapseLauncher/debug-build/
compression-level: 9
+
+ - name: Validate build for Preview
+ run: |
+ dotnet build CollapseLauncher -c Release --verbosity quiet --no-restore
+
+ - name: Validate build for Stable
+ run: |
+ dotnet build CollapseLauncher -c Publish --verbosity quiet --no-restore
build-nativeaot:
runs-on: windows-latest
@@ -89,6 +102,14 @@ jobs:
with:
submodules: recursive
+ - name: 'Preparing Environment Variables'
+ if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }}
+ run: |
+ $env = Get-Content env.json | ConvertFrom-Json
+ foreach ($prop in $env.PSObject.Properties) {
+ echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV
+ }
+
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
diff --git a/.github/workflows/dd-sca.yml b/.github/workflows/dd-sca.yml
new file mode 100644
index 000000000..947bb9c7d
--- /dev/null
+++ b/.github/workflows/dd-sca.yml
@@ -0,0 +1,21 @@
+on: [push]
+
+name: Datadog Software Composition Analysis
+
+jobs:
+ software-composition-analysis:
+ runs-on: ubuntu-latest
+ name: Datadog SBOM Generation and Upload
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ with:
+ submodules: recursive
+
+ - name: Check imported libraries are secure and compliant
+ id: datadog-software-composition-analysis
+ uses: DataDog/datadog-sca-github-action@main
+ with:
+ dd_api_key: ${{ secrets.DD_API_KEY }}
+ dd_app_key: ${{ secrets.DD_APP_KEY }}
+ dd_site: ap1.datadoghq.com
\ No newline at end of file
diff --git a/.github/workflows/dd-static-analysis.yml b/.github/workflows/dd-static-analysis.yml
new file mode 100644
index 000000000..91458315e
--- /dev/null
+++ b/.github/workflows/dd-static-analysis.yml
@@ -0,0 +1,24 @@
+on: [push]
+
+name: Datadog Static Code Analysis
+
+jobs:
+ static-analysis:
+ runs-on: ubuntu-latest
+ name: Datadog Static Analyzer
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ with:
+ submodules: recursive
+
+ - name: Check code meets quality and security standards
+ id: datadog-static-analysis
+ uses: DataDog/datadog-static-analyzer-github-action@v1
+ with:
+ dd_api_key: ${{ secrets.DD_API_KEY }}
+ dd_app_key: ${{ secrets.DD_APP_KEY }}
+ dd_site: ap1.datadoghq.com
+ secrets_enabled: false
+ static_analysis_enabled: true
+ cpu_count: 2
\ No newline at end of file
diff --git a/.github/workflows/qodana-scan-pr.yml b/.github/workflows/qodana-scan-pr.yml
index 38582be92..11b7f3aef 100644
--- a/.github/workflows/qodana-scan-pr.yml
+++ b/.github/workflows/qodana-scan-pr.yml
@@ -28,9 +28,6 @@ jobs:
env:
Configuration: ${{ matrix.configuration }}
Platform: ${{ matrix.platform }}
- DOTNET_INSTALL_DIR: '.\.dotnet'
- DOTNET_VERSION: '9.0.3xx'
- DOTNET_QUALITY: 'ga'
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
steps:
@@ -42,6 +39,15 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0 # a full history is required for pull request analysis
submodules: recursive # many many submodules
+
+ - name: 'Preparing Environment Variables'
+ if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }}
+ run: |
+ $env = Get-Content env.json | ConvertFrom-Json
+ foreach ($prop in $env.PSObject.Properties) {
+ echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV
+ }
+
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
diff --git a/.github/workflows/qodana-scan.yml b/.github/workflows/qodana-scan.yml
index 1f32b3f62..e29dfcd8f 100644
--- a/.github/workflows/qodana-scan.yml
+++ b/.github/workflows/qodana-scan.yml
@@ -19,10 +19,8 @@ jobs:
env:
Configuration: ${{ matrix.configuration }}
Platform: ${{ matrix.platform }}
- DOTNET_INSTALL_DIR: '.\.dotnet'
- DOTNET_VERSION: '9.0.3xx'
- DOTNET_QUALITY: 'ga'
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
+
permissions:
actions: read
contents: write
@@ -34,18 +32,15 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
submodules: recursive # many many submodules
- # - name: Install winget
- # uses: Cyberboss/install-winget@v1
- # - name: Install Qodana CLI
- # uses: crazy-max/ghaction-chocolatey@v3
- # with:
- # args: install qodana --pre --confirm
-
- # - name: Verify Qodana
- # run: |
- # Import-Module "$env:ChocolateyInstall/helpers/chocolateyInstaller.psm1"
- # refreshenv
- # qodana --version
+
+ - name: 'Preparing Environment Variables'
+ if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }}
+ run: |
+ $env = Get-Content env.json | ConvertFrom-Json
+ foreach ($prop in $env.PSObject.Properties) {
+ echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV
+ }
+
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
diff --git a/.github/workflows/release-signed.yml b/.github/workflows/release-signed.yml
index fcba1ad83..a28ebf05a 100644
--- a/.github/workflows/release-signed.yml
+++ b/.github/workflows/release-signed.yml
@@ -8,14 +8,11 @@ on:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
- DOTNET_INSTALL_DIR: '.\.dotnet'
- DOTNET_VERSION: '9.0.3xx'
- DOTNET_QUALITY: 'ga'
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
- SIGNPATH_ARTIFACT_SLUG: 'initial' # change this to 'aot-release' when releasing with AOT or 'initial' for normal release
- BUILD_PROFILE_PREVIEW: 'Publish-PreviewRelease'
- BUILD_PROFILE_STABLE: 'Publish-StableRelease'
- BUILD_PROFILE_DEBUG: 'Publish-DebugCIRelease'
+ SIGNPATH_ARTIFACT_SLUG: 'aot-release' # change this to 'aot-release' when releasing with AOT or 'initial' for normal release
+ BUILD_PROFILE_PREVIEW: 'Publish-PreviewReleaseAOT'
+ BUILD_PROFILE_STABLE: 'Publish-StableReleaseAOT'
+ BUILD_PROFILE_DEBUG: 'Publish-DebugCIReleaseAOT'
# schedule:
# - cron: '0 0 * * 0' # At 00:00 on Sunday
@@ -33,6 +30,7 @@ jobs:
PUBLISH_PROFILE: ""
SIGNING_POLICY_SLUG: ""
VERSION: ""
+ PRODUCT_VERSION: ""
Platform: ${{ matrix.platform }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
@@ -51,8 +49,8 @@ jobs:
echo "PUBLISH_PROFILE=${{ env.BUILD_PROFILE_STABLE }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "SIGNING_POLICY_SLUG=release-signing" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
} elseif ($branch -eq "github-signpath-test") {
- echo "CONFIGURATION_STRATEGY=Debug" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- echo "PUBLISH_PROFILE=${{ env.BUILD_PROFILE_DEBUG }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
+ echo "CONFIGURATION_STRATEGY=Release" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
+ echo "PUBLISH_PROFILE=${{ env.BUILD_PROFILE_PREVIEW }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "SIGNING_POLICY_SLUG=test-signing-ci" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
} else {
Write-Error "Unknown branch or input: $branch"
@@ -69,6 +67,14 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
+
+ - name: 'Preparing Environment Variables'
+ if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }}
+ run: |
+ $env = Get-Content env.json | ConvertFrom-Json
+ foreach ($prop in $env.PSObject.Properties) {
+ echo "$($prop.Name)=$($prop.Value)" >> $env:GITHUB_ENV
+ }
- name: Install .NET
uses: actions/setup-dotnet@v4
@@ -156,7 +162,9 @@ jobs:
if ($signature.Status -ne "Valid") {
echo "::error::Invalid signature on $($file.Name): $($signature.Status)"
}
- echo "✓ $($file.Name): $($signature.SignerCertificate.Subject)"
+ else {
+ echo "::notice::✓ $($file.Name): $($signature.SignerCertificate.Subject)"
+ }
}
- name: Re-upload Signed Artifact to GitHub
@@ -187,6 +195,27 @@ jobs:
apps: sentry-cli
- name: Upload Debug artifact to Sentry
+ continue-on-error: true
+ shell: pwsh
run: |
- sentry-cli debug-files upload --org collapse --project collapse-launcher --include-sources '.\SignedArtifact\BuildArtifact-${{ env.VERSION }}'
-
+ sentry-cli debug-files upload --org collapse --project collapse-launcher --include-sources '${{ runner.temp }}\SignedArtifact\BuildArtifact-${{ env.VERSION }}'
+
+ - name: Set release version in Sentry
+ shell: pwsh
+ continue-on-error: true
+ run: |
+ $exePath = "${{ runner.temp }}\SignedArtifact\BuildArtifact-${{ env.VERSION }}\CollapseLauncher.exe"
+ if (Test-Path $exePath) {
+ $version = "CollapseLauncher@" + ([System.Diagnostics.FileVersionInfo]::GetVersionInfo("./CollapseLauncher.exe").ProductVersion)
+ if ($version) {
+ sentry-cli releases new --org collapse --project collapse-launcher $version
+ sentry-cli releases set-commits --auto $version
+ sentry-cli releases finalize $version
+ }
+ else {
+ Write-Warning "No product version found in $exePath"
+ }
+ }
+ else {
+ Write-Error "File not found: $exePath"
+ }
diff --git a/.gitignore b/.gitignore
index cef97bf38..9801964fd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,6 +8,8 @@ packages/*
CollapseLauncher/Deps/*
CollapseLauncher/StaticLib/*.lib
CollapseLauncher/StaticLib/**/*.lib
+CollapseLauncher/StaticLib/*.pdb
+CollapseLauncher/StaticLib/**/*.pdb
CollapseLauncher/Invoker/*
**/Generated Files/**
*.psd
diff --git a/.gitmodules b/.gitmodules
index 11e3339e2..b86e92806 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,9 +1,9 @@
[submodule "Hi3Helper.Http"]
path = Hi3Helper.Http
- url = https://github.com/neon-nyan/Hi3Helper.Http
+ url = https://github.com/CollapseLauncher/Hi3Helper.Http
[submodule "ColorThief"]
path = ColorThief
- url = https://github.com/neon-nyan/ColorThief
+ url = https://github.com/CollapseLauncher/ColorThief
[submodule "Hi3Helper.EncTool"]
path = Hi3Helper.EncTool
url = https://github.com/CollapseLauncher/Hi3Helper.EncTool
@@ -28,3 +28,6 @@
[submodule "Hi3Helper.Win32"]
path = Hi3Helper.Win32
url = https://github.com/CollapseLauncher/Hi3Helper.Win32
+[submodule "Hi3Helper.Plugin.Core"]
+ path = Hi3Helper.Plugin.Core
+ url = https://github.com/CollapseLauncher/Hi3Helper.Plugin.Core
diff --git a/.idea/.idea.CollapseLauncher/.idea/encodings.xml b/.idea/.idea.CollapseLauncher/.idea/encodings.xml
index d5d08fe80..753791775 100644
--- a/.idea/.idea.CollapseLauncher/.idea/encodings.xml
+++ b/.idea/.idea.CollapseLauncher/.idea/encodings.xml
@@ -2,5 +2,6 @@
+
\ No newline at end of file
diff --git a/.idea/.idea.CollapseLauncher/.idea/vcs.xml b/.idea/.idea.CollapseLauncher/.idea/vcs.xml
index ca3b0a334..17764a39a 100644
--- a/.idea/.idea.CollapseLauncher/.idea/vcs.xml
+++ b/.idea/.idea.CollapseLauncher/.idea/vcs.xml
@@ -8,6 +8,7 @@
+
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 532763704..a268839a5 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -2,10 +2,10 @@
## Before you Start
- Unless otherwise stated in this project's README, please make sure to clone the source code from the `main` branch using `--recurse` parameter to pull all the submodules Collapse needs to compile.
- ```git clone https://github.com/neon-nyan/Collapse --recurse```
+ ```git clone https://github.com/CollapseLauncher/Collapse --recurse```
- Make sure you use the supported IDE & SDKs listed below.
-- Make sure to read the "Restriction for New Feature(s)" section below.
+- Make sure to read the "Restriction for New Feature(s)", "Plugin System" & "Plugin Restrictions" sections below.
- When submitting a Pull Request (PR), make sure that it is done to the same branch from which you first pulled, unless otherwise stated in the project's README, or if specifically instructed by maintainers of this project.
- We don't require a fully descriptive PR, but please be clear on what is added/removed and what the code does.
@@ -15,13 +15,23 @@ If you wish to add new language that isn't yet listed in the Transifex project,
## Tools Needed
Below is a list of tools needed to contribute to this project:
-1. **Visual Studio 2022 (Any Edition - latest version)**
+1. **Visual Studio 2022 (Any Edition - latest version)** or **JetBrains Rider (Any Edition - latest version)**
- Select .NET desktop development component
2. **Windows SDK (10.0.26100.0 ONLY)** via Visual Studio Installer
3. .NET 9 SDK: [**(9.0.4 or later)**](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
> **Note**:
-> Make sure to always use the latest version of Visual Studio in order to be able to open the project.
+> Make sure to always use the latest version of Visual Studio or Rider in order to be able to open the project.
+
+## Plugin System
+> The plugin system was introduced in a recent version of Collapse, allowing for external games, not officially supported by the launcher, to be managed through the it. Any user can create & load their own plugins into Collapse, provided they follow a set of guidelines and standards.
+
+The plugin system requires its own set of dependencies and packages, though the tools required to develop it are identical. For more information about developing your own plugin, take a look at the core plugin module's [documentation](https://github.com/CollapseLauncher/Hi3Helper.Plugin.Core).
+
+## Plugin Restrictions
+Plugins are designed to interface with Collapse through COM Interops and marshalling. As such, you must follow the API contracts defined in the core library. That being said, there's nothing stopping you from writing your own interfaces and ways to interact with Collapse, provided that the current launcher code supports that functionality. Ultimately, **we, the Collapse core developer team, cannot stop users from distributing their own plugin libraries and implementing features that we never will** (see below), but it is our hope that our users and community will adhere to the rules we set.
+
+All official plugins (plugins that are accessible through Collapse's download interface) must be validated by a member of the development team before being approved for publishing, to ensure the safety of our users and preserve launcher stability and integrity. The Collapse project and its members are not responsible for damage caused to the user should they install unofficial and unsupported plugins. Furthermore, no support will be provided for any unofficial plugin.
## Restrictions for New Feature(s)
While this software is fully open source and not affiliated with HoYoverse, Cognosphere, or any of its related entities in any way, we are nonetheless bound to their Terms of Service and Code of Conduct when developing Collapse. This means that there are some features that we will **not** implement. We will close any issue or PRs that are made to add such functionality to Collapse. Such features include, but are not limited to:
@@ -32,6 +42,7 @@ While this software is fully open source and not affiliated with HoYoverse, Cogn
### Examples for features that we encourage others to submit PRs for:
- Community resources
- Officially-endorsed HoYoverse Tools
+- Code that enhances plugin-related functionality
- Etc.
### Examples of features that we will probably never implement:
@@ -40,14 +51,15 @@ While this software is fully open source and not affiliated with HoYoverse, Cogn
- Any type of cheats or exploits.
- Etc.
-
## Further reads:
- [Genshin Impact Terms of Service](https://genshin.hoyoverse.com/en/company/terms)
- [Honkai Impact 3rd Terms of Service](https://honkaiimpact3.hoyoverse.com/global/en-us/terms)
- [Honkai: Star Rail Terms of Service](https://hsr.hoyoverse.com/en-us/company/terms)
- [Zenless Zone Zero Terms of Service](https://zenless.hoyoverse.com/en-us/company/terms)
- [HoYoLAB Forum Terms of Service](https://www.hoyolab.com/agreement)
+- Any other Terms of Service & Privacy Policy links for games implemented through the plugin system
# A Humble Thank You
As contributors, we always feel grateful for all your contributions to the project, whether it be through helping with localizing the app, coming up with new features, reporting bugs, and even using this launcher. Through everyone's effort, we can keep this project alive by bringing even more features and quality-of-life (QoL) upgrades over the existing launchers (including official) that are out there.
Thank you ❤️
+
diff --git a/CollapseLauncher.sln b/CollapseLauncher.sln
index 8750244af..95df9cb35 100644
--- a/CollapseLauncher.sln
+++ b/CollapseLauncher.sln
@@ -28,17 +28,19 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.TaskScheduler", "
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.CommunityToolkit.WinUI.Controls.ImageCropper", "Hi3Helper.CommunityToolkit\ImageCropper\Hi3Helper.CommunityToolkit.WinUI.Controls.ImageCropper.csproj", "{558A1D17-BEB4-49DF-A200-15ABE283BDED}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls", "Hi3Helper.CommunityToolkit\SettingsControls\Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls.csproj", "{5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Win32", "Hi3Helper.Win32\Hi3Helper.Win32.csproj", "{F65C6DAC-CC04-214B-9430-2C4AE31448E2}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.NotifyIcon.WinUI", "H.NotifyIcon\src\libs\H.NotifyIcon.WinUI\H.NotifyIcon.WinUI.csproj", "{141083CC-A924-4E19-904C-AF91361405A5}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Win32.WinRT", "Hi3Helper.Win32\WinRT\Hi3Helper.Win32.WinRT.csproj", "{5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.NotifyIcon", "H.NotifyIcon\src\libs\H.NotifyIcon\H.NotifyIcon.csproj", "{6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Plugin.Core", "Hi3Helper.Plugin.Core\Hi3Helper.Plugin.Core.csproj", "{6D56B964-1509-482F-4589-C780CDE5C703}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.GeneratedIcons.System.Drawing", "H.NotifyIcon\src\libs\H.GeneratedIcons.System.Drawing\H.GeneratedIcons.System.Drawing.csproj", "{911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls", "Hi3Helper.CommunityToolkit\SettingsControls\Hi3Helper.CommunityToolkit.WinUI.Controls.SettingsControls.csproj", "{EDB972FD-0B83-1092-166C-05DC18846ABE}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Win32", "Hi3Helper.Win32\Hi3Helper.Win32.csproj", "{F65C6DAC-CC04-214B-9430-2C4AE31448E2}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.GeneratedIcons.System.Drawing", "H.NotifyIcon\src\libs\H.GeneratedIcons.System.Drawing\H.GeneratedIcons.System.Drawing.csproj", "{6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hi3Helper.Win32.WinRT", "Hi3Helper.Win32\WinRT\Hi3Helper.Win32.WinRT.csproj", "{5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.NotifyIcon", "H.NotifyIcon\src\libs\H.NotifyIcon\H.NotifyIcon.csproj", "{A7B5455E-BC50-3668-B225-D1954E254FBC}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "H.NotifyIcon.WinUI", "H.NotifyIcon\src\libs\H.NotifyIcon.WinUI\H.NotifyIcon.WinUI.csproj", "{0128963B-3044-224A-7E5D-3FC91B8B054C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -124,30 +126,6 @@ Global
{558A1D17-BEB4-49DF-A200-15ABE283BDED}.Publish|x64.Build.0 = Release|x64
{558A1D17-BEB4-49DF-A200-15ABE283BDED}.Release|x64.ActiveCfg = Release|x64
{558A1D17-BEB4-49DF-A200-15ABE283BDED}.Release|x64.Build.0 = Release|x64
- {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Debug|x64.ActiveCfg = Debug|x64
- {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Debug|x64.Build.0 = Debug|x64
- {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Publish|x64.ActiveCfg = Release|x64
- {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Publish|x64.Build.0 = Release|x64
- {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Release|x64.ActiveCfg = Release|x64
- {5A1243EC-EFD9-4B55-8F29-D1A91A9B027D}.Release|x64.Build.0 = Release|x64
- {141083CC-A924-4E19-904C-AF91361405A5}.Debug|x64.ActiveCfg = Debug|x64
- {141083CC-A924-4E19-904C-AF91361405A5}.Debug|x64.Build.0 = Debug|x64
- {141083CC-A924-4E19-904C-AF91361405A5}.Publish|x64.ActiveCfg = Release|x64
- {141083CC-A924-4E19-904C-AF91361405A5}.Publish|x64.Build.0 = Release|x64
- {141083CC-A924-4E19-904C-AF91361405A5}.Release|x64.ActiveCfg = Release|x64
- {141083CC-A924-4E19-904C-AF91361405A5}.Release|x64.Build.0 = Release|x64
- {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Debug|x64.ActiveCfg = Debug|x64
- {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Debug|x64.Build.0 = Debug|x64
- {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Publish|x64.ActiveCfg = Release|x64
- {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Publish|x64.Build.0 = Release|x64
- {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Release|x64.ActiveCfg = Release|x64
- {6C8A25FA-BA1C-4EE4-8A9D-2FB4918077FB}.Release|x64.Build.0 = Release|x64
- {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Debug|x64.ActiveCfg = Debug|x64
- {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Debug|x64.Build.0 = Debug|x64
- {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Publish|x64.ActiveCfg = Release|x64
- {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Publish|x64.Build.0 = Release|x64
- {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Release|x64.ActiveCfg = Release|x64
- {911C98FD-C64D-4BAC-8EF5-0616F8EFF7B9}.Release|x64.Build.0 = Release|x64
{F65C6DAC-CC04-214B-9430-2C4AE31448E2}.Debug|x64.ActiveCfg = Debug|x64
{F65C6DAC-CC04-214B-9430-2C4AE31448E2}.Debug|x64.Build.0 = Debug|x64
{F65C6DAC-CC04-214B-9430-2C4AE31448E2}.Publish|x64.ActiveCfg = Release|x64
@@ -160,6 +138,36 @@ Global
{5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}.Publish|x64.Build.0 = Release|x64
{5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}.Release|x64.ActiveCfg = Release|x64
{5CA5A261-1D5B-8A4D-EA87-B031CFFD4DDD}.Release|x64.Build.0 = Release|x64
+ {6D56B964-1509-482F-4589-C780CDE5C703}.Debug|x64.ActiveCfg = Debug|x64
+ {6D56B964-1509-482F-4589-C780CDE5C703}.Debug|x64.Build.0 = Debug|x64
+ {6D56B964-1509-482F-4589-C780CDE5C703}.Publish|x64.ActiveCfg = Release|x64
+ {6D56B964-1509-482F-4589-C780CDE5C703}.Publish|x64.Build.0 = Release|x64
+ {6D56B964-1509-482F-4589-C780CDE5C703}.Release|x64.ActiveCfg = Release|x64
+ {6D56B964-1509-482F-4589-C780CDE5C703}.Release|x64.Build.0 = Release|x64
+ {EDB972FD-0B83-1092-166C-05DC18846ABE}.Debug|x64.ActiveCfg = Debug|x64
+ {EDB972FD-0B83-1092-166C-05DC18846ABE}.Debug|x64.Build.0 = Debug|x64
+ {EDB972FD-0B83-1092-166C-05DC18846ABE}.Publish|x64.ActiveCfg = Release|x64
+ {EDB972FD-0B83-1092-166C-05DC18846ABE}.Publish|x64.Build.0 = Release|x64
+ {EDB972FD-0B83-1092-166C-05DC18846ABE}.Release|x64.ActiveCfg = Release|x64
+ {EDB972FD-0B83-1092-166C-05DC18846ABE}.Release|x64.Build.0 = Release|x64
+ {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Debug|x64.ActiveCfg = Debug|x64
+ {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Debug|x64.Build.0 = Debug|x64
+ {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Publish|x64.ActiveCfg = Release|x64
+ {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Publish|x64.Build.0 = Release|x64
+ {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Release|x64.ActiveCfg = Release|x64
+ {6A8DCFD1-B470-6A87-37A9-4CBA40C4A51F}.Release|x64.Build.0 = Release|x64
+ {A7B5455E-BC50-3668-B225-D1954E254FBC}.Debug|x64.ActiveCfg = Debug|x64
+ {A7B5455E-BC50-3668-B225-D1954E254FBC}.Debug|x64.Build.0 = Debug|x64
+ {A7B5455E-BC50-3668-B225-D1954E254FBC}.Publish|x64.ActiveCfg = Release|x64
+ {A7B5455E-BC50-3668-B225-D1954E254FBC}.Publish|x64.Build.0 = Release|x64
+ {A7B5455E-BC50-3668-B225-D1954E254FBC}.Release|x64.ActiveCfg = Release|x64
+ {A7B5455E-BC50-3668-B225-D1954E254FBC}.Release|x64.Build.0 = Release|x64
+ {0128963B-3044-224A-7E5D-3FC91B8B054C}.Debug|x64.ActiveCfg = Debug|x64
+ {0128963B-3044-224A-7E5D-3FC91B8B054C}.Debug|x64.Build.0 = Debug|x64
+ {0128963B-3044-224A-7E5D-3FC91B8B054C}.Publish|x64.ActiveCfg = Release|x64
+ {0128963B-3044-224A-7E5D-3FC91B8B054C}.Publish|x64.Build.0 = Release|x64
+ {0128963B-3044-224A-7E5D-3FC91B8B054C}.Release|x64.ActiveCfg = Release|x64
+ {0128963B-3044-224A-7E5D-3FC91B8B054C}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/CollapseLauncher.slnx b/CollapseLauncher.slnx
index ee8320b35..7853ad580 100644
--- a/CollapseLauncher.slnx
+++ b/CollapseLauncher.slnx
@@ -5,95 +5,60 @@
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/CollapseLauncher/App.xaml b/CollapseLauncher/App.xaml
index 8ad61579c..ee2631aef 100644
--- a/CollapseLauncher/App.xaml
+++ b/CollapseLauncher/App.xaml
@@ -29,6 +29,7 @@
+
@@ -41,6 +42,8 @@
#ffd52a
#ffd52a
#ffd52a
+ #ffd52a
+ #00ffd52a
#693758
#693758
#693758
+ #693758
+ #00693758
-
-
@@ -2705,8 +2708,8 @@
-
+
@@ -2720,8 +2723,8 @@
-
+
@@ -2735,8 +2738,8 @@
-
+
@@ -2750,41 +2753,18 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/CollapseLauncher/App.xaml.cs b/CollapseLauncher/App.xaml.cs
index e5ab27f5b..327484fb9 100644
--- a/CollapseLauncher/App.xaml.cs
+++ b/CollapseLauncher/App.xaml.cs
@@ -11,6 +11,7 @@
using PhotoSauce.MagicScaler;
using PhotoSauce.NativeCodecs.Libwebp;
using System;
+using System.Diagnostics;
using Windows.UI;
using static CollapseLauncher.InnerLauncherConfig;
using static Hi3Helper.Logger;
@@ -42,7 +43,7 @@ public App()
#endif
DebugSettings.XamlResourceReferenceFailed += static (sender, args) =>
{
- LogWriteLine($"[XAML_RES_REFERENCE] Sender: {sender}\r\n{args!.Message}", LogType.Error, true);
+ LogWriteLine($"[XAML_RES_REFERENCE] Sender: {sender}\r\n{args!.Message}\r\n{new StackTrace()}", LogType.Error, true);
SentryHelper.ExceptionHandler(new Exception($"{args.Message}"), SentryHelper.ExceptionType.UnhandledXaml);
#if !DEBUG
MainEntryPoint.SpawnFatalErrorConsole(new Exception(args!.Message));
@@ -51,7 +52,7 @@ public App()
};
DebugSettings.BindingFailed += static (sender, args) =>
{
- LogWriteLine($"[XAML_BINDING] Sender: {sender}\r\n{args!.Message}", LogType.Error, true);
+ LogWriteLine($"[XAML_BINDING] Sender: {sender}\r\n{args!.Message}\r\n{new StackTrace()}", LogType.Error, true);
SentryHelper.ExceptionHandler(new Exception($"{args.Message}"), SentryHelper.ExceptionType.UnhandledXaml);
#if !DEBUG
MainEntryPoint.SpawnFatalErrorConsole(new Exception(args!.Message));
@@ -59,7 +60,7 @@ public App()
};
UnhandledException += static (sender, e) =>
{
- LogWriteLine($"[XAML_OTHER] Sender: {sender}\r\n{e!.Exception} {e.Exception!.InnerException}", LogType.Error, true);
+ LogWriteLine($"[XAML_OTHER] Sender: {sender}\r\n{e!.Exception} {e.Exception!.InnerException}\r\nCurrent Stacktrace: {new StackTrace()}", LogType.Error, true);
var ex = e.Exception;
if (ex != null)
{
diff --git a/CollapseLauncher/Assets/Images/GameMascot/PaimonThreateningAura.png b/CollapseLauncher/Assets/Images/GameMascot/PaimonThreateningAura.png
new file mode 100644
index 000000000..0fb15bb40
Binary files /dev/null and b/CollapseLauncher/Assets/Images/GameMascot/PaimonThreateningAura.png differ
diff --git a/CollapseLauncher/Classes/AnimatedVisuals/Lottie/TempResetIndonesiaTaglineCrisis.cs b/CollapseLauncher/Classes/AnimatedVisuals/Lottie/TempResetIndonesiaTaglineCrisis.cs
new file mode 100644
index 000000000..7ed93e54d
--- /dev/null
+++ b/CollapseLauncher/Classes/AnimatedVisuals/Lottie/TempResetIndonesiaTaglineCrisis.cs
@@ -0,0 +1,139297 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// LottieGen version:
+// 8.2.250604.1+b02a3ee244
+//
+// Command:
+// LottieGen -GenerateColorBindings -GenerateDependencyObject -Language CSharp -Namespace CollapseLauncher.AnimatedVisuals.Lottie -Public -WinUIVersion 3.0 -InputFile TempResetIndonesiaTaglineCrisis.json
+//
+// Input file:
+// TempResetIndonesiaTaglineCrisis.json (3532461 bytes created 2:29+07:00 Aug 31 2025)
+//
+// LottieGen source:
+// http://aka.ms/Lottie
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+// ____________________________________
+// | Object stats | Count |
+// |__________________________|_______|
+// | All CompositionObjects | 8211 |
+// |--------------------------+-------|
+// | Expression animators | 15 |
+// | KeyFrame animators | 58 |
+// | Reference parameters | 25 |
+// | Expression operations | 56 |
+// |--------------------------+-------|
+// | Animated brushes | 14 |
+// | Animated gradient stops | - |
+// | ExpressionAnimations | 15 |
+// | PathKeyFrameAnimations | - |
+// |--------------------------+-------|
+// | ContainerVisuals | 11 |
+// | ShapeVisuals | 11 |
+// |--------------------------+-------|
+// | ContainerShapes | 23 |
+// | CompositionSpriteShapes | 2220 |
+// |--------------------------+-------|
+// | Brushes | 24 |
+// | Gradient stops | - |
+// | CompositionVisualSurface | 6 |
+// ------------------------------------
+using Microsoft.Graphics;
+using Microsoft.Graphics.Canvas;
+using Microsoft.Graphics.Canvas.Effects;
+using Microsoft.Graphics.Canvas.Geometry;
+using Microsoft.UI.Composition;
+using Microsoft.UI.Xaml;
+using System;
+using System.Collections.Generic;
+using System.Numerics;
+using Windows.UI;
+
+namespace CollapseLauncher.AnimatedVisuals.Lottie
+{
+ // Name: CrisisIntro
+ // Frame rate: 60 fps
+ // Frame count: 4800
+ // Duration: 80000.0 mS
+ public sealed partial class TempResetIndonesiaTaglineCrisis
+ : DependencyObject
+ , Microsoft.UI.Xaml.Controls.IAnimatedVisualSource
+ , Microsoft.UI.Xaml.Controls.IAnimatedVisualSource2
+ {
+ // Animation duration: 80.000 seconds.
+ internal const long c_durationTicks = 800000000;
+
+ // Theme property: Color_E63B3B.
+ internal static readonly Color c_themeColor_E63B3B = Color.FromArgb(0xFF, 0xE6, 0x3B, 0x3B);
+
+ // Theme property: Color_FF0000.
+ internal static readonly Color c_themeColor_FF0000 = Color.FromArgb(0xFF, 0xFF, 0x00, 0x00);
+
+ // Theme property: Color_FFFFFF.
+ internal static readonly Color c_themeColor_FFFFFF = Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF);
+
+ CompositionPropertySet _themeProperties;
+
+ ///
+ /// Dependency property for Color_E63B3B.
+ ///
+ public static readonly DependencyProperty Color_E63B3BProperty =
+ DependencyProperty.Register("Color_E63B3B", typeof(Color), typeof(TempResetIndonesiaTaglineCrisis),
+ new PropertyMetadata(Color.FromArgb(0xFF, 0xE6, 0x3B, 0x3B), OnColor_E63B3BChanged));
+
+ ///
+ /// Dependency property for Color_FF0000.
+ ///
+ public static readonly DependencyProperty Color_FF0000Property =
+ DependencyProperty.Register("Color_FF0000", typeof(Color), typeof(TempResetIndonesiaTaglineCrisis),
+ new PropertyMetadata(Color.FromArgb(0xFF, 0xFF, 0x00, 0x00), OnColor_FF0000Changed));
+
+ ///
+ /// Dependency property for Color_FFFFFF.
+ ///
+ public static readonly DependencyProperty Color_FFFFFFProperty =
+ DependencyProperty.Register("Color_FFFFFF", typeof(Color), typeof(TempResetIndonesiaTaglineCrisis),
+ new PropertyMetadata(Color.FromArgb(0xFF, 0xFF, 0xFF, 0xFF), OnColor_FFFFFFChanged));
+
+ // Theme properties.
+ public Color Color_E63B3B
+ {
+ get => (Color)GetValue(Color_E63B3BProperty);
+ set => SetValue(Color_E63B3BProperty, value);
+ }
+
+ public Color Color_FF0000
+ {
+ get => (Color)GetValue(Color_FF0000Property);
+ set => SetValue(Color_FF0000Property, value);
+ }
+
+ public Color Color_FFFFFF
+ {
+ get => (Color)GetValue(Color_FFFFFFProperty);
+ set => SetValue(Color_FFFFFFProperty, value);
+ }
+
+ static Vector4 ColorAsVector4(Color color) => new Vector4(color.R, color.G, color.B, color.A);
+
+ static void OnColor_E63B3BChanged(DependencyObject d, DependencyPropertyChangedEventArgs args)
+ {
+ ((TempResetIndonesiaTaglineCrisis)d)._themeProperties?.InsertVector4("Color_E63B3B", ColorAsVector4((Color)(Color)args.NewValue));
+ }
+
+ static void OnColor_FF0000Changed(DependencyObject d, DependencyPropertyChangedEventArgs args)
+ {
+ ((TempResetIndonesiaTaglineCrisis)d)._themeProperties?.InsertVector4("Color_FF0000", ColorAsVector4((Color)(Color)args.NewValue));
+ }
+
+ static void OnColor_FFFFFFChanged(DependencyObject d, DependencyPropertyChangedEventArgs args)
+ {
+ ((TempResetIndonesiaTaglineCrisis)d)._themeProperties?.InsertVector4("Color_FFFFFF", ColorAsVector4((Color)(Color)args.NewValue));
+ }
+
+ CompositionPropertySet EnsureThemeProperties(Compositor compositor)
+ {
+ if (_themeProperties == null)
+ {
+ _themeProperties = compositor.CreatePropertySet();
+ _themeProperties.InsertVector4("Color_E63B3B", ColorAsVector4((Color)Color_E63B3B));
+ _themeProperties.InsertVector4("Color_FF0000", ColorAsVector4((Color)Color_FF0000));
+ _themeProperties.InsertVector4("Color_FFFFFF", ColorAsVector4((Color)Color_FFFFFF));
+ }
+ return _themeProperties;
+ }
+
+ public Microsoft.UI.Xaml.Controls.IAnimatedVisual TryCreateAnimatedVisual(Compositor compositor)
+ {
+ object ignored = null;
+ return TryCreateAnimatedVisual(compositor, out ignored);
+ }
+
+ public Microsoft.UI.Xaml.Controls.IAnimatedVisual TryCreateAnimatedVisual(Compositor compositor, out object diagnostics)
+ {
+ diagnostics = null;
+ EnsureThemeProperties(compositor);
+
+ var res =
+ new TempResetIndonesiaTaglineCrisis_AnimatedVisual(
+ compositor,
+ _themeProperties
+ );
+ res.CreateAnimations();
+ return res;
+ }
+
+ ///
+ /// Gets the number of frames in the animation.
+ ///
+ public double FrameCount => 4800d;
+
+ ///
+ /// Gets the frame rate of the animation.
+ ///
+ public double Framerate => 60d;
+
+ ///
+ /// Gets the duration of the animation.
+ ///
+ public TimeSpan Duration => TimeSpan.FromTicks(800000000);
+
+ ///
+ /// Converts a zero-based frame number to the corresponding progress value denoting the
+ /// start of the frame.
+ ///
+ public double FrameToProgress(double frameNumber)
+ {
+ return frameNumber / 4800d;
+ }
+
+ ///
+ /// Returns a map from marker names to corresponding progress values.
+ ///
+ public IReadOnlyDictionary Markers =>
+ new Dictionary
+ {
+ };
+
+ ///
+ /// Sets the color property with the given name, or does nothing if no such property
+ /// exists.
+ ///
+ public void SetColorProperty(string propertyName, Color value)
+ {
+ if (propertyName == "Color_E63B3B")
+ {
+ Color_E63B3B = value;
+ }
+ else if (propertyName == "Color_FF0000")
+ {
+ Color_FF0000 = value;
+ }
+ else if (propertyName == "Color_FFFFFF")
+ {
+ Color_FFFFFF = value;
+ }
+ else
+ {
+ return;
+ }
+
+ if (_themeProperties != null)
+ {
+ _themeProperties.InsertVector4(propertyName, ColorAsVector4(value));
+ }
+ }
+
+ ///
+ /// Sets the scalar property with the given name, or does nothing if no such property
+ /// exists.
+ ///
+ public void SetScalarProperty(string propertyName, double value)
+ {
+ }
+
+ sealed partial class TempResetIndonesiaTaglineCrisis_AnimatedVisual
+ : Microsoft.UI.Xaml.Controls.IAnimatedVisual
+ , Microsoft.UI.Xaml.Controls.IAnimatedVisual2
+ {
+ const long c_durationTicks = 800000000;
+ readonly Compositor _c;
+ readonly ExpressionAnimation _reusableExpressionAnimation;
+ readonly CompositionPropertySet _themeProperties;
+ AnimationController _animationController_0;
+ BooleanKeyFrameAnimation _isVisibleBooleanAnimation;
+ CompositionColorBrush _colorBrush_Black;
+ CompositionColorBrush _themeColor_Color_E63B3B_0;
+ CompositionColorBrush _themeColor_Color_E63B3B_1;
+ CompositionColorBrush _themeColor_Color_E63B3B_2;
+ CompositionColorBrush _themeColor_Color_FF0000;
+ CompositionColorBrush _themeColor_Color_FFFFFF_0;
+ CompositionColorBrush _themeColor_Color_FFFFFF_1;
+ CompositionColorBrush _themeColor_Color_FFFFFF_2;
+ CompositionColorBrush _themeColor_Color_FFFFFF_3;
+ CompositionColorBrush _themeColor_Color_FFFFFF_4;
+ CompositionColorBrush _themeColor_Color_FFFFFF_5;
+ CompositionColorBrush _themeColor_Color_FFFFFF_6;
+ CompositionColorBrush _themeColor_Color_FFFFFF_7;
+ CompositionColorBrush _themeColor_Color_FFFFFF_8;
+ CompositionColorBrush _themeColor_Color_FFFFFF_9;
+ CompositionContainerShape _containerShape_00;
+ CompositionContainerShape _containerShape_01;
+ CompositionContainerShape _containerShape_02;
+ CompositionContainerShape _containerShape_03;
+ CompositionContainerShape _containerShape_04;
+ CompositionContainerShape _containerShape_05;
+ CompositionContainerShape _containerShape_06;
+ CompositionContainerShape _containerShape_07;
+ CompositionContainerShape _containerShape_08;
+ CompositionContainerShape _containerShape_09;
+ CompositionContainerShape _containerShape_10;
+ CompositionContainerShape _containerShape_11;
+ CompositionContainerShape _containerShape_12;
+ CompositionContainerShape _containerShape_13;
+ CompositionContainerShape _containerShape_14;
+ CompositionContainerShape _containerShape_15;
+ CompositionContainerShape _containerShape_16;
+ CompositionContainerShape _containerShape_17;
+ CompositionContainerShape _containerShape_18;
+ CompositionContainerShape _containerShape_19;
+ CompositionContainerShape _containerShape_20;
+ CompositionContainerShape _containerShape_21;
+ CompositionContainerShape _containerShape_22;
+ CompositionEffectFactory _effectFactory;
+ CompositionPathGeometry _pathGeometry_0029;
+ CompositionPathGeometry _pathGeometry_0137;
+ CompositionPathGeometry _pathGeometry_0138;
+ CompositionPathGeometry _pathGeometry_0139;
+ CompositionPathGeometry _pathGeometry_0140;
+ CompositionPathGeometry _pathGeometry_0141;
+ CompositionPathGeometry _pathGeometry_0142;
+ CompositionPathGeometry _pathGeometry_0143;
+ CompositionPathGeometry _pathGeometry_0144;
+ CompositionPathGeometry _pathGeometry_0145;
+ CompositionPathGeometry _pathGeometry_0146;
+ CompositionPathGeometry _pathGeometry_0147;
+ CompositionPathGeometry _pathGeometry_0148;
+ CompositionPathGeometry _pathGeometry_0149;
+ CompositionPathGeometry _pathGeometry_0150;
+ CompositionPathGeometry _pathGeometry_0151;
+ CompositionPathGeometry _pathGeometry_0152;
+ CompositionPathGeometry _pathGeometry_0153;
+ CompositionPathGeometry _pathGeometry_0154;
+ CompositionPathGeometry _pathGeometry_0155;
+ CompositionPathGeometry _pathGeometry_0156;
+ CompositionPathGeometry _pathGeometry_0157;
+ CompositionPathGeometry _pathGeometry_0158;
+ CompositionPathGeometry _pathGeometry_0159;
+ CompositionPathGeometry _pathGeometry_0160;
+ CompositionPathGeometry _pathGeometry_0161;
+ CompositionPathGeometry _pathGeometry_0162;
+ CompositionPathGeometry _pathGeometry_0163;
+ CompositionPathGeometry _pathGeometry_0164;
+ CompositionPathGeometry _pathGeometry_0165;
+ CompositionPathGeometry _pathGeometry_0166;
+ CompositionPathGeometry _pathGeometry_0167;
+ CompositionPathGeometry _pathGeometry_0168;
+ CompositionPathGeometry _pathGeometry_0169;
+ CompositionPathGeometry _pathGeometry_0170;
+ CompositionPathGeometry _pathGeometry_0171;
+ CompositionPathGeometry _pathGeometry_0172;
+ CompositionPathGeometry _pathGeometry_0173;
+ CompositionPathGeometry _pathGeometry_0174;
+ CompositionPathGeometry _pathGeometry_0175;
+ CompositionPathGeometry _pathGeometry_0176;
+ CompositionPathGeometry _pathGeometry_0177;
+ CompositionPathGeometry _pathGeometry_0178;
+ CompositionPathGeometry _pathGeometry_0179;
+ CompositionPathGeometry _pathGeometry_0180;
+ CompositionPathGeometry _pathGeometry_0181;
+ CompositionPathGeometry _pathGeometry_0182;
+ CompositionPathGeometry _pathGeometry_0183;
+ CompositionPathGeometry _pathGeometry_0184;
+ CompositionPathGeometry _pathGeometry_0185;
+ CompositionPathGeometry _pathGeometry_0186;
+ CompositionPathGeometry _pathGeometry_0187;
+ CompositionPathGeometry _pathGeometry_0188;
+ CompositionPathGeometry _pathGeometry_0189;
+ CompositionPathGeometry _pathGeometry_0190;
+ CompositionPathGeometry _pathGeometry_0191;
+ CompositionPathGeometry _pathGeometry_0192;
+ CompositionPathGeometry _pathGeometry_0193;
+ CompositionPathGeometry _pathGeometry_0194;
+ CompositionPathGeometry _pathGeometry_0195;
+ CompositionPathGeometry _pathGeometry_0196;
+ CompositionPathGeometry _pathGeometry_0197;
+ CompositionPathGeometry _pathGeometry_0198;
+ CompositionPathGeometry _pathGeometry_0199;
+ CompositionPathGeometry _pathGeometry_0200;
+ CompositionPathGeometry _pathGeometry_0201;
+ CompositionPathGeometry _pathGeometry_0202;
+ CompositionPathGeometry _pathGeometry_0203;
+ CompositionPathGeometry _pathGeometry_0204;
+ CompositionPathGeometry _pathGeometry_0205;
+ CompositionPathGeometry _pathGeometry_0206;
+ CompositionPathGeometry _pathGeometry_0207;
+ CompositionPathGeometry _pathGeometry_0208;
+ CompositionPathGeometry _pathGeometry_0209;
+ CompositionPathGeometry _pathGeometry_0210;
+ CompositionPathGeometry _pathGeometry_0211;
+ CompositionPathGeometry _pathGeometry_0212;
+ CompositionPathGeometry _pathGeometry_0213;
+ CompositionPathGeometry _pathGeometry_0214;
+ CompositionPathGeometry _pathGeometry_0215;
+ CompositionPathGeometry _pathGeometry_0216;
+ CompositionPathGeometry _pathGeometry_0217;
+ CompositionPathGeometry _pathGeometry_0218;
+ CompositionPathGeometry _pathGeometry_0219;
+ CompositionPathGeometry _pathGeometry_0220;
+ CompositionPathGeometry _pathGeometry_0221;
+ CompositionPathGeometry _pathGeometry_0222;
+ CompositionPathGeometry _pathGeometry_0223;
+ CompositionPathGeometry _pathGeometry_0224;
+ CompositionPathGeometry _pathGeometry_0225;
+ CompositionPathGeometry _pathGeometry_0226;
+ CompositionPathGeometry _pathGeometry_0227;
+ CompositionPathGeometry _pathGeometry_0228;
+ CompositionPathGeometry _pathGeometry_0229;
+ CompositionPathGeometry _pathGeometry_0230;
+ CompositionPathGeometry _pathGeometry_0231;
+ CompositionPathGeometry _pathGeometry_0232;
+ CompositionPathGeometry _pathGeometry_0233;
+ CompositionPathGeometry _pathGeometry_0234;
+ CompositionPathGeometry _pathGeometry_0235;
+ CompositionPathGeometry _pathGeometry_0236;
+ CompositionPathGeometry _pathGeometry_0237;
+ CompositionPathGeometry _pathGeometry_0238;
+ CompositionPathGeometry _pathGeometry_0239;
+ CompositionPathGeometry _pathGeometry_0240;
+ CompositionPathGeometry _pathGeometry_0241;
+ CompositionPathGeometry _pathGeometry_0242;
+ CompositionPathGeometry _pathGeometry_0243;
+ CompositionPathGeometry _pathGeometry_0244;
+ CompositionPathGeometry _pathGeometry_0245;
+ CompositionPathGeometry _pathGeometry_0246;
+ CompositionPathGeometry _pathGeometry_0247;
+ CompositionPathGeometry _pathGeometry_0248;
+ CompositionPathGeometry _pathGeometry_0249;
+ CompositionPathGeometry _pathGeometry_0250;
+ CompositionPathGeometry _pathGeometry_0251;
+ CompositionPathGeometry _pathGeometry_0252;
+ CompositionPathGeometry _pathGeometry_0253;
+ CompositionPathGeometry _pathGeometry_0254;
+ CompositionPathGeometry _pathGeometry_0255;
+ CompositionPathGeometry _pathGeometry_0256;
+ CompositionPathGeometry _pathGeometry_0412;
+ CompositionRectangleGeometry _rectangle_1920x82;
+ ContainerVisual _containerVisual_0;
+ ContainerVisual _containerVisual_1;
+ ContainerVisual _containerVisual_8;
+ ContainerVisual _containerVisual_9;
+ ContainerVisual _root;
+ CubicBezierEasingFunction _cubicBezierEasingFunction_0;
+ CubicBezierEasingFunction _cubicBezierEasingFunction_1;
+ CubicBezierEasingFunction _cubicBezierEasingFunction_2;
+ CubicBezierEasingFunction _cubicBezierEasingFunction_3;
+ InsetClip _insetClip_0;
+ ShapeVisual _shapeVisual_00;
+ ShapeVisual _shapeVisual_01;
+ ShapeVisual _shapeVisual_02;
+ ShapeVisual _shapeVisual_03;
+ ShapeVisual _shapeVisual_04;
+ ShapeVisual _shapeVisual_05;
+ ShapeVisual _shapeVisual_06;
+ ShapeVisual _shapeVisual_08;
+ StepEasingFunction _holdThenStepEasingFunction;
+ StepEasingFunction _stepThenHoldEasingFunction;
+ Vector2KeyFrameAnimation _shapeVisibilityAnimation_00;
+
+ void BindProperty(
+ CompositionObject target,
+ string animatedPropertyName,
+ string expression,
+ string referenceParameterName,
+ CompositionObject referencedObject)
+ {
+ _reusableExpressionAnimation.ClearAllParameters();
+ _reusableExpressionAnimation.Expression = expression;
+ _reusableExpressionAnimation.SetReferenceParameter(referenceParameterName, referencedObject);
+ target.StartAnimation(animatedPropertyName, _reusableExpressionAnimation);
+ }
+
+ void BindProperty2(
+ CompositionObject target,
+ string animatedPropertyName,
+ string expression,
+ string referenceParameterName0,
+ CompositionObject referencedObject0,
+ string referenceParameterName1,
+ CompositionObject referencedObject1)
+ {
+ _reusableExpressionAnimation.ClearAllParameters();
+ _reusableExpressionAnimation.Expression = expression;
+ _reusableExpressionAnimation.SetReferenceParameter(referenceParameterName0, referencedObject0);
+ _reusableExpressionAnimation.SetReferenceParameter(referenceParameterName1, referencedObject1);
+ target.StartAnimation(animatedPropertyName, _reusableExpressionAnimation);
+ }
+
+ BooleanKeyFrameAnimation CreateBooleanKeyFrameAnimation(float initialProgress, bool initialValue)
+ {
+ var result = _c.CreateBooleanKeyFrameAnimation();
+ result.Duration = TimeSpan.FromTicks(c_durationTicks);
+ result.InsertKeyFrame(initialProgress, initialValue);
+ return result;
+ }
+
+ ScalarKeyFrameAnimation CreateScalarKeyFrameAnimation(float initialProgress, float initialValue, CompositionEasingFunction initialEasingFunction)
+ {
+ var result = _c.CreateScalarKeyFrameAnimation();
+ result.Duration = TimeSpan.FromTicks(c_durationTicks);
+ result.InsertKeyFrame(initialProgress, initialValue, initialEasingFunction);
+ return result;
+ }
+
+ Vector2KeyFrameAnimation CreateVector2KeyFrameAnimation(float initialProgress, Vector2 initialValue, CompositionEasingFunction initialEasingFunction)
+ {
+ var result = _c.CreateVector2KeyFrameAnimation();
+ result.Duration = TimeSpan.FromTicks(c_durationTicks);
+ result.InsertKeyFrame(initialProgress, initialValue, initialEasingFunction);
+ return result;
+ }
+
+ CompositionSpriteShape CreateSpriteShape(CompositionGeometry geometry, Matrix3x2 transformMatrix)
+ {
+ var result = _c.CreateSpriteShape(geometry);
+ result.TransformMatrix = transformMatrix;
+ return result;
+ }
+
+ CompositionSpriteShape CreateSpriteShape(CompositionGeometry geometry, Matrix3x2 transformMatrix, CompositionBrush fillBrush)
+ {
+ var result = _c.CreateSpriteShape(geometry);
+ result.TransformMatrix = transformMatrix;
+ result.FillBrush = fillBrush;
+ return result;
+ }
+
+ AnimationController AnimationController_0()
+ {
+ if (_animationController_0 != null) { return _animationController_0; }
+ var result = _animationController_0 = _c.CreateAnimationController();
+ result.Pause();
+ BindProperty(_animationController_0, "Progress", "_.Progress", "_", _root);
+ return result;
+ }
+
+ BooleanKeyFrameAnimation IsVisibleBooleanAnimation()
+ {
+ // Frame 0.
+ if (_isVisibleBooleanAnimation != null) { return _isVisibleBooleanAnimation; }
+ var result = _isVisibleBooleanAnimation = CreateBooleanKeyFrameAnimation(0F, false);
+ // Frame 4350.
+ result.InsertKeyFrame(0.90625F, true);
+ return result;
+ }
+
+ // - - - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - - - Shape tree root for layer: Shape Layer 1
+ // - - Offset:<701, 286>
+ CanvasGeometry Geometry_0000()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.BeginFigure(new Vector2(173.231003F, 18.2870007F));
+ builder.AddCubicBezier(new Vector2(173.231003F, 18.2870007F), new Vector2(173.347F, 18.2110004F), new Vector2(172.914993F, 17.6539993F));
+ builder.AddCubicBezier(new Vector2(172.483002F, 17.0970001F), new Vector2(171.867996F, 16.4720001F), new Vector2(171.867996F, 16.4720001F));
+ builder.AddCubicBezier(new Vector2(171.867996F, 16.4720001F), new Vector2(170.276993F, 14.5869999F), new Vector2(169.459F, 13.665F));
+ builder.AddCubicBezier(new Vector2(149.216003F, -9.13899994F), new Vector2(119.681F, -23.5090008F), new Vector2(86.7900009F, -23.5090008F));
+ builder.AddCubicBezier(new Vector2(25.7590008F, -23.5090008F), new Vector2(-23.7159996F, 25.9659996F), new Vector2(-23.7159996F, 86.9970016F));
+ builder.AddCubicBezier(new Vector2(-23.7159996F, 120.623001F), new Vector2(-8.69699955F, 150.740997F), new Vector2(14.9980001F, 171.009003F));
+ builder.AddCubicBezier(new Vector2(15.3710003F, 171.326996F), new Vector2(16.1219997F, 171.957001F), new Vector2(16.1219997F, 171.957001F));
+ builder.AddCubicBezier(new Vector2(16.1219997F, 171.957001F), new Vector2(16.8110008F, 172.632004F), new Vector2(17.5119991F, 173.222F));
+ builder.AddCubicBezier(new Vector2(17.5119991F, 173.222F), new Vector2(16.3999996F, 173.328003F), new Vector2(15.8430004F, 173.378006F));
+ builder.AddCubicBezier(new Vector2(10.6870003F, 173.837006F), new Vector2(5.46600008F, 174.072006F), new Vector2(0.189999998F, 174.072006F));
+ builder.AddCubicBezier(new Vector2(-96.0780029F, 174.072006F), new Vector2(-174.117996F, 96.0319977F), new Vector2(-174.117996F, -0.236000001F));
+ builder.AddCubicBezier(new Vector2(-174.117996F, -96.5039978F), new Vector2(-96.0780029F, -174.544006F), new Vector2(0.189999998F, -174.544006F));
+ builder.AddCubicBezier(new Vector2(96.4580002F, -174.544006F), new Vector2(174.498001F, -96.5039978F), new Vector2(174.498001F, -0.236000001F));
+ builder.AddCubicBezier(new Vector2(174.498001F, 5.25299978F), new Vector2(174.244003F, 10.6820002F), new Vector2(173.748001F, 16.0410004F));
+ builder.AddCubicBezier(new Vector2(173.701004F, 16.5489998F), new Vector2(173.600006F, 17.5610008F), new Vector2(173.600006F, 17.5610008F));
+ builder.AddLine(new Vector2(173.231003F, 18.2870007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - - - Masks
+ // - - Layer: Shape Layer 1
+ CanvasGeometry Geometry_0001()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.BeginFigure(new Vector2(173.731003F, 18.7870007F));
+ builder.AddCubicBezier(new Vector2(173.731003F, 18.7870007F), new Vector2(173.847F, 18.7110004F), new Vector2(173.414993F, 18.1539993F));
+ builder.AddCubicBezier(new Vector2(172.983002F, 17.5970001F), new Vector2(172.367996F, 16.9720001F), new Vector2(172.367996F, 16.9720001F));
+ builder.AddCubicBezier(new Vector2(172.367996F, 16.9720001F), new Vector2(170.776993F, 15.0869999F), new Vector2(169.959F, 14.165F));
+ builder.AddCubicBezier(new Vector2(149.716003F, -8.63899994F), new Vector2(120.181F, -23.0090008F), new Vector2(87.2900009F, -23.0090008F));
+ builder.AddCubicBezier(new Vector2(26.2590008F, -23.0090008F), new Vector2(-23.2159996F, 26.4659996F), new Vector2(-23.2159996F, 87.4970016F));
+ builder.AddCubicBezier(new Vector2(-23.2159996F, 121.123001F), new Vector2(-8.19699955F, 151.240997F), new Vector2(15.4980001F, 171.509003F));
+ builder.AddCubicBezier(new Vector2(15.8710003F, 171.826996F), new Vector2(16.6219997F, 172.457001F), new Vector2(16.6219997F, 172.457001F));
+ builder.AddCubicBezier(new Vector2(16.6219997F, 172.457001F), new Vector2(17.3110008F, 173.132004F), new Vector2(18.0119991F, 173.722F));
+ builder.AddCubicBezier(new Vector2(18.0119991F, 173.722F), new Vector2(16.8999996F, 173.828003F), new Vector2(16.3430004F, 173.878006F));
+ builder.AddCubicBezier(new Vector2(11.1870003F, 174.337006F), new Vector2(5.96600008F, 174.572006F), new Vector2(0.689999998F, 174.572006F));
+ builder.AddCubicBezier(new Vector2(-95.5780029F, 174.572006F), new Vector2(-173.617996F, 96.5319977F), new Vector2(-173.617996F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-173.617996F, -96.0039978F), new Vector2(-95.5780029F, -174.044006F), new Vector2(0.689999998F, -174.044006F));
+ builder.AddCubicBezier(new Vector2(96.9580002F, -174.044006F), new Vector2(174.998001F, -96.0039978F), new Vector2(174.998001F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(174.998001F, 5.75299978F), new Vector2(174.744003F, 11.1820002F), new Vector2(174.248001F, 16.5410004F));
+ builder.AddCubicBezier(new Vector2(174.201004F, 17.0489998F), new Vector2(174.100006F, 18.0610008F), new Vector2(174.100006F, 18.0610008F));
+ builder.AddLine(new Vector2(173.731003F, 18.7870007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - - - Shape tree root for layer: Shape Layer 2
+ // - - Offset:<523.5, 488.5>
+ CanvasGeometry Geometry_0002()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.BeginFigure(new Vector2(443.60199F, -36.7270012F));
+ builder.AddCubicBezier(new Vector2(443.799988F, -34.3030014F), new Vector2(443.97699F, -31.8740005F), new Vector2(444.135986F, -29.4389992F));
+ builder.AddCubicBezier(new Vector2(444.768005F, -19.7369995F), new Vector2(445.088989F, -9.95100021F), new Vector2(445.088989F, -0.0890000015F));
+ builder.AddCubicBezier(new Vector2(445.088989F, 245.695007F), new Vector2(245.841003F, 444.941986F), new Vector2(0.057F, 444.941986F));
+ builder.AddCubicBezier(new Vector2(-245.727005F, 444.941986F), new Vector2(-444.973999F, 245.695007F), new Vector2(-444.973999F, -0.0890000015F));
+ builder.AddCubicBezier(new Vector2(-444.973999F, -232.796997F), new Vector2(-266.364014F, -423.787994F), new Vector2(-38.7540016F, -443.451996F));
+ builder.AddCubicBezier(new Vector2(-33.0839996F, -443.941986F), new Vector2(-20.6819992F, -444.803986F), new Vector2(-20.6819992F, -444.803986F));
+ builder.AddCubicBezier(new Vector2(-20.6819992F, -444.803986F), new Vector2(-135.621002F, -375.77301F), new Vector2(-135.621002F, -202.735992F));
+ builder.AddCubicBezier(new Vector2(-135.621002F, -29.6989994F), new Vector2(4.65299988F, 110.574997F), new Vector2(177.690002F, 110.574997F));
+ builder.AddCubicBezier(new Vector2(278.885986F, 110.574997F), new Vector2(368.876007F, 62.5979996F), new Vector2(426.157013F, -11.8500004F));
+ builder.AddCubicBezier(new Vector2(429.790009F, -16.5709991F), new Vector2(434.002991F, -21.7889996F), new Vector2(437.173004F, -26.8449993F));
+ builder.AddCubicBezier(new Vector2(437.173004F, -26.8449993F), new Vector2(440.427002F, -31.9190006F), new Vector2(443.60199F, -36.7270012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - - - Masks
+ // - - Layer: Shape Layer 2
+ CanvasGeometry Geometry_0003()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.BeginFigure(new Vector2(444.10199F, -36.2270012F));
+ builder.AddCubicBezier(new Vector2(444.299988F, -33.8030014F), new Vector2(444.47699F, -31.3740005F), new Vector2(444.635986F, -28.9389992F));
+ builder.AddCubicBezier(new Vector2(445.268005F, -19.2369995F), new Vector2(445.588989F, -9.45100021F), new Vector2(445.588989F, 0.411000013F));
+ builder.AddCubicBezier(new Vector2(445.588989F, 246.195007F), new Vector2(246.341003F, 445.441986F), new Vector2(0.556999981F, 445.441986F));
+ builder.AddCubicBezier(new Vector2(-245.227005F, 445.441986F), new Vector2(-444.473999F, 246.195007F), new Vector2(-444.473999F, 0.411000013F));
+ builder.AddCubicBezier(new Vector2(-444.473999F, -232.296997F), new Vector2(-265.864014F, -423.287994F), new Vector2(-38.2540016F, -442.951996F));
+ builder.AddCubicBezier(new Vector2(-32.5839996F, -443.441986F), new Vector2(-20.1819992F, -444.303986F), new Vector2(-20.1819992F, -444.303986F));
+ builder.AddCubicBezier(new Vector2(-20.1819992F, -444.303986F), new Vector2(-135.121002F, -375.27301F), new Vector2(-135.121002F, -202.235992F));
+ builder.AddCubicBezier(new Vector2(-135.121002F, -29.1989994F), new Vector2(5.15299988F, 111.074997F), new Vector2(178.190002F, 111.074997F));
+ builder.AddCubicBezier(new Vector2(279.385986F, 111.074997F), new Vector2(369.376007F, 63.0979996F), new Vector2(426.657013F, -11.3500004F));
+ builder.AddCubicBezier(new Vector2(430.290009F, -16.0709991F), new Vector2(434.502991F, -21.2889996F), new Vector2(437.673004F, -26.3449993F));
+ builder.AddCubicBezier(new Vector2(437.673004F, -26.3449993F), new Vector2(440.927002F, -31.4190006F), new Vector2(444.10199F, -36.2270012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - - - Shape tree root for layer: Shape Layer 3
+ // - - Offset:<416, 509>
+ CanvasGeometry Geometry_0004()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.BeginFigure(new Vector2(14.625F, -433.006989F));
+ builder.AddCubicBezier(new Vector2(14.625F, -433.006989F), new Vector2(6.5079999F, -411.559998F), new Vector2(-15.6359997F, -374.856995F));
+ builder.AddCubicBezier(new Vector2(-63.8619995F, -294.923004F), new Vector2(-131.690002F, -178.643005F), new Vector2(-114.246002F, 12.4989996F));
+ builder.AddCubicBezier(new Vector2(-96.1620026F, 210.658005F), new Vector2(22.6369991F, 335.742004F), new Vector2(140.007004F, 393.494995F));
+ builder.AddCubicBezier(new Vector2(155.653F, 401.192993F), new Vector2(167.559998F, 401.328003F), new Vector2(167.559998F, 401.328003F));
+ builder.EndFigure(CanvasFigureLoop.Open);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - - - Shape tree root for layer: Shape Layer 3
+ // - - Offset:<416, 509>
+ CanvasGeometry Geometry_0005()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.BeginFigure(new Vector2(0F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - - - Masks
+ // - - Layer: Shape Layer 3
+ CanvasGeometry Geometry_0006()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.BeginFigure(new Vector2(-123.046997F, 355.328003F));
+ builder.AddLine(new Vector2(167.559998F, 401.328003F));
+ builder.AddLine(new Vector2(14.1549997F, -119.635002F));
+ builder.AddLine(new Vector2(-44.5229988F, -318.907013F));
+ builder.AddLine(new Vector2(21.5599995F, -419F));
+ builder.AddLine(new Vector2(-107.386002F, -393.46701F));
+ builder.AddLine(new Vector2(-250.382996F, -174.955994F));
+ builder.AddLine(new Vector2(-123.046997F, 355.328003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Scale:1.23,1.23, Offset:<1464, 580>
+ CanvasGeometry Geometry_0007()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(232.832001F, -0.60799998F));
+ builder.AddCubicBezier(new Vector2(235.007996F, -1.48199999F), new Vector2(236.863998F, -2.83699989F), new Vector2(238.399994F, -4.67199993F));
+ builder.AddLine(new Vector2(232.960007F, -10.0480003F));
+ builder.AddCubicBezier(new Vector2(232.020996F, -8.98099995F), new Vector2(230.932999F, -8.18099976F), new Vector2(229.695999F, -7.64799976F));
+ builder.AddCubicBezier(new Vector2(228.457993F, -7.11399984F), new Vector2(227.093002F, -6.84800005F), new Vector2(225.600006F, -6.84800005F));
+ builder.AddCubicBezier(new Vector2(223.936005F, -6.84800005F), new Vector2(222.496002F, -7.19999981F), new Vector2(221.279999F, -7.90399981F));
+ builder.AddCubicBezier(new Vector2(220.063995F, -8.6079998F), new Vector2(219.125F, -9.62100029F), new Vector2(218.464005F, -10.9440002F));
+ builder.AddCubicBezier(new Vector2(217.802002F, -12.2659998F), new Vector2(217.472F, -13.8240004F), new Vector2(217.472F, -15.6160002F));
+ builder.AddCubicBezier(new Vector2(217.472F, -17.4080009F), new Vector2(217.781006F, -18.9440002F), new Vector2(218.399994F, -20.2240009F));
+ builder.AddCubicBezier(new Vector2(219.018005F, -21.5039997F), new Vector2(219.893005F, -22.5060005F), new Vector2(221.024002F, -23.2320004F));
+ builder.AddCubicBezier(new Vector2(222.154007F, -23.9570007F), new Vector2(223.488007F, -24.3199997F), new Vector2(225.024002F, -24.3199997F));
+ builder.AddCubicBezier(new Vector2(226.432007F, -24.3199997F), new Vector2(227.636993F, -24F), new Vector2(228.639999F, -23.3600006F));
+ builder.AddCubicBezier(new Vector2(229.641998F, -22.7199993F), new Vector2(230.399994F, -21.8129997F), new Vector2(230.912003F, -20.6399994F));
+ builder.AddCubicBezier(new Vector2(231.423996F, -19.4659996F), new Vector2(231.701004F, -18.0049992F), new Vector2(231.744003F, -16.2560005F));
+ builder.AddLine(new Vector2(235.968002F, -19.1359997F));
+ builder.AddLine(new Vector2(213.440002F, -19.0079994F));
+ builder.AddLine(new Vector2(213.440002F, -12.224F));
+ builder.AddLine(new Vector2(240.192001F, -12.3520002F));
+ builder.AddCubicBezier(new Vector2(240.404999F, -13.1199999F), new Vector2(240.544006F, -13.8129997F), new Vector2(240.608002F, -14.4320002F));
+ builder.AddCubicBezier(new Vector2(240.671997F, -15.0500002F), new Vector2(240.703995F, -15.658F), new Vector2(240.703995F, -16.2560005F));
+ builder.AddCubicBezier(new Vector2(240.703995F, -19.2849998F), new Vector2(240.020996F, -21.9729996F), new Vector2(238.656006F, -24.3199997F));
+ builder.AddCubicBezier(new Vector2(237.289993F, -26.6660004F), new Vector2(235.434006F, -28.5009995F), new Vector2(233.087997F, -29.8239994F));
+ builder.AddCubicBezier(new Vector2(230.740997F, -31.1459999F), new Vector2(228.009995F, -31.8080006F), new Vector2(224.895996F, -31.8080006F));
+ builder.AddCubicBezier(new Vector2(221.738007F, -31.8080006F), new Vector2(218.901001F, -31.1040001F), new Vector2(216.384003F, -29.6959991F));
+ builder.AddCubicBezier(new Vector2(213.865997F, -28.2880001F), new Vector2(211.882004F, -26.3570004F), new Vector2(210.432007F, -23.9039993F));
+ builder.AddCubicBezier(new Vector2(208.981003F, -21.4500008F), new Vector2(208.255997F, -18.6879997F), new Vector2(208.255997F, -15.6160002F));
+ builder.AddCubicBezier(new Vector2(208.255997F, -12.4580002F), new Vector2(209.001999F, -9.6420002F), new Vector2(210.496002F, -7.16800022F));
+ builder.AddCubicBezier(new Vector2(211.988998F, -4.69299984F), new Vector2(214.037003F, -2.76200008F), new Vector2(216.639999F, -1.37600005F));
+ builder.AddCubicBezier(new Vector2(219.242004F, 0.00999999978F), new Vector2(222.229004F, 0.703999996F), new Vector2(225.600006F, 0.703999996F));
+ builder.AddCubicBezier(new Vector2(228.244995F, 0.703999996F), new Vector2(230.656006F, 0.266000003F), new Vector2(232.832001F, -0.60799998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Scale:1.23,1.23, Offset:<1464, 580>
+ CanvasGeometry Geometry_0008()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(201.567993F, -1.88800001F));
+ builder.AddCubicBezier(new Vector2(203.850006F, -3.70099998F), new Vector2(204.992004F, -6.12200022F), new Vector2(204.992004F, -9.15200043F));
+ builder.AddCubicBezier(new Vector2(204.992004F, -11.1140003F), new Vector2(204.628998F, -12.7040005F), new Vector2(203.904007F, -13.9200001F));
+ builder.AddCubicBezier(new Vector2(203.177994F, -15.1359997F), new Vector2(202.240005F, -16.1170006F), new Vector2(201.087997F, -16.8640003F));
+ builder.AddCubicBezier(new Vector2(199.936005F, -17.6100006F), new Vector2(198.720001F, -18.1860008F), new Vector2(197.440002F, -18.5919991F));
+ builder.AddCubicBezier(new Vector2(196.160004F, -18.9969997F), new Vector2(194.953995F, -19.3490009F), new Vector2(193.824005F, -19.6480007F));
+ builder.AddCubicBezier(new Vector2(192.692993F, -19.9459991F), new Vector2(191.753998F, -20.2880001F), new Vector2(191.007996F, -20.6720009F));
+ builder.AddCubicBezier(new Vector2(190.261002F, -21.0559998F), new Vector2(189.888F, -21.5680008F), new Vector2(189.888F, -22.2080002F));
+ builder.AddCubicBezier(new Vector2(189.888F, -22.7619991F), new Vector2(190.164993F, -23.2099991F), new Vector2(190.720001F, -23.552F));
+ builder.AddCubicBezier(new Vector2(191.274002F, -23.8929996F), new Vector2(192.106003F, -24.0639992F), new Vector2(193.216003F, -24.0639992F));
+ builder.AddCubicBezier(new Vector2(194.367996F, -24.0639992F), new Vector2(195.552002F, -23.8180008F), new Vector2(196.768005F, -23.3279991F));
+ builder.AddCubicBezier(new Vector2(197.983994F, -22.8369999F), new Vector2(199.082001F, -22.0160007F), new Vector2(200.063995F, -20.8640003F));
+ builder.AddLine(new Vector2(205.632004F, -26.5599995F));
+ builder.AddCubicBezier(new Vector2(204.266006F, -28.3519993F), new Vector2(202.453003F, -29.7059994F), new Vector2(200.192001F, -30.6240005F));
+ builder.AddCubicBezier(new Vector2(197.929993F, -31.5410004F), new Vector2(195.498001F, -32F), new Vector2(192.895996F, -32F));
+ builder.AddCubicBezier(new Vector2(190.292999F, -32F), new Vector2(188.052994F, -31.573F), new Vector2(186.175995F, -30.7199993F));
+ builder.AddCubicBezier(new Vector2(184.298004F, -29.8659992F), new Vector2(182.848007F, -28.7040005F), new Vector2(181.824005F, -27.2320004F));
+ builder.AddCubicBezier(new Vector2(180.800003F, -25.7600002F), new Vector2(180.287994F, -24.0209999F), new Vector2(180.287994F, -22.0160007F));
+ builder.AddCubicBezier(new Vector2(180.287994F, -20.0960007F), new Vector2(180.649994F, -18.5380001F), new Vector2(181.376007F, -17.3439999F));
+ builder.AddCubicBezier(new Vector2(182.100998F, -16.1490002F), new Vector2(183.039993F, -15.21F), new Vector2(184.192001F, -14.5279999F));
+ builder.AddCubicBezier(new Vector2(185.343994F, -13.8450003F), new Vector2(186.559998F, -13.3009996F), new Vector2(187.839996F, -12.8959999F));
+ builder.AddCubicBezier(new Vector2(189.119995F, -12.4899998F), new Vector2(190.345993F, -12.1280003F), new Vector2(191.520004F, -11.8079996F));
+ builder.AddCubicBezier(new Vector2(192.692993F, -11.4879999F), new Vector2(193.641998F, -11.1459999F), new Vector2(194.367996F, -10.7840004F));
+ builder.AddCubicBezier(new Vector2(195.093002F, -10.4209995F), new Vector2(195.455994F, -9.85599995F), new Vector2(195.455994F, -9.0880003F));
+ builder.AddCubicBezier(new Vector2(195.455994F, -8.44799995F), new Vector2(195.145996F, -7.95699978F), new Vector2(194.528F, -7.61600018F));
+ builder.AddCubicBezier(new Vector2(193.908997F, -7.27400017F), new Vector2(193.065994F, -7.10400009F), new Vector2(192F, -7.10400009F));
+ builder.AddCubicBezier(new Vector2(190.292999F, -7.10400009F), new Vector2(188.746002F, -7.41300011F), new Vector2(187.360001F, -8.03199959F));
+ builder.AddCubicBezier(new Vector2(185.973007F, -8.64999962F), new Vector2(184.746002F, -9.51399994F), new Vector2(183.679993F, -10.6239996F));
+ builder.AddLine(new Vector2(178.048004F, -4.9920001F));
+ builder.AddCubicBezier(new Vector2(179.156998F, -3.83999991F), new Vector2(180.457993F, -2.82599998F), new Vector2(181.951996F, -1.95200002F));
+ builder.AddCubicBezier(new Vector2(183.445007F, -1.07700002F), new Vector2(185.087997F, -0.393999994F), new Vector2(186.880005F, 0.0960000008F));
+ builder.AddCubicBezier(new Vector2(188.671997F, 0.586000025F), new Vector2(190.485001F, 0.832000017F), new Vector2(192.320007F, 0.832000017F));
+ builder.AddCubicBezier(new Vector2(196.201996F, 0.832000017F), new Vector2(199.285004F, -0.074000001F), new Vector2(201.567993F, -1.88800001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Scale:1.23,1.23, Offset:<1464, 580>
+ CanvasGeometry Geometry_0009()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(155.488007F, -9.18400002F));
+ builder.AddCubicBezier(new Vector2(154.442001F, -9.80200005F), new Vector2(153.621002F, -10.6660004F), new Vector2(153.024002F, -11.776F));
+ builder.AddCubicBezier(new Vector2(152.425995F, -12.8850002F), new Vector2(152.128006F, -14.1440001F), new Vector2(152.128006F, -15.552F));
+ builder.AddCubicBezier(new Vector2(152.128006F, -16.9599991F), new Vector2(152.425995F, -18.2180004F), new Vector2(153.024002F, -19.3279991F));
+ builder.AddCubicBezier(new Vector2(153.621002F, -20.4370003F), new Vector2(154.442001F, -21.3010006F), new Vector2(155.488007F, -21.9200001F));
+ builder.AddCubicBezier(new Vector2(156.533005F, -22.5380001F), new Vector2(157.738007F, -22.8479996F), new Vector2(159.104004F, -22.8479996F));
+ builder.AddCubicBezier(new Vector2(160.468994F, -22.8479996F), new Vector2(161.664001F, -22.5380001F), new Vector2(162.688004F, -21.9200001F));
+ builder.AddCubicBezier(new Vector2(163.712006F, -21.3010006F), new Vector2(164.533005F, -20.4370003F), new Vector2(165.151993F, -19.3279991F));
+ builder.AddCubicBezier(new Vector2(165.770004F, -18.2180004F), new Vector2(166.080002F, -16.9599991F), new Vector2(166.080002F, -15.552F));
+ builder.AddCubicBezier(new Vector2(166.080002F, -14.1440001F), new Vector2(165.770004F, -12.8850002F), new Vector2(165.151993F, -11.776F));
+ builder.AddCubicBezier(new Vector2(164.533005F, -10.6660004F), new Vector2(163.701004F, -9.80200005F), new Vector2(162.656006F, -9.18400002F));
+ builder.AddCubicBezier(new Vector2(161.610001F, -8.56499958F), new Vector2(160.404999F, -8.25599957F), new Vector2(159.039993F, -8.25599957F));
+ builder.AddCubicBezier(new Vector2(157.716995F, -8.25599957F), new Vector2(156.533005F, -8.56499958F), new Vector2(155.488007F, -9.18400002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(152.576004F, 13.1199999F));
+ builder.AddLine(new Vector2(152.576004F, -8F));
+ builder.AddLine(new Vector2(151.104004F, -15.552F));
+ builder.AddLine(new Vector2(152.703995F, -23.1679993F));
+ builder.AddLine(new Vector2(152.703995F, -31.1040001F));
+ builder.AddLine(new Vector2(142.848007F, -31.1040001F));
+ builder.AddLine(new Vector2(142.848007F, 13.1199999F));
+ builder.AddLine(new Vector2(152.576004F, 13.1199999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(168.703995F, -1.50399995F));
+ builder.AddCubicBezier(new Vector2(171.007996F, -2.93300009F), new Vector2(172.809998F, -4.85300016F), new Vector2(174.112F, -7.26399994F));
+ builder.AddCubicBezier(new Vector2(175.412994F, -9.67399979F), new Vector2(176.063995F, -12.4370003F), new Vector2(176.063995F, -15.552F));
+ builder.AddCubicBezier(new Vector2(176.063995F, -18.6660004F), new Vector2(175.401993F, -21.4400005F), new Vector2(174.080002F, -23.8719997F));
+ builder.AddCubicBezier(new Vector2(172.757004F, -26.3040009F), new Vector2(170.953995F, -28.2240009F), new Vector2(168.671997F, -29.632F));
+ builder.AddCubicBezier(new Vector2(166.389008F, -31.0400009F), new Vector2(163.796997F, -31.7439995F), new Vector2(160.895996F, -31.7439995F));
+ builder.AddCubicBezier(new Vector2(158.804993F, -31.7439995F), new Vector2(156.884995F, -31.3169994F), new Vector2(155.136002F, -30.4640007F));
+ builder.AddCubicBezier(new Vector2(153.386002F, -29.6100006F), new Vector2(151.957001F, -28.448F), new Vector2(150.848007F, -26.9759998F));
+ builder.AddCubicBezier(new Vector2(149.738007F, -25.5039997F), new Vector2(149.098007F, -23.8290005F), new Vector2(148.927994F, -21.9519997F));
+ builder.AddLine(new Vector2(148.927994F, -8.83199978F));
+ builder.AddCubicBezier(new Vector2(149.098007F, -6.99700022F), new Vector2(149.727997F, -5.36499977F), new Vector2(150.815994F, -3.93600011F));
+ builder.AddCubicBezier(new Vector2(151.904007F, -2.50600004F), new Vector2(153.322006F, -1.38600004F), new Vector2(155.072006F, -0.575999975F));
+ builder.AddCubicBezier(new Vector2(156.820999F, 0.233999997F), new Vector2(158.761993F, 0.639999986F), new Vector2(160.895996F, 0.639999986F));
+ builder.AddCubicBezier(new Vector2(163.796997F, 0.639999986F), new Vector2(166.399994F, -0.074000001F), new Vector2(168.703995F, -1.50399995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Scale:1.23,1.23, Offset:<1464, 580>
+ CanvasGeometry Geometry_0010()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(136F, 0F));
+ builder.AddLine(new Vector2(136F, -31.1040001F));
+ builder.AddLine(new Vector2(126.335999F, -31.1040001F));
+ builder.AddLine(new Vector2(126.335999F, -23.4880009F));
+ builder.AddLine(new Vector2(127.807999F, -16F));
+ builder.AddLine(new Vector2(126.335999F, -8.38399982F));
+ builder.AddLine(new Vector2(126.335999F, 0F));
+ builder.AddLine(new Vector2(136F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(116.255997F, -9.18400002F));
+ builder.AddCubicBezier(new Vector2(115.209999F, -9.80200005F), new Vector2(114.377998F, -10.6660004F), new Vector2(113.760002F, -11.776F));
+ builder.AddCubicBezier(new Vector2(113.140999F, -12.8850002F), new Vector2(112.832001F, -14.1440001F), new Vector2(112.832001F, -15.552F));
+ builder.AddCubicBezier(new Vector2(112.832001F, -16.9599991F), new Vector2(113.140999F, -18.2180004F), new Vector2(113.760002F, -19.3279991F));
+ builder.AddCubicBezier(new Vector2(114.377998F, -20.4370003F), new Vector2(115.209999F, -21.3010006F), new Vector2(116.255997F, -21.9200001F));
+ builder.AddCubicBezier(new Vector2(117.301003F, -22.5380001F), new Vector2(118.485001F, -22.8479996F), new Vector2(119.807999F, -22.8479996F));
+ builder.AddCubicBezier(new Vector2(121.172997F, -22.8479996F), new Vector2(122.389F, -22.5380001F), new Vector2(123.456001F, -21.9200001F));
+ builder.AddCubicBezier(new Vector2(124.522003F, -21.3010006F), new Vector2(125.333F, -20.448F), new Vector2(125.888F, -19.3600006F));
+ builder.AddCubicBezier(new Vector2(126.442001F, -18.2719994F), new Vector2(126.720001F, -17.0240002F), new Vector2(126.720001F, -15.6160002F));
+ builder.AddCubicBezier(new Vector2(126.720001F, -13.4399996F), new Vector2(126.089996F, -11.6689997F), new Vector2(124.832001F, -10.3039999F));
+ builder.AddCubicBezier(new Vector2(123.572998F, -8.93799973F), new Vector2(121.898003F, -8.25599957F), new Vector2(119.807999F, -8.25599957F));
+ builder.AddCubicBezier(new Vector2(118.485001F, -8.25599957F), new Vector2(117.301003F, -8.56499958F), new Vector2(116.255997F, -9.18400002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(123.487999F, -0.575999975F));
+ builder.AddCubicBezier(new Vector2(125.172997F, -1.38600004F), new Vector2(126.538002F, -2.50600004F), new Vector2(127.584F, -3.93600011F));
+ builder.AddCubicBezier(new Vector2(128.628998F, -5.36499977F), new Vector2(129.216003F, -6.99700022F), new Vector2(129.343994F, -8.83199978F));
+ builder.AddLine(new Vector2(129.343994F, -22.2719994F));
+ builder.AddCubicBezier(new Vector2(129.216003F, -24.1060009F), new Vector2(128.617996F, -25.7380009F), new Vector2(127.552002F, -27.1679993F));
+ builder.AddCubicBezier(new Vector2(126.485001F, -28.5970001F), new Vector2(125.109001F, -29.7169991F), new Vector2(123.424004F, -30.5279999F));
+ builder.AddCubicBezier(new Vector2(121.737999F, -31.3379993F), new Vector2(119.849998F, -31.7439995F), new Vector2(117.760002F, -31.7439995F));
+ builder.AddCubicBezier(new Vector2(114.901001F, -31.7439995F), new Vector2(112.351997F, -31.0499992F), new Vector2(110.112F, -29.6639996F));
+ builder.AddCubicBezier(new Vector2(107.872002F, -28.2770004F), new Vector2(106.100998F, -26.3570004F), new Vector2(104.800003F, -23.9039993F));
+ builder.AddCubicBezier(new Vector2(103.498001F, -21.4500008F), new Vector2(102.848F, -18.6660004F), new Vector2(102.848F, -15.552F));
+ builder.AddCubicBezier(new Vector2(102.848F, -12.4370003F), new Vector2(103.498001F, -9.67399979F), new Vector2(104.800003F, -7.26399994F));
+ builder.AddCubicBezier(new Vector2(106.100998F, -4.85300016F), new Vector2(107.882004F, -2.93300009F), new Vector2(110.143997F, -1.50399995F));
+ builder.AddCubicBezier(new Vector2(112.404999F, -0.074000001F), new Vector2(114.944F, 0.639999986F), new Vector2(117.760002F, 0.639999986F));
+ builder.AddCubicBezier(new Vector2(119.892998F, 0.639999986F), new Vector2(121.802002F, 0.233999997F), new Vector2(123.487999F, -0.575999975F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Scale:1.23,1.23, Offset:<1464, 580>
+ CanvasGeometry Geometry_0011()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(97.8560028F, 0F));
+ builder.AddLine(new Vector2(97.8560028F, -46.4640007F));
+ builder.AddLine(new Vector2(88F, -46.4640007F));
+ builder.AddLine(new Vector2(88F, 0F));
+ builder.AddLine(new Vector2(97.8560028F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Scale:1.23,1.23, Offset:<1464, 580>
+ CanvasGeometry Geometry_0012()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(81.0879974F, 0F));
+ builder.AddLine(new Vector2(81.0879974F, -46.4640007F));
+ builder.AddLine(new Vector2(71.2320023F, -46.4640007F));
+ builder.AddLine(new Vector2(71.2320023F, 0F));
+ builder.AddLine(new Vector2(81.0879974F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Scale:1.23,1.23, Offset:<1464, 580>
+ CanvasGeometry Geometry_0013()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(45.7599983F, -9.15200043F));
+ builder.AddCubicBezier(new Vector2(44.6930008F, -9.7489996F), new Vector2(43.8610001F, -10.6129999F), new Vector2(43.2639999F, -11.7440004F));
+ builder.AddCubicBezier(new Vector2(42.6660004F, -12.8739996F), new Vector2(42.368F, -14.165F), new Vector2(42.368F, -15.6160002F));
+ builder.AddCubicBezier(new Vector2(42.368F, -16.9810009F), new Vector2(42.6660004F, -18.2180004F), new Vector2(43.2639999F, -19.3279991F));
+ builder.AddCubicBezier(new Vector2(43.8610001F, -20.4370003F), new Vector2(44.6930008F, -21.3010006F), new Vector2(45.7599983F, -21.9200001F));
+ builder.AddCubicBezier(new Vector2(46.8260002F, -22.5380001F), new Vector2(48.0419998F, -22.8479996F), new Vector2(49.4080009F, -22.8479996F));
+ builder.AddCubicBezier(new Vector2(50.7729988F, -22.8479996F), new Vector2(51.9780006F, -22.5380001F), new Vector2(53.0239983F, -21.9200001F));
+ builder.AddCubicBezier(new Vector2(54.0690002F, -21.3010006F), new Vector2(54.8899994F, -20.448F), new Vector2(55.487999F, -19.3600006F));
+ builder.AddCubicBezier(new Vector2(56.0849991F, -18.2719994F), new Vector2(56.3839989F, -17.0240002F), new Vector2(56.3839989F, -15.6160002F));
+ builder.AddCubicBezier(new Vector2(56.3839989F, -14.165F), new Vector2(56.0960007F, -12.8739996F), new Vector2(55.5200005F, -11.7440004F));
+ builder.AddCubicBezier(new Vector2(54.9440002F, -10.6129999F), new Vector2(54.1220016F, -9.7489996F), new Vector2(53.0559998F, -9.15200043F));
+ builder.AddCubicBezier(new Vector2(51.9889984F, -8.5539999F), new Vector2(50.7729988F, -8.25599957F), new Vector2(49.4080009F, -8.25599957F));
+ builder.AddCubicBezier(new Vector2(48.0419998F, -8.25599957F), new Vector2(46.8260002F, -8.5539999F), new Vector2(45.7599983F, -9.15200043F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(58.1119995F, -1.472F));
+ builder.AddCubicBezier(new Vector2(60.6720009F, -2.92199993F), new Vector2(62.6980019F, -4.87400007F), new Vector2(64.1920013F, -7.32800007F));
+ builder.AddCubicBezier(new Vector2(65.6849976F, -9.78100014F), new Vector2(66.4319992F, -12.5649996F), new Vector2(66.4319992F, -15.6800003F));
+ builder.AddCubicBezier(new Vector2(66.4319992F, -18.7089996F), new Vector2(65.6849976F, -21.4500008F), new Vector2(64.1920013F, -23.9039993F));
+ builder.AddCubicBezier(new Vector2(62.6980019F, -26.3570004F), new Vector2(60.6609993F, -28.2880001F), new Vector2(58.0800018F, -29.6959991F));
+ builder.AddCubicBezier(new Vector2(55.4980011F, -31.1040001F), new Vector2(52.6080017F, -31.8080006F), new Vector2(49.4080009F, -31.8080006F));
+ builder.AddCubicBezier(new Vector2(46.1220016F, -31.8080006F), new Vector2(43.2000008F, -31.0930004F), new Vector2(40.6399994F, -29.6639996F));
+ builder.AddCubicBezier(new Vector2(38.0800018F, -28.2339993F), new Vector2(36.0639992F, -26.3040009F), new Vector2(34.5919991F, -23.8719997F));
+ builder.AddCubicBezier(new Vector2(33.1199989F, -21.4400005F), new Vector2(32.3839989F, -18.7089996F), new Vector2(32.3839989F, -15.6800003F));
+ builder.AddCubicBezier(new Vector2(32.3839989F, -12.6079998F), new Vector2(33.1300011F, -9.83399963F), new Vector2(34.6240005F, -7.36000013F));
+ builder.AddCubicBezier(new Vector2(36.1170006F, -4.88500023F), new Vector2(38.144001F, -2.92199993F), new Vector2(40.7039986F, -1.472F));
+ builder.AddCubicBezier(new Vector2(43.2639999F, -0.0209999997F), new Vector2(46.1650009F, 0.703999996F), new Vector2(49.4080009F, 0.703999996F));
+ builder.AddCubicBezier(new Vector2(52.6500015F, 0.703999996F), new Vector2(55.5519981F, -0.0209999997F), new Vector2(58.1119995F, -1.472F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Scale:1.23,1.23, Offset:<1464, 580>
+ CanvasGeometry Geometry_0014()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(25.3759995F, -0.60799998F));
+ builder.AddCubicBezier(new Vector2(27.4020004F, -1.48199999F), new Vector2(29.2479992F, -2.773F), new Vector2(30.9120007F, -4.48000002F));
+ builder.AddLine(new Vector2(24.5760002F, -10.7519999F));
+ builder.AddCubicBezier(new Vector2(23.8500004F, -9.94099998F), new Vector2(22.9860001F, -9.32199955F), new Vector2(21.9839993F, -8.89599991F));
+ builder.AddCubicBezier(new Vector2(20.9810009F, -8.46899986F), new Vector2(19.8400002F, -8.25599957F), new Vector2(18.5599995F, -8.25599957F));
+ builder.AddCubicBezier(new Vector2(17.2369995F, -8.25599957F), new Vector2(16.0209999F, -8.56499958F), new Vector2(14.9119997F, -9.18400002F));
+ builder.AddCubicBezier(new Vector2(13.802F, -9.80200005F), new Vector2(12.9379997F, -10.6660004F), new Vector2(12.3199997F, -11.776F));
+ builder.AddCubicBezier(new Vector2(11.7010002F, -12.8850002F), new Vector2(11.3920002F, -14.165F), new Vector2(11.3920002F, -15.6160002F));
+ builder.AddCubicBezier(new Vector2(11.3920002F, -17.0240002F), new Vector2(11.7010002F, -18.2719994F), new Vector2(12.3199997F, -19.3600006F));
+ builder.AddCubicBezier(new Vector2(12.9379997F, -20.448F), new Vector2(13.7919998F, -21.3010006F), new Vector2(14.8800001F, -21.9200001F));
+ builder.AddCubicBezier(new Vector2(15.9680004F, -22.5380001F), new Vector2(17.1940002F, -22.8479996F), new Vector2(18.5599995F, -22.8479996F));
+ builder.AddCubicBezier(new Vector2(19.7970009F, -22.8479996F), new Vector2(20.8959999F, -22.6560001F), new Vector2(21.8560009F, -22.2719994F));
+ builder.AddCubicBezier(new Vector2(22.816F, -21.8880005F), new Vector2(23.6580009F, -21.2900009F), new Vector2(24.3840008F, -20.4799995F));
+ builder.AddLine(new Vector2(30.7199993F, -26.8799992F));
+ builder.AddCubicBezier(new Vector2(29.1410007F, -28.5009995F), new Vector2(27.3379993F, -29.7280006F), new Vector2(25.3120003F, -30.5599995F));
+ builder.AddCubicBezier(new Vector2(23.2849998F, -31.3920002F), new Vector2(21.0340004F, -31.8080006F), new Vector2(18.5599995F, -31.8080006F));
+ builder.AddCubicBezier(new Vector2(15.3170004F, -31.8080006F), new Vector2(12.3940001F, -31.1040001F), new Vector2(9.79199982F, -29.6959991F));
+ builder.AddCubicBezier(new Vector2(7.18900013F, -28.2880001F), new Vector2(5.14099979F, -26.3570004F), new Vector2(3.648F, -23.9039993F));
+ builder.AddCubicBezier(new Vector2(2.15400004F, -21.4500008F), new Vector2(1.40799999F, -18.6660004F), new Vector2(1.40799999F, -15.552F));
+ builder.AddCubicBezier(new Vector2(1.40799999F, -12.4799995F), new Vector2(2.14400005F, -9.70600033F), new Vector2(3.61599994F, -7.23199987F));
+ builder.AddCubicBezier(new Vector2(5.08799982F, -4.75699997F), new Vector2(7.125F, -2.81599998F), new Vector2(9.72799969F, -1.40799999F));
+ builder.AddCubicBezier(new Vector2(12.3299999F, 0F), new Vector2(15.2530003F, 0.703999996F), new Vector2(18.4960003F, 0.703999996F));
+ builder.AddCubicBezier(new Vector2(21.0559998F, 0.703999996F), new Vector2(23.3490009F, 0.266000003F), new Vector2(25.3759995F, -0.60799998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers Outlines
+ // - - ShapeGroup: s
+ CanvasGeometry Geometry_0015()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(510.881012F, -3.62800002F));
+ builder.AddCubicBezier(new Vector2(515.267029F, -7.11199999F), new Vector2(517.460999F, -11.7659998F), new Vector2(517.460999F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(517.460999F, -21.3600006F), new Vector2(516.763F, -24.4160004F), new Vector2(515.369995F, -26.7530003F));
+ builder.AddCubicBezier(new Vector2(513.974976F, -29.0900002F), new Vector2(512.171997F, -30.9750004F), new Vector2(509.958008F, -32.4109993F));
+ builder.AddCubicBezier(new Vector2(507.743988F, -33.8450012F), new Vector2(505.407013F, -34.9519997F), new Vector2(502.946991F, -35.7319984F));
+ builder.AddCubicBezier(new Vector2(500.487F, -36.5099983F), new Vector2(498.170013F, -37.1860008F), new Vector2(495.997986F, -37.7610016F));
+ builder.AddCubicBezier(new Vector2(493.824005F, -38.3339996F), new Vector2(492.019989F, -38.9910011F), new Vector2(490.585999F, -39.7290001F));
+ builder.AddCubicBezier(new Vector2(489.149994F, -40.4669991F), new Vector2(488.433014F, -41.4510002F), new Vector2(488.433014F, -42.6809998F));
+ builder.AddCubicBezier(new Vector2(488.433014F, -43.7459984F), new Vector2(488.964996F, -44.6069984F), new Vector2(490.032013F, -45.2639999F));
+ builder.AddCubicBezier(new Vector2(491.096985F, -45.9189987F), new Vector2(492.696014F, -46.2480011F), new Vector2(494.82901F, -46.2480011F));
+ builder.AddCubicBezier(new Vector2(497.042999F, -46.2480011F), new Vector2(499.319F, -45.776001F), new Vector2(501.656006F, -44.8339996F));
+ builder.AddCubicBezier(new Vector2(503.993011F, -43.8899994F), new Vector2(506.102997F, -42.3120003F), new Vector2(507.98999F, -40.0979996F));
+ builder.AddLine(new Vector2(518.690979F, -51.0449982F));
+ builder.AddCubicBezier(new Vector2(516.065979F, -54.4889984F), new Vector2(512.580994F, -57.0909996F), new Vector2(508.235992F, -58.8549995F));
+ builder.AddCubicBezier(new Vector2(503.889008F, -60.6170006F), new Vector2(499.214996F, -61.5F), new Vector2(494.213989F, -61.5F));
+ builder.AddCubicBezier(new Vector2(489.210999F, -61.5F), new Vector2(484.906006F, -60.6790009F), new Vector2(481.299011F, -59.0400009F));
+ builder.AddCubicBezier(new Vector2(477.690002F, -57.3989983F), new Vector2(474.903015F, -55.1660004F), new Vector2(472.934998F, -52.3370018F));
+ builder.AddCubicBezier(new Vector2(470.96701F, -49.5079994F), new Vector2(469.983002F, -46.1650009F), new Vector2(469.983002F, -42.3120003F));
+ builder.AddCubicBezier(new Vector2(469.983002F, -38.6220016F), new Vector2(470.678986F, -35.6279984F), new Vector2(472.074005F, -33.3330002F));
+ builder.AddCubicBezier(new Vector2(473.46701F, -31.0359993F), new Vector2(475.272003F, -29.2320004F), new Vector2(477.485992F, -27.9209995F));
+ builder.AddCubicBezier(new Vector2(479.700012F, -26.6079998F), new Vector2(482.036987F, -25.5629997F), new Vector2(484.497009F, -24.7849998F));
+ builder.AddCubicBezier(new Vector2(486.957001F, -24.0049992F), new Vector2(489.313995F, -23.3080006F), new Vector2(491.570007F, -22.6930008F));
+ builder.AddCubicBezier(new Vector2(493.824005F, -22.0779991F), new Vector2(495.64801F, -21.4209995F), new Vector2(497.042999F, -20.7250004F));
+ builder.AddCubicBezier(new Vector2(498.436005F, -20.0270004F), new Vector2(499.134003F, -18.9419994F), new Vector2(499.134003F, -17.4659996F));
+ builder.AddCubicBezier(new Vector2(499.134003F, -16.2360001F), new Vector2(498.539001F, -15.2919998F), new Vector2(497.351013F, -14.6370001F));
+ builder.AddCubicBezier(new Vector2(496.161011F, -13.9799995F), new Vector2(494.540985F, -13.6529999F), new Vector2(492.492004F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(489.210999F, -13.6529999F), new Vector2(486.239014F, -14.2469997F), new Vector2(483.575012F, -15.4370003F));
+ builder.AddCubicBezier(new Vector2(480.908997F, -16.625F), new Vector2(478.550995F, -18.2849998F), new Vector2(476.502014F, -20.4179993F));
+ builder.AddLine(new Vector2(465.678009F, -9.59399986F));
+ builder.AddCubicBezier(new Vector2(467.80899F, -7.38000011F), new Vector2(470.309998F, -5.43100023F), new Vector2(473.181F, -3.75099993F));
+ builder.AddCubicBezier(new Vector2(476.049988F, -2.06900001F), new Vector2(479.208008F, -0.758000016F), new Vector2(482.652008F, 0.184F));
+ builder.AddCubicBezier(new Vector2(486.096008F, 1.12600005F), new Vector2(489.579987F, 1.59899998F), new Vector2(493.106995F, 1.59899998F));
+ builder.AddCubicBezier(new Vector2(500.567993F, 1.59899998F), new Vector2(506.493011F, -0.142000005F), new Vector2(510.881012F, -3.62800002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers Outlines
+ // - - ShapeGroup: s
+ CanvasGeometry Geometry_0016()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(441.755005F, -41.3899994F));
+ builder.AddCubicBezier(new Vector2(443.600006F, -43.3160019F), new Vector2(446.121002F, -44.2799988F), new Vector2(449.319F, -44.2799988F));
+ builder.AddCubicBezier(new Vector2(450.876007F, -44.2799988F), new Vector2(452.270996F, -44.0340004F), new Vector2(453.501007F, -43.5419998F));
+ builder.AddCubicBezier(new Vector2(454.730988F, -43.0499992F), new Vector2(455.714996F, -42.3930016F), new Vector2(456.453003F, -41.5740013F));
+ builder.AddLine(new Vector2(467.645996F, -55.8419991F));
+ builder.AddCubicBezier(new Vector2(466.005005F, -57.5639992F), new Vector2(464.098999F, -58.855999F), new Vector2(461.927002F, -59.7169991F));
+ builder.AddCubicBezier(new Vector2(459.752991F, -60.5779991F), new Vector2(457.230988F, -61.0079994F), new Vector2(454.362F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(447.882996F, -61.0079994F), new Vector2(442.778015F, -59.0800018F), new Vector2(439.048004F, -55.2270012F));
+ builder.AddCubicBezier(new Vector2(435.31601F, -51.3720016F), new Vector2(432.671997F, -45.9189987F), new Vector2(431.11499F, -38.868F));
+ builder.AddLine(new Vector2(438.987F, -32.7179985F));
+ builder.AddCubicBezier(new Vector2(438.987F, -36.5709991F), new Vector2(439.910004F, -39.4620018F), new Vector2(441.755005F, -41.3899994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(438.987F, 0F));
+ builder.AddLine(new Vector2(438.987F, -59.7779999F));
+ builder.AddLine(new Vector2(420.045013F, -59.7779999F));
+ builder.AddLine(new Vector2(420.045013F, 0F));
+ builder.AddLine(new Vector2(438.987F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers Outlines
+ // - - ShapeGroup: s
+ CanvasGeometry Geometry_0017()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(396.059998F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(400.242004F, -2.84899998F), new Vector2(403.80899F, -5.45200014F), new Vector2(406.760986F, -8.97900009F));
+ builder.AddLine(new Vector2(396.306F, -19.3110008F));
+ builder.AddCubicBezier(new Vector2(394.501007F, -17.2600002F), new Vector2(392.410004F, -15.7229996F), new Vector2(390.03299F, -14.6990004F));
+ builder.AddCubicBezier(new Vector2(387.653992F, -13.6730003F), new Vector2(385.029999F, -13.1610003F), new Vector2(382.161011F, -13.1610003F));
+ builder.AddCubicBezier(new Vector2(378.963013F, -13.1610003F), new Vector2(376.196014F, -13.8380003F), new Vector2(373.859009F, -15.191F));
+ builder.AddCubicBezier(new Vector2(371.522003F, -16.5440006F), new Vector2(369.71701F, -18.4899998F), new Vector2(368.446991F, -21.0330009F));
+ builder.AddCubicBezier(new Vector2(367.174988F, -23.5739994F), new Vector2(366.540009F, -26.5680008F), new Vector2(366.540009F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(366.540009F, -33.4560013F), new Vector2(367.134003F, -36.4080009F), new Vector2(368.324005F, -38.868F));
+ builder.AddCubicBezier(new Vector2(369.511993F, -41.3279991F), new Vector2(371.192993F, -43.2540016F), new Vector2(373.367004F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(375.539001F, -46.0419998F), new Vector2(378.10199F, -46.7400017F), new Vector2(381.053986F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(383.76001F, -46.7400017F), new Vector2(386.075989F, -46.125F), new Vector2(388.003998F, -44.8950005F));
+ builder.AddCubicBezier(new Vector2(389.929993F, -43.6650009F), new Vector2(391.385986F, -41.9220009F), new Vector2(392.369995F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(393.354004F, -37.4119987F), new Vector2(393.885986F, -34.6030006F), new Vector2(393.968994F, -31.2420006F));
+ builder.AddLine(new Vector2(402.087006F, -36.7770004F));
+ builder.AddLine(new Vector2(358.790985F, -36.5309982F));
+ builder.AddLine(new Vector2(358.790985F, -23.493F));
+ builder.AddLine(new Vector2(410.204987F, -23.7390003F));
+ builder.AddCubicBezier(new Vector2(410.614014F, -25.2150002F), new Vector2(410.881989F, -26.5459995F), new Vector2(411.005005F, -27.7360001F));
+ builder.AddCubicBezier(new Vector2(411.127991F, -28.9239998F), new Vector2(411.188995F, -30.0930004F), new Vector2(411.188995F, -31.2420006F));
+ builder.AddCubicBezier(new Vector2(411.188995F, -37.0629997F), new Vector2(409.876007F, -42.2290001F), new Vector2(407.252991F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(404.627991F, -51.2490005F), new Vector2(401.061005F, -54.7750015F), new Vector2(396.552002F, -57.3180008F));
+ builder.AddCubicBezier(new Vector2(392.040985F, -59.8590012F), new Vector2(386.792999F, -61.1310005F), new Vector2(380.808014F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(374.739014F, -61.1310005F), new Vector2(369.286011F, -59.7779999F), new Vector2(364.449005F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(359.609985F, -54.3660011F), new Vector2(355.796997F, -50.6549988F), new Vector2(353.01001F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(350.221008F, -41.2249985F), new Vector2(348.828003F, -35.9160004F), new Vector2(348.828003F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(348.828003F, -23.9430008F), new Vector2(350.261993F, -18.5310001F), new Vector2(353.132996F, -13.776F));
+ builder.AddCubicBezier(new Vector2(356.002014F, -9.01900005F), new Vector2(359.937988F, -5.30900002F), new Vector2(364.94101F, -2.64499998F));
+ builder.AddCubicBezier(new Vector2(369.941986F, 0.0189999994F), new Vector2(375.682007F, 1.35300004F), new Vector2(382.161011F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(387.243988F, 1.35300004F), new Vector2(391.877991F, 0.510999978F), new Vector2(396.059998F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers Outlines
+ // - - ShapeGroup: s
+ CanvasGeometry Geometry_0018()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(345.752991F, -43.6650009F));
+ builder.AddLine(new Vector2(345.752991F, -59.7779999F));
+ builder.AddLine(new Vector2(299.873993F, -59.7779999F));
+ builder.AddLine(new Vector2(299.873993F, -43.6650009F));
+ builder.AddLine(new Vector2(345.752991F, -43.6650009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(332.222992F, 0F));
+ builder.AddLine(new Vector2(332.222992F, -84.5009995F));
+ builder.AddLine(new Vector2(313.281006F, -84.5009995F));
+ builder.AddLine(new Vector2(313.281006F, 0F));
+ builder.AddLine(new Vector2(332.222992F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers Outlines
+ // - - ShapeGroup: s
+ CanvasGeometry Geometry_0019()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(288.127991F, -3.62800002F));
+ builder.AddCubicBezier(new Vector2(292.514008F, -7.11199999F), new Vector2(294.708008F, -11.7659998F), new Vector2(294.708008F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(294.708008F, -21.3600006F), new Vector2(294.01001F, -24.4160004F), new Vector2(292.617004F, -26.7530003F));
+ builder.AddCubicBezier(new Vector2(291.221985F, -29.0900002F), new Vector2(289.419006F, -30.9750004F), new Vector2(287.204987F, -32.4109993F));
+ builder.AddCubicBezier(new Vector2(284.990997F, -33.8450012F), new Vector2(282.653992F, -34.9519997F), new Vector2(280.194F, -35.7319984F));
+ builder.AddCubicBezier(new Vector2(277.734009F, -36.5099983F), new Vector2(275.416992F, -37.1860008F), new Vector2(273.244995F, -37.7610016F));
+ builder.AddCubicBezier(new Vector2(271.071014F, -38.3339996F), new Vector2(269.266998F, -38.9910011F), new Vector2(267.833008F, -39.7290001F));
+ builder.AddCubicBezier(new Vector2(266.397003F, -40.4669991F), new Vector2(265.679993F, -41.4510002F), new Vector2(265.679993F, -42.6809998F));
+ builder.AddCubicBezier(new Vector2(265.679993F, -43.7459984F), new Vector2(266.212006F, -44.6069984F), new Vector2(267.278992F, -45.2639999F));
+ builder.AddCubicBezier(new Vector2(268.343994F, -45.9189987F), new Vector2(269.942993F, -46.2480011F), new Vector2(272.075989F, -46.2480011F));
+ builder.AddCubicBezier(new Vector2(274.290009F, -46.2480011F), new Vector2(276.565002F, -45.776001F), new Vector2(278.902008F, -44.8339996F));
+ builder.AddCubicBezier(new Vector2(281.239014F, -43.8899994F), new Vector2(283.350006F, -42.3120003F), new Vector2(285.237F, -40.0979996F));
+ builder.AddLine(new Vector2(295.937988F, -51.0449982F));
+ builder.AddCubicBezier(new Vector2(293.312988F, -54.4889984F), new Vector2(289.828003F, -57.0909996F), new Vector2(285.483002F, -58.8549995F));
+ builder.AddCubicBezier(new Vector2(281.135986F, -60.6170006F), new Vector2(276.462006F, -61.5F), new Vector2(271.460999F, -61.5F));
+ builder.AddCubicBezier(new Vector2(266.458008F, -61.5F), new Vector2(262.153015F, -60.6790009F), new Vector2(258.54599F, -59.0400009F));
+ builder.AddCubicBezier(new Vector2(254.936996F, -57.3989983F), new Vector2(252.149994F, -55.1660004F), new Vector2(250.182007F, -52.3370018F));
+ builder.AddCubicBezier(new Vector2(248.214005F, -49.5079994F), new Vector2(247.229996F, -46.1650009F), new Vector2(247.229996F, -42.3120003F));
+ builder.AddCubicBezier(new Vector2(247.229996F, -38.6220016F), new Vector2(247.925995F, -35.6279984F), new Vector2(249.320999F, -33.3330002F));
+ builder.AddCubicBezier(new Vector2(250.714005F, -31.0359993F), new Vector2(252.518997F, -29.2320004F), new Vector2(254.733002F, -27.9209995F));
+ builder.AddCubicBezier(new Vector2(256.946991F, -26.6079998F), new Vector2(259.283997F, -25.5629997F), new Vector2(261.743988F, -24.7849998F));
+ builder.AddCubicBezier(new Vector2(264.20401F, -24.0049992F), new Vector2(266.559998F, -23.3080006F), new Vector2(268.81601F, -22.6930008F));
+ builder.AddCubicBezier(new Vector2(271.070007F, -22.0779991F), new Vector2(272.894989F, -21.4209995F), new Vector2(274.290009F, -20.7250004F));
+ builder.AddCubicBezier(new Vector2(275.683014F, -20.0270004F), new Vector2(276.381012F, -18.9419994F), new Vector2(276.381012F, -17.4659996F));
+ builder.AddCubicBezier(new Vector2(276.381012F, -16.2360001F), new Vector2(275.786011F, -15.2919998F), new Vector2(274.597992F, -14.6370001F));
+ builder.AddCubicBezier(new Vector2(273.40799F, -13.9799995F), new Vector2(271.787994F, -13.6529999F), new Vector2(269.739014F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(266.458008F, -13.6529999F), new Vector2(263.485992F, -14.2469997F), new Vector2(260.821991F, -15.4370003F));
+ builder.AddCubicBezier(new Vector2(258.156006F, -16.625F), new Vector2(255.798004F, -18.2849998F), new Vector2(253.748993F, -20.4179993F));
+ builder.AddLine(new Vector2(242.925003F, -9.59399986F));
+ builder.AddCubicBezier(new Vector2(245.056F, -7.38000011F), new Vector2(247.557007F, -5.43100023F), new Vector2(250.427994F, -3.75099993F));
+ builder.AddCubicBezier(new Vector2(253.296997F, -2.06900001F), new Vector2(256.454987F, -0.758000016F), new Vector2(259.898987F, 0.184F));
+ builder.AddCubicBezier(new Vector2(263.342987F, 1.12600005F), new Vector2(266.826996F, 1.59899998F), new Vector2(270.354004F, 1.59899998F));
+ builder.AddCubicBezier(new Vector2(277.815002F, 1.59899998F), new Vector2(283.73999F, -0.142000005F), new Vector2(288.127991F, -3.62800002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers Outlines
+ // - - ShapeGroup: s
+ CanvasGeometry Geometry_0020()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(233.270004F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(235.115005F, -73.0199966F), new Vector2(236.037003F, -75.4800034F), new Vector2(236.037003F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(236.037003F, -81.3030014F), new Vector2(235.115005F, -83.7630005F), new Vector2(233.270004F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(231.425003F, -87.6989975F), new Vector2(228.983994F, -88.6829987F), new Vector2(225.951004F, -88.6829987F));
+ builder.AddCubicBezier(new Vector2(223.080002F, -88.6829987F), new Vector2(220.662003F, -87.6989975F), new Vector2(218.694F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(216.725998F, -83.7630005F), new Vector2(215.742004F, -81.3030014F), new Vector2(215.742004F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(215.742004F, -75.4800034F), new Vector2(216.725998F, -73.0199966F), new Vector2(218.694F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(220.662003F, -68.9199982F), new Vector2(223.080002F, -67.8960037F), new Vector2(225.951004F, -67.8960037F));
+ builder.AddCubicBezier(new Vector2(228.983994F, -67.8960037F), new Vector2(231.425003F, -68.9199982F), new Vector2(233.270004F, -70.9710007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(235.421997F, 0F));
+ builder.AddLine(new Vector2(235.421997F, -59.7779999F));
+ builder.AddLine(new Vector2(216.479996F, -59.7779999F));
+ builder.AddLine(new Vector2(216.479996F, 0F));
+ builder.AddLine(new Vector2(235.421997F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers Outlines
+ // - - ShapeGroup: s
+ CanvasGeometry Geometry_0021()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(164.942993F, 0F));
+ builder.AddLine(new Vector2(164.942993F, -59.7779999F));
+ builder.AddLine(new Vector2(146.001007F, -59.7779999F));
+ builder.AddLine(new Vector2(146.001007F, 0F));
+ builder.AddLine(new Vector2(164.942993F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(204.548996F, 0F));
+ builder.AddLine(new Vector2(204.548996F, -38.2529984F));
+ builder.AddCubicBezier(new Vector2(204.548996F, -42.3520012F), new Vector2(203.565002F, -46.1450005F), new Vector2(201.597F, -49.6310005F));
+ builder.AddCubicBezier(new Vector2(199.628998F, -53.1150017F), new Vector2(196.923004F, -55.882F), new Vector2(193.479004F, -57.9329987F));
+ builder.AddCubicBezier(new Vector2(190.035004F, -59.9819984F), new Vector2(186.139008F, -61.0079994F), new Vector2(181.794006F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(177.201004F, -61.0079994F), new Vector2(173.080994F, -60.0439987F), new Vector2(169.432999F, -58.118F));
+ builder.AddCubicBezier(new Vector2(165.783005F, -56.1899986F), new Vector2(162.914001F, -53.4630013F), new Vector2(160.822998F, -49.9379997F));
+ builder.AddCubicBezier(new Vector2(158.731995F, -46.4109993F), new Vector2(157.686005F, -42.3120003F), new Vector2(157.686005F, -37.6380005F));
+ builder.AddLine(new Vector2(164.942993F, -34.0709991F));
+ builder.AddCubicBezier(new Vector2(164.942993F, -36.1199989F), new Vector2(165.393005F, -37.9239998F), new Vector2(166.296005F, -39.4830017F));
+ builder.AddCubicBezier(new Vector2(167.197006F, -41.0400009F), new Vector2(168.427002F, -42.2509995F), new Vector2(169.985992F, -43.1119995F));
+ builder.AddCubicBezier(new Vector2(171.542999F, -43.9729996F), new Vector2(173.307007F, -44.4029999F), new Vector2(175.274994F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(178.227005F, -44.4029999F), new Vector2(180.686996F, -43.4379997F), new Vector2(182.654999F, -41.512001F));
+ builder.AddCubicBezier(new Vector2(184.623001F, -39.5839996F), new Vector2(185.606995F, -37.1040001F), new Vector2(185.606995F, -34.0709991F));
+ builder.AddLine(new Vector2(185.606995F, 0F));
+ builder.AddLine(new Vector2(204.548996F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers Outlines
+ // - - ShapeGroup: s
+ CanvasGeometry Geometry_0022()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(130.811005F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(132.656006F, -73.0199966F), new Vector2(133.578003F, -75.4800034F), new Vector2(133.578003F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(133.578003F, -81.3030014F), new Vector2(132.656006F, -83.7630005F), new Vector2(130.811005F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(128.966003F, -87.6989975F), new Vector2(126.525002F, -88.6829987F), new Vector2(123.491997F, -88.6829987F));
+ builder.AddCubicBezier(new Vector2(120.621002F, -88.6829987F), new Vector2(118.203003F, -87.6989975F), new Vector2(116.235001F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(114.266998F, -83.7630005F), new Vector2(113.282997F, -81.3030014F), new Vector2(113.282997F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(113.282997F, -75.4800034F), new Vector2(114.266998F, -73.0199966F), new Vector2(116.235001F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(118.203003F, -68.9199982F), new Vector2(120.621002F, -67.8960037F), new Vector2(123.491997F, -67.8960037F));
+ builder.AddCubicBezier(new Vector2(126.525002F, -67.8960037F), new Vector2(128.966003F, -68.9199982F), new Vector2(130.811005F, -70.9710007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(132.962997F, 0F));
+ builder.AddLine(new Vector2(132.962997F, -59.7779999F));
+ builder.AddLine(new Vector2(114.021004F, -59.7779999F));
+ builder.AddLine(new Vector2(114.021004F, 0F));
+ builder.AddLine(new Vector2(132.962997F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers Outlines
+ // - - ShapeGroup: s
+ CanvasGeometry Geometry_0023()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(101.967003F, 0F));
+ builder.AddLine(new Vector2(101.967003F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(101.967003F, -42.1469994F), new Vector2(100.941002F, -46.4109993F), new Vector2(98.8919983F, -49.9379997F));
+ builder.AddCubicBezier(new Vector2(96.8410034F, -53.4630013F), new Vector2(94.012001F, -56.1899986F), new Vector2(90.4049988F, -58.118F));
+ builder.AddCubicBezier(new Vector2(86.7959976F, -60.0439987F), new Vector2(82.7369995F, -61.0079994F), new Vector2(78.2279968F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(73.5540009F, -61.0079994F), new Vector2(69.3300018F, -60.0239983F), new Vector2(65.5589981F, -58.0559998F));
+ builder.AddCubicBezier(new Vector2(61.7859993F, -56.0880013F), new Vector2(58.7939987F, -53.2589989F), new Vector2(56.5800018F, -49.5690002F));
+ builder.AddCubicBezier(new Vector2(54.3660011F, -45.8790016F), new Vector2(53.1360016F, -41.4910011F), new Vector2(52.8899994F, -36.4080009F));
+ builder.AddLine(new Vector2(63.8370018F, -34.9319992F));
+ builder.AddCubicBezier(new Vector2(63.8370018F, -36.9000015F), new Vector2(64.2460022F, -38.5800018F), new Vector2(65.0670013F, -39.9749985F));
+ builder.AddCubicBezier(new Vector2(65.8860016F, -41.368F), new Vector2(67.0550003F, -42.4539986F), new Vector2(68.572998F, -43.2340012F));
+ builder.AddCubicBezier(new Vector2(70.0889969F, -44.012001F), new Vector2(71.7490005F, -44.4029999F), new Vector2(73.5540009F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(76.177002F, -44.4029999F), new Vector2(78.413002F, -43.5620003F), new Vector2(80.2580032F, -41.882F));
+ builder.AddCubicBezier(new Vector2(82.1029968F, -40.2000008F), new Vector2(83.0250015F, -37.8839989F), new Vector2(83.0250015F, -34.9319992F));
+ builder.AddLine(new Vector2(83.0250015F, 0F));
+ builder.AddLine(new Vector2(101.967003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(63.8370018F, 0F));
+ builder.AddLine(new Vector2(63.8370018F, -38.2529984F));
+ builder.AddCubicBezier(new Vector2(63.8370018F, -42.9269981F), new Vector2(62.8320007F, -46.9440002F), new Vector2(60.8240013F, -50.3069992F));
+ builder.AddCubicBezier(new Vector2(58.8139992F, -53.6679993F), new Vector2(56.1500015F, -56.2919998F), new Vector2(52.8289986F, -58.1790009F));
+ builder.AddCubicBezier(new Vector2(49.5079994F, -60.0639992F), new Vector2(45.7960014F, -61.0079994F), new Vector2(41.6969986F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(37.1860008F, -61.0079994F), new Vector2(33.1879997F, -60.0859985F), new Vector2(29.7040005F, -58.2410011F));
+ builder.AddCubicBezier(new Vector2(26.2180004F, -56.3959999F), new Vector2(23.4309998F, -53.7700005F), new Vector2(21.3400002F, -50.368F));
+ builder.AddCubicBezier(new Vector2(19.2490005F, -46.9640007F), new Vector2(18.2040005F, -42.9269981F), new Vector2(18.2040005F, -38.2529984F));
+ builder.AddLine(new Vector2(25.4610004F, -34.9319992F));
+ builder.AddCubicBezier(new Vector2(25.4610004F, -36.9000015F), new Vector2(25.8920002F, -38.5800018F), new Vector2(26.7530003F, -39.9749985F));
+ builder.AddCubicBezier(new Vector2(27.6140003F, -41.368F), new Vector2(28.7819996F, -42.4539986F), new Vector2(30.2579994F, -43.2340012F));
+ builder.AddCubicBezier(new Vector2(31.7339993F, -44.012001F), new Vector2(33.4140015F, -44.4029999F), new Vector2(35.3009987F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(38.007F, -44.4029999F), new Vector2(40.2830009F, -43.5620003F), new Vector2(42.1279984F, -41.882F));
+ builder.AddCubicBezier(new Vector2(43.9729996F, -40.2000008F), new Vector2(44.8950005F, -37.8839989F), new Vector2(44.8950005F, -34.9319992F));
+ builder.AddLine(new Vector2(44.8950005F, 0F));
+ builder.AddLine(new Vector2(63.8370018F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(25.4610004F, 0F));
+ builder.AddLine(new Vector2(25.4610004F, -59.7779999F));
+ builder.AddLine(new Vector2(6.51900005F, -59.7779999F));
+ builder.AddLine(new Vector2(6.51900005F, 0F));
+ builder.AddLine(new Vector2(25.4610004F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 2 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0024()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(317.832001F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(322.014008F, -2.84899998F), new Vector2(325.580994F, -5.45200014F), new Vector2(328.53299F, -8.97900009F));
+ builder.AddLine(new Vector2(318.078003F, -19.3110008F));
+ builder.AddCubicBezier(new Vector2(316.27301F, -17.2600002F), new Vector2(314.182007F, -15.7229996F), new Vector2(311.804993F, -14.6990004F));
+ builder.AddCubicBezier(new Vector2(309.425995F, -13.6730003F), new Vector2(306.802002F, -13.1610003F), new Vector2(303.933014F, -13.1610003F));
+ builder.AddCubicBezier(new Vector2(300.734985F, -13.1610003F), new Vector2(297.967987F, -13.8380003F), new Vector2(295.631012F, -15.191F));
+ builder.AddCubicBezier(new Vector2(293.294006F, -16.5440006F), new Vector2(291.489014F, -18.4899998F), new Vector2(290.218994F, -21.0330009F));
+ builder.AddCubicBezier(new Vector2(288.946991F, -23.5739994F), new Vector2(288.312012F, -26.5680008F), new Vector2(288.312012F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(288.312012F, -33.4560013F), new Vector2(288.906006F, -36.4080009F), new Vector2(290.096008F, -38.868F));
+ builder.AddCubicBezier(new Vector2(291.283997F, -41.3279991F), new Vector2(292.964996F, -43.2540016F), new Vector2(295.139008F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(297.311005F, -46.0419998F), new Vector2(299.873993F, -46.7400017F), new Vector2(302.825989F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(305.532013F, -46.7400017F), new Vector2(307.847992F, -46.125F), new Vector2(309.776001F, -44.8950005F));
+ builder.AddCubicBezier(new Vector2(311.701996F, -43.6650009F), new Vector2(313.15799F, -41.9220009F), new Vector2(314.141998F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(315.126007F, -37.4119987F), new Vector2(315.65799F, -34.6030006F), new Vector2(315.740997F, -31.2420006F));
+ builder.AddLine(new Vector2(323.859009F, -36.7770004F));
+ builder.AddLine(new Vector2(280.562988F, -36.5309982F));
+ builder.AddLine(new Vector2(280.562988F, -23.493F));
+ builder.AddLine(new Vector2(331.97699F, -23.7390003F));
+ builder.AddCubicBezier(new Vector2(332.385986F, -25.2150002F), new Vector2(332.653992F, -26.5459995F), new Vector2(332.777008F, -27.7360001F));
+ builder.AddCubicBezier(new Vector2(332.899994F, -28.9239998F), new Vector2(332.960999F, -30.0930004F), new Vector2(332.960999F, -31.2420006F));
+ builder.AddCubicBezier(new Vector2(332.960999F, -37.0629997F), new Vector2(331.64801F, -42.2290001F), new Vector2(329.024994F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(326.399994F, -51.2490005F), new Vector2(322.833008F, -54.7750015F), new Vector2(318.324005F, -57.3180008F));
+ builder.AddCubicBezier(new Vector2(313.812988F, -59.8590012F), new Vector2(308.565002F, -61.1310005F), new Vector2(302.579987F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(296.510986F, -61.1310005F), new Vector2(291.058014F, -59.7779999F), new Vector2(286.221008F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(281.381989F, -54.3660011F), new Vector2(277.569F, -50.6549988F), new Vector2(274.782013F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(271.993011F, -41.2249985F), new Vector2(270.600006F, -35.9160004F), new Vector2(270.600006F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(270.600006F, -23.9430008F), new Vector2(272.033997F, -18.5310001F), new Vector2(274.904999F, -13.776F));
+ builder.AddCubicBezier(new Vector2(277.773987F, -9.01900005F), new Vector2(281.709991F, -5.30900002F), new Vector2(286.713013F, -2.64499998F));
+ builder.AddCubicBezier(new Vector2(291.713989F, 0.0189999994F), new Vector2(297.45401F, 1.35300004F), new Vector2(303.933014F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(309.015991F, 1.35300004F), new Vector2(313.649994F, 0.510999978F), new Vector2(317.832001F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 2 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0025()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(257.131989F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(261.026001F, -2.84899998F), new Vector2(264.572998F, -5.329F), new Vector2(267.770996F, -8.60999966F));
+ builder.AddLine(new Vector2(255.593994F, -20.6639996F));
+ builder.AddCubicBezier(new Vector2(254.199005F, -19.1049995F), new Vector2(252.539001F, -17.9160004F), new Vector2(250.613007F, -17.0970001F));
+ builder.AddCubicBezier(new Vector2(248.684998F, -16.2759991F), new Vector2(246.492004F, -15.8669996F), new Vector2(244.031998F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(241.488998F, -15.8669996F), new Vector2(239.151993F, -16.4599991F), new Vector2(237.020996F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(234.888F, -18.8379993F), new Vector2(233.227997F, -20.4990005F), new Vector2(232.039993F, -22.632F));
+ builder.AddCubicBezier(new Vector2(230.850006F, -24.7630005F), new Vector2(230.255997F, -27.2229996F), new Vector2(230.255997F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(230.255997F, -32.7179985F), new Vector2(230.850006F, -35.1170006F), new Vector2(232.039993F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(233.227997F, -39.2989998F), new Vector2(234.869003F, -40.9379997F), new Vector2(236.960007F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(239.050995F, -43.3160019F), new Vector2(241.406998F, -43.9109993F), new Vector2(244.031998F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(246.408997F, -43.9109993F), new Vector2(248.522003F, -43.5419998F), new Vector2(250.367004F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(252.212006F, -42.0660019F), new Vector2(253.830002F, -40.9169998F), new Vector2(255.225006F, -39.3600006F));
+ builder.AddLine(new Vector2(267.402008F, -51.6599998F));
+ builder.AddCubicBezier(new Vector2(264.367004F, -54.7750015F), new Vector2(260.903015F, -57.1329994F), new Vector2(257.009003F, -58.7319984F));
+ builder.AddCubicBezier(new Vector2(253.113007F, -60.3310013F), new Vector2(248.787003F, -61.1310005F), new Vector2(244.031998F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(237.798996F, -61.1310005F), new Vector2(232.182007F, -59.7779999F), new Vector2(227.181F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(222.177994F, -54.3660011F), new Vector2(218.242004F, -50.6549988F), new Vector2(215.373001F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(212.501999F, -41.2249985F), new Vector2(211.067993F, -35.8740005F), new Vector2(211.067993F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(211.067993F, -23.9850006F), new Vector2(212.481995F, -18.6539993F), new Vector2(215.311005F, -13.8990002F));
+ builder.AddCubicBezier(new Vector2(218.139999F, -9.1420002F), new Vector2(222.054993F, -5.41200018F), new Vector2(227.057999F, -2.70600009F));
+ builder.AddCubicBezier(new Vector2(232.059006F, 0F), new Vector2(237.675995F, 1.35300004F), new Vector2(243.908997F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(248.828995F, 1.35300004F), new Vector2(253.235992F, 0.510999978F), new Vector2(257.131989F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 2 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0026()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(199.690994F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(201.535995F, -73.0199966F), new Vector2(202.457993F, -75.4800034F), new Vector2(202.457993F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(202.457993F, -81.3030014F), new Vector2(201.535995F, -83.7630005F), new Vector2(199.690994F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(197.845993F, -87.6989975F), new Vector2(195.404999F, -88.6829987F), new Vector2(192.371994F, -88.6829987F));
+ builder.AddCubicBezier(new Vector2(189.501007F, -88.6829987F), new Vector2(187.082993F, -87.6989975F), new Vector2(185.115005F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(183.147003F, -83.7630005F), new Vector2(182.162994F, -81.3030014F), new Vector2(182.162994F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(182.162994F, -75.4800034F), new Vector2(183.147003F, -73.0199966F), new Vector2(185.115005F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(187.082993F, -68.9199982F), new Vector2(189.501007F, -67.8960037F), new Vector2(192.371994F, -67.8960037F));
+ builder.AddCubicBezier(new Vector2(195.404999F, -67.8960037F), new Vector2(197.845993F, -68.9199982F), new Vector2(199.690994F, -70.9710007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(201.843002F, 0F));
+ builder.AddLine(new Vector2(201.843002F, -59.7779999F));
+ builder.AddLine(new Vector2(182.901001F, -59.7779999F));
+ builder.AddLine(new Vector2(182.901001F, 0F));
+ builder.AddLine(new Vector2(201.843002F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 2 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0027()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(169.494003F, 0F));
+ builder.AddLine(new Vector2(169.494003F, -89.2979965F));
+ builder.AddLine(new Vector2(150.552002F, -89.2979965F));
+ builder.AddLine(new Vector2(150.552002F, 0F));
+ builder.AddLine(new Vector2(169.494003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 2 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0028()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(101.598F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(99.5469971F, -18.7360001F), new Vector2(97.947998F, -20.3959999F), new Vector2(96.8010025F, -22.5699997F));
+ builder.AddCubicBezier(new Vector2(95.6520004F, -24.7420006F), new Vector2(95.0790024F, -27.2229996F), new Vector2(95.0790024F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(95.0790024F, -32.6349983F), new Vector2(95.6520004F, -35.0130005F), new Vector2(96.8010025F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(97.947998F, -39.2770004F), new Vector2(99.5469971F, -40.9379997F), new Vector2(101.598F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(103.647003F, -43.3160019F), new Vector2(105.984001F, -43.9109993F), new Vector2(108.609001F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(111.232002F, -43.9109993F), new Vector2(113.549004F, -43.3160019F), new Vector2(115.558998F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(117.567001F, -40.9379997F), new Vector2(119.144997F, -39.2989998F), new Vector2(120.293999F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(121.441002F, -35.1170006F), new Vector2(122.015999F, -32.7179985F), new Vector2(122.015999F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(122.015999F, -27.2229996F), new Vector2(121.462997F, -24.7420006F), new Vector2(120.356003F, -22.5699997F));
+ builder.AddCubicBezier(new Vector2(119.249001F, -20.3959999F), new Vector2(117.668999F, -18.7360001F), new Vector2(115.620003F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(113.569F, -16.4400005F), new Vector2(111.232002F, -15.8669996F), new Vector2(108.609001F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(105.984001F, -15.8669996F), new Vector2(103.647003F, -16.4400005F), new Vector2(101.598F, -17.5890007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(125.336998F, -2.829F));
+ builder.AddCubicBezier(new Vector2(130.257004F, -5.61600018F), new Vector2(134.151001F, -9.36699963F), new Vector2(137.022003F, -14.0830002F));
+ builder.AddCubicBezier(new Vector2(139.891006F, -18.7970009F), new Vector2(141.326996F, -24.1480007F), new Vector2(141.326996F, -30.1350002F));
+ builder.AddCubicBezier(new Vector2(141.326996F, -35.9560013F), new Vector2(139.891006F, -41.2249985F), new Vector2(137.022003F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(134.151001F, -50.6549988F), new Vector2(130.235992F, -54.3660011F), new Vector2(125.276001F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(120.314003F, -59.7779999F), new Vector2(114.759003F, -61.1310005F), new Vector2(108.609001F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(102.293999F, -61.1310005F), new Vector2(96.6780014F, -59.7560005F), new Vector2(91.7580032F, -57.0099983F));
+ builder.AddCubicBezier(new Vector2(86.8379974F, -54.262001F), new Vector2(82.9639969F, -50.5530014F), new Vector2(80.1350021F, -45.8790016F));
+ builder.AddCubicBezier(new Vector2(77.3059998F, -41.2050018F), new Vector2(75.8909988F, -35.9560013F), new Vector2(75.8909988F, -30.1350002F));
+ builder.AddCubicBezier(new Vector2(75.8909988F, -24.2310009F), new Vector2(77.3249969F, -18.8999996F), new Vector2(80.1959991F, -14.1450005F));
+ builder.AddCubicBezier(new Vector2(83.0650024F, -9.38799953F), new Vector2(86.9609985F, -5.61600018F), new Vector2(91.8809967F, -2.829F));
+ builder.AddCubicBezier(new Vector2(96.8010025F, -0.0399999991F), new Vector2(102.375999F, 1.35300004F), new Vector2(108.609001F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(114.839996F, 1.35300004F), new Vector2(120.417F, -0.0399999991F), new Vector2(125.336998F, -2.829F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0029()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(30.8120003F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(28.802F, -18.8379993F), new Vector2(27.2229996F, -20.4990005F), new Vector2(26.0760002F, -22.632F));
+ builder.AddCubicBezier(new Vector2(24.927F, -24.7630005F), new Vector2(24.3540001F, -27.1830006F), new Vector2(24.3540001F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(24.3540001F, -32.5950012F), new Vector2(24.927F, -35.0130005F), new Vector2(26.0760002F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(27.2229996F, -39.2770004F), new Vector2(28.802F, -40.9379997F), new Vector2(30.8120003F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(32.8199997F, -43.3160019F), new Vector2(35.1360016F, -43.9109993F), new Vector2(37.7610016F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(40.3839989F, -43.9109993F), new Vector2(42.6809998F, -43.3160019F), new Vector2(44.6489983F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(46.6170006F, -40.9379997F), new Vector2(48.1949997F, -39.2770004F), new Vector2(49.3849983F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(50.5730019F, -35.0130005F), new Vector2(51.1679993F, -32.5950012F), new Vector2(51.1679993F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(51.1679993F, -27.1830006F), new Vector2(50.5730019F, -24.7630005F), new Vector2(49.3849983F, -22.632F));
+ builder.AddCubicBezier(new Vector2(48.1949997F, -20.4990005F), new Vector2(46.5960007F, -18.8379993F), new Vector2(44.5880013F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(42.5779991F, -16.4599991F), new Vector2(40.2610016F, -15.8669996F), new Vector2(37.6380005F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(35.0950012F, -15.8669996F), new Vector2(32.8199997F, -16.4599991F), new Vector2(30.8120003F, -17.6499996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(25.2150002F, 25.2150002F));
+ builder.AddLine(new Vector2(25.2150002F, -15.375F));
+ builder.AddLine(new Vector2(22.3859997F, -29.8889999F));
+ builder.AddLine(new Vector2(25.4610004F, -44.526001F));
+ builder.AddLine(new Vector2(25.4610004F, -59.7779999F));
+ builder.AddLine(new Vector2(6.51900005F, -59.7779999F));
+ builder.AddLine(new Vector2(6.51900005F, 25.2150002F));
+ builder.AddLine(new Vector2(25.2150002F, 25.2150002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(56.2109985F, -2.89100003F));
+ builder.AddCubicBezier(new Vector2(60.6389999F, -5.63700008F), new Vector2(64.1029968F, -9.32600021F), new Vector2(66.6050034F, -13.96F));
+ builder.AddCubicBezier(new Vector2(69.1050034F, -18.5919991F), new Vector2(70.3560028F, -23.9020004F), new Vector2(70.3560028F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(70.3560028F, -35.8740005F), new Vector2(69.0839996F, -41.2050018F), new Vector2(66.5429993F, -45.8790016F));
+ builder.AddCubicBezier(new Vector2(64F, -50.5530014F), new Vector2(60.5359993F, -54.243F), new Vector2(56.1500015F, -56.9490013F));
+ builder.AddCubicBezier(new Vector2(51.762001F, -59.6549988F), new Vector2(46.7799988F, -61.0079994F), new Vector2(41.2050018F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(37.1860008F, -61.0079994F), new Vector2(33.4959984F, -60.1870003F), new Vector2(30.1350002F, -58.5480003F));
+ builder.AddCubicBezier(new Vector2(26.7719994F, -56.9070015F), new Vector2(24.0249996F, -54.6730003F), new Vector2(21.8939991F, -51.8440018F));
+ builder.AddCubicBezier(new Vector2(19.7609997F, -49.0149994F), new Vector2(18.5310001F, -45.7960014F), new Vector2(18.2040005F, -42.1889992F));
+ builder.AddLine(new Vector2(18.2040005F, -16.9740009F));
+ builder.AddCubicBezier(new Vector2(18.5310001F, -13.4469995F), new Vector2(19.7420006F, -10.3100004F), new Vector2(21.8330002F, -7.56400013F));
+ builder.AddCubicBezier(new Vector2(23.9239998F, -4.81599998F), new Vector2(26.6490002F, -2.66400003F), new Vector2(30.0119991F, -1.10699999F));
+ builder.AddCubicBezier(new Vector2(33.3730011F, 0.449999988F), new Vector2(37.1040001F, 1.23000002F), new Vector2(41.2050018F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(46.7799988F, 1.23000002F), new Vector2(51.7830009F, -0.143000007F), new Vector2(56.2109985F, -2.89100003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 3 Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0030()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(628.161011F, -43.6650009F));
+ builder.AddLine(new Vector2(628.161011F, -59.7779999F));
+ builder.AddLine(new Vector2(582.281982F, -59.7779999F));
+ builder.AddLine(new Vector2(582.281982F, -43.6650009F));
+ builder.AddLine(new Vector2(628.161011F, -43.6650009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(614.630981F, 0F));
+ builder.AddLine(new Vector2(614.630981F, -84.5009995F));
+ builder.AddLine(new Vector2(595.689026F, -84.5009995F));
+ builder.AddLine(new Vector2(595.689026F, 0F));
+ builder.AddLine(new Vector2(614.630981F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 3 Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0031()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(536.526001F, 0F));
+ builder.AddLine(new Vector2(536.526001F, -59.7779999F));
+ builder.AddLine(new Vector2(517.583984F, -59.7779999F));
+ builder.AddLine(new Vector2(517.583984F, 0F));
+ builder.AddLine(new Vector2(536.526001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(576.132019F, 0F));
+ builder.AddLine(new Vector2(576.132019F, -38.2529984F));
+ builder.AddCubicBezier(new Vector2(576.132019F, -42.3520012F), new Vector2(575.14801F, -46.1450005F), new Vector2(573.179993F, -49.6310005F));
+ builder.AddCubicBezier(new Vector2(571.211975F, -53.1150017F), new Vector2(568.505981F, -55.882F), new Vector2(565.062012F, -57.9329987F));
+ builder.AddCubicBezier(new Vector2(561.617981F, -59.9819984F), new Vector2(557.721985F, -61.0079994F), new Vector2(553.377014F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(548.783997F, -61.0079994F), new Vector2(544.664001F, -60.0439987F), new Vector2(541.015991F, -58.118F));
+ builder.AddCubicBezier(new Vector2(537.366028F, -56.1899986F), new Vector2(534.497009F, -53.4630013F), new Vector2(532.406006F, -49.9379997F));
+ builder.AddCubicBezier(new Vector2(530.315002F, -46.4109993F), new Vector2(529.268982F, -42.3120003F), new Vector2(529.268982F, -37.6380005F));
+ builder.AddLine(new Vector2(536.526001F, -34.0709991F));
+ builder.AddCubicBezier(new Vector2(536.526001F, -36.1199989F), new Vector2(536.976013F, -37.9239998F), new Vector2(537.879028F, -39.4830017F));
+ builder.AddCubicBezier(new Vector2(538.780029F, -41.0400009F), new Vector2(540.01001F, -42.2509995F), new Vector2(541.56897F, -43.1119995F));
+ builder.AddCubicBezier(new Vector2(543.125977F, -43.9729996F), new Vector2(544.890015F, -44.4029999F), new Vector2(546.857971F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(549.809998F, -44.4029999F), new Vector2(552.27002F, -43.4379997F), new Vector2(554.237976F, -41.512001F));
+ builder.AddCubicBezier(new Vector2(556.205994F, -39.5839996F), new Vector2(557.190002F, -37.1040001F), new Vector2(557.190002F, -34.0709991F));
+ builder.AddLine(new Vector2(557.190002F, 0F));
+ builder.AddLine(new Vector2(576.132019F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 3 Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0032()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(493.598999F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(497.781006F, -2.84899998F), new Vector2(501.347992F, -5.45200014F), new Vector2(504.299988F, -8.97900009F));
+ builder.AddLine(new Vector2(493.845001F, -19.3110008F));
+ builder.AddCubicBezier(new Vector2(492.040009F, -17.2600002F), new Vector2(489.949005F, -15.7229996F), new Vector2(487.571991F, -14.6990004F));
+ builder.AddCubicBezier(new Vector2(485.192993F, -13.6730003F), new Vector2(482.569F, -13.1610003F), new Vector2(479.700012F, -13.1610003F));
+ builder.AddCubicBezier(new Vector2(476.502014F, -13.1610003F), new Vector2(473.734985F, -13.8380003F), new Vector2(471.39801F, -15.191F));
+ builder.AddCubicBezier(new Vector2(469.061005F, -16.5440006F), new Vector2(467.256012F, -18.4899998F), new Vector2(465.985992F, -21.0330009F));
+ builder.AddCubicBezier(new Vector2(464.713989F, -23.5739994F), new Vector2(464.07901F, -26.5680008F), new Vector2(464.07901F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(464.07901F, -33.4560013F), new Vector2(464.673004F, -36.4080009F), new Vector2(465.863007F, -38.868F));
+ builder.AddCubicBezier(new Vector2(467.050995F, -41.3279991F), new Vector2(468.731995F, -43.2540016F), new Vector2(470.906006F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(473.078003F, -46.0419998F), new Vector2(475.640991F, -46.7400017F), new Vector2(478.592987F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(481.299011F, -46.7400017F), new Vector2(483.61499F, -46.125F), new Vector2(485.542999F, -44.8950005F));
+ builder.AddCubicBezier(new Vector2(487.468994F, -43.6650009F), new Vector2(488.924988F, -41.9220009F), new Vector2(489.908997F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(490.893005F, -37.4119987F), new Vector2(491.424988F, -34.6030006F), new Vector2(491.507996F, -31.2420006F));
+ builder.AddLine(new Vector2(499.626007F, -36.7770004F));
+ builder.AddLine(new Vector2(456.329987F, -36.5309982F));
+ builder.AddLine(new Vector2(456.329987F, -23.493F));
+ builder.AddLine(new Vector2(507.743988F, -23.7390003F));
+ builder.AddCubicBezier(new Vector2(508.153015F, -25.2150002F), new Vector2(508.42099F, -26.5459995F), new Vector2(508.544006F, -27.7360001F));
+ builder.AddCubicBezier(new Vector2(508.666992F, -28.9239998F), new Vector2(508.727997F, -30.0930004F), new Vector2(508.727997F, -31.2420006F));
+ builder.AddCubicBezier(new Vector2(508.727997F, -37.0629997F), new Vector2(507.415009F, -42.2290001F), new Vector2(504.791992F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(502.166992F, -51.2490005F), new Vector2(498.600006F, -54.7750015F), new Vector2(494.091003F, -57.3180008F));
+ builder.AddCubicBezier(new Vector2(489.579987F, -59.8590012F), new Vector2(484.332001F, -61.1310005F), new Vector2(478.346985F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(472.278015F, -61.1310005F), new Vector2(466.825012F, -59.7779999F), new Vector2(461.988007F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(457.148987F, -54.3660011F), new Vector2(453.335999F, -50.6549988F), new Vector2(450.549011F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(447.76001F, -41.2249985F), new Vector2(446.367004F, -35.9160004F), new Vector2(446.367004F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(446.367004F, -23.9430008F), new Vector2(447.800995F, -18.5310001F), new Vector2(450.671997F, -13.776F));
+ builder.AddCubicBezier(new Vector2(453.540985F, -9.01900005F), new Vector2(457.47699F, -5.30900002F), new Vector2(462.480011F, -2.64499998F));
+ builder.AddCubicBezier(new Vector2(467.480988F, 0.0189999994F), new Vector2(473.221008F, 1.35300004F), new Vector2(479.700012F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(484.78299F, 1.35300004F), new Vector2(489.416992F, 0.510999978F), new Vector2(493.598999F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 3 Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0033()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(438.248993F, 0F));
+ builder.AddLine(new Vector2(438.248993F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(438.248993F, -42.1469994F), new Vector2(437.222992F, -46.4109993F), new Vector2(435.174011F, -49.9379997F));
+ builder.AddCubicBezier(new Vector2(433.122986F, -53.4630013F), new Vector2(430.294006F, -56.1899986F), new Vector2(426.687012F, -58.118F));
+ builder.AddCubicBezier(new Vector2(423.078003F, -60.0439987F), new Vector2(419.019012F, -61.0079994F), new Vector2(414.51001F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(409.835999F, -61.0079994F), new Vector2(405.612F, -60.0239983F), new Vector2(401.841003F, -58.0559998F));
+ builder.AddCubicBezier(new Vector2(398.067993F, -56.0880013F), new Vector2(395.075989F, -53.2589989F), new Vector2(392.862F, -49.5690002F));
+ builder.AddCubicBezier(new Vector2(390.64801F, -45.8790016F), new Vector2(389.417999F, -41.4910011F), new Vector2(389.171997F, -36.4080009F));
+ builder.AddLine(new Vector2(400.118988F, -34.9319992F));
+ builder.AddCubicBezier(new Vector2(400.118988F, -36.9000015F), new Vector2(400.528015F, -38.5800018F), new Vector2(401.348999F, -39.9749985F));
+ builder.AddCubicBezier(new Vector2(402.167999F, -41.368F), new Vector2(403.337006F, -42.4539986F), new Vector2(404.855011F, -43.2340012F));
+ builder.AddCubicBezier(new Vector2(406.371002F, -44.012001F), new Vector2(408.031006F, -44.4029999F), new Vector2(409.835999F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(412.459015F, -44.4029999F), new Vector2(414.695007F, -43.5620003F), new Vector2(416.540009F, -41.882F));
+ builder.AddCubicBezier(new Vector2(418.38501F, -40.2000008F), new Vector2(419.307007F, -37.8839989F), new Vector2(419.307007F, -34.9319992F));
+ builder.AddLine(new Vector2(419.307007F, 0F));
+ builder.AddLine(new Vector2(438.248993F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(400.118988F, 0F));
+ builder.AddLine(new Vector2(400.118988F, -38.2529984F));
+ builder.AddCubicBezier(new Vector2(400.118988F, -42.9269981F), new Vector2(399.113007F, -46.9440002F), new Vector2(397.105011F, -50.3069992F));
+ builder.AddCubicBezier(new Vector2(395.095001F, -53.6679993F), new Vector2(392.432007F, -56.2919998F), new Vector2(389.110992F, -58.1790009F));
+ builder.AddCubicBezier(new Vector2(385.790009F, -60.0639992F), new Vector2(382.078003F, -61.0079994F), new Vector2(377.979004F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(373.467987F, -61.0079994F), new Vector2(369.471008F, -60.0859985F), new Vector2(365.987F, -58.2410011F));
+ builder.AddCubicBezier(new Vector2(362.501007F, -56.3959999F), new Vector2(359.713989F, -53.7700005F), new Vector2(357.622986F, -50.368F));
+ builder.AddCubicBezier(new Vector2(355.532013F, -46.9640007F), new Vector2(354.485992F, -42.9269981F), new Vector2(354.485992F, -38.2529984F));
+ builder.AddLine(new Vector2(361.743011F, -34.9319992F));
+ builder.AddCubicBezier(new Vector2(361.743011F, -36.9000015F), new Vector2(362.174011F, -38.5800018F), new Vector2(363.035004F, -39.9749985F));
+ builder.AddCubicBezier(new Vector2(363.895996F, -41.368F), new Vector2(365.063995F, -42.4539986F), new Vector2(366.540009F, -43.2340012F));
+ builder.AddCubicBezier(new Vector2(368.015991F, -44.012001F), new Vector2(369.696014F, -44.4029999F), new Vector2(371.583008F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(374.289001F, -44.4029999F), new Vector2(376.565002F, -43.5620003F), new Vector2(378.410004F, -41.882F));
+ builder.AddCubicBezier(new Vector2(380.255005F, -40.2000008F), new Vector2(381.177002F, -37.8839989F), new Vector2(381.177002F, -34.9319992F));
+ builder.AddLine(new Vector2(381.177002F, 0F));
+ builder.AddLine(new Vector2(400.118988F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(361.743011F, 0F));
+ builder.AddLine(new Vector2(361.743011F, -59.7779999F));
+ builder.AddLine(new Vector2(342.800995F, -59.7779999F));
+ builder.AddLine(new Vector2(342.800995F, 0F));
+ builder.AddLine(new Vector2(361.743011F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 3 Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0034()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(329.640015F, 0F));
+ builder.AddLine(new Vector2(329.640015F, -59.7779999F));
+ builder.AddLine(new Vector2(311.066986F, -59.7779999F));
+ builder.AddLine(new Vector2(311.066986F, -45.1409988F));
+ builder.AddLine(new Vector2(313.895996F, -30.75F));
+ builder.AddLine(new Vector2(311.066986F, -16.1130009F));
+ builder.AddLine(new Vector2(311.066986F, 0F));
+ builder.AddLine(new Vector2(329.640015F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(291.695007F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(289.684998F, -18.8379993F), new Vector2(288.085999F, -20.4990005F), new Vector2(286.89801F, -22.632F));
+ builder.AddCubicBezier(new Vector2(285.708008F, -24.7630005F), new Vector2(285.114014F, -27.1830006F), new Vector2(285.114014F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(285.114014F, -32.5950012F), new Vector2(285.708008F, -35.0130005F), new Vector2(286.89801F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(288.085999F, -39.2770004F), new Vector2(289.684998F, -40.9379997F), new Vector2(291.695007F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(293.703003F, -43.3160019F), new Vector2(295.977997F, -43.9109993F), new Vector2(298.520996F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(301.144012F, -43.9109993F), new Vector2(303.480988F, -43.3160019F), new Vector2(305.532013F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(307.580994F, -40.9379997F), new Vector2(309.139008F, -39.2989998F), new Vector2(310.205994F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(311.270996F, -35.1170006F), new Vector2(311.804993F, -32.7179985F), new Vector2(311.804993F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(311.804993F, -25.8299999F), new Vector2(310.595001F, -22.4260006F), new Vector2(308.177002F, -19.8029995F));
+ builder.AddCubicBezier(new Vector2(305.756989F, -17.1779995F), new Vector2(302.537994F, -15.8669996F), new Vector2(298.520996F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(295.977997F, -15.8669996F), new Vector2(293.703003F, -16.4599991F), new Vector2(291.695007F, -17.6499996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(305.593994F, -1.10699999F));
+ builder.AddCubicBezier(new Vector2(308.832001F, -2.66400003F), new Vector2(311.455994F, -4.81599998F), new Vector2(313.466003F, -7.56400013F));
+ builder.AddCubicBezier(new Vector2(315.473999F, -10.3100004F), new Vector2(316.60199F, -13.4469995F), new Vector2(316.847992F, -16.9740009F));
+ builder.AddLine(new Vector2(316.847992F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(316.60199F, -46.3289986F), new Vector2(315.453003F, -49.4659996F), new Vector2(313.403992F, -52.2140007F));
+ builder.AddCubicBezier(new Vector2(311.352997F, -54.9599991F), new Vector2(308.709015F, -57.1119995F), new Vector2(305.471008F, -58.6710014F));
+ builder.AddCubicBezier(new Vector2(302.230988F, -60.2280006F), new Vector2(298.60199F, -61.0079994F), new Vector2(294.584991F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(289.089996F, -61.0079994F), new Vector2(284.191986F, -59.6739998F), new Vector2(279.886993F, -57.0099983F));
+ builder.AddCubicBezier(new Vector2(275.582001F, -54.3440018F), new Vector2(272.178009F, -50.6549988F), new Vector2(269.678009F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(267.175995F, -41.2249985F), new Vector2(265.925995F, -35.8740005F), new Vector2(265.925995F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(265.925995F, -23.9020004F), new Vector2(267.175995F, -18.5919991F), new Vector2(269.678009F, -13.96F));
+ builder.AddCubicBezier(new Vector2(272.178009F, -9.32600021F), new Vector2(275.601013F, -5.63700008F), new Vector2(279.947998F, -2.89100003F));
+ builder.AddCubicBezier(new Vector2(284.292999F, -0.143000007F), new Vector2(289.173004F, 1.23000002F), new Vector2(294.584991F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(298.68399F, 1.23000002F), new Vector2(302.354004F, 0.449999988F), new Vector2(305.593994F, -1.10699999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 3 Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0035()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(254.425995F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(256.270996F, -73.0199966F), new Vector2(257.192993F, -75.4800034F), new Vector2(257.192993F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(257.192993F, -81.3030014F), new Vector2(256.270996F, -83.7630005F), new Vector2(254.425995F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(252.580994F, -87.6989975F), new Vector2(250.139999F, -88.6829987F), new Vector2(247.106995F, -88.6829987F));
+ builder.AddCubicBezier(new Vector2(244.235992F, -88.6829987F), new Vector2(241.817993F, -87.6989975F), new Vector2(239.850006F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(237.882004F, -83.7630005F), new Vector2(236.897995F, -81.3030014F), new Vector2(236.897995F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(236.897995F, -75.4800034F), new Vector2(237.882004F, -73.0199966F), new Vector2(239.850006F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(241.817993F, -68.9199982F), new Vector2(244.235992F, -67.8960037F), new Vector2(247.106995F, -67.8960037F));
+ builder.AddCubicBezier(new Vector2(250.139999F, -67.8960037F), new Vector2(252.580994F, -68.9199982F), new Vector2(254.425995F, -70.9710007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(256.578003F, 0F));
+ builder.AddLine(new Vector2(256.578003F, -59.7779999F));
+ builder.AddLine(new Vector2(237.636002F, -59.7779999F));
+ builder.AddLine(new Vector2(237.636002F, 0F));
+ builder.AddLine(new Vector2(256.578003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 3 Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0036()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(224.229004F, 0F));
+ builder.AddLine(new Vector2(224.229004F, -89.2979965F));
+ builder.AddLine(new Vector2(205.287003F, -89.2979965F));
+ builder.AddLine(new Vector2(205.287003F, 0F));
+ builder.AddLine(new Vector2(224.229004F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 3 Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0037()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(174.598999F, -41.3899994F));
+ builder.AddCubicBezier(new Vector2(176.444F, -43.3160019F), new Vector2(178.964996F, -44.2799988F), new Vector2(182.162994F, -44.2799988F));
+ builder.AddCubicBezier(new Vector2(183.720001F, -44.2799988F), new Vector2(185.115005F, -44.0340004F), new Vector2(186.345001F, -43.5419998F));
+ builder.AddCubicBezier(new Vector2(187.574997F, -43.0499992F), new Vector2(188.559006F, -42.3930016F), new Vector2(189.296997F, -41.5740013F));
+ builder.AddLine(new Vector2(200.490005F, -55.8419991F));
+ builder.AddCubicBezier(new Vector2(198.848999F, -57.5639992F), new Vector2(196.942993F, -58.855999F), new Vector2(194.770996F, -59.7169991F));
+ builder.AddCubicBezier(new Vector2(192.597F, -60.5779991F), new Vector2(190.074997F, -61.0079994F), new Vector2(187.205994F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(180.727005F, -61.0079994F), new Vector2(175.623001F, -59.0800018F), new Vector2(171.893005F, -55.2270012F));
+ builder.AddCubicBezier(new Vector2(168.160995F, -51.3720016F), new Vector2(165.516006F, -45.9189987F), new Vector2(163.959F, -38.868F));
+ builder.AddLine(new Vector2(171.830994F, -32.7179985F));
+ builder.AddCubicBezier(new Vector2(171.830994F, -36.5709991F), new Vector2(172.753998F, -39.4620018F), new Vector2(174.598999F, -41.3899994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(171.830994F, 0F));
+ builder.AddLine(new Vector2(171.830994F, -59.7779999F));
+ builder.AddLine(new Vector2(152.889008F, -59.7779999F));
+ builder.AddLine(new Vector2(152.889008F, 0F));
+ builder.AddLine(new Vector2(171.830994F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 3 Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0038()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(139.727997F, 0F));
+ builder.AddLine(new Vector2(139.727997F, -59.7779999F));
+ builder.AddLine(new Vector2(121.154999F, -59.7779999F));
+ builder.AddLine(new Vector2(121.154999F, -45.1409988F));
+ builder.AddLine(new Vector2(123.984001F, -30.75F));
+ builder.AddLine(new Vector2(121.154999F, -16.1130009F));
+ builder.AddLine(new Vector2(121.154999F, 0F));
+ builder.AddLine(new Vector2(139.727997F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(101.782997F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(99.7730026F, -18.8379993F), new Vector2(98.1740036F, -20.4990005F), new Vector2(96.9860001F, -22.632F));
+ builder.AddCubicBezier(new Vector2(95.7959976F, -24.7630005F), new Vector2(95.2020035F, -27.1830006F), new Vector2(95.2020035F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(95.2020035F, -32.5950012F), new Vector2(95.7959976F, -35.0130005F), new Vector2(96.9860001F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(98.1740036F, -39.2770004F), new Vector2(99.7730026F, -40.9379997F), new Vector2(101.782997F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(103.791F, -43.3160019F), new Vector2(106.066002F, -43.9109993F), new Vector2(108.609001F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(111.232002F, -43.9109993F), new Vector2(113.569F, -43.3160019F), new Vector2(115.620003F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(117.668999F, -40.9379997F), new Vector2(119.226997F, -39.2989998F), new Vector2(120.293999F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(121.359001F, -35.1170006F), new Vector2(121.892998F, -32.7179985F), new Vector2(121.892998F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(121.892998F, -25.8299999F), new Vector2(120.682999F, -22.4260006F), new Vector2(118.264999F, -19.8029995F));
+ builder.AddCubicBezier(new Vector2(115.845001F, -17.1779995F), new Vector2(112.625999F, -15.8669996F), new Vector2(108.609001F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(106.066002F, -15.8669996F), new Vector2(103.791F, -16.4599991F), new Vector2(101.782997F, -17.6499996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(115.681999F, -1.10699999F));
+ builder.AddCubicBezier(new Vector2(118.919998F, -2.66400003F), new Vector2(121.543999F, -4.81599998F), new Vector2(123.554001F, -7.56400013F));
+ builder.AddCubicBezier(new Vector2(125.561996F, -10.3100004F), new Vector2(126.690002F, -13.4469995F), new Vector2(126.935997F, -16.9740009F));
+ builder.AddLine(new Vector2(126.935997F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(126.690002F, -46.3289986F), new Vector2(125.541F, -49.4659996F), new Vector2(123.491997F, -52.2140007F));
+ builder.AddCubicBezier(new Vector2(121.441002F, -54.9599991F), new Vector2(118.796997F, -57.1119995F), new Vector2(115.558998F, -58.6710014F));
+ builder.AddCubicBezier(new Vector2(112.319F, -60.2280006F), new Vector2(108.690002F, -61.0079994F), new Vector2(104.672997F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(99.1780014F, -61.0079994F), new Vector2(94.2799988F, -59.6739998F), new Vector2(89.9749985F, -57.0099983F));
+ builder.AddCubicBezier(new Vector2(85.6699982F, -54.3440018F), new Vector2(82.2659988F, -50.6549988F), new Vector2(79.7659988F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(77.2639999F, -41.2249985F), new Vector2(76.0139999F, -35.8740005F), new Vector2(76.0139999F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(76.0139999F, -23.9020004F), new Vector2(77.2639999F, -18.5919991F), new Vector2(79.7659988F, -13.96F));
+ builder.AddCubicBezier(new Vector2(82.2659988F, -9.32600021F), new Vector2(85.689003F, -5.63700008F), new Vector2(90.0360031F, -2.89100003F));
+ builder.AddCubicBezier(new Vector2(94.3809967F, -0.143000007F), new Vector2(99.2610016F, 1.23000002F), new Vector2(104.672997F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(108.772003F, 1.23000002F), new Vector2(112.442001F, 0.449999988F), new Vector2(115.681999F, -1.10699999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 4 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0039()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(346.983002F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(351.165009F, -2.84899998F), new Vector2(354.731995F, -5.45200014F), new Vector2(357.68399F, -8.97900009F));
+ builder.AddLine(new Vector2(347.229004F, -19.3110008F));
+ builder.AddCubicBezier(new Vector2(345.424011F, -17.2600002F), new Vector2(343.333008F, -15.7229996F), new Vector2(340.955994F, -14.6990004F));
+ builder.AddCubicBezier(new Vector2(338.576996F, -13.6730003F), new Vector2(335.953003F, -13.1610003F), new Vector2(333.084015F, -13.1610003F));
+ builder.AddCubicBezier(new Vector2(329.885986F, -13.1610003F), new Vector2(327.118988F, -13.8380003F), new Vector2(324.782013F, -15.191F));
+ builder.AddCubicBezier(new Vector2(322.445007F, -16.5440006F), new Vector2(320.640015F, -18.4899998F), new Vector2(319.369995F, -21.0330009F));
+ builder.AddCubicBezier(new Vector2(318.097992F, -23.5739994F), new Vector2(317.463013F, -26.5680008F), new Vector2(317.463013F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(317.463013F, -33.4560013F), new Vector2(318.057007F, -36.4080009F), new Vector2(319.247009F, -38.868F));
+ builder.AddCubicBezier(new Vector2(320.434998F, -41.3279991F), new Vector2(322.115997F, -43.2540016F), new Vector2(324.290009F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(326.462006F, -46.0419998F), new Vector2(329.024994F, -46.7400017F), new Vector2(331.97699F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(334.683014F, -46.7400017F), new Vector2(336.998993F, -46.125F), new Vector2(338.927002F, -44.8950005F));
+ builder.AddCubicBezier(new Vector2(340.852997F, -43.6650009F), new Vector2(342.30899F, -41.9220009F), new Vector2(343.292999F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(344.277008F, -37.4119987F), new Vector2(344.80899F, -34.6030006F), new Vector2(344.891998F, -31.2420006F));
+ builder.AddLine(new Vector2(353.01001F, -36.7770004F));
+ builder.AddLine(new Vector2(309.713989F, -36.5309982F));
+ builder.AddLine(new Vector2(309.713989F, -23.493F));
+ builder.AddLine(new Vector2(361.127991F, -23.7390003F));
+ builder.AddCubicBezier(new Vector2(361.536987F, -25.2150002F), new Vector2(361.804993F, -26.5459995F), new Vector2(361.928009F, -27.7360001F));
+ builder.AddCubicBezier(new Vector2(362.050995F, -28.9239998F), new Vector2(362.112F, -30.0930004F), new Vector2(362.112F, -31.2420006F));
+ builder.AddCubicBezier(new Vector2(362.112F, -37.0629997F), new Vector2(360.799011F, -42.2290001F), new Vector2(358.175995F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(355.550995F, -51.2490005F), new Vector2(351.984009F, -54.7750015F), new Vector2(347.475006F, -57.3180008F));
+ builder.AddCubicBezier(new Vector2(342.963989F, -59.8590012F), new Vector2(337.716003F, -61.1310005F), new Vector2(331.730988F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(325.661987F, -61.1310005F), new Vector2(320.209015F, -59.7779999F), new Vector2(315.372009F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(310.53299F, -54.3660011F), new Vector2(306.720001F, -50.6549988F), new Vector2(303.933014F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(301.144012F, -41.2249985F), new Vector2(299.751007F, -35.9160004F), new Vector2(299.751007F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(299.751007F, -23.9430008F), new Vector2(301.184998F, -18.5310001F), new Vector2(304.056F, -13.776F));
+ builder.AddCubicBezier(new Vector2(306.924988F, -9.01900005F), new Vector2(310.860992F, -5.30900002F), new Vector2(315.864014F, -2.64499998F));
+ builder.AddCubicBezier(new Vector2(320.86499F, 0.0189999994F), new Vector2(326.605011F, 1.35300004F), new Vector2(333.084015F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(338.166992F, 1.35300004F), new Vector2(342.800995F, 0.510999978F), new Vector2(346.983002F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 4 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0040()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(286.28299F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(290.177002F, -2.84899998F), new Vector2(293.723999F, -5.329F), new Vector2(296.921997F, -8.60999966F));
+ builder.AddLine(new Vector2(284.744995F, -20.6639996F));
+ builder.AddCubicBezier(new Vector2(283.350006F, -19.1049995F), new Vector2(281.688995F, -17.9160004F), new Vector2(279.763F, -17.0970001F));
+ builder.AddCubicBezier(new Vector2(277.834991F, -16.2759991F), new Vector2(275.643005F, -15.8669996F), new Vector2(273.183014F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(270.640015F, -15.8669996F), new Vector2(268.303009F, -16.4599991F), new Vector2(266.171997F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(264.039001F, -18.8379993F), new Vector2(262.377991F, -20.4990005F), new Vector2(261.190002F, -22.632F));
+ builder.AddCubicBezier(new Vector2(260F, -24.7630005F), new Vector2(259.407013F, -27.2229996F), new Vector2(259.407013F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(259.407013F, -32.7179985F), new Vector2(260F, -35.1170006F), new Vector2(261.190002F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(262.377991F, -39.2989998F), new Vector2(264.019989F, -40.9379997F), new Vector2(266.110992F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(268.201996F, -43.3160019F), new Vector2(270.558014F, -43.9109993F), new Vector2(273.183014F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(275.559998F, -43.9109993F), new Vector2(277.673004F, -43.5419998F), new Vector2(279.518005F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(281.363007F, -42.0660019F), new Vector2(282.980988F, -40.9169998F), new Vector2(284.376007F, -39.3600006F));
+ builder.AddLine(new Vector2(296.553009F, -51.6599998F));
+ builder.AddCubicBezier(new Vector2(293.518005F, -54.7750015F), new Vector2(290.053986F, -57.1329994F), new Vector2(286.160004F, -58.7319984F));
+ builder.AddCubicBezier(new Vector2(282.264008F, -60.3310013F), new Vector2(277.937988F, -61.1310005F), new Vector2(273.183014F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(266.950012F, -61.1310005F), new Vector2(261.333008F, -59.7779999F), new Vector2(256.332001F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(251.328995F, -54.3660011F), new Vector2(247.393005F, -50.6549988F), new Vector2(244.524002F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(241.653F, -41.2249985F), new Vector2(240.218994F, -35.8740005F), new Vector2(240.218994F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(240.218994F, -23.9850006F), new Vector2(241.632996F, -18.6539993F), new Vector2(244.462006F, -13.8990002F));
+ builder.AddCubicBezier(new Vector2(247.291F, -9.1420002F), new Vector2(251.205994F, -5.41200018F), new Vector2(256.209015F, -2.70600009F));
+ builder.AddCubicBezier(new Vector2(261.209991F, 0F), new Vector2(266.826996F, 1.35300004F), new Vector2(273.059998F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(277.980011F, 1.35300004F), new Vector2(282.386993F, 0.510999978F), new Vector2(286.28299F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 4 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0041()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(228.841995F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(230.686996F, -73.0199966F), new Vector2(231.608994F, -75.4800034F), new Vector2(231.608994F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(231.608994F, -81.3030014F), new Vector2(230.686996F, -83.7630005F), new Vector2(228.841995F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(226.996994F, -87.6989975F), new Vector2(224.556F, -88.6829987F), new Vector2(221.522995F, -88.6829987F));
+ builder.AddCubicBezier(new Vector2(218.651993F, -88.6829987F), new Vector2(216.233994F, -87.6989975F), new Vector2(214.266006F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(212.298004F, -83.7630005F), new Vector2(211.313995F, -81.3030014F), new Vector2(211.313995F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(211.313995F, -75.4800034F), new Vector2(212.298004F, -73.0199966F), new Vector2(214.266006F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(216.233994F, -68.9199982F), new Vector2(218.651993F, -67.8960037F), new Vector2(221.522995F, -67.8960037F));
+ builder.AddCubicBezier(new Vector2(224.556F, -67.8960037F), new Vector2(226.996994F, -68.9199982F), new Vector2(228.841995F, -70.9710007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(230.994003F, 0F));
+ builder.AddLine(new Vector2(230.994003F, -59.7779999F));
+ builder.AddLine(new Vector2(212.052002F, -59.7779999F));
+ builder.AddLine(new Vector2(212.052002F, 0F));
+ builder.AddLine(new Vector2(230.994003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 4 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0042()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(203.811005F, -43.6650009F));
+ builder.AddLine(new Vector2(203.811005F, -59.7779999F));
+ builder.AddLine(new Vector2(157.932007F, -59.7779999F));
+ builder.AddLine(new Vector2(157.932007F, -43.6650009F));
+ builder.AddLine(new Vector2(203.811005F, -43.6650009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(190.281006F, 0F));
+ builder.AddLine(new Vector2(190.281006F, -84.5009995F));
+ builder.AddLine(new Vector2(171.339005F, -84.5009995F));
+ builder.AddLine(new Vector2(171.339005F, 0F));
+ builder.AddLine(new Vector2(190.281006F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 4 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0043()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(146.186005F, -3.62800002F));
+ builder.AddCubicBezier(new Vector2(150.572006F, -7.11199999F), new Vector2(152.766006F, -11.7659998F), new Vector2(152.766006F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(152.766006F, -21.3600006F), new Vector2(152.067993F, -24.4160004F), new Vector2(150.675003F, -26.7530003F));
+ builder.AddCubicBezier(new Vector2(149.279999F, -29.0900002F), new Vector2(147.477005F, -30.9750004F), new Vector2(145.263F, -32.4109993F));
+ builder.AddCubicBezier(new Vector2(143.048996F, -33.8450012F), new Vector2(140.712006F, -34.9519997F), new Vector2(138.251999F, -35.7319984F));
+ builder.AddCubicBezier(new Vector2(135.792007F, -36.5099983F), new Vector2(133.475006F, -37.1860008F), new Vector2(131.302994F, -37.7610016F));
+ builder.AddCubicBezier(new Vector2(129.128998F, -38.3339996F), new Vector2(127.324997F, -38.9910011F), new Vector2(125.890999F, -39.7290001F));
+ builder.AddCubicBezier(new Vector2(124.455002F, -40.4669991F), new Vector2(123.737999F, -41.4510002F), new Vector2(123.737999F, -42.6809998F));
+ builder.AddCubicBezier(new Vector2(123.737999F, -43.7459984F), new Vector2(124.269997F, -44.6069984F), new Vector2(125.336998F, -45.2639999F));
+ builder.AddCubicBezier(new Vector2(126.402F, -45.9189987F), new Vector2(128.001007F, -46.2480011F), new Vector2(130.134003F, -46.2480011F));
+ builder.AddCubicBezier(new Vector2(132.348007F, -46.2480011F), new Vector2(134.623001F, -45.776001F), new Vector2(136.960007F, -44.8339996F));
+ builder.AddCubicBezier(new Vector2(139.296997F, -43.8899994F), new Vector2(141.408005F, -42.3120003F), new Vector2(143.294998F, -40.0979996F));
+ builder.AddLine(new Vector2(153.996002F, -51.0449982F));
+ builder.AddCubicBezier(new Vector2(151.371002F, -54.4889984F), new Vector2(147.886002F, -57.0909996F), new Vector2(143.541F, -58.8549995F));
+ builder.AddCubicBezier(new Vector2(139.194F, -60.6170006F), new Vector2(134.520004F, -61.5F), new Vector2(129.518997F, -61.5F));
+ builder.AddCubicBezier(new Vector2(124.515999F, -61.5F), new Vector2(120.210999F, -60.6790009F), new Vector2(116.603996F, -59.0400009F));
+ builder.AddCubicBezier(new Vector2(112.995003F, -57.3989983F), new Vector2(110.208F, -55.1660004F), new Vector2(108.239998F, -52.3370018F));
+ builder.AddCubicBezier(new Vector2(106.272003F, -49.5079994F), new Vector2(105.288002F, -46.1650009F), new Vector2(105.288002F, -42.3120003F));
+ builder.AddCubicBezier(new Vector2(105.288002F, -38.6220016F), new Vector2(105.984001F, -35.6279984F), new Vector2(107.378998F, -33.3330002F));
+ builder.AddCubicBezier(new Vector2(108.772003F, -31.0359993F), new Vector2(110.577003F, -29.2320004F), new Vector2(112.791F, -27.9209995F));
+ builder.AddCubicBezier(new Vector2(115.004997F, -26.6079998F), new Vector2(117.342003F, -25.5629997F), new Vector2(119.802002F, -24.7849998F));
+ builder.AddCubicBezier(new Vector2(122.262001F, -24.0049992F), new Vector2(124.619003F, -23.3080006F), new Vector2(126.875F, -22.6930008F));
+ builder.AddCubicBezier(new Vector2(129.128998F, -22.0779991F), new Vector2(130.953003F, -21.4209995F), new Vector2(132.348007F, -20.7250004F));
+ builder.AddCubicBezier(new Vector2(133.740997F, -20.0270004F), new Vector2(134.438995F, -18.9419994F), new Vector2(134.438995F, -17.4659996F));
+ builder.AddCubicBezier(new Vector2(134.438995F, -16.2360001F), new Vector2(133.843994F, -15.2919998F), new Vector2(132.656006F, -14.6370001F));
+ builder.AddCubicBezier(new Vector2(131.466003F, -13.9799995F), new Vector2(129.845993F, -13.6529999F), new Vector2(127.796997F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(124.515999F, -13.6529999F), new Vector2(121.543999F, -14.2469997F), new Vector2(118.879997F, -15.4370003F));
+ builder.AddCubicBezier(new Vector2(116.213997F, -16.625F), new Vector2(113.856003F, -18.2849998F), new Vector2(111.806999F, -20.4179993F));
+ builder.AddLine(new Vector2(100.983002F, -9.59399986F));
+ builder.AddCubicBezier(new Vector2(103.113998F, -7.38000011F), new Vector2(105.614998F, -5.43100023F), new Vector2(108.486F, -3.75099993F));
+ builder.AddCubicBezier(new Vector2(111.355003F, -2.06900001F), new Vector2(114.513F, -0.758000016F), new Vector2(117.957001F, 0.184F));
+ builder.AddCubicBezier(new Vector2(121.401001F, 1.12600005F), new Vector2(124.885002F, 1.59899998F), new Vector2(128.412003F, 1.59899998F));
+ builder.AddCubicBezier(new Vector2(135.873001F, 1.59899998F), new Vector2(141.798004F, -0.142000005F), new Vector2(146.186005F, -3.62800002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 4 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0044()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(81.4260025F, -2.02900004F));
+ builder.AddCubicBezier(new Vector2(85.6080017F, -4.28299999F), new Vector2(88.8679962F, -7.4000001F), new Vector2(91.2050018F, -11.3780003F));
+ builder.AddCubicBezier(new Vector2(93.5419998F, -15.3540001F), new Vector2(94.7099991F, -19.9659996F), new Vector2(94.7099991F, -25.2150002F));
+ builder.AddLine(new Vector2(94.7099991F, -59.7779999F));
+ builder.AddLine(new Vector2(75.7679977F, -59.7779999F));
+ builder.AddLine(new Vector2(75.7679977F, -25.4610004F));
+ builder.AddCubicBezier(new Vector2(75.7679977F, -22.3439999F), new Vector2(74.9690018F, -19.8840008F), new Vector2(73.3700027F, -18.0809994F));
+ builder.AddCubicBezier(new Vector2(71.7710037F, -16.2759991F), new Vector2(69.5759964F, -15.375F), new Vector2(66.7890015F, -15.375F));
+ builder.AddCubicBezier(new Vector2(64.9020004F, -15.375F), new Vector2(63.262001F, -15.7840004F), new Vector2(61.8689995F, -16.6049995F));
+ builder.AddCubicBezier(new Vector2(60.473999F, -17.4239998F), new Vector2(59.4090004F, -18.5930004F), new Vector2(58.6710014F, -20.1110001F));
+ builder.AddCubicBezier(new Vector2(57.9329987F, -21.6270008F), new Vector2(57.5639992F, -23.4099998F), new Vector2(57.5639992F, -25.4610004F));
+ builder.AddLine(new Vector2(57.5639992F, -59.7779999F));
+ builder.AddLine(new Vector2(38.6220016F, -59.7779999F));
+ builder.AddLine(new Vector2(38.6220016F, -25.2150002F));
+ builder.AddCubicBezier(new Vector2(38.6220016F, -20.0489998F), new Vector2(39.8100014F, -15.4770002F), new Vector2(42.1889992F, -11.5010004F));
+ builder.AddCubicBezier(new Vector2(44.5660019F, -7.52299976F), new Vector2(47.9090004F, -4.38600016F), new Vector2(52.2140007F, -2.09100008F));
+ builder.AddCubicBezier(new Vector2(56.519001F, 0.203999996F), new Vector2(61.3769989F, 1.35300004F), new Vector2(66.7890015F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(72.3639984F, 1.35300004F), new Vector2(77.2440033F, 0.224999994F), new Vector2(81.4260025F, -2.02900004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 4 Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0045()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(25.0310001F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(26.8759995F, -73.0199966F), new Vector2(27.7980003F, -75.4800034F), new Vector2(27.7980003F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(27.7980003F, -81.3030014F), new Vector2(26.8759995F, -83.7630005F), new Vector2(25.0310001F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(23.1860008F, -87.6989975F), new Vector2(20.7450008F, -88.6829987F), new Vector2(17.7119999F, -88.6829987F));
+ builder.AddCubicBezier(new Vector2(14.8409996F, -88.6829987F), new Vector2(12.4230003F, -87.6989975F), new Vector2(10.4549999F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(8.48700047F, -83.7630005F), new Vector2(7.50299978F, -81.3030014F), new Vector2(7.50299978F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(7.50299978F, -75.4800034F), new Vector2(8.48700047F, -73.0199966F), new Vector2(10.4549999F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(12.4230003F, -68.9199982F), new Vector2(14.8409996F, -67.8960037F), new Vector2(17.7119999F, -67.8960037F));
+ builder.AddCubicBezier(new Vector2(20.7450008F, -67.8960037F), new Vector2(23.1860008F, -68.9199982F), new Vector2(25.0310001F, -70.9710007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(15.4370003F, 23.8619995F));
+ builder.AddCubicBezier(new Vector2(19.0039997F, 21.8939991F), new Vector2(21.8110008F, 19.1270008F), new Vector2(23.8619995F, 15.5600004F));
+ builder.AddCubicBezier(new Vector2(25.9109993F, 11.993F), new Vector2(26.9370003F, 7.78900003F), new Vector2(26.9370003F, 2.9519999F));
+ builder.AddLine(new Vector2(26.9370003F, -59.7779999F));
+ builder.AddLine(new Vector2(7.99499989F, -59.7779999F));
+ builder.AddLine(new Vector2(7.99499989F, 3.3210001F));
+ builder.AddCubicBezier(new Vector2(7.99499989F, 5.53499985F), new Vector2(7.44199991F, 7.17399979F), new Vector2(6.33500004F, 8.24100018F));
+ builder.AddCubicBezier(new Vector2(5.22800016F, 9.30599976F), new Vector2(3.77099991F, 9.84000015F), new Vector2(1.96800005F, 9.84000015F));
+ builder.AddCubicBezier(new Vector2(0.737999976F, 9.84000015F), new Vector2(-0.368999988F, 9.61299992F), new Vector2(-1.35300004F, 9.16300011F));
+ builder.AddCubicBezier(new Vector2(-2.33699989F, 8.71100044F), new Vector2(-3.27900004F, 7.95300007F), new Vector2(-4.18200016F, 6.88800001F));
+ builder.AddLine(new Vector2(-15.9899998F, 18.573F));
+ builder.AddCubicBezier(new Vector2(-13.6110001F, 21.1959991F), new Vector2(-10.9049997F, 23.2250004F), new Vector2(-7.87200022F, 24.6609993F));
+ builder.AddCubicBezier(new Vector2(-4.83699989F, 26.0949993F), new Vector2(-1.14699996F, 26.8139992F), new Vector2(3.19799995F, 26.8139992F));
+ builder.AddCubicBezier(new Vector2(7.78900003F, 26.8139992F), new Vector2(11.8699999F, 25.8299999F), new Vector2(15.4370003F, 23.8619995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 5 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0046()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(580.80603F, 25.2150002F));
+ builder.AddLine(new Vector2(591.383972F, 0.368999988F));
+ builder.AddLine(new Vector2(579.330017F, -13.6529999F));
+ builder.AddLine(new Vector2(561.372009F, 25.2150002F));
+ builder.AddLine(new Vector2(580.80603F, 25.2150002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(591.383972F, 0.368999988F));
+ builder.AddLine(new Vector2(616.968018F, -59.7779999F));
+ builder.AddLine(new Vector2(596.549988F, -59.7779999F));
+ builder.AddLine(new Vector2(580.682983F, -12.177F));
+ builder.AddLine(new Vector2(588.185974F, -12.177F));
+ builder.AddLine(new Vector2(572.565002F, -59.7779999F));
+ builder.AddLine(new Vector2(552.146973F, -59.7779999F));
+ builder.AddLine(new Vector2(576.747009F, 0.368999988F));
+ builder.AddLine(new Vector2(591.383972F, 0.368999988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 5 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0047()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(539.539978F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(543.434021F, -2.84899998F), new Vector2(546.981018F, -5.329F), new Vector2(550.179016F, -8.60999966F));
+ builder.AddLine(new Vector2(538.002014F, -20.6639996F));
+ builder.AddCubicBezier(new Vector2(536.606995F, -19.1049995F), new Vector2(534.947021F, -17.9160004F), new Vector2(533.020996F, -17.0970001F));
+ builder.AddCubicBezier(new Vector2(531.093018F, -16.2759991F), new Vector2(528.900024F, -15.8669996F), new Vector2(526.440002F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(523.896973F, -15.8669996F), new Vector2(521.559998F, -16.4599991F), new Vector2(519.429016F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(517.296021F, -18.8379993F), new Vector2(515.635986F, -20.4990005F), new Vector2(514.447998F, -22.632F));
+ builder.AddCubicBezier(new Vector2(513.257996F, -24.7630005F), new Vector2(512.664001F, -27.2229996F), new Vector2(512.664001F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(512.664001F, -32.7179985F), new Vector2(513.257996F, -35.1170006F), new Vector2(514.447998F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(515.635986F, -39.2989998F), new Vector2(517.276001F, -40.9379997F), new Vector2(519.367004F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(521.458008F, -43.3160019F), new Vector2(523.815002F, -43.9109993F), new Vector2(526.440002F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(528.817017F, -43.9109993F), new Vector2(530.929993F, -43.5419998F), new Vector2(532.775024F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(534.619995F, -42.0660019F), new Vector2(536.237976F, -40.9169998F), new Vector2(537.632996F, -39.3600006F));
+ builder.AddLine(new Vector2(549.809998F, -51.6599998F));
+ builder.AddCubicBezier(new Vector2(546.775024F, -54.7750015F), new Vector2(543.310974F, -57.1329994F), new Vector2(539.416992F, -58.7319984F));
+ builder.AddCubicBezier(new Vector2(535.520996F, -60.3310013F), new Vector2(531.195007F, -61.1310005F), new Vector2(526.440002F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(520.20697F, -61.1310005F), new Vector2(514.590027F, -59.7779999F), new Vector2(509.588989F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(504.585999F, -54.3660011F), new Vector2(500.649994F, -50.6549988F), new Vector2(497.781006F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(494.910004F, -41.2249985F), new Vector2(493.476013F, -35.8740005F), new Vector2(493.476013F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(493.476013F, -23.9850006F), new Vector2(494.890991F, -18.6539993F), new Vector2(497.720001F, -13.8990002F));
+ builder.AddCubicBezier(new Vector2(500.549011F, -9.1420002F), new Vector2(504.463013F, -5.41200018F), new Vector2(509.466003F, -2.70600009F));
+ builder.AddCubicBezier(new Vector2(514.46698F, 0F), new Vector2(520.083984F, 1.35300004F), new Vector2(526.317017F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(531.237F, 1.35300004F), new Vector2(535.643982F, 0.510999978F), new Vector2(539.539978F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 5 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0048()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(445.875F, 0F));
+ builder.AddLine(new Vector2(445.875F, -59.7779999F));
+ builder.AddLine(new Vector2(426.933014F, -59.7779999F));
+ builder.AddLine(new Vector2(426.933014F, 0F));
+ builder.AddLine(new Vector2(445.875F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(485.480988F, 0F));
+ builder.AddLine(new Vector2(485.480988F, -38.2529984F));
+ builder.AddCubicBezier(new Vector2(485.480988F, -42.3520012F), new Vector2(484.497009F, -46.1450005F), new Vector2(482.528992F, -49.6310005F));
+ builder.AddCubicBezier(new Vector2(480.561005F, -53.1150017F), new Vector2(477.855011F, -55.882F), new Vector2(474.411011F, -57.9329987F));
+ builder.AddCubicBezier(new Vector2(470.96701F, -59.9819984F), new Vector2(467.071014F, -61.0079994F), new Vector2(462.726013F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(458.132996F, -61.0079994F), new Vector2(454.013F, -60.0439987F), new Vector2(450.36499F, -58.118F));
+ builder.AddCubicBezier(new Vector2(446.714996F, -56.1899986F), new Vector2(443.846008F, -53.4630013F), new Vector2(441.755005F, -49.9379997F));
+ builder.AddCubicBezier(new Vector2(439.664001F, -46.4109993F), new Vector2(438.618011F, -42.3120003F), new Vector2(438.618011F, -37.6380005F));
+ builder.AddLine(new Vector2(445.875F, -34.0709991F));
+ builder.AddCubicBezier(new Vector2(445.875F, -36.1199989F), new Vector2(446.325012F, -37.9239998F), new Vector2(447.227997F, -39.4830017F));
+ builder.AddCubicBezier(new Vector2(448.128998F, -41.0400009F), new Vector2(449.359009F, -42.2509995F), new Vector2(450.917999F, -43.1119995F));
+ builder.AddCubicBezier(new Vector2(452.475006F, -43.9729996F), new Vector2(454.239014F, -44.4029999F), new Vector2(456.207001F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(459.158997F, -44.4029999F), new Vector2(461.618988F, -43.4379997F), new Vector2(463.587006F, -41.512001F));
+ builder.AddCubicBezier(new Vector2(465.554993F, -39.5839996F), new Vector2(466.539001F, -37.1040001F), new Vector2(466.539001F, -34.0709991F));
+ builder.AddLine(new Vector2(466.539001F, 0F));
+ builder.AddLine(new Vector2(485.480988F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 5 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0049()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(402.947998F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(407.130005F, -2.84899998F), new Vector2(410.696991F, -5.45200014F), new Vector2(413.648987F, -8.97900009F));
+ builder.AddLine(new Vector2(403.194F, -19.3110008F));
+ builder.AddCubicBezier(new Vector2(401.389008F, -17.2600002F), new Vector2(399.298004F, -15.7229996F), new Vector2(396.92099F, -14.6990004F));
+ builder.AddCubicBezier(new Vector2(394.541992F, -13.6730003F), new Vector2(391.917999F, -13.1610003F), new Vector2(389.049011F, -13.1610003F));
+ builder.AddCubicBezier(new Vector2(385.851013F, -13.1610003F), new Vector2(383.084015F, -13.8380003F), new Vector2(380.747009F, -15.191F));
+ builder.AddCubicBezier(new Vector2(378.410004F, -16.5440006F), new Vector2(376.605011F, -18.4899998F), new Vector2(375.334991F, -21.0330009F));
+ builder.AddCubicBezier(new Vector2(374.062988F, -23.5739994F), new Vector2(373.428009F, -26.5680008F), new Vector2(373.428009F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(373.428009F, -33.4560013F), new Vector2(374.022003F, -36.4080009F), new Vector2(375.212006F, -38.868F));
+ builder.AddCubicBezier(new Vector2(376.399994F, -41.3279991F), new Vector2(378.080994F, -43.2540016F), new Vector2(380.255005F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(382.427002F, -46.0419998F), new Vector2(384.98999F, -46.7400017F), new Vector2(387.941986F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(390.64801F, -46.7400017F), new Vector2(392.963989F, -46.125F), new Vector2(394.891998F, -44.8950005F));
+ builder.AddCubicBezier(new Vector2(396.817993F, -43.6650009F), new Vector2(398.273987F, -41.9220009F), new Vector2(399.257996F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(400.242004F, -37.4119987F), new Vector2(400.773987F, -34.6030006F), new Vector2(400.856995F, -31.2420006F));
+ builder.AddLine(new Vector2(408.975006F, -36.7770004F));
+ builder.AddLine(new Vector2(365.678986F, -36.5309982F));
+ builder.AddLine(new Vector2(365.678986F, -23.493F));
+ builder.AddLine(new Vector2(417.092987F, -23.7390003F));
+ builder.AddCubicBezier(new Vector2(417.502014F, -25.2150002F), new Vector2(417.769989F, -26.5459995F), new Vector2(417.893005F, -27.7360001F));
+ builder.AddCubicBezier(new Vector2(418.015991F, -28.9239998F), new Vector2(418.076996F, -30.0930004F), new Vector2(418.076996F, -31.2420006F));
+ builder.AddCubicBezier(new Vector2(418.076996F, -37.0629997F), new Vector2(416.764008F, -42.2290001F), new Vector2(414.140991F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(411.515991F, -51.2490005F), new Vector2(407.949005F, -54.7750015F), new Vector2(403.440002F, -57.3180008F));
+ builder.AddCubicBezier(new Vector2(398.928986F, -59.8590012F), new Vector2(393.681F, -61.1310005F), new Vector2(387.696014F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(381.627014F, -61.1310005F), new Vector2(376.174011F, -59.7779999F), new Vector2(371.337006F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(366.497986F, -54.3660011F), new Vector2(362.684998F, -50.6549988F), new Vector2(359.89801F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(357.109009F, -41.2249985F), new Vector2(355.716003F, -35.9160004F), new Vector2(355.716003F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(355.716003F, -23.9430008F), new Vector2(357.149994F, -18.5310001F), new Vector2(360.020996F, -13.776F));
+ builder.AddCubicBezier(new Vector2(362.890015F, -9.01900005F), new Vector2(366.825989F, -5.30900002F), new Vector2(371.82901F, -2.64499998F));
+ builder.AddCubicBezier(new Vector2(376.829987F, 0.0189999994F), new Vector2(382.570007F, 1.35300004F), new Vector2(389.049011F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(394.131989F, 1.35300004F), new Vector2(398.765991F, 0.510999978F), new Vector2(402.947998F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 5 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0050()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(346.368011F, -89.2979965F));
+ builder.AddLine(new Vector2(327.425995F, -89.2979965F));
+ builder.AddLine(new Vector2(327.425995F, -45.1409988F));
+ builder.AddLine(new Vector2(330.623993F, -30.75F));
+ builder.AddLine(new Vector2(327.795013F, -16.1130009F));
+ builder.AddLine(new Vector2(327.795013F, 0F));
+ builder.AddLine(new Vector2(346.368011F, 0F));
+ builder.AddLine(new Vector2(346.368011F, -89.2979965F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(308.360992F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(306.309998F, -18.8379993F), new Vector2(304.733002F, -20.4990005F), new Vector2(303.626007F, -22.632F));
+ builder.AddCubicBezier(new Vector2(302.519012F, -24.7630005F), new Vector2(301.964996F, -27.1830006F), new Vector2(301.964996F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(301.964996F, -32.5950012F), new Vector2(302.55899F, -34.9939995F), new Vector2(303.748993F, -37.0849991F));
+ builder.AddCubicBezier(new Vector2(304.937012F, -39.1759987F), new Vector2(306.515991F, -40.8359985F), new Vector2(308.484009F, -42.0660019F));
+ builder.AddCubicBezier(new Vector2(310.451996F, -43.2960014F), new Vector2(312.747009F, -43.9109993F), new Vector2(315.372009F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(317.994995F, -43.9109993F), new Vector2(320.291992F, -43.3160019F), new Vector2(322.26001F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(324.227997F, -40.9379997F), new Vector2(325.765991F, -39.2989998F), new Vector2(326.872986F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(327.980011F, -35.1170006F), new Vector2(328.53299F, -32.7179985F), new Vector2(328.53299F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(328.53299F, -27.2229996F), new Vector2(327.980011F, -24.7630005F), new Vector2(326.872986F, -22.632F));
+ builder.AddCubicBezier(new Vector2(325.765991F, -20.4990005F), new Vector2(324.227997F, -18.8379993F), new Vector2(322.26001F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(320.291992F, -16.4599991F), new Vector2(317.954987F, -15.8669996F), new Vector2(315.248993F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(312.705994F, -15.8669996F), new Vector2(310.410004F, -16.4599991F), new Vector2(308.360992F, -17.6499996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(322.997986F, -1.29200006F));
+ builder.AddCubicBezier(new Vector2(326.359009F, -2.97199988F), new Vector2(329.105988F, -5.22800016F), new Vector2(331.239014F, -8.05700016F));
+ builder.AddCubicBezier(new Vector2(333.369995F, -10.8859997F), new Vector2(334.600006F, -14.0620003F), new Vector2(334.928986F, -17.5890007F));
+ builder.AddLine(new Vector2(334.928986F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(334.600006F, -46.4109993F), new Vector2(333.369995F, -49.5890007F), new Vector2(331.239014F, -52.3370018F));
+ builder.AddCubicBezier(new Vector2(329.105988F, -55.0830002F), new Vector2(326.359009F, -57.2140007F), new Vector2(322.997986F, -58.7319984F));
+ builder.AddCubicBezier(new Vector2(319.63501F, -60.2480011F), new Vector2(315.945007F, -61.0079994F), new Vector2(311.928009F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(306.269989F, -61.0079994F), new Vector2(301.22699F, -59.6549988F), new Vector2(296.799011F, -56.9490013F));
+ builder.AddCubicBezier(new Vector2(292.371002F, -54.243F), new Vector2(288.927002F, -50.5530014F), new Vector2(286.46701F, -45.8790016F));
+ builder.AddCubicBezier(new Vector2(284.006989F, -41.2050018F), new Vector2(282.777008F, -35.8740005F), new Vector2(282.777008F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(282.777008F, -23.9020004F), new Vector2(284.006989F, -18.573F), new Vector2(286.46701F, -13.8990002F));
+ builder.AddCubicBezier(new Vector2(288.927002F, -9.22500038F), new Vector2(292.350006F, -5.53499985F), new Vector2(296.738007F, -2.829F));
+ builder.AddCubicBezier(new Vector2(301.123993F, -0.123000003F), new Vector2(306.187012F, 1.23000002F), new Vector2(311.928009F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(315.945007F, 1.23000002F), new Vector2(319.63501F, 0.388000011F), new Vector2(322.997986F, -1.29200006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 5 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0051()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(271.153992F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(272.998993F, -73.0199966F), new Vector2(273.92099F, -75.4800034F), new Vector2(273.92099F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(273.92099F, -81.3030014F), new Vector2(272.998993F, -83.7630005F), new Vector2(271.153992F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(269.30899F, -87.6989975F), new Vector2(266.868011F, -88.6829987F), new Vector2(263.834991F, -88.6829987F));
+ builder.AddCubicBezier(new Vector2(260.963989F, -88.6829987F), new Vector2(258.54599F, -87.6989975F), new Vector2(256.578003F, -85.7310028F));
+ builder.AddCubicBezier(new Vector2(254.610001F, -83.7630005F), new Vector2(253.626007F, -81.3030014F), new Vector2(253.626007F, -78.3509979F));
+ builder.AddCubicBezier(new Vector2(253.626007F, -75.4800034F), new Vector2(254.610001F, -73.0199966F), new Vector2(256.578003F, -70.9710007F));
+ builder.AddCubicBezier(new Vector2(258.54599F, -68.9199982F), new Vector2(260.963989F, -67.8960037F), new Vector2(263.834991F, -67.8960037F));
+ builder.AddCubicBezier(new Vector2(266.868011F, -67.8960037F), new Vector2(269.30899F, -68.9199982F), new Vector2(271.153992F, -70.9710007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(273.306F, 0F));
+ builder.AddLine(new Vector2(273.306F, -59.7779999F));
+ builder.AddLine(new Vector2(254.363998F, -59.7779999F));
+ builder.AddLine(new Vector2(254.363998F, 0F));
+ builder.AddLine(new Vector2(273.306F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 5 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0052()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(237.574997F, -3.62800002F));
+ builder.AddCubicBezier(new Vector2(241.960999F, -7.11199999F), new Vector2(244.154999F, -11.7659998F), new Vector2(244.154999F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(244.154999F, -21.3600006F), new Vector2(243.457001F, -24.4160004F), new Vector2(242.063995F, -26.7530003F));
+ builder.AddCubicBezier(new Vector2(240.669006F, -29.0900002F), new Vector2(238.865997F, -30.9750004F), new Vector2(236.651993F, -32.4109993F));
+ builder.AddCubicBezier(new Vector2(234.438004F, -33.8450012F), new Vector2(232.100998F, -34.9519997F), new Vector2(229.641006F, -35.7319984F));
+ builder.AddCubicBezier(new Vector2(227.181F, -36.5099983F), new Vector2(224.863007F, -37.1860008F), new Vector2(222.690994F, -37.7610016F));
+ builder.AddCubicBezier(new Vector2(220.516998F, -38.3339996F), new Vector2(218.712997F, -38.9910011F), new Vector2(217.279007F, -39.7290001F));
+ builder.AddCubicBezier(new Vector2(215.843002F, -40.4669991F), new Vector2(215.126999F, -41.4510002F), new Vector2(215.126999F, -42.6809998F));
+ builder.AddCubicBezier(new Vector2(215.126999F, -43.7459984F), new Vector2(215.658997F, -44.6069984F), new Vector2(216.725998F, -45.2639999F));
+ builder.AddCubicBezier(new Vector2(217.791F, -45.9189987F), new Vector2(219.389999F, -46.2480011F), new Vector2(221.522995F, -46.2480011F));
+ builder.AddCubicBezier(new Vector2(223.737F, -46.2480011F), new Vector2(226.013F, -45.776001F), new Vector2(228.350006F, -44.8339996F));
+ builder.AddCubicBezier(new Vector2(230.686996F, -43.8899994F), new Vector2(232.796997F, -42.3120003F), new Vector2(234.684006F, -40.0979996F));
+ builder.AddLine(new Vector2(245.384995F, -51.0449982F));
+ builder.AddCubicBezier(new Vector2(242.759995F, -54.4889984F), new Vector2(239.274994F, -57.0909996F), new Vector2(234.929993F, -58.8549995F));
+ builder.AddCubicBezier(new Vector2(230.582993F, -60.6170006F), new Vector2(225.908997F, -61.5F), new Vector2(220.908005F, -61.5F));
+ builder.AddCubicBezier(new Vector2(215.904999F, -61.5F), new Vector2(211.600006F, -60.6790009F), new Vector2(207.992996F, -59.0400009F));
+ builder.AddCubicBezier(new Vector2(204.384003F, -57.3989983F), new Vector2(201.597F, -55.1660004F), new Vector2(199.628998F, -52.3370018F));
+ builder.AddCubicBezier(new Vector2(197.660995F, -49.5079994F), new Vector2(196.677002F, -46.1650009F), new Vector2(196.677002F, -42.3120003F));
+ builder.AddCubicBezier(new Vector2(196.677002F, -38.6220016F), new Vector2(197.373001F, -35.6279984F), new Vector2(198.768005F, -33.3330002F));
+ builder.AddCubicBezier(new Vector2(200.160995F, -31.0359993F), new Vector2(201.966003F, -29.2320004F), new Vector2(204.179993F, -27.9209995F));
+ builder.AddCubicBezier(new Vector2(206.393997F, -26.6079998F), new Vector2(208.731003F, -25.5629997F), new Vector2(211.190994F, -24.7849998F));
+ builder.AddCubicBezier(new Vector2(213.651001F, -24.0049992F), new Vector2(216.007996F, -23.3080006F), new Vector2(218.264008F, -22.6930008F));
+ builder.AddCubicBezier(new Vector2(220.518005F, -22.0779991F), new Vector2(222.341995F, -21.4209995F), new Vector2(223.737F, -20.7250004F));
+ builder.AddCubicBezier(new Vector2(225.130005F, -20.0270004F), new Vector2(225.828003F, -18.9419994F), new Vector2(225.828003F, -17.4659996F));
+ builder.AddCubicBezier(new Vector2(225.828003F, -16.2360001F), new Vector2(225.231995F, -15.2919998F), new Vector2(224.044006F, -14.6370001F));
+ builder.AddCubicBezier(new Vector2(222.854004F, -13.9799995F), new Vector2(221.235001F, -13.6529999F), new Vector2(219.186005F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(215.904999F, -13.6529999F), new Vector2(212.932007F, -14.2469997F), new Vector2(210.268005F, -15.4370003F));
+ builder.AddCubicBezier(new Vector2(207.602005F, -16.625F), new Vector2(205.244995F, -18.2849998F), new Vector2(203.195999F, -20.4179993F));
+ builder.AddLine(new Vector2(192.371994F, -9.59399986F));
+ builder.AddCubicBezier(new Vector2(194.503006F, -7.38000011F), new Vector2(197.003998F, -5.43100023F), new Vector2(199.875F, -3.75099993F));
+ builder.AddCubicBezier(new Vector2(202.744003F, -2.06900001F), new Vector2(205.901993F, -0.758000016F), new Vector2(209.345993F, 0.184F));
+ builder.AddCubicBezier(new Vector2(212.789993F, 1.12600005F), new Vector2(216.274002F, 1.59899998F), new Vector2(219.800995F, 1.59899998F));
+ builder.AddCubicBezier(new Vector2(227.261993F, 1.59899998F), new Vector2(233.186996F, -0.142000005F), new Vector2(237.574997F, -3.62800002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 5 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0053()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(173.921997F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(178.104004F, -2.84899998F), new Vector2(181.671005F, -5.45200014F), new Vector2(184.623001F, -8.97900009F));
+ builder.AddLine(new Vector2(174.167999F, -19.3110008F));
+ builder.AddCubicBezier(new Vector2(172.363007F, -17.2600002F), new Vector2(170.272003F, -15.7229996F), new Vector2(167.895004F, -14.6990004F));
+ builder.AddCubicBezier(new Vector2(165.516006F, -13.6730003F), new Vector2(162.891998F, -13.1610003F), new Vector2(160.022995F, -13.1610003F));
+ builder.AddCubicBezier(new Vector2(156.824997F, -13.1610003F), new Vector2(154.057999F, -13.8380003F), new Vector2(151.720993F, -15.191F));
+ builder.AddCubicBezier(new Vector2(149.384003F, -16.5440006F), new Vector2(147.578995F, -18.4899998F), new Vector2(146.309006F, -21.0330009F));
+ builder.AddCubicBezier(new Vector2(145.037003F, -23.5739994F), new Vector2(144.401993F, -26.5680008F), new Vector2(144.401993F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(144.401993F, -33.4560013F), new Vector2(144.996002F, -36.4080009F), new Vector2(146.186005F, -38.868F));
+ builder.AddCubicBezier(new Vector2(147.373993F, -41.3279991F), new Vector2(149.054993F, -43.2540016F), new Vector2(151.229004F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(153.401001F, -46.0419998F), new Vector2(155.964005F, -46.7400017F), new Vector2(158.916F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(161.621994F, -46.7400017F), new Vector2(163.938004F, -46.125F), new Vector2(165.865997F, -44.8950005F));
+ builder.AddCubicBezier(new Vector2(167.792007F, -43.6650009F), new Vector2(169.248001F, -41.9220009F), new Vector2(170.231995F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(171.216003F, -37.4119987F), new Vector2(171.748001F, -34.6030006F), new Vector2(171.830994F, -31.2420006F));
+ builder.AddLine(new Vector2(179.949005F, -36.7770004F));
+ builder.AddLine(new Vector2(136.653F, -36.5309982F));
+ builder.AddLine(new Vector2(136.653F, -23.493F));
+ builder.AddLine(new Vector2(188.067001F, -23.7390003F));
+ builder.AddCubicBezier(new Vector2(188.475998F, -25.2150002F), new Vector2(188.744003F, -26.5459995F), new Vector2(188.867004F, -27.7360001F));
+ builder.AddCubicBezier(new Vector2(188.990005F, -28.9239998F), new Vector2(189.050995F, -30.0930004F), new Vector2(189.050995F, -31.2420006F));
+ builder.AddCubicBezier(new Vector2(189.050995F, -37.0629997F), new Vector2(187.738007F, -42.2290001F), new Vector2(185.115005F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(182.490005F, -51.2490005F), new Vector2(178.923004F, -54.7750015F), new Vector2(174.414001F, -57.3180008F));
+ builder.AddCubicBezier(new Vector2(169.903F, -59.8590012F), new Vector2(164.654999F, -61.1310005F), new Vector2(158.669998F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(152.600998F, -61.1310005F), new Vector2(147.147995F, -59.7779999F), new Vector2(142.311005F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(137.472F, -54.3660011F), new Vector2(133.658997F, -50.6549988F), new Vector2(130.871994F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(128.082993F, -41.2249985F), new Vector2(126.690002F, -35.9160004F), new Vector2(126.690002F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(126.690002F, -23.9430008F), new Vector2(128.123993F, -18.5310001F), new Vector2(130.994995F, -13.776F));
+ builder.AddCubicBezier(new Vector2(133.863998F, -9.01900005F), new Vector2(137.800003F, -5.30900002F), new Vector2(142.802994F, -2.64499998F));
+ builder.AddCubicBezier(new Vector2(147.804001F, 0.0189999994F), new Vector2(153.544006F, 1.35300004F), new Vector2(160.022995F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(165.106003F, 1.35300004F), new Vector2(169.740005F, 0.510999978F), new Vector2(173.921997F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 5 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0054()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(101.414001F, -41.3899994F));
+ builder.AddCubicBezier(new Vector2(103.259003F, -43.3160019F), new Vector2(105.779999F, -44.2799988F), new Vector2(108.977997F, -44.2799988F));
+ builder.AddCubicBezier(new Vector2(110.535004F, -44.2799988F), new Vector2(111.93F, -44.0340004F), new Vector2(113.160004F, -43.5419998F));
+ builder.AddCubicBezier(new Vector2(114.389999F, -43.0499992F), new Vector2(115.374001F, -42.3930016F), new Vector2(116.112F, -41.5740013F));
+ builder.AddLine(new Vector2(127.305F, -55.8419991F));
+ builder.AddCubicBezier(new Vector2(125.664001F, -57.5639992F), new Vector2(123.758003F, -58.855999F), new Vector2(121.585999F, -59.7169991F));
+ builder.AddCubicBezier(new Vector2(119.412003F, -60.5779991F), new Vector2(116.889999F, -61.0079994F), new Vector2(114.021004F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(107.542F, -61.0079994F), new Vector2(102.438004F, -59.0800018F), new Vector2(98.7080002F, -55.2270012F));
+ builder.AddCubicBezier(new Vector2(94.9759979F, -51.3720016F), new Vector2(92.3310013F, -45.9189987F), new Vector2(90.7740021F, -38.868F));
+ builder.AddLine(new Vector2(98.6460037F, -32.7179985F));
+ builder.AddCubicBezier(new Vector2(98.6460037F, -36.5709991F), new Vector2(99.5690002F, -39.4620018F), new Vector2(101.414001F, -41.3899994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(98.6460037F, 0F));
+ builder.AddLine(new Vector2(98.6460037F, -59.7779999F));
+ builder.AddLine(new Vector2(79.7040024F, -59.7779999F));
+ builder.AddLine(new Vector2(79.7040024F, 0F));
+ builder.AddLine(new Vector2(98.6460037F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 6 Outlines
+ // - - ShapeGroup: m
+ CanvasGeometry Geometry_0055()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(393.354004F, 0F));
+ builder.AddLine(new Vector2(393.354004F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(393.354004F, -42.1469994F), new Vector2(392.328003F, -46.4109993F), new Vector2(390.278992F, -49.9379997F));
+ builder.AddCubicBezier(new Vector2(388.227997F, -53.4630013F), new Vector2(385.398987F, -56.1899986F), new Vector2(381.791992F, -58.118F));
+ builder.AddCubicBezier(new Vector2(378.183014F, -60.0439987F), new Vector2(374.123993F, -61.0079994F), new Vector2(369.61499F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(364.94101F, -61.0079994F), new Vector2(360.71701F, -60.0239983F), new Vector2(356.946014F, -58.0559998F));
+ builder.AddCubicBezier(new Vector2(353.173004F, -56.0880013F), new Vector2(350.181F, -53.2589989F), new Vector2(347.96701F, -49.5690002F));
+ builder.AddCubicBezier(new Vector2(345.752991F, -45.8790016F), new Vector2(344.52301F, -41.4910011F), new Vector2(344.277008F, -36.4080009F));
+ builder.AddLine(new Vector2(355.223999F, -34.9319992F));
+ builder.AddCubicBezier(new Vector2(355.223999F, -36.9000015F), new Vector2(355.632996F, -38.5800018F), new Vector2(356.45401F, -39.9749985F));
+ builder.AddCubicBezier(new Vector2(357.27301F, -41.368F), new Vector2(358.441986F, -42.4539986F), new Vector2(359.959991F, -43.2340012F));
+ builder.AddCubicBezier(new Vector2(361.476013F, -44.012001F), new Vector2(363.135986F, -44.4029999F), new Vector2(364.94101F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(367.563995F, -44.4029999F), new Vector2(369.799988F, -43.5620003F), new Vector2(371.644989F, -41.882F));
+ builder.AddCubicBezier(new Vector2(373.48999F, -40.2000008F), new Vector2(374.411987F, -37.8839989F), new Vector2(374.411987F, -34.9319992F));
+ builder.AddLine(new Vector2(374.411987F, 0F));
+ builder.AddLine(new Vector2(393.354004F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(355.223999F, 0F));
+ builder.AddLine(new Vector2(355.223999F, -38.2529984F));
+ builder.AddCubicBezier(new Vector2(355.223999F, -42.9269981F), new Vector2(354.218994F, -46.9440002F), new Vector2(352.210999F, -50.3069992F));
+ builder.AddCubicBezier(new Vector2(350.200989F, -53.6679993F), new Vector2(347.536987F, -56.2919998F), new Vector2(344.216003F, -58.1790009F));
+ builder.AddCubicBezier(new Vector2(340.894989F, -60.0639992F), new Vector2(337.183014F, -61.0079994F), new Vector2(333.084015F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(328.572998F, -61.0079994F), new Vector2(324.575989F, -60.0859985F), new Vector2(321.09201F, -58.2410011F));
+ builder.AddCubicBezier(new Vector2(317.605988F, -56.3959999F), new Vector2(314.819F, -53.7700005F), new Vector2(312.727997F, -50.368F));
+ builder.AddCubicBezier(new Vector2(310.636993F, -46.9640007F), new Vector2(309.591003F, -42.9269981F), new Vector2(309.591003F, -38.2529984F));
+ builder.AddLine(new Vector2(316.847992F, -34.9319992F));
+ builder.AddCubicBezier(new Vector2(316.847992F, -36.9000015F), new Vector2(317.278992F, -38.5800018F), new Vector2(318.140015F, -39.9749985F));
+ builder.AddCubicBezier(new Vector2(319.001007F, -41.368F), new Vector2(320.169006F, -42.4539986F), new Vector2(321.644989F, -43.2340012F));
+ builder.AddCubicBezier(new Vector2(323.121002F, -44.012001F), new Vector2(324.800995F, -44.4029999F), new Vector2(326.687988F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(329.394012F, -44.4029999F), new Vector2(331.670013F, -43.5620003F), new Vector2(333.515015F, -41.882F));
+ builder.AddCubicBezier(new Vector2(335.359985F, -40.2000008F), new Vector2(336.282013F, -37.8839989F), new Vector2(336.282013F, -34.9319992F));
+ builder.AddLine(new Vector2(336.282013F, 0F));
+ builder.AddLine(new Vector2(355.223999F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(316.847992F, 0F));
+ builder.AddLine(new Vector2(316.847992F, -59.7779999F));
+ builder.AddLine(new Vector2(297.906006F, -59.7779999F));
+ builder.AddLine(new Vector2(297.906006F, 0F));
+ builder.AddLine(new Vector2(316.847992F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 6 Outlines
+ // - - ShapeGroup: m
+ CanvasGeometry Geometry_0056()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(273.92099F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(278.102997F, -2.84899998F), new Vector2(281.670013F, -5.45200014F), new Vector2(284.622009F, -8.97900009F));
+ builder.AddLine(new Vector2(274.166992F, -19.3110008F));
+ builder.AddCubicBezier(new Vector2(272.362F, -17.2600002F), new Vector2(270.270996F, -15.7229996F), new Vector2(267.894012F, -14.6990004F));
+ builder.AddCubicBezier(new Vector2(265.515015F, -13.6730003F), new Vector2(262.890991F, -13.1610003F), new Vector2(260.022003F, -13.1610003F));
+ builder.AddCubicBezier(new Vector2(256.824005F, -13.1610003F), new Vector2(254.056F, -13.8380003F), new Vector2(251.718994F, -15.191F));
+ builder.AddCubicBezier(new Vector2(249.382004F, -16.5440006F), new Vector2(247.576996F, -18.4899998F), new Vector2(246.307007F, -21.0330009F));
+ builder.AddCubicBezier(new Vector2(245.035004F, -23.5739994F), new Vector2(244.401001F, -26.5680008F), new Vector2(244.401001F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(244.401001F, -33.4560013F), new Vector2(244.994995F, -36.4080009F), new Vector2(246.184998F, -38.868F));
+ builder.AddCubicBezier(new Vector2(247.373001F, -41.3279991F), new Vector2(249.054001F, -43.2540016F), new Vector2(251.227997F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(253.399994F, -46.0419998F), new Vector2(255.962997F, -46.7400017F), new Vector2(258.915009F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(261.621002F, -46.7400017F), new Vector2(263.937012F, -46.125F), new Vector2(265.86499F, -44.8950005F));
+ builder.AddCubicBezier(new Vector2(267.790985F, -43.6650009F), new Vector2(269.247009F, -41.9220009F), new Vector2(270.230988F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(271.214996F, -37.4119987F), new Vector2(271.747009F, -34.6030006F), new Vector2(271.829987F, -31.2420006F));
+ builder.AddLine(new Vector2(279.947998F, -36.7770004F));
+ builder.AddLine(new Vector2(236.651993F, -36.5309982F));
+ builder.AddLine(new Vector2(236.651993F, -23.493F));
+ builder.AddLine(new Vector2(288.06601F, -23.7390003F));
+ builder.AddCubicBezier(new Vector2(288.475006F, -25.2150002F), new Vector2(288.743011F, -26.5459995F), new Vector2(288.865997F, -27.7360001F));
+ builder.AddCubicBezier(new Vector2(288.989014F, -28.9239998F), new Vector2(289.049988F, -30.0930004F), new Vector2(289.049988F, -31.2420006F));
+ builder.AddCubicBezier(new Vector2(289.049988F, -37.0629997F), new Vector2(287.737F, -42.2290001F), new Vector2(285.114014F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(282.489014F, -51.2490005F), new Vector2(278.921997F, -54.7750015F), new Vector2(274.412994F, -57.3180008F));
+ builder.AddCubicBezier(new Vector2(269.902008F, -59.8590012F), new Vector2(264.653992F, -61.1310005F), new Vector2(258.669006F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(252.600006F, -61.1310005F), new Vector2(247.147003F, -59.7779999F), new Vector2(242.309998F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(237.470993F, -54.3660011F), new Vector2(233.658005F, -50.6549988F), new Vector2(230.871002F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(228.082001F, -41.2249985F), new Vector2(226.688995F, -35.9160004F), new Vector2(226.688995F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(226.688995F, -23.9430008F), new Vector2(228.123001F, -18.5310001F), new Vector2(230.994003F, -13.776F));
+ builder.AddCubicBezier(new Vector2(233.863007F, -9.01900005F), new Vector2(237.798996F, -5.30900002F), new Vector2(242.802002F, -2.64499998F));
+ builder.AddCubicBezier(new Vector2(247.802994F, 0.0189999994F), new Vector2(253.542999F, 1.35300004F), new Vector2(260.022003F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(265.105011F, 1.35300004F), new Vector2(269.739014F, 0.510999978F), new Vector2(273.92099F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 6 Outlines
+ // - - ShapeGroup: m
+ CanvasGeometry Geometry_0057()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(223.613998F, -43.6650009F));
+ builder.AddLine(new Vector2(223.613998F, -59.7779999F));
+ builder.AddLine(new Vector2(177.735001F, -59.7779999F));
+ builder.AddLine(new Vector2(177.735001F, -43.6650009F));
+ builder.AddLine(new Vector2(223.613998F, -43.6650009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(210.084F, 0F));
+ builder.AddLine(new Vector2(210.084F, -84.5009995F));
+ builder.AddLine(new Vector2(191.141998F, -84.5009995F));
+ builder.AddLine(new Vector2(191.141998F, 0F));
+ builder.AddLine(new Vector2(210.084F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 6 Outlines
+ // - - ShapeGroup: m
+ CanvasGeometry Geometry_0058()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(165.988998F, -3.62800002F));
+ builder.AddCubicBezier(new Vector2(170.375F, -7.11199999F), new Vector2(172.569F, -11.7659998F), new Vector2(172.569F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(172.569F, -21.3600006F), new Vector2(171.871002F, -24.4160004F), new Vector2(170.477997F, -26.7530003F));
+ builder.AddCubicBezier(new Vector2(169.082993F, -29.0900002F), new Vector2(167.279999F, -30.9750004F), new Vector2(165.065994F, -32.4109993F));
+ builder.AddCubicBezier(new Vector2(162.852005F, -33.8450012F), new Vector2(160.514999F, -34.9519997F), new Vector2(158.054993F, -35.7319984F));
+ builder.AddCubicBezier(new Vector2(155.595001F, -36.5099983F), new Vector2(153.276993F, -37.1860008F), new Vector2(151.104996F, -37.7610016F));
+ builder.AddCubicBezier(new Vector2(148.931F, -38.3339996F), new Vector2(147.126999F, -38.9910011F), new Vector2(145.692993F, -39.7290001F));
+ builder.AddCubicBezier(new Vector2(144.257004F, -40.4669991F), new Vector2(143.541F, -41.4510002F), new Vector2(143.541F, -42.6809998F));
+ builder.AddCubicBezier(new Vector2(143.541F, -43.7459984F), new Vector2(144.072998F, -44.6069984F), new Vector2(145.139999F, -45.2639999F));
+ builder.AddCubicBezier(new Vector2(146.205002F, -45.9189987F), new Vector2(147.804001F, -46.2480011F), new Vector2(149.936996F, -46.2480011F));
+ builder.AddCubicBezier(new Vector2(152.151001F, -46.2480011F), new Vector2(154.427002F, -45.776001F), new Vector2(156.764008F, -44.8339996F));
+ builder.AddCubicBezier(new Vector2(159.100998F, -43.8899994F), new Vector2(161.210999F, -42.3120003F), new Vector2(163.098007F, -40.0979996F));
+ builder.AddLine(new Vector2(173.798996F, -51.0449982F));
+ builder.AddCubicBezier(new Vector2(171.173996F, -54.4889984F), new Vector2(167.688995F, -57.0909996F), new Vector2(163.343994F, -58.8549995F));
+ builder.AddCubicBezier(new Vector2(158.996994F, -60.6170006F), new Vector2(154.322998F, -61.5F), new Vector2(149.322006F, -61.5F));
+ builder.AddCubicBezier(new Vector2(144.319F, -61.5F), new Vector2(140.014008F, -60.6790009F), new Vector2(136.406998F, -59.0400009F));
+ builder.AddCubicBezier(new Vector2(132.798004F, -57.3989983F), new Vector2(130.011002F, -55.1660004F), new Vector2(128.042999F, -52.3370018F));
+ builder.AddCubicBezier(new Vector2(126.074997F, -49.5079994F), new Vector2(125.091003F, -46.1650009F), new Vector2(125.091003F, -42.3120003F));
+ builder.AddCubicBezier(new Vector2(125.091003F, -38.6220016F), new Vector2(125.787003F, -35.6279984F), new Vector2(127.181999F, -33.3330002F));
+ builder.AddCubicBezier(new Vector2(128.574997F, -31.0359993F), new Vector2(130.380005F, -29.2320004F), new Vector2(132.593994F, -27.9209995F));
+ builder.AddCubicBezier(new Vector2(134.807999F, -26.6079998F), new Vector2(137.145004F, -25.5629997F), new Vector2(139.604996F, -24.7849998F));
+ builder.AddCubicBezier(new Vector2(142.065002F, -24.0049992F), new Vector2(144.421997F, -23.3080006F), new Vector2(146.677994F, -22.6930008F));
+ builder.AddCubicBezier(new Vector2(148.932007F, -22.0779991F), new Vector2(150.755997F, -21.4209995F), new Vector2(152.151001F, -20.7250004F));
+ builder.AddCubicBezier(new Vector2(153.544006F, -20.0270004F), new Vector2(154.242004F, -18.9419994F), new Vector2(154.242004F, -17.4659996F));
+ builder.AddCubicBezier(new Vector2(154.242004F, -16.2360001F), new Vector2(153.645996F, -15.2919998F), new Vector2(152.457993F, -14.6370001F));
+ builder.AddCubicBezier(new Vector2(151.268005F, -13.9799995F), new Vector2(149.649002F, -13.6529999F), new Vector2(147.600006F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(144.319F, -13.6529999F), new Vector2(141.345993F, -14.2469997F), new Vector2(138.682007F, -15.4370003F));
+ builder.AddCubicBezier(new Vector2(136.016006F, -16.625F), new Vector2(133.658997F, -18.2849998F), new Vector2(131.610001F, -20.4179993F));
+ builder.AddLine(new Vector2(120.786003F, -9.59399986F));
+ builder.AddCubicBezier(new Vector2(122.917F, -7.38000011F), new Vector2(125.417999F, -5.43100023F), new Vector2(128.289001F, -3.75099993F));
+ builder.AddCubicBezier(new Vector2(131.158005F, -2.06900001F), new Vector2(134.315994F, -0.758000016F), new Vector2(137.759995F, 0.184F));
+ builder.AddCubicBezier(new Vector2(141.203995F, 1.12600005F), new Vector2(144.688004F, 1.59899998F), new Vector2(148.214996F, 1.59899998F));
+ builder.AddCubicBezier(new Vector2(155.675995F, 1.59899998F), new Vector2(161.600998F, -0.142000005F), new Vector2(165.988998F, -3.62800002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 6 Outlines
+ // - - ShapeGroup: m
+ CanvasGeometry Geometry_0059()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(85.3619995F, 25.2150002F));
+ builder.AddLine(new Vector2(95.9400024F, 0.368999988F));
+ builder.AddLine(new Vector2(83.8860016F, -13.6529999F));
+ builder.AddLine(new Vector2(65.9280014F, 25.2150002F));
+ builder.AddLine(new Vector2(85.3619995F, 25.2150002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(95.9400024F, 0.368999988F));
+ builder.AddLine(new Vector2(121.524002F, -59.7779999F));
+ builder.AddLine(new Vector2(101.106003F, -59.7779999F));
+ builder.AddLine(new Vector2(85.2389984F, -12.177F));
+ builder.AddLine(new Vector2(92.7419968F, -12.177F));
+ builder.AddLine(new Vector2(77.1210022F, -59.7779999F));
+ builder.AddLine(new Vector2(56.7029991F, -59.7779999F));
+ builder.AddLine(new Vector2(81.3030014F, 0.368999988F));
+ builder.AddLine(new Vector2(95.9400024F, 0.368999988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 6 Outlines
+ // - - ShapeGroup: m
+ CanvasGeometry Geometry_0060()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(46.1870003F, -3.62800002F));
+ builder.AddCubicBezier(new Vector2(50.5730019F, -7.11199999F), new Vector2(52.7669983F, -11.7659998F), new Vector2(52.7669983F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(52.7669983F, -21.3600006F), new Vector2(52.0690002F, -24.4160004F), new Vector2(50.6759987F, -26.7530003F));
+ builder.AddCubicBezier(new Vector2(49.2809982F, -29.0900002F), new Vector2(47.4780006F, -30.9750004F), new Vector2(45.2639999F, -32.4109993F));
+ builder.AddCubicBezier(new Vector2(43.0499992F, -33.8450012F), new Vector2(40.7130013F, -34.9519997F), new Vector2(38.2529984F, -35.7319984F));
+ builder.AddCubicBezier(new Vector2(35.7929993F, -36.5099983F), new Vector2(33.4749985F, -37.1860008F), new Vector2(31.3029995F, -37.7610016F));
+ builder.AddCubicBezier(new Vector2(29.1289997F, -38.3339996F), new Vector2(27.3260002F, -38.9910011F), new Vector2(25.8920002F, -39.7290001F));
+ builder.AddCubicBezier(new Vector2(24.4559994F, -40.4669991F), new Vector2(23.7390003F, -41.4510002F), new Vector2(23.7390003F, -42.6809998F));
+ builder.AddCubicBezier(new Vector2(23.7390003F, -43.7459984F), new Vector2(24.2709999F, -44.6069984F), new Vector2(25.3379993F, -45.2639999F));
+ builder.AddCubicBezier(new Vector2(26.4029999F, -45.9189987F), new Vector2(28.0020008F, -46.2480011F), new Vector2(30.1350002F, -46.2480011F));
+ builder.AddCubicBezier(new Vector2(32.348999F, -46.2480011F), new Vector2(34.625F, -45.776001F), new Vector2(36.9620018F, -44.8339996F));
+ builder.AddCubicBezier(new Vector2(39.2989998F, -43.8899994F), new Vector2(41.4090004F, -42.3120003F), new Vector2(43.2960014F, -40.0979996F));
+ builder.AddLine(new Vector2(53.9970016F, -51.0449982F));
+ builder.AddCubicBezier(new Vector2(51.3720016F, -54.4889984F), new Vector2(47.887001F, -57.0909996F), new Vector2(43.5419998F, -58.8549995F));
+ builder.AddCubicBezier(new Vector2(39.1949997F, -60.6170006F), new Vector2(34.5209999F, -61.5F), new Vector2(29.5200005F, -61.5F));
+ builder.AddCubicBezier(new Vector2(24.5170002F, -61.5F), new Vector2(20.2119999F, -60.6790009F), new Vector2(16.6049995F, -59.0400009F));
+ builder.AddCubicBezier(new Vector2(12.9960003F, -57.3989983F), new Vector2(10.2089996F, -55.1660004F), new Vector2(8.24100018F, -52.3370018F));
+ builder.AddCubicBezier(new Vector2(6.27299976F, -49.5079994F), new Vector2(5.28900003F, -46.1650009F), new Vector2(5.28900003F, -42.3120003F));
+ builder.AddCubicBezier(new Vector2(5.28900003F, -38.6220016F), new Vector2(5.98500013F, -35.6279984F), new Vector2(7.38000011F, -33.3330002F));
+ builder.AddCubicBezier(new Vector2(8.77299976F, -31.0359993F), new Vector2(10.5780001F, -29.2320004F), new Vector2(12.7919998F, -27.9209995F));
+ builder.AddCubicBezier(new Vector2(15.0059996F, -26.6079998F), new Vector2(17.3430004F, -25.5629997F), new Vector2(19.8029995F, -24.7849998F));
+ builder.AddCubicBezier(new Vector2(22.2630005F, -24.0049992F), new Vector2(24.6200008F, -23.3080006F), new Vector2(26.8759995F, -22.6930008F));
+ builder.AddCubicBezier(new Vector2(29.1299992F, -22.0779991F), new Vector2(30.9540005F, -21.4209995F), new Vector2(32.348999F, -20.7250004F));
+ builder.AddCubicBezier(new Vector2(33.7420006F, -20.0270004F), new Vector2(34.4399986F, -18.9419994F), new Vector2(34.4399986F, -17.4659996F));
+ builder.AddCubicBezier(new Vector2(34.4399986F, -16.2360001F), new Vector2(33.8450012F, -15.2919998F), new Vector2(32.6570015F, -14.6370001F));
+ builder.AddCubicBezier(new Vector2(31.4669991F, -13.9799995F), new Vector2(29.8470001F, -13.6529999F), new Vector2(27.7980003F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(24.5170002F, -13.6529999F), new Vector2(21.5450001F, -14.2469997F), new Vector2(18.8810005F, -15.4370003F));
+ builder.AddCubicBezier(new Vector2(16.2150002F, -16.625F), new Vector2(13.8570004F, -18.2849998F), new Vector2(11.8079996F, -20.4179993F));
+ builder.AddLine(new Vector2(0.984000027F, -9.59399986F));
+ builder.AddCubicBezier(new Vector2(3.11500001F, -7.38000011F), new Vector2(5.61600018F, -5.43100023F), new Vector2(8.48700047F, -3.75099993F));
+ builder.AddCubicBezier(new Vector2(11.3559999F, -2.06900001F), new Vector2(14.5139999F, -0.758000016F), new Vector2(17.9580002F, 0.184F));
+ builder.AddCubicBezier(new Vector2(21.4020004F, 1.12600005F), new Vector2(24.8859997F, 1.59899998F), new Vector2(28.4130001F, 1.59899998F));
+ builder.AddCubicBezier(new Vector2(35.8740005F, 1.59899998F), new Vector2(41.7989998F, -0.142000005F), new Vector2(46.1870003F, -3.62800002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 7 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0061()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(593.843994F, 25.2150002F));
+ builder.AddLine(new Vector2(604.421997F, 0.368999988F));
+ builder.AddLine(new Vector2(592.367981F, -13.6529999F));
+ builder.AddLine(new Vector2(574.409973F, 25.2150002F));
+ builder.AddLine(new Vector2(593.843994F, 25.2150002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(604.421997F, 0.368999988F));
+ builder.AddLine(new Vector2(630.005981F, -59.7779999F));
+ builder.AddLine(new Vector2(609.588013F, -59.7779999F));
+ builder.AddLine(new Vector2(593.721008F, -12.177F));
+ builder.AddLine(new Vector2(601.223999F, -12.177F));
+ builder.AddLine(new Vector2(585.603027F, -59.7779999F));
+ builder.AddLine(new Vector2(565.184998F, -59.7779999F));
+ builder.AddLine(new Vector2(589.784973F, 0.368999988F));
+ builder.AddLine(new Vector2(604.421997F, 0.368999988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 7 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0062()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(552.578003F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(556.471985F, -2.84899998F), new Vector2(560.018982F, -5.329F), new Vector2(563.21698F, -8.60999966F));
+ builder.AddLine(new Vector2(551.039978F, -20.6639996F));
+ builder.AddCubicBezier(new Vector2(549.64502F, -19.1049995F), new Vector2(547.984985F, -17.9160004F), new Vector2(546.059021F, -17.0970001F));
+ builder.AddCubicBezier(new Vector2(544.130981F, -16.2759991F), new Vector2(541.937988F, -15.8669996F), new Vector2(539.478027F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(536.934998F, -15.8669996F), new Vector2(534.598022F, -16.4599991F), new Vector2(532.46698F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(530.333984F, -18.8379993F), new Vector2(528.674011F, -20.4990005F), new Vector2(527.486023F, -22.632F));
+ builder.AddCubicBezier(new Vector2(526.296021F, -24.7630005F), new Vector2(525.702026F, -27.2229996F), new Vector2(525.702026F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(525.702026F, -32.7179985F), new Vector2(526.296021F, -35.1170006F), new Vector2(527.486023F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(528.674011F, -39.2989998F), new Vector2(530.315002F, -40.9379997F), new Vector2(532.406006F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(534.497009F, -43.3160019F), new Vector2(536.853027F, -43.9109993F), new Vector2(539.478027F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(541.85498F, -43.9109993F), new Vector2(543.96698F, -43.5419998F), new Vector2(545.812012F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(547.656982F, -42.0660019F), new Vector2(549.276001F, -40.9169998F), new Vector2(550.671021F, -39.3600006F));
+ builder.AddLine(new Vector2(562.848022F, -51.6599998F));
+ builder.AddCubicBezier(new Vector2(559.812988F, -54.7750015F), new Vector2(556.348999F, -57.1329994F), new Vector2(552.455017F, -58.7319984F));
+ builder.AddCubicBezier(new Vector2(548.559021F, -60.3310013F), new Vector2(544.232971F, -61.1310005F), new Vector2(539.478027F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(533.244995F, -61.1310005F), new Vector2(527.627991F, -59.7779999F), new Vector2(522.627014F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(517.624023F, -54.3660011F), new Vector2(513.687988F, -50.6549988F), new Vector2(510.819F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(507.947998F, -41.2249985F), new Vector2(506.514008F, -35.8740005F), new Vector2(506.514008F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(506.514008F, -23.9850006F), new Vector2(507.928986F, -18.6539993F), new Vector2(510.757996F, -13.8990002F));
+ builder.AddCubicBezier(new Vector2(513.586975F, -9.1420002F), new Vector2(517.500977F, -5.41200018F), new Vector2(522.504028F, -2.70600009F));
+ builder.AddCubicBezier(new Vector2(527.505005F, 0F), new Vector2(533.122009F, 1.35300004F), new Vector2(539.35498F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(544.275024F, 1.35300004F), new Vector2(548.682007F, 0.510999978F), new Vector2(552.578003F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 7 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0063()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(497.165985F, 0F));
+ builder.AddLine(new Vector2(497.165985F, -59.7779999F));
+ builder.AddLine(new Vector2(478.592987F, -59.7779999F));
+ builder.AddLine(new Vector2(478.592987F, -45.1409988F));
+ builder.AddLine(new Vector2(481.421997F, -30.75F));
+ builder.AddLine(new Vector2(478.592987F, -16.1130009F));
+ builder.AddLine(new Vector2(478.592987F, 0F));
+ builder.AddLine(new Vector2(497.165985F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(459.221008F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(457.210999F, -18.8379993F), new Vector2(455.612F, -20.4990005F), new Vector2(454.424011F, -22.632F));
+ builder.AddCubicBezier(new Vector2(453.234009F, -24.7630005F), new Vector2(452.640015F, -27.1830006F), new Vector2(452.640015F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(452.640015F, -32.5950012F), new Vector2(453.234009F, -35.0130005F), new Vector2(454.424011F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(455.612F, -39.2770004F), new Vector2(457.210999F, -40.9379997F), new Vector2(459.221008F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(461.229004F, -43.3160019F), new Vector2(463.503998F, -43.9109993F), new Vector2(466.046997F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(468.670013F, -43.9109993F), new Vector2(471.006989F, -43.3160019F), new Vector2(473.058014F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(475.106995F, -40.9379997F), new Vector2(476.665009F, -39.2989998F), new Vector2(477.731995F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(478.796997F, -35.1170006F), new Vector2(479.330994F, -32.7179985F), new Vector2(479.330994F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(479.330994F, -25.8299999F), new Vector2(478.121002F, -22.4260006F), new Vector2(475.703003F, -19.8029995F));
+ builder.AddCubicBezier(new Vector2(473.28299F, -17.1779995F), new Vector2(470.063995F, -15.8669996F), new Vector2(466.046997F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(463.503998F, -15.8669996F), new Vector2(461.229004F, -16.4599991F), new Vector2(459.221008F, -17.6499996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(473.119995F, -1.10699999F));
+ builder.AddCubicBezier(new Vector2(476.358002F, -2.66400003F), new Vector2(478.981995F, -4.81599998F), new Vector2(480.992004F, -7.56400013F));
+ builder.AddCubicBezier(new Vector2(483F, -10.3100004F), new Vector2(484.127991F, -13.4469995F), new Vector2(484.373993F, -16.9740009F));
+ builder.AddLine(new Vector2(484.373993F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(484.127991F, -46.3289986F), new Vector2(482.979004F, -49.4659996F), new Vector2(480.929993F, -52.2140007F));
+ builder.AddCubicBezier(new Vector2(478.878998F, -54.9599991F), new Vector2(476.234985F, -57.1119995F), new Vector2(472.997009F, -58.6710014F));
+ builder.AddCubicBezier(new Vector2(469.756989F, -60.2280006F), new Vector2(466.127991F, -61.0079994F), new Vector2(462.110992F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(456.615997F, -61.0079994F), new Vector2(451.717987F, -59.6739998F), new Vector2(447.412994F, -57.0099983F));
+ builder.AddCubicBezier(new Vector2(443.108002F, -54.3440018F), new Vector2(439.70401F, -50.6549988F), new Vector2(437.20401F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(434.701996F, -41.2249985F), new Vector2(433.451996F, -35.8740005F), new Vector2(433.451996F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(433.451996F, -23.9020004F), new Vector2(434.701996F, -18.5919991F), new Vector2(437.20401F, -13.96F));
+ builder.AddCubicBezier(new Vector2(439.70401F, -9.32600021F), new Vector2(443.127014F, -5.63700008F), new Vector2(447.473999F, -2.89100003F));
+ builder.AddCubicBezier(new Vector2(451.819F, -0.143000007F), new Vector2(456.699005F, 1.23000002F), new Vector2(462.110992F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(466.209991F, 1.23000002F), new Vector2(469.880005F, 0.449999988F), new Vector2(473.119995F, -1.10699999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 7 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0064()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(408.053009F, -41.3899994F));
+ builder.AddCubicBezier(new Vector2(409.89801F, -43.3160019F), new Vector2(412.419006F, -44.2799988F), new Vector2(415.617004F, -44.2799988F));
+ builder.AddCubicBezier(new Vector2(417.174011F, -44.2799988F), new Vector2(418.569F, -44.0340004F), new Vector2(419.799011F, -43.5419998F));
+ builder.AddCubicBezier(new Vector2(421.028992F, -43.0499992F), new Vector2(422.013F, -42.3930016F), new Vector2(422.751007F, -41.5740013F));
+ builder.AddLine(new Vector2(433.944F, -55.8419991F));
+ builder.AddCubicBezier(new Vector2(432.303009F, -57.5639992F), new Vector2(430.397003F, -58.855999F), new Vector2(428.225006F, -59.7169991F));
+ builder.AddCubicBezier(new Vector2(426.050995F, -60.5779991F), new Vector2(423.528992F, -61.0079994F), new Vector2(420.660004F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(414.181F, -61.0079994F), new Vector2(409.075989F, -59.0800018F), new Vector2(405.346008F, -55.2270012F));
+ builder.AddCubicBezier(new Vector2(401.614014F, -51.3720016F), new Vector2(398.970001F, -45.9189987F), new Vector2(397.412994F, -38.868F));
+ builder.AddLine(new Vector2(405.285004F, -32.7179985F));
+ builder.AddCubicBezier(new Vector2(405.285004F, -36.5709991F), new Vector2(406.208008F, -39.4620018F), new Vector2(408.053009F, -41.3899994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(405.285004F, 0F));
+ builder.AddLine(new Vector2(405.285004F, -59.7779999F));
+ builder.AddLine(new Vector2(386.342987F, -59.7779999F));
+ builder.AddLine(new Vector2(386.342987F, 0F));
+ builder.AddLine(new Vector2(405.285004F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 7 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0065()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(367.585999F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(371.480011F, -2.84899998F), new Vector2(375.027008F, -5.329F), new Vector2(378.225006F, -8.60999966F));
+ builder.AddLine(new Vector2(366.048004F, -20.6639996F));
+ builder.AddCubicBezier(new Vector2(364.653015F, -19.1049995F), new Vector2(362.992004F, -17.9160004F), new Vector2(361.06601F, -17.0970001F));
+ builder.AddCubicBezier(new Vector2(359.138F, -16.2759991F), new Vector2(356.946014F, -15.8669996F), new Vector2(354.485992F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(351.942993F, -15.8669996F), new Vector2(349.605988F, -16.4599991F), new Vector2(347.475006F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(345.34201F, -18.8379993F), new Vector2(343.681F, -20.4990005F), new Vector2(342.493011F, -22.632F));
+ builder.AddCubicBezier(new Vector2(341.303009F, -24.7630005F), new Vector2(340.709991F, -27.2229996F), new Vector2(340.709991F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(340.709991F, -32.7179985F), new Vector2(341.303009F, -35.1170006F), new Vector2(342.493011F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(343.681F, -39.2989998F), new Vector2(345.322998F, -40.9379997F), new Vector2(347.414001F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(349.505005F, -43.3160019F), new Vector2(351.860992F, -43.9109993F), new Vector2(354.485992F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(356.863007F, -43.9109993F), new Vector2(358.976013F, -43.5419998F), new Vector2(360.821014F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(362.665985F, -42.0660019F), new Vector2(364.283997F, -40.9169998F), new Vector2(365.678986F, -39.3600006F));
+ builder.AddLine(new Vector2(377.855988F, -51.6599998F));
+ builder.AddCubicBezier(new Vector2(374.821014F, -54.7750015F), new Vector2(371.356995F, -57.1329994F), new Vector2(367.463013F, -58.7319984F));
+ builder.AddCubicBezier(new Vector2(363.566986F, -60.3310013F), new Vector2(359.240997F, -61.1310005F), new Vector2(354.485992F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(348.252991F, -61.1310005F), new Vector2(342.635986F, -59.7779999F), new Vector2(337.63501F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(332.631989F, -54.3660011F), new Vector2(328.696014F, -50.6549988F), new Vector2(325.826996F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(322.955994F, -41.2249985F), new Vector2(321.522003F, -35.8740005F), new Vector2(321.522003F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(321.522003F, -23.9850006F), new Vector2(322.937012F, -18.6539993F), new Vector2(325.765991F, -13.8990002F));
+ builder.AddCubicBezier(new Vector2(328.595001F, -9.1420002F), new Vector2(332.509003F, -5.41200018F), new Vector2(337.511993F, -2.70600009F));
+ builder.AddCubicBezier(new Vector2(342.513F, 0F), new Vector2(348.130005F, 1.35300004F), new Vector2(354.363007F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(359.28299F, 1.35300004F), new Vector2(363.690002F, 0.510999978F), new Vector2(367.585999F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 7 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0066()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(276.381012F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(274.329987F, -18.7360001F), new Vector2(272.730988F, -20.3959999F), new Vector2(271.584015F, -22.5699997F));
+ builder.AddCubicBezier(new Vector2(270.434998F, -24.7420006F), new Vector2(269.862F, -27.2229996F), new Vector2(269.862F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(269.862F, -32.6349983F), new Vector2(270.434998F, -35.0130005F), new Vector2(271.584015F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(272.730988F, -39.2770004F), new Vector2(274.329987F, -40.9379997F), new Vector2(276.381012F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(278.429993F, -43.3160019F), new Vector2(280.766998F, -43.9109993F), new Vector2(283.391998F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(286.015015F, -43.9109993F), new Vector2(288.332001F, -43.3160019F), new Vector2(290.34201F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(292.350006F, -40.9379997F), new Vector2(293.928009F, -39.2989998F), new Vector2(295.076996F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(296.223999F, -35.1170006F), new Vector2(296.799011F, -32.7179985F), new Vector2(296.799011F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(296.799011F, -27.2229996F), new Vector2(296.246002F, -24.7420006F), new Vector2(295.139008F, -22.5699997F));
+ builder.AddCubicBezier(new Vector2(294.032013F, -20.3959999F), new Vector2(292.451996F, -18.7360001F), new Vector2(290.403015F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(288.35199F, -16.4400005F), new Vector2(286.015015F, -15.8669996F), new Vector2(283.391998F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(280.766998F, -15.8669996F), new Vector2(278.429993F, -16.4400005F), new Vector2(276.381012F, -17.5890007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(300.119995F, -2.829F));
+ builder.AddCubicBezier(new Vector2(305.040009F, -5.61600018F), new Vector2(308.93399F, -9.36699963F), new Vector2(311.804993F, -14.0830002F));
+ builder.AddCubicBezier(new Vector2(314.674011F, -18.7970009F), new Vector2(316.109985F, -24.1480007F), new Vector2(316.109985F, -30.1350002F));
+ builder.AddCubicBezier(new Vector2(316.109985F, -35.9560013F), new Vector2(314.674011F, -41.2249985F), new Vector2(311.804993F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(308.93399F, -50.6549988F), new Vector2(305.019012F, -54.3660011F), new Vector2(300.05899F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(295.096985F, -59.7779999F), new Vector2(289.541992F, -61.1310005F), new Vector2(283.391998F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(277.076996F, -61.1310005F), new Vector2(271.460999F, -59.7560005F), new Vector2(266.540985F, -57.0099983F));
+ builder.AddCubicBezier(new Vector2(261.621002F, -54.262001F), new Vector2(257.747009F, -50.5530014F), new Vector2(254.917999F, -45.8790016F));
+ builder.AddCubicBezier(new Vector2(252.089005F, -41.2050018F), new Vector2(250.673996F, -35.9560013F), new Vector2(250.673996F, -30.1350002F));
+ builder.AddCubicBezier(new Vector2(250.673996F, -24.2310009F), new Vector2(252.108002F, -18.8999996F), new Vector2(254.979004F, -14.1450005F));
+ builder.AddCubicBezier(new Vector2(257.847992F, -9.38799953F), new Vector2(261.743988F, -5.61600018F), new Vector2(266.664001F, -2.829F));
+ builder.AddCubicBezier(new Vector2(271.584015F, -0.0399999991F), new Vector2(277.158997F, 1.35300004F), new Vector2(283.391998F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(289.622986F, 1.35300004F), new Vector2(295.200012F, -0.0399999991F), new Vector2(300.119995F, -2.829F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 7 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0067()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(242.556F, 0F));
+ builder.AddLine(new Vector2(242.556F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(242.556F, -42.1469994F), new Vector2(241.529999F, -46.4109993F), new Vector2(239.481003F, -49.9379997F));
+ builder.AddCubicBezier(new Vector2(237.429993F, -53.4630013F), new Vector2(234.600998F, -56.1899986F), new Vector2(230.994003F, -58.118F));
+ builder.AddCubicBezier(new Vector2(227.384995F, -60.0439987F), new Vector2(223.326004F, -61.0079994F), new Vector2(218.817001F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(214.143005F, -61.0079994F), new Vector2(209.919006F, -60.0239983F), new Vector2(206.147995F, -58.0559998F));
+ builder.AddCubicBezier(new Vector2(202.375F, -56.0880013F), new Vector2(199.382996F, -53.2589989F), new Vector2(197.169006F, -49.5690002F));
+ builder.AddCubicBezier(new Vector2(194.955002F, -45.8790016F), new Vector2(193.725006F, -41.4910011F), new Vector2(193.479004F, -36.4080009F));
+ builder.AddLine(new Vector2(204.425995F, -34.9319992F));
+ builder.AddCubicBezier(new Vector2(204.425995F, -36.9000015F), new Vector2(204.835007F, -38.5800018F), new Vector2(205.656006F, -39.9749985F));
+ builder.AddCubicBezier(new Vector2(206.475006F, -41.368F), new Vector2(207.643005F, -42.4539986F), new Vector2(209.160995F, -43.2340012F));
+ builder.AddCubicBezier(new Vector2(210.677002F, -44.012001F), new Vector2(212.337997F, -44.4029999F), new Vector2(214.143005F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(216.766006F, -44.4029999F), new Vector2(219.001999F, -43.5620003F), new Vector2(220.847F, -41.882F));
+ builder.AddCubicBezier(new Vector2(222.692001F, -40.2000008F), new Vector2(223.613998F, -37.8839989F), new Vector2(223.613998F, -34.9319992F));
+ builder.AddLine(new Vector2(223.613998F, 0F));
+ builder.AddLine(new Vector2(242.556F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(204.425995F, 0F));
+ builder.AddLine(new Vector2(204.425995F, -38.2529984F));
+ builder.AddCubicBezier(new Vector2(204.425995F, -42.9269981F), new Vector2(203.421005F, -46.9440002F), new Vector2(201.412994F, -50.3069992F));
+ builder.AddCubicBezier(new Vector2(199.403F, -53.6679993F), new Vector2(196.738998F, -56.2919998F), new Vector2(193.417999F, -58.1790009F));
+ builder.AddCubicBezier(new Vector2(190.097F, -60.0639992F), new Vector2(186.384995F, -61.0079994F), new Vector2(182.285995F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(177.774994F, -61.0079994F), new Vector2(173.778F, -60.0859985F), new Vector2(170.294006F, -58.2410011F));
+ builder.AddCubicBezier(new Vector2(166.807999F, -56.3959999F), new Vector2(164.020996F, -53.7700005F), new Vector2(161.929993F, -50.368F));
+ builder.AddCubicBezier(new Vector2(159.839005F, -46.9640007F), new Vector2(158.792999F, -42.9269981F), new Vector2(158.792999F, -38.2529984F));
+ builder.AddLine(new Vector2(166.050003F, -34.9319992F));
+ builder.AddCubicBezier(new Vector2(166.050003F, -36.9000015F), new Vector2(166.481003F, -38.5800018F), new Vector2(167.341995F, -39.9749985F));
+ builder.AddCubicBezier(new Vector2(168.203003F, -41.368F), new Vector2(169.371002F, -42.4539986F), new Vector2(170.847F, -43.2340012F));
+ builder.AddCubicBezier(new Vector2(172.322998F, -44.012001F), new Vector2(174.003006F, -44.4029999F), new Vector2(175.889999F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(178.595993F, -44.4029999F), new Vector2(180.871994F, -43.5620003F), new Vector2(182.716995F, -41.882F));
+ builder.AddCubicBezier(new Vector2(184.561996F, -40.2000008F), new Vector2(185.483994F, -37.8839989F), new Vector2(185.483994F, -34.9319992F));
+ builder.AddLine(new Vector2(185.483994F, 0F));
+ builder.AddLine(new Vector2(204.425995F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(166.050003F, 0F));
+ builder.AddLine(new Vector2(166.050003F, -59.7779999F));
+ builder.AddLine(new Vector2(147.108002F, -59.7779999F));
+ builder.AddLine(new Vector2(147.108002F, 0F));
+ builder.AddLine(new Vector2(166.050003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 7 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0068()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(123.123001F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(127.305F, -2.84899998F), new Vector2(130.871994F, -5.45200014F), new Vector2(133.824005F, -8.97900009F));
+ builder.AddLine(new Vector2(123.369003F, -19.3110008F));
+ builder.AddCubicBezier(new Vector2(121.564003F, -17.2600002F), new Vector2(119.473F, -15.7229996F), new Vector2(117.096001F, -14.6990004F));
+ builder.AddCubicBezier(new Vector2(114.717003F, -13.6730003F), new Vector2(112.093002F, -13.1610003F), new Vector2(109.223999F, -13.1610003F));
+ builder.AddCubicBezier(new Vector2(106.026001F, -13.1610003F), new Vector2(103.259003F, -13.8380003F), new Vector2(100.921997F, -15.191F));
+ builder.AddCubicBezier(new Vector2(98.5849991F, -16.5440006F), new Vector2(96.7799988F, -18.4899998F), new Vector2(95.5100021F, -21.0330009F));
+ builder.AddCubicBezier(new Vector2(94.237999F, -23.5739994F), new Vector2(93.6029968F, -26.5680008F), new Vector2(93.6029968F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(93.6029968F, -33.4560013F), new Vector2(94.1969986F, -36.4080009F), new Vector2(95.387001F, -38.868F));
+ builder.AddCubicBezier(new Vector2(96.5749969F, -41.3279991F), new Vector2(98.2559967F, -43.2540016F), new Vector2(100.43F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(102.601997F, -46.0419998F), new Vector2(105.165001F, -46.7400017F), new Vector2(108.116997F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(110.822998F, -46.7400017F), new Vector2(113.139F, -46.125F), new Vector2(115.067001F, -44.8950005F));
+ builder.AddCubicBezier(new Vector2(116.992996F, -43.6650009F), new Vector2(118.448997F, -41.9220009F), new Vector2(119.432999F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(120.417F, -37.4119987F), new Vector2(120.948997F, -34.6030006F), new Vector2(121.031998F, -31.2420006F));
+ builder.AddLine(new Vector2(129.149994F, -36.7770004F));
+ builder.AddLine(new Vector2(85.8539963F, -36.5309982F));
+ builder.AddLine(new Vector2(85.8539963F, -23.493F));
+ builder.AddLine(new Vector2(137.268005F, -23.7390003F));
+ builder.AddCubicBezier(new Vector2(137.677002F, -25.2150002F), new Vector2(137.945007F, -26.5459995F), new Vector2(138.067993F, -27.7360001F));
+ builder.AddCubicBezier(new Vector2(138.190994F, -28.9239998F), new Vector2(138.251999F, -30.0930004F), new Vector2(138.251999F, -31.2420006F));
+ builder.AddCubicBezier(new Vector2(138.251999F, -37.0629997F), new Vector2(136.938995F, -42.2290001F), new Vector2(134.315994F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(131.690994F, -51.2490005F), new Vector2(128.123993F, -54.7750015F), new Vector2(123.614998F, -57.3180008F));
+ builder.AddCubicBezier(new Vector2(119.103996F, -59.8590012F), new Vector2(113.856003F, -61.1310005F), new Vector2(107.871002F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(101.802002F, -61.1310005F), new Vector2(96.348999F, -59.7779999F), new Vector2(91.512001F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(86.6729965F, -54.3660011F), new Vector2(82.8600006F, -50.6549988F), new Vector2(80.072998F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(77.2839966F, -41.2249985F), new Vector2(75.8909988F, -35.9160004F), new Vector2(75.8909988F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(75.8909988F, -23.9430008F), new Vector2(77.3249969F, -18.5310001F), new Vector2(80.1959991F, -13.776F));
+ builder.AddCubicBezier(new Vector2(83.0650024F, -9.01900005F), new Vector2(87.0009995F, -5.30900002F), new Vector2(92.0039978F, -2.64499998F));
+ builder.AddCubicBezier(new Vector2(97.0049973F, 0.0189999994F), new Vector2(102.745003F, 1.35300004F), new Vector2(109.223999F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(114.306999F, 1.35300004F), new Vector2(118.941002F, 0.510999978F), new Vector2(123.123001F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 7 Outlines
+ // - - ShapeGroup: y
+ CanvasGeometry Geometry_0069()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(66.5429993F, -89.2979965F));
+ builder.AddLine(new Vector2(47.6010017F, -89.2979965F));
+ builder.AddLine(new Vector2(47.6010017F, -45.1409988F));
+ builder.AddLine(new Vector2(50.7989998F, -30.75F));
+ builder.AddLine(new Vector2(47.9700012F, -16.1130009F));
+ builder.AddLine(new Vector2(47.9700012F, 0F));
+ builder.AddLine(new Vector2(66.5429993F, 0F));
+ builder.AddLine(new Vector2(66.5429993F, -89.2979965F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(28.5359993F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(26.4850006F, -18.8379993F), new Vector2(24.9080009F, -20.4990005F), new Vector2(23.8010006F, -22.632F));
+ builder.AddCubicBezier(new Vector2(22.6940002F, -24.7630005F), new Vector2(22.1399994F, -27.1830006F), new Vector2(22.1399994F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(22.1399994F, -32.5950012F), new Vector2(22.7339993F, -34.9939995F), new Vector2(23.9239998F, -37.0849991F));
+ builder.AddCubicBezier(new Vector2(25.1119995F, -39.1759987F), new Vector2(26.691F, -40.8359985F), new Vector2(28.6590004F, -42.0660019F));
+ builder.AddCubicBezier(new Vector2(30.6270008F, -43.2960014F), new Vector2(32.9220009F, -43.9109993F), new Vector2(35.5470009F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(38.1699982F, -43.9109993F), new Vector2(40.4669991F, -43.3160019F), new Vector2(42.4350014F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(44.4029999F, -40.9379997F), new Vector2(45.9410019F, -39.2989998F), new Vector2(47.0480003F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(48.1549988F, -35.1170006F), new Vector2(48.7080002F, -32.7179985F), new Vector2(48.7080002F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(48.7080002F, -27.2229996F), new Vector2(48.1549988F, -24.7630005F), new Vector2(47.0480003F, -22.632F));
+ builder.AddCubicBezier(new Vector2(45.9410019F, -20.4990005F), new Vector2(44.4029999F, -18.8379993F), new Vector2(42.4350014F, -17.6499996F));
+ builder.AddCubicBezier(new Vector2(40.4669991F, -16.4599991F), new Vector2(38.1300011F, -15.8669996F), new Vector2(35.4239998F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(32.8810005F, -15.8669996F), new Vector2(30.5849991F, -16.4599991F), new Vector2(28.5359993F, -17.6499996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(43.1730003F, -1.29200006F));
+ builder.AddCubicBezier(new Vector2(46.5340004F, -2.97199988F), new Vector2(49.2809982F, -5.22800016F), new Vector2(51.4140015F, -8.05700016F));
+ builder.AddCubicBezier(new Vector2(53.5449982F, -10.8859997F), new Vector2(54.7750015F, -14.0620003F), new Vector2(55.1040001F, -17.5890007F));
+ builder.AddLine(new Vector2(55.1040001F, -42.8040009F));
+ builder.AddCubicBezier(new Vector2(54.7750015F, -46.4109993F), new Vector2(53.5449982F, -49.5890007F), new Vector2(51.4140015F, -52.3370018F));
+ builder.AddCubicBezier(new Vector2(49.2809982F, -55.0830002F), new Vector2(46.5340004F, -57.2140007F), new Vector2(43.1730003F, -58.7319984F));
+ builder.AddCubicBezier(new Vector2(39.8100014F, -60.2480011F), new Vector2(36.1199989F, -61.0079994F), new Vector2(32.1030006F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(26.4449997F, -61.0079994F), new Vector2(21.4020004F, -59.6549988F), new Vector2(16.9740009F, -56.9490013F));
+ builder.AddCubicBezier(new Vector2(12.5459995F, -54.243F), new Vector2(9.10200024F, -50.5530014F), new Vector2(6.6420002F, -45.8790016F));
+ builder.AddCubicBezier(new Vector2(4.18200016F, -41.2050018F), new Vector2(2.9519999F, -35.8740005F), new Vector2(2.9519999F, -29.8889999F));
+ builder.AddCubicBezier(new Vector2(2.9519999F, -23.9020004F), new Vector2(4.18200016F, -18.573F), new Vector2(6.6420002F, -13.8990002F));
+ builder.AddCubicBezier(new Vector2(9.10200024F, -9.22500038F), new Vector2(12.5249996F, -5.53499985F), new Vector2(16.9130001F, -2.829F));
+ builder.AddCubicBezier(new Vector2(21.2989998F, -0.123000003F), new Vector2(26.3619995F, 1.23000002F), new Vector2(32.1030006F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(36.1199989F, 1.23000002F), new Vector2(39.8100014F, 0.388000011F), new Vector2(43.1730003F, -1.29200006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 8 Outlines
+ // - - ShapeGroup: a
+ CanvasGeometry Geometry_0070()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(518.814026F, 0F));
+ builder.AddLine(new Vector2(518.814026F, -58.4249992F));
+ builder.AddLine(new Vector2(507.621002F, -58.4249992F));
+ builder.AddLine(new Vector2(507.621002F, -44.1570015F));
+ builder.AddLine(new Vector2(509.712006F, -30.0119991F));
+ builder.AddLine(new Vector2(507.621002F, -15.7440004F));
+ builder.AddLine(new Vector2(507.621002F, 0F));
+ builder.AddLine(new Vector2(518.814026F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(480.191986F, -11.8079996F));
+ builder.AddCubicBezier(new Vector2(477.321014F, -13.5299997F), new Vector2(475.087006F, -15.8870001F), new Vector2(473.488007F, -18.8810005F));
+ builder.AddCubicBezier(new Vector2(471.889008F, -21.8729992F), new Vector2(471.089996F, -25.3379993F), new Vector2(471.089996F, -29.2740002F));
+ builder.AddCubicBezier(new Vector2(471.089996F, -33.1269989F), new Vector2(471.889008F, -36.5509987F), new Vector2(473.488007F, -39.5449982F));
+ builder.AddCubicBezier(new Vector2(475.087006F, -42.5369987F), new Vector2(477.300995F, -44.8950005F), new Vector2(480.130005F, -46.6170006F));
+ builder.AddCubicBezier(new Vector2(482.959015F, -48.3390007F), new Vector2(486.218994F, -49.2000008F), new Vector2(489.908997F, -49.2000008F));
+ builder.AddCubicBezier(new Vector2(493.598999F, -49.2000008F), new Vector2(496.81601F, -48.3590012F), new Vector2(499.563995F, -46.6790009F));
+ builder.AddCubicBezier(new Vector2(502.309998F, -44.9970016F), new Vector2(504.463013F, -42.6389999F), new Vector2(506.022003F, -39.605999F));
+ builder.AddCubicBezier(new Vector2(507.57901F, -36.5709991F), new Vector2(508.359009F, -33.0870018F), new Vector2(508.359009F, -29.1509991F));
+ builder.AddCubicBezier(new Vector2(508.359009F, -23.3279991F), new Vector2(506.677002F, -18.552F), new Vector2(503.31601F, -14.8219995F));
+ builder.AddCubicBezier(new Vector2(499.953003F, -11.0900002F), new Vector2(495.524994F, -9.22500038F), new Vector2(490.032013F, -9.22500038F));
+ builder.AddCubicBezier(new Vector2(486.34201F, -9.22500038F), new Vector2(483.061005F, -10.0860004F), new Vector2(480.191986F, -11.8079996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(500.118011F, -1.53799999F));
+ builder.AddCubicBezier(new Vector2(503.643005F, -3.3829999F), new Vector2(506.451996F, -5.94399977F), new Vector2(508.542999F, -9.22500038F));
+ builder.AddCubicBezier(new Vector2(510.634003F, -12.5039997F), new Vector2(511.803009F, -16.2360001F), new Vector2(512.049011F, -20.4179993F));
+ builder.AddLine(new Vector2(512.049011F, -38.007F));
+ builder.AddCubicBezier(new Vector2(511.803009F, -42.2700005F), new Vector2(510.613007F, -46.0219994F), new Vector2(508.481995F, -49.262001F));
+ builder.AddCubicBezier(new Vector2(506.348999F, -52.5F), new Vector2(503.540009F, -55.0429993F), new Vector2(500.056F, -56.8880005F));
+ builder.AddCubicBezier(new Vector2(496.570007F, -58.7330017F), new Vector2(492.61499F, -59.6549988F), new Vector2(488.187012F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(482.774994F, -59.6549988F), new Vector2(477.915985F, -58.3019981F), new Vector2(473.610992F, -55.5960007F));
+ builder.AddCubicBezier(new Vector2(469.306F, -52.8899994F), new Vector2(465.902008F, -49.2400017F), new Vector2(463.402008F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(460.899994F, -40.0559998F), new Vector2(459.651001F, -34.8899994F), new Vector2(459.651001F, -29.1509991F));
+ builder.AddCubicBezier(new Vector2(459.651001F, -23.4099998F), new Vector2(460.899994F, -18.2439995F), new Vector2(463.402008F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(465.902008F, -9.06000042F), new Vector2(469.306F, -5.43200016F), new Vector2(473.610992F, -2.76799989F));
+ builder.AddCubicBezier(new Vector2(477.915985F, -0.101999998F), new Vector2(482.774994F, 1.23000002F), new Vector2(488.187012F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(492.61499F, 1.23000002F), new Vector2(496.591003F, 0.307000011F), new Vector2(500.118011F, -1.53799999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 8 Outlines
+ // - - ShapeGroup: a
+ CanvasGeometry Geometry_0071()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(446.48999F, -72.1399994F));
+ builder.AddCubicBezier(new Vector2(447.800995F, -73.4929962F), new Vector2(448.458008F, -75.1930008F), new Vector2(448.458008F, -77.2440033F));
+ builder.AddCubicBezier(new Vector2(448.458008F, -79.211998F), new Vector2(447.800995F, -80.8730011F), new Vector2(446.48999F, -82.2259979F));
+ builder.AddCubicBezier(new Vector2(445.177002F, -83.5790024F), new Vector2(443.496002F, -84.2549973F), new Vector2(441.446991F, -84.2549973F));
+ builder.AddCubicBezier(new Vector2(439.395996F, -84.2549973F), new Vector2(437.714996F, -83.5790024F), new Vector2(436.403992F, -82.2259979F));
+ builder.AddCubicBezier(new Vector2(435.091003F, -80.8730011F), new Vector2(434.436005F, -79.211998F), new Vector2(434.436005F, -77.2440033F));
+ builder.AddCubicBezier(new Vector2(434.436005F, -75.1930008F), new Vector2(435.091003F, -73.4929962F), new Vector2(436.403992F, -72.1399994F));
+ builder.AddCubicBezier(new Vector2(437.714996F, -70.7870026F), new Vector2(439.395996F, -70.1100006F), new Vector2(441.446991F, -70.1100006F));
+ builder.AddCubicBezier(new Vector2(443.496002F, -70.1100006F), new Vector2(445.177002F, -70.7870026F), new Vector2(446.48999F, -72.1399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(446.981995F, 0F));
+ builder.AddLine(new Vector2(446.981995F, -58.4249992F));
+ builder.AddLine(new Vector2(435.789001F, -58.4249992F));
+ builder.AddLine(new Vector2(435.789001F, 0F));
+ builder.AddLine(new Vector2(446.981995F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 8 Outlines
+ // - - ShapeGroup: a
+ CanvasGeometry Geometry_0072()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(417.52301F, -3.56699991F));
+ builder.AddCubicBezier(new Vector2(421.416992F, -6.76499987F), new Vector2(423.365997F, -11.1099997F), new Vector2(423.365997F, -16.6049995F));
+ builder.AddCubicBezier(new Vector2(423.365997F, -20.2119999F), new Vector2(422.605988F, -23.1240005F), new Vector2(421.089996F, -25.3379993F));
+ builder.AddCubicBezier(new Vector2(419.571991F, -27.552F), new Vector2(417.625F, -29.3139992F), new Vector2(415.247986F, -30.6270008F));
+ builder.AddCubicBezier(new Vector2(412.868988F, -31.9379997F), new Vector2(410.368011F, -32.9840012F), new Vector2(407.744995F, -33.7639999F));
+ builder.AddCubicBezier(new Vector2(405.119995F, -34.5419998F), new Vector2(402.597992F, -35.3009987F), new Vector2(400.179993F, -36.0390015F));
+ builder.AddCubicBezier(new Vector2(397.76001F, -36.7770004F), new Vector2(395.813995F, -37.6780014F), new Vector2(394.338013F, -38.7449989F));
+ builder.AddCubicBezier(new Vector2(392.862F, -39.8100014F), new Vector2(392.123993F, -41.3279991F), new Vector2(392.123993F, -43.2960014F));
+ builder.AddCubicBezier(new Vector2(392.123993F, -45.1809998F), new Vector2(392.963989F, -46.6980019F), new Vector2(394.645996F, -47.8470001F));
+ builder.AddCubicBezier(new Vector2(396.325989F, -48.9939995F), new Vector2(398.765991F, -49.5690002F), new Vector2(401.963989F, -49.5690002F));
+ builder.AddCubicBezier(new Vector2(404.997009F, -49.5690002F), new Vector2(407.703003F, -48.9939995F), new Vector2(410.082001F, -47.8470001F));
+ builder.AddCubicBezier(new Vector2(412.459015F, -46.6980019F), new Vector2(414.51001F, -45.0579987F), new Vector2(416.231995F, -42.9269981F));
+ builder.AddLine(new Vector2(423.365997F, -50.0610008F));
+ builder.AddCubicBezier(new Vector2(421.069F, -53.2589989F), new Vector2(418.139008F, -55.6580009F), new Vector2(414.571991F, -57.257F));
+ builder.AddCubicBezier(new Vector2(411.005005F, -58.855999F), new Vector2(406.924011F, -59.6549988F), new Vector2(402.333008F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(397.985992F, -59.6549988F), new Vector2(394.255005F, -58.9570007F), new Vector2(391.140015F, -57.5639992F));
+ builder.AddCubicBezier(new Vector2(388.02301F, -56.1689987F), new Vector2(385.623993F, -54.1819992F), new Vector2(383.944F, -51.598999F));
+ builder.AddCubicBezier(new Vector2(382.261993F, -49.0159988F), new Vector2(381.423004F, -45.9599991F), new Vector2(381.423004F, -42.4350014F));
+ builder.AddCubicBezier(new Vector2(381.423004F, -38.9080009F), new Vector2(382.179993F, -36.0589981F), new Vector2(383.697998F, -33.887001F));
+ builder.AddCubicBezier(new Vector2(385.213989F, -31.7129993F), new Vector2(387.161987F, -30.0119991F), new Vector2(389.540985F, -28.7819996F));
+ builder.AddCubicBezier(new Vector2(391.917999F, -27.552F), new Vector2(394.438995F, -26.5680008F), new Vector2(397.105011F, -25.8299999F));
+ builder.AddCubicBezier(new Vector2(399.769012F, -25.0919991F), new Vector2(402.290985F, -24.3330002F), new Vector2(404.670013F, -23.5550003F));
+ builder.AddCubicBezier(new Vector2(407.046997F, -22.7749996F), new Vector2(408.993988F, -21.7910004F), new Vector2(410.511993F, -20.6030006F));
+ builder.AddCubicBezier(new Vector2(412.028015F, -19.4130001F), new Vector2(412.787994F, -17.7520008F), new Vector2(412.787994F, -15.6210003F));
+ builder.AddCubicBezier(new Vector2(412.787994F, -13.4879999F), new Vector2(411.843994F, -11.8269997F), new Vector2(409.959015F, -10.6389999F));
+ builder.AddCubicBezier(new Vector2(408.071991F, -9.44900036F), new Vector2(405.40799F, -8.85599995F), new Vector2(401.963989F, -8.85599995F));
+ builder.AddCubicBezier(new Vector2(398.519989F, -8.85599995F), new Vector2(395.403015F, -9.48999977F), new Vector2(392.615997F, -10.7620001F));
+ builder.AddCubicBezier(new Vector2(389.826996F, -12.0319996F), new Vector2(387.367004F, -13.9799995F), new Vector2(385.235992F, -16.6049995F));
+ builder.AddLine(new Vector2(378.10199F, -9.47099972F));
+ builder.AddCubicBezier(new Vector2(379.904999F, -7.25699997F), new Vector2(382.015991F, -5.3499999F), new Vector2(384.436005F, -3.75099993F));
+ builder.AddCubicBezier(new Vector2(386.854004F, -2.15199995F), new Vector2(389.540985F, -0.921999991F), new Vector2(392.493011F, -0.0610000007F));
+ builder.AddCubicBezier(new Vector2(395.445007F, 0.800000012F), new Vector2(398.559998F, 1.23000002F), new Vector2(401.841003F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(408.399994F, 1.23000002F), new Vector2(413.627014F, -0.368999988F), new Vector2(417.52301F, -3.56699991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 8 Outlines
+ // - - ShapeGroup: a
+ CanvasGeometry Geometry_0073()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(357.68399F, -1.16900003F));
+ builder.AddCubicBezier(new Vector2(361.865997F, -2.84899998F), new Vector2(365.433014F, -5.45200014F), new Vector2(368.38501F, -8.97900009F));
+ builder.AddLine(new Vector2(357.929993F, -19.3110008F));
+ builder.AddCubicBezier(new Vector2(356.125F, -17.2600002F), new Vector2(354.033997F, -15.7229996F), new Vector2(351.657013F, -14.6990004F));
+ builder.AddCubicBezier(new Vector2(349.278015F, -13.6730003F), new Vector2(346.653992F, -13.1610003F), new Vector2(343.785004F, -13.1610003F));
+ builder.AddCubicBezier(new Vector2(340.587006F, -13.1610003F), new Vector2(337.820007F, -13.8380003F), new Vector2(335.483002F, -15.191F));
+ builder.AddCubicBezier(new Vector2(333.145996F, -16.5440006F), new Vector2(331.339996F, -18.4899998F), new Vector2(330.070007F, -21.0330009F));
+ builder.AddCubicBezier(new Vector2(328.798004F, -23.5739994F), new Vector2(328.164001F, -26.5680008F), new Vector2(328.164001F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(328.164001F, -33.4560013F), new Vector2(328.757996F, -36.4080009F), new Vector2(329.947998F, -38.868F));
+ builder.AddCubicBezier(new Vector2(331.135986F, -41.3279991F), new Vector2(332.816986F, -43.2540016F), new Vector2(334.990997F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(337.162994F, -46.0419998F), new Vector2(339.726013F, -46.7400017F), new Vector2(342.678009F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(345.384003F, -46.7400017F), new Vector2(347.700012F, -46.125F), new Vector2(349.627991F, -44.8950005F));
+ builder.AddCubicBezier(new Vector2(351.553986F, -43.6650009F), new Vector2(353.01001F, -41.9220009F), new Vector2(353.993988F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(354.977997F, -37.4119987F), new Vector2(355.51001F, -34.6030006F), new Vector2(355.592987F, -31.2420006F));
+ builder.AddLine(new Vector2(363.710999F, -36.7770004F));
+ builder.AddLine(new Vector2(320.415009F, -36.5309982F));
+ builder.AddLine(new Vector2(320.415009F, -23.493F));
+ builder.AddLine(new Vector2(371.82901F, -23.7390003F));
+ builder.AddCubicBezier(new Vector2(372.238007F, -25.2150002F), new Vector2(372.506012F, -26.5459995F), new Vector2(372.628998F, -27.7360001F));
+ builder.AddCubicBezier(new Vector2(372.752014F, -28.9239998F), new Vector2(372.812988F, -30.0930004F), new Vector2(372.812988F, -31.2420006F));
+ builder.AddCubicBezier(new Vector2(372.812988F, -37.0629997F), new Vector2(371.5F, -42.2290001F), new Vector2(368.877014F, -46.7400017F));
+ builder.AddCubicBezier(new Vector2(366.252014F, -51.2490005F), new Vector2(362.684998F, -54.7750015F), new Vector2(358.175995F, -57.3180008F));
+ builder.AddCubicBezier(new Vector2(353.665009F, -59.8590012F), new Vector2(348.416992F, -61.1310005F), new Vector2(342.432007F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(336.363007F, -61.1310005F), new Vector2(330.910004F, -59.7779999F), new Vector2(326.072998F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(321.234009F, -54.3660011F), new Vector2(317.42099F, -50.6549988F), new Vector2(314.634003F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(311.845001F, -41.2249985F), new Vector2(310.451996F, -35.9160004F), new Vector2(310.451996F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(310.451996F, -23.9430008F), new Vector2(311.885986F, -18.5310001F), new Vector2(314.756989F, -13.776F));
+ builder.AddCubicBezier(new Vector2(317.626007F, -9.01900005F), new Vector2(321.562012F, -5.30900002F), new Vector2(326.565002F, -2.64499998F));
+ builder.AddCubicBezier(new Vector2(331.56601F, 0.0189999994F), new Vector2(337.306F, 1.35300004F), new Vector2(343.785004F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(348.868011F, 1.35300004F), new Vector2(353.502014F, 0.510999978F), new Vector2(357.68399F, -1.16900003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 8 Outlines
+ // - - ShapeGroup: a
+ CanvasGeometry Geometry_0074()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(262.851013F, 0F));
+ builder.AddLine(new Vector2(262.851013F, -59.7779999F));
+ builder.AddLine(new Vector2(243.908997F, -59.7779999F));
+ builder.AddLine(new Vector2(243.908997F, 0F));
+ builder.AddLine(new Vector2(262.851013F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(302.457001F, 0F));
+ builder.AddLine(new Vector2(302.457001F, -38.2529984F));
+ builder.AddCubicBezier(new Vector2(302.457001F, -42.3520012F), new Vector2(301.472992F, -46.1450005F), new Vector2(299.505005F, -49.6310005F));
+ builder.AddCubicBezier(new Vector2(297.536987F, -53.1150017F), new Vector2(294.830994F, -55.882F), new Vector2(291.386993F, -57.9329987F));
+ builder.AddCubicBezier(new Vector2(287.942993F, -59.9819984F), new Vector2(284.046997F, -61.0079994F), new Vector2(279.701996F, -61.0079994F));
+ builder.AddCubicBezier(new Vector2(275.109009F, -61.0079994F), new Vector2(270.989014F, -60.0439987F), new Vector2(267.341003F, -58.118F));
+ builder.AddCubicBezier(new Vector2(263.69101F, -56.1899986F), new Vector2(260.821014F, -53.4630013F), new Vector2(258.730011F, -49.9379997F));
+ builder.AddCubicBezier(new Vector2(256.639008F, -46.4109993F), new Vector2(255.593994F, -42.3120003F), new Vector2(255.593994F, -37.6380005F));
+ builder.AddLine(new Vector2(262.851013F, -34.0709991F));
+ builder.AddCubicBezier(new Vector2(262.851013F, -36.1199989F), new Vector2(263.300995F, -37.9239998F), new Vector2(264.20401F, -39.4830017F));
+ builder.AddCubicBezier(new Vector2(265.105011F, -41.0400009F), new Vector2(266.334991F, -42.2509995F), new Vector2(267.894012F, -43.1119995F));
+ builder.AddCubicBezier(new Vector2(269.450989F, -43.9729996F), new Vector2(271.214996F, -44.4029999F), new Vector2(273.183014F, -44.4029999F));
+ builder.AddCubicBezier(new Vector2(276.13501F, -44.4029999F), new Vector2(278.595001F, -43.4379997F), new Vector2(280.562988F, -41.512001F));
+ builder.AddCubicBezier(new Vector2(282.531006F, -39.5839996F), new Vector2(283.515015F, -37.1040001F), new Vector2(283.515015F, -34.0709991F));
+ builder.AddLine(new Vector2(283.515015F, 0F));
+ builder.AddLine(new Vector2(302.457001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 8 Outlines
+ // - - ShapeGroup: a
+ CanvasGeometry Geometry_0075()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(194.955002F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(192.904007F, -18.7360001F), new Vector2(191.304993F, -20.3959999F), new Vector2(190.158005F, -22.5699997F));
+ builder.AddCubicBezier(new Vector2(189.009003F, -24.7420006F), new Vector2(188.436005F, -27.2229996F), new Vector2(188.436005F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(188.436005F, -32.6349983F), new Vector2(189.009003F, -35.0130005F), new Vector2(190.158005F, -37.1459999F));
+ builder.AddCubicBezier(new Vector2(191.304993F, -39.2770004F), new Vector2(192.904007F, -40.9379997F), new Vector2(194.955002F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(197.003998F, -43.3160019F), new Vector2(199.341003F, -43.9109993F), new Vector2(201.966003F, -43.9109993F));
+ builder.AddCubicBezier(new Vector2(204.589005F, -43.9109993F), new Vector2(206.904999F, -43.3160019F), new Vector2(208.914993F, -42.1279984F));
+ builder.AddCubicBezier(new Vector2(210.923004F, -40.9379997F), new Vector2(212.501999F, -39.2989998F), new Vector2(213.651001F, -37.2080002F));
+ builder.AddCubicBezier(new Vector2(214.798004F, -35.1170006F), new Vector2(215.373001F, -32.7179985F), new Vector2(215.373001F, -30.0119991F));
+ builder.AddCubicBezier(new Vector2(215.373001F, -27.2229996F), new Vector2(214.819F, -24.7420006F), new Vector2(213.712006F, -22.5699997F));
+ builder.AddCubicBezier(new Vector2(212.604996F, -20.3959999F), new Vector2(211.026001F, -18.7360001F), new Vector2(208.977005F, -17.5890007F));
+ builder.AddCubicBezier(new Vector2(206.925995F, -16.4400005F), new Vector2(204.589005F, -15.8669996F), new Vector2(201.966003F, -15.8669996F));
+ builder.AddCubicBezier(new Vector2(199.341003F, -15.8669996F), new Vector2(197.003998F, -16.4400005F), new Vector2(194.955002F, -17.5890007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(218.694F, -2.829F));
+ builder.AddCubicBezier(new Vector2(223.613998F, -5.61600018F), new Vector2(227.507996F, -9.36699963F), new Vector2(230.378998F, -14.0830002F));
+ builder.AddCubicBezier(new Vector2(233.248001F, -18.7970009F), new Vector2(234.684006F, -24.1480007F), new Vector2(234.684006F, -30.1350002F));
+ builder.AddCubicBezier(new Vector2(234.684006F, -35.9560013F), new Vector2(233.248001F, -41.2249985F), new Vector2(230.378998F, -45.9410019F));
+ builder.AddCubicBezier(new Vector2(227.507996F, -50.6549988F), new Vector2(223.591995F, -54.3660011F), new Vector2(218.632004F, -57.0719986F));
+ builder.AddCubicBezier(new Vector2(213.669998F, -59.7779999F), new Vector2(208.115997F, -61.1310005F), new Vector2(201.966003F, -61.1310005F));
+ builder.AddCubicBezier(new Vector2(195.651001F, -61.1310005F), new Vector2(190.035004F, -59.7560005F), new Vector2(185.115005F, -57.0099983F));
+ builder.AddCubicBezier(new Vector2(180.195007F, -54.262001F), new Vector2(176.320007F, -50.5530014F), new Vector2(173.490997F, -45.8790016F));
+ builder.AddCubicBezier(new Vector2(170.662003F, -41.2050018F), new Vector2(169.248001F, -35.9560013F), new Vector2(169.248001F, -30.1350002F));
+ builder.AddCubicBezier(new Vector2(169.248001F, -24.2310009F), new Vector2(170.682007F, -18.8999996F), new Vector2(173.552994F, -14.1450005F));
+ builder.AddCubicBezier(new Vector2(176.421997F, -9.38799953F), new Vector2(180.317993F, -5.61600018F), new Vector2(185.238007F, -2.829F));
+ builder.AddCubicBezier(new Vector2(190.158005F, -0.0399999991F), new Vector2(195.733002F, 1.35300004F), new Vector2(201.966003F, 1.35300004F));
+ builder.AddCubicBezier(new Vector2(208.197006F, 1.35300004F), new Vector2(213.774002F, -0.0399999991F), new Vector2(218.694F, -2.829F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 8 Outlines
+ // - - ShapeGroup: a
+ CanvasGeometry Geometry_0076()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(158.546997F, -87.8219986F));
+ builder.AddLine(new Vector2(147.354004F, -87.8219986F));
+ builder.AddLine(new Vector2(147.354004F, -44.1570015F));
+ builder.AddLine(new Vector2(149.445007F, -30.0119991F));
+ builder.AddLine(new Vector2(147.354004F, -15.7440004F));
+ builder.AddLine(new Vector2(147.354004F, 0F));
+ builder.AddLine(new Vector2(158.546997F, 0F));
+ builder.AddLine(new Vector2(158.546997F, -87.8219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(119.863998F, -11.7469997F));
+ builder.AddCubicBezier(new Vector2(117.035004F, -13.427F), new Vector2(114.820999F, -15.7840004F), new Vector2(113.222F, -18.8190002F));
+ builder.AddCubicBezier(new Vector2(111.623001F, -21.8519993F), new Vector2(110.822998F, -25.3379993F), new Vector2(110.822998F, -29.2740002F));
+ builder.AddCubicBezier(new Vector2(110.822998F, -33.2099991F), new Vector2(111.623001F, -36.6739998F), new Vector2(113.222F, -39.6679993F));
+ builder.AddCubicBezier(new Vector2(114.820999F, -42.6599998F), new Vector2(117.013F, -44.9970016F), new Vector2(119.802002F, -46.6790009F));
+ builder.AddCubicBezier(new Vector2(122.588997F, -48.3590012F), new Vector2(125.829002F, -49.2000008F), new Vector2(129.518997F, -49.2000008F));
+ builder.AddCubicBezier(new Vector2(133.209F, -49.2000008F), new Vector2(136.447006F, -48.3390007F), new Vector2(139.235992F, -46.6170006F));
+ builder.AddCubicBezier(new Vector2(142.022995F, -44.8950005F), new Vector2(144.195999F, -42.5369987F), new Vector2(145.755005F, -39.5449982F));
+ builder.AddCubicBezier(new Vector2(147.311996F, -36.5509987F), new Vector2(148.091995F, -33.0870018F), new Vector2(148.091995F, -29.1509991F));
+ builder.AddCubicBezier(new Vector2(148.091995F, -25.2959995F), new Vector2(147.311996F, -21.8729992F), new Vector2(145.755005F, -18.8810005F));
+ builder.AddCubicBezier(new Vector2(144.195999F, -15.8870001F), new Vector2(142.022995F, -13.5299997F), new Vector2(139.235992F, -11.8079996F));
+ builder.AddCubicBezier(new Vector2(136.447006F, -10.0860004F), new Vector2(133.209F, -9.22500038F), new Vector2(129.518997F, -9.22500038F));
+ builder.AddCubicBezier(new Vector2(125.910004F, -9.22500038F), new Vector2(122.693001F, -10.0649996F), new Vector2(119.863998F, -11.7469997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(139.727997F, -1.53799999F));
+ builder.AddCubicBezier(new Vector2(143.253006F, -3.3829999F), new Vector2(146.082001F, -5.94399977F), new Vector2(148.214996F, -9.22500038F));
+ builder.AddCubicBezier(new Vector2(150.345993F, -12.5039997F), new Vector2(151.535995F, -16.2360001F), new Vector2(151.781998F, -20.4179993F));
+ builder.AddLine(new Vector2(151.781998F, -38.007F));
+ builder.AddCubicBezier(new Vector2(151.535995F, -42.2700005F), new Vector2(150.326004F, -46.0219994F), new Vector2(148.154007F, -49.262001F));
+ builder.AddCubicBezier(new Vector2(145.979996F, -52.5F), new Vector2(143.130005F, -55.0429993F), new Vector2(139.604996F, -56.8880005F));
+ builder.AddCubicBezier(new Vector2(136.078003F, -58.7330017F), new Vector2(132.102005F, -59.6549988F), new Vector2(127.674004F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(122.343002F, -59.6549988F), new Vector2(117.545998F, -58.3019981F), new Vector2(113.282997F, -55.5960007F));
+ builder.AddCubicBezier(new Vector2(109.017998F, -52.8899994F), new Vector2(105.635002F, -49.2400017F), new Vector2(103.135002F, -44.6489983F));
+ builder.AddCubicBezier(new Vector2(100.633003F, -40.0559998F), new Vector2(99.3840027F, -34.8899994F), new Vector2(99.3840027F, -29.1509991F));
+ builder.AddCubicBezier(new Vector2(99.3840027F, -23.4099998F), new Vector2(100.633003F, -18.2439995F), new Vector2(103.135002F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(105.635002F, -9.06000042F), new Vector2(109.017998F, -5.43200016F), new Vector2(113.282997F, -2.76799989F));
+ builder.AddCubicBezier(new Vector2(117.545998F, -0.101999998F), new Vector2(122.343002F, 1.23000002F), new Vector2(127.674004F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(132.182999F, 1.23000002F), new Vector2(136.201004F, 0.307000011F), new Vector2(139.727997F, -1.53799999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 8 Outlines
+ // - - ShapeGroup: a
+ CanvasGeometry Geometry_0077()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(46.7400017F, 0F));
+ builder.AddLine(new Vector2(46.7400017F, -58.4249992F));
+ builder.AddLine(new Vector2(35.6699982F, -58.4249992F));
+ builder.AddLine(new Vector2(35.6699982F, 0F));
+ builder.AddLine(new Vector2(46.7400017F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(88.0680008F, 0F));
+ builder.AddLine(new Vector2(88.0680008F, -36.2849998F));
+ builder.AddCubicBezier(new Vector2(88.0680008F, -40.3019981F), new Vector2(87.0839996F, -44.0960007F), new Vector2(85.1159973F, -47.6629982F));
+ builder.AddCubicBezier(new Vector2(83.1480026F, -51.2299995F), new Vector2(80.461998F, -54.1199989F), new Vector2(77.0599976F, -56.3339996F));
+ builder.AddCubicBezier(new Vector2(73.6559982F, -58.5480003F), new Vector2(69.7409973F, -59.6549988F), new Vector2(65.3130035F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(60.8849983F, -59.6549988F), new Vector2(56.9070015F, -58.6500015F), new Vector2(53.382F, -56.6419983F));
+ builder.AddCubicBezier(new Vector2(49.8549995F, -54.632F), new Vector2(47.1090012F, -51.9059982F), new Vector2(45.1409988F, -48.4620018F));
+ builder.AddCubicBezier(new Vector2(43.1730003F, -45.0180016F), new Vector2(42.1889992F, -41.0820007F), new Vector2(42.1889992F, -36.6539993F));
+ builder.AddLine(new Vector2(46.7400017F, -34.0709991F));
+ builder.AddCubicBezier(new Vector2(46.7400017F, -37.0229988F), new Vector2(47.3950005F, -39.6459999F), new Vector2(48.7080002F, -41.9430008F));
+ builder.AddCubicBezier(new Vector2(50.019001F, -44.237999F), new Vector2(51.8230019F, -46.0419998F), new Vector2(54.1199989F, -47.3549995F));
+ builder.AddCubicBezier(new Vector2(56.4150009F, -48.6660004F), new Vector2(59.0400009F, -49.3230019F), new Vector2(61.9920006F, -49.3230019F));
+ builder.AddCubicBezier(new Vector2(66.4199982F, -49.3230019F), new Vector2(70.0070038F, -47.887001F), new Vector2(72.7549973F, -45.0180016F));
+ builder.AddCubicBezier(new Vector2(75.5009995F, -42.1469994F), new Vector2(76.875F, -38.4990005F), new Vector2(76.875F, -34.0709991F));
+ builder.AddLine(new Vector2(76.875F, 0F));
+ builder.AddLine(new Vector2(88.0680008F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - PreComp layer: Comp 1
+ // - - - - - Opacity for layer: Comp 1
+ // - - - - Opacity for layer: Pre-comp 1
+ // - - - Layer: text-ministers 8 Outlines
+ // - - ShapeGroup: a
+ CanvasGeometry Geometry_0078()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(18.8190002F, -72.1399994F));
+ builder.AddCubicBezier(new Vector2(20.1299992F, -73.4929962F), new Vector2(20.7870007F, -75.1930008F), new Vector2(20.7870007F, -77.2440033F));
+ builder.AddCubicBezier(new Vector2(20.7870007F, -79.211998F), new Vector2(20.1299992F, -80.8730011F), new Vector2(18.8190002F, -82.2259979F));
+ builder.AddCubicBezier(new Vector2(17.5060005F, -83.5790024F), new Vector2(15.8249998F, -84.2549973F), new Vector2(13.776F, -84.2549973F));
+ builder.AddCubicBezier(new Vector2(11.7250004F, -84.2549973F), new Vector2(10.0439997F, -83.5790024F), new Vector2(8.7329998F, -82.2259979F));
+ builder.AddCubicBezier(new Vector2(7.42000008F, -80.8730011F), new Vector2(6.76499987F, -79.211998F), new Vector2(6.76499987F, -77.2440033F));
+ builder.AddCubicBezier(new Vector2(6.76499987F, -75.1930008F), new Vector2(7.42000008F, -73.4929962F), new Vector2(8.7329998F, -72.1399994F));
+ builder.AddCubicBezier(new Vector2(10.0439997F, -70.7870026F), new Vector2(11.7250004F, -70.1100006F), new Vector2(13.776F, -70.1100006F));
+ builder.AddCubicBezier(new Vector2(15.8249998F, -70.1100006F), new Vector2(17.5060005F, -70.7870026F), new Vector2(18.8190002F, -72.1399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(19.3110008F, 0F));
+ builder.AddLine(new Vector2(19.3110008F, -58.4249992F));
+ builder.AddLine(new Vector2(8.11800003F, -58.4249992F));
+ builder.AddLine(new Vector2(8.11800003F, 0F));
+ builder.AddLine(new Vector2(19.3110008F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: Pre-comp 1
+ // - - - - Layer: second Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0079()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(160.761002F, -1.35300004F));
+ builder.AddCubicBezier(new Vector2(164.778F, -3.07500005F), new Vector2(168.222F, -5.57499981F), new Vector2(171.093002F, -8.85599995F));
+ builder.AddLine(new Vector2(163.959F, -16.1130009F));
+ builder.AddCubicBezier(new Vector2(161.990997F, -13.816F), new Vector2(159.632996F, -12.0939999F), new Vector2(156.886993F, -10.9469995F));
+ builder.AddCubicBezier(new Vector2(154.139008F, -9.79800034F), new Vector2(151.125F, -9.22500038F), new Vector2(147.845993F, -9.22500038F));
+ builder.AddCubicBezier(new Vector2(143.910004F, -9.22500038F), new Vector2(140.423996F, -10.0649996F), new Vector2(137.391006F, -11.7469997F));
+ builder.AddCubicBezier(new Vector2(134.356003F, -13.427F), new Vector2(132.018997F, -15.8059998F), new Vector2(130.380005F, -18.8810005F));
+ builder.AddCubicBezier(new Vector2(128.738998F, -21.9559994F), new Vector2(127.919998F, -25.5419998F), new Vector2(127.919998F, -29.6429996F));
+ builder.AddCubicBezier(new Vector2(127.919998F, -33.6599998F), new Vector2(128.697998F, -37.1459999F), new Vector2(130.257004F, -40.0979996F));
+ builder.AddCubicBezier(new Vector2(131.813995F, -43.0499992F), new Vector2(134.028F, -45.3450012F), new Vector2(136.899002F, -46.9860001F));
+ builder.AddCubicBezier(new Vector2(139.768005F, -48.625F), new Vector2(143.089005F, -49.4459991F), new Vector2(146.862F, -49.4459991F));
+ builder.AddCubicBezier(new Vector2(150.468994F, -49.4459991F), new Vector2(153.544006F, -48.6870003F), new Vector2(156.087006F, -47.1710014F));
+ builder.AddCubicBezier(new Vector2(158.628006F, -45.6529999F), new Vector2(160.595993F, -43.5209999F), new Vector2(161.990997F, -40.7750015F));
+ builder.AddCubicBezier(new Vector2(163.384003F, -38.0270004F), new Vector2(164.082001F, -34.6860008F), new Vector2(164.082001F, -30.75F));
+ builder.AddLine(new Vector2(168.141006F, -34.3170013F));
+ builder.AddLine(new Vector2(124.722F, -34.3170013F));
+ builder.AddLine(new Vector2(124.722F, -25.0919991F));
+ builder.AddLine(new Vector2(174.044998F, -25.0919991F));
+ builder.AddCubicBezier(new Vector2(174.291F, -26.2390003F), new Vector2(174.453995F, -27.2849998F), new Vector2(174.537003F, -28.2290001F));
+ builder.AddCubicBezier(new Vector2(174.617996F, -29.1709995F), new Vector2(174.660004F, -30.052F), new Vector2(174.660004F, -30.8729992F));
+ builder.AddCubicBezier(new Vector2(174.660004F, -36.4480019F), new Vector2(173.490997F, -41.4090004F), new Vector2(171.154007F, -45.7560005F));
+ builder.AddCubicBezier(new Vector2(168.817001F, -50.1010017F), new Vector2(165.557999F, -53.5050011F), new Vector2(161.376007F, -55.9650002F));
+ builder.AddCubicBezier(new Vector2(157.194F, -58.4249992F), new Vector2(152.436996F, -59.6549988F), new Vector2(147.108002F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(141.449997F, -59.6549988F), new Vector2(136.345001F, -58.3219986F), new Vector2(131.794006F, -55.6580009F));
+ builder.AddCubicBezier(new Vector2(127.242996F, -52.9920006F), new Vector2(123.635002F, -49.362999F), new Vector2(120.971001F, -44.7719994F));
+ builder.AddCubicBezier(new Vector2(118.305F, -40.1790009F), new Vector2(116.973F, -35.0130005F), new Vector2(116.973F, -29.2740002F));
+ builder.AddCubicBezier(new Vector2(116.973F, -23.4510002F), new Vector2(118.325996F, -18.2439995F), new Vector2(121.031998F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(123.737999F, -9.06000042F), new Vector2(127.405998F, -5.43200016F), new Vector2(132.039993F, -2.76799989F));
+ builder.AddCubicBezier(new Vector2(136.671997F, -0.101999998F), new Vector2(141.942001F, 1.23000002F), new Vector2(147.845993F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(152.436996F, 1.23000002F), new Vector2(156.742004F, 0.368999988F), new Vector2(160.761002F, -1.35300004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: Pre-comp 1
+ // - - - - Layer: second Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0080()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(64.4520035F, 0F));
+ builder.AddLine(new Vector2(64.4520035F, -87.8219986F));
+ builder.AddLine(new Vector2(53.382F, -87.8219986F));
+ builder.AddLine(new Vector2(53.382F, 0F));
+ builder.AddLine(new Vector2(64.4520035F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(105.779999F, 0F));
+ builder.AddLine(new Vector2(105.779999F, -36.2849998F));
+ builder.AddCubicBezier(new Vector2(105.779999F, -40.8759995F), new Vector2(104.795998F, -44.9350014F), new Vector2(102.828003F, -48.4620018F));
+ builder.AddCubicBezier(new Vector2(100.860001F, -51.9869995F), new Vector2(98.1740036F, -54.7350006F), new Vector2(94.7720032F, -56.7029991F));
+ builder.AddCubicBezier(new Vector2(91.3679962F, -58.6710014F), new Vector2(87.4530029F, -59.6549988F), new Vector2(83.0250015F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(78.5970001F, -59.6549988F), new Vector2(74.6190033F, -58.6500015F), new Vector2(71.0940018F, -56.6419983F));
+ builder.AddCubicBezier(new Vector2(67.5670013F, -54.632F), new Vector2(64.8209991F, -51.9059982F), new Vector2(62.8530006F, -48.4620018F));
+ builder.AddCubicBezier(new Vector2(60.8849983F, -45.0180016F), new Vector2(59.901001F, -41.0820007F), new Vector2(59.901001F, -36.6539993F));
+ builder.AddLine(new Vector2(64.4520035F, -34.0709991F));
+ builder.AddCubicBezier(new Vector2(64.4520035F, -37.0229988F), new Vector2(65.1070023F, -39.6459999F), new Vector2(66.4199982F, -41.9430008F));
+ builder.AddCubicBezier(new Vector2(67.7310028F, -44.237999F), new Vector2(69.5350037F, -46.0419998F), new Vector2(71.8320007F, -47.3549995F));
+ builder.AddCubicBezier(new Vector2(74.1269989F, -48.6660004F), new Vector2(76.7519989F, -49.3230019F), new Vector2(79.7040024F, -49.3230019F));
+ builder.AddCubicBezier(new Vector2(84.1320038F, -49.3230019F), new Vector2(87.7190018F, -47.887001F), new Vector2(90.4670029F, -45.0180016F));
+ builder.AddCubicBezier(new Vector2(93.2129974F, -42.1469994F), new Vector2(94.586998F, -38.4990005F), new Vector2(94.586998F, -34.0709991F));
+ builder.AddLine(new Vector2(94.586998F, 0F));
+ builder.AddLine(new Vector2(105.779999F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: Pre-comp 1
+ // - - - - Layer: second Outlines
+ // - - ShapeGroup: e
+ CanvasGeometry Geometry_0081()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(42.5579987F, -48.3390007F));
+ builder.AddLine(new Vector2(42.5579987F, -58.4249992F));
+ builder.AddLine(new Vector2(2.70600009F, -58.4249992F));
+ builder.AddLine(new Vector2(2.70600009F, -48.3390007F));
+ builder.AddLine(new Vector2(42.5579987F, -48.3390007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(28.1669998F, 0F));
+ builder.AddLine(new Vector2(28.1669998F, -82.9020004F));
+ builder.AddLine(new Vector2(17.0970001F, -82.9020004F));
+ builder.AddLine(new Vector2(17.0970001F, 0F));
+ builder.AddLine(new Vector2(28.1669998F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: Pre-comp 1
+ // - - - - Layer: second Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0082()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(351.411011F, -48.3390007F));
+ builder.AddLine(new Vector2(351.411011F, -58.4249992F));
+ builder.AddLine(new Vector2(311.55899F, -58.4249992F));
+ builder.AddLine(new Vector2(311.55899F, -48.3390007F));
+ builder.AddLine(new Vector2(351.411011F, -48.3390007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(337.019989F, 0F));
+ builder.AddLine(new Vector2(337.019989F, -82.9020004F));
+ builder.AddLine(new Vector2(325.950012F, -82.9020004F));
+ builder.AddLine(new Vector2(325.950012F, 0F));
+ builder.AddLine(new Vector2(337.019989F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: Pre-comp 1
+ // - - - - Layer: second Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0083()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(292.73999F, -1.35300004F));
+ builder.AddCubicBezier(new Vector2(296.756989F, -3.07500005F), new Vector2(300.200989F, -5.57499981F), new Vector2(303.071991F, -8.85599995F));
+ builder.AddLine(new Vector2(295.937988F, -16.1130009F));
+ builder.AddCubicBezier(new Vector2(293.970001F, -13.816F), new Vector2(291.612F, -12.0939999F), new Vector2(288.865997F, -10.9469995F));
+ builder.AddCubicBezier(new Vector2(286.118011F, -9.79800034F), new Vector2(283.104004F, -9.22500038F), new Vector2(279.825012F, -9.22500038F));
+ builder.AddCubicBezier(new Vector2(275.889008F, -9.22500038F), new Vector2(272.403015F, -10.0649996F), new Vector2(269.369995F, -11.7469997F));
+ builder.AddCubicBezier(new Vector2(266.334991F, -13.427F), new Vector2(263.997986F, -15.8059998F), new Vector2(262.359009F, -18.8810005F));
+ builder.AddCubicBezier(new Vector2(260.717987F, -21.9559994F), new Vector2(259.898987F, -25.5419998F), new Vector2(259.898987F, -29.6429996F));
+ builder.AddCubicBezier(new Vector2(259.898987F, -33.6599998F), new Vector2(260.677002F, -37.1459999F), new Vector2(262.235992F, -40.0979996F));
+ builder.AddCubicBezier(new Vector2(263.792999F, -43.0499992F), new Vector2(266.006989F, -45.3450012F), new Vector2(268.877991F, -46.9860001F));
+ builder.AddCubicBezier(new Vector2(271.747009F, -48.625F), new Vector2(275.067993F, -49.4459991F), new Vector2(278.841003F, -49.4459991F));
+ builder.AddCubicBezier(new Vector2(282.447998F, -49.4459991F), new Vector2(285.52301F, -48.6870003F), new Vector2(288.06601F, -47.1710014F));
+ builder.AddCubicBezier(new Vector2(290.606995F, -45.6529999F), new Vector2(292.575012F, -43.5209999F), new Vector2(293.970001F, -40.7750015F));
+ builder.AddCubicBezier(new Vector2(295.363007F, -38.0270004F), new Vector2(296.061005F, -34.6860008F), new Vector2(296.061005F, -30.75F));
+ builder.AddLine(new Vector2(300.119995F, -34.3170013F));
+ builder.AddLine(new Vector2(256.700989F, -34.3170013F));
+ builder.AddLine(new Vector2(256.700989F, -25.0919991F));
+ builder.AddLine(new Vector2(306.023987F, -25.0919991F));
+ builder.AddCubicBezier(new Vector2(306.269989F, -26.2390003F), new Vector2(306.433014F, -27.2849998F), new Vector2(306.515991F, -28.2290001F));
+ builder.AddCubicBezier(new Vector2(306.596985F, -29.1709995F), new Vector2(306.639008F, -30.052F), new Vector2(306.639008F, -30.8729992F));
+ builder.AddCubicBezier(new Vector2(306.639008F, -36.4480019F), new Vector2(305.471008F, -41.4090004F), new Vector2(303.134003F, -45.7560005F));
+ builder.AddCubicBezier(new Vector2(300.796997F, -50.1010017F), new Vector2(297.536987F, -53.5050011F), new Vector2(293.355011F, -55.9650002F));
+ builder.AddCubicBezier(new Vector2(289.173004F, -58.4249992F), new Vector2(284.415985F, -59.6549988F), new Vector2(279.087006F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(273.428986F, -59.6549988F), new Vector2(268.324005F, -58.3219986F), new Vector2(263.77301F, -55.6580009F));
+ builder.AddCubicBezier(new Vector2(259.221985F, -52.9920006F), new Vector2(255.613998F, -49.362999F), new Vector2(252.949997F, -44.7719994F));
+ builder.AddCubicBezier(new Vector2(250.283997F, -40.1790009F), new Vector2(248.951996F, -35.0130005F), new Vector2(248.951996F, -29.2740002F));
+ builder.AddCubicBezier(new Vector2(248.951996F, -23.4510002F), new Vector2(250.304993F, -18.2439995F), new Vector2(253.011002F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(255.716995F, -9.06000042F), new Vector2(259.385986F, -5.43200016F), new Vector2(264.019989F, -2.76799989F));
+ builder.AddCubicBezier(new Vector2(268.652008F, -0.101999998F), new Vector2(273.92099F, 1.23000002F), new Vector2(279.825012F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(284.415985F, 1.23000002F), new Vector2(288.721008F, 0.368999988F), new Vector2(292.73999F, -1.35300004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: Pre-comp 1
+ // - - - - Layer: second Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0084()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(234.5F, -3.56699991F));
+ builder.AddCubicBezier(new Vector2(238.393997F, -6.76499987F), new Vector2(240.341995F, -11.1099997F), new Vector2(240.341995F, -16.6049995F));
+ builder.AddCubicBezier(new Vector2(240.341995F, -20.2119999F), new Vector2(239.582993F, -23.1240005F), new Vector2(238.067001F, -25.3379993F));
+ builder.AddCubicBezier(new Vector2(236.548996F, -27.552F), new Vector2(234.600998F, -29.3139992F), new Vector2(232.223999F, -30.6270008F));
+ builder.AddCubicBezier(new Vector2(229.845001F, -31.9379997F), new Vector2(227.343994F, -32.9840012F), new Vector2(224.720993F, -33.7639999F));
+ builder.AddCubicBezier(new Vector2(222.095993F, -34.5419998F), new Vector2(219.574997F, -35.3009987F), new Vector2(217.156998F, -36.0390015F));
+ builder.AddCubicBezier(new Vector2(214.737F, -36.7770004F), new Vector2(212.789993F, -37.6780014F), new Vector2(211.313995F, -38.7449989F));
+ builder.AddCubicBezier(new Vector2(209.837997F, -39.8100014F), new Vector2(209.100006F, -41.3279991F), new Vector2(209.100006F, -43.2960014F));
+ builder.AddCubicBezier(new Vector2(209.100006F, -45.1809998F), new Vector2(209.940002F, -46.6980019F), new Vector2(211.621994F, -47.8470001F));
+ builder.AddCubicBezier(new Vector2(213.302002F, -48.9939995F), new Vector2(215.742004F, -49.5690002F), new Vector2(218.940002F, -49.5690002F));
+ builder.AddCubicBezier(new Vector2(221.973007F, -49.5690002F), new Vector2(224.679001F, -48.9939995F), new Vector2(227.057999F, -47.8470001F));
+ builder.AddCubicBezier(new Vector2(229.434998F, -46.6980019F), new Vector2(231.485992F, -45.0579987F), new Vector2(233.207993F, -42.9269981F));
+ builder.AddLine(new Vector2(240.341995F, -50.0610008F));
+ builder.AddCubicBezier(new Vector2(238.044998F, -53.2589989F), new Vector2(235.115005F, -55.6580009F), new Vector2(231.548004F, -57.257F));
+ builder.AddCubicBezier(new Vector2(227.981003F, -58.855999F), new Vector2(223.899994F, -59.6549988F), new Vector2(219.309006F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(214.962006F, -59.6549988F), new Vector2(211.231003F, -58.9570007F), new Vector2(208.115997F, -57.5639992F));
+ builder.AddCubicBezier(new Vector2(204.998993F, -56.1689987F), new Vector2(202.600998F, -54.1819992F), new Vector2(200.921005F, -51.598999F));
+ builder.AddCubicBezier(new Vector2(199.238998F, -49.0159988F), new Vector2(198.399002F, -45.9599991F), new Vector2(198.399002F, -42.4350014F));
+ builder.AddCubicBezier(new Vector2(198.399002F, -38.9080009F), new Vector2(199.156998F, -36.0589981F), new Vector2(200.675003F, -33.887001F));
+ builder.AddCubicBezier(new Vector2(202.190994F, -31.7129993F), new Vector2(204.138F, -30.0119991F), new Vector2(206.516998F, -28.7819996F));
+ builder.AddCubicBezier(new Vector2(208.893997F, -27.552F), new Vector2(211.416F, -26.5680008F), new Vector2(214.082001F, -25.8299999F));
+ builder.AddCubicBezier(new Vector2(216.746002F, -25.0919991F), new Vector2(219.266998F, -24.3330002F), new Vector2(221.645996F, -23.5550003F));
+ builder.AddCubicBezier(new Vector2(224.022995F, -22.7749996F), new Vector2(225.970993F, -21.7910004F), new Vector2(227.488998F, -20.6030006F));
+ builder.AddCubicBezier(new Vector2(229.005005F, -19.4130001F), new Vector2(229.764008F, -17.7520008F), new Vector2(229.764008F, -15.6210003F));
+ builder.AddCubicBezier(new Vector2(229.764008F, -13.4879999F), new Vector2(228.820007F, -11.8269997F), new Vector2(226.934998F, -10.6389999F));
+ builder.AddCubicBezier(new Vector2(225.048004F, -9.44900036F), new Vector2(222.384003F, -8.85599995F), new Vector2(218.940002F, -8.85599995F));
+ builder.AddCubicBezier(new Vector2(215.496002F, -8.85599995F), new Vector2(212.378998F, -9.48999977F), new Vector2(209.591995F, -10.7620001F));
+ builder.AddCubicBezier(new Vector2(206.802994F, -12.0319996F), new Vector2(204.343002F, -13.9799995F), new Vector2(202.212006F, -16.6049995F));
+ builder.AddLine(new Vector2(195.078003F, -9.47099972F));
+ builder.AddCubicBezier(new Vector2(196.880997F, -7.25699997F), new Vector2(198.992996F, -5.3499999F), new Vector2(201.412994F, -3.75099993F));
+ builder.AddCubicBezier(new Vector2(203.830994F, -2.15199995F), new Vector2(206.516998F, -0.921999991F), new Vector2(209.468994F, -0.0610000007F));
+ builder.AddCubicBezier(new Vector2(212.421005F, 0.800000012F), new Vector2(215.535995F, 1.23000002F), new Vector2(218.817001F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(225.376007F, 1.23000002F), new Vector2(230.604004F, -0.368999988F), new Vector2(234.5F, -3.56699991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: Pre-comp 1
+ // - - - - Layer: second Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0085()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(174.291F, -1.35300004F));
+ builder.AddCubicBezier(new Vector2(178.307999F, -3.07500005F), new Vector2(181.751999F, -5.57499981F), new Vector2(184.623001F, -8.85599995F));
+ builder.AddLine(new Vector2(177.488998F, -16.1130009F));
+ builder.AddCubicBezier(new Vector2(175.520996F, -13.816F), new Vector2(173.162994F, -12.0939999F), new Vector2(170.417007F, -10.9469995F));
+ builder.AddCubicBezier(new Vector2(167.669006F, -9.79800034F), new Vector2(164.654999F, -9.22500038F), new Vector2(161.376007F, -9.22500038F));
+ builder.AddCubicBezier(new Vector2(157.440002F, -9.22500038F), new Vector2(153.953995F, -10.0649996F), new Vector2(150.921005F, -11.7469997F));
+ builder.AddCubicBezier(new Vector2(147.886002F, -13.427F), new Vector2(145.548996F, -15.8059998F), new Vector2(143.910004F, -18.8810005F));
+ builder.AddCubicBezier(new Vector2(142.268997F, -21.9559994F), new Vector2(141.449997F, -25.5419998F), new Vector2(141.449997F, -29.6429996F));
+ builder.AddCubicBezier(new Vector2(141.449997F, -33.6599998F), new Vector2(142.227997F, -37.1459999F), new Vector2(143.787003F, -40.0979996F));
+ builder.AddCubicBezier(new Vector2(145.343994F, -43.0499992F), new Vector2(147.557999F, -45.3450012F), new Vector2(150.429001F, -46.9860001F));
+ builder.AddCubicBezier(new Vector2(153.298004F, -48.625F), new Vector2(156.619003F, -49.4459991F), new Vector2(160.391998F, -49.4459991F));
+ builder.AddCubicBezier(new Vector2(163.998993F, -49.4459991F), new Vector2(167.074005F, -48.6870003F), new Vector2(169.617004F, -47.1710014F));
+ builder.AddCubicBezier(new Vector2(172.158005F, -45.6529999F), new Vector2(174.126007F, -43.5209999F), new Vector2(175.520996F, -40.7750015F));
+ builder.AddCubicBezier(new Vector2(176.914001F, -38.0270004F), new Vector2(177.612F, -34.6860008F), new Vector2(177.612F, -30.75F));
+ builder.AddLine(new Vector2(181.671005F, -34.3170013F));
+ builder.AddLine(new Vector2(138.251999F, -34.3170013F));
+ builder.AddLine(new Vector2(138.251999F, -25.0919991F));
+ builder.AddLine(new Vector2(187.574997F, -25.0919991F));
+ builder.AddCubicBezier(new Vector2(187.820999F, -26.2390003F), new Vector2(187.983994F, -27.2849998F), new Vector2(188.067001F, -28.2290001F));
+ builder.AddCubicBezier(new Vector2(188.147995F, -29.1709995F), new Vector2(188.190002F, -30.052F), new Vector2(188.190002F, -30.8729992F));
+ builder.AddCubicBezier(new Vector2(188.190002F, -36.4480019F), new Vector2(187.020996F, -41.4090004F), new Vector2(184.684006F, -45.7560005F));
+ builder.AddCubicBezier(new Vector2(182.347F, -50.1010017F), new Vector2(179.087997F, -53.5050011F), new Vector2(174.906006F, -55.9650002F));
+ builder.AddCubicBezier(new Vector2(170.723999F, -58.4249992F), new Vector2(165.966995F, -59.6549988F), new Vector2(160.638F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(154.979996F, -59.6549988F), new Vector2(149.875F, -58.3219986F), new Vector2(145.324005F, -55.6580009F));
+ builder.AddCubicBezier(new Vector2(140.772995F, -52.9920006F), new Vector2(137.164993F, -49.362999F), new Vector2(134.501007F, -44.7719994F));
+ builder.AddCubicBezier(new Vector2(131.835007F, -40.1790009F), new Vector2(130.503006F, -35.0130005F), new Vector2(130.503006F, -29.2740002F));
+ builder.AddCubicBezier(new Vector2(130.503006F, -23.4510002F), new Vector2(131.856003F, -18.2439995F), new Vector2(134.561996F, -13.6529999F));
+ builder.AddCubicBezier(new Vector2(137.268005F, -9.06000042F), new Vector2(140.936005F, -5.43200016F), new Vector2(145.570007F, -2.76799989F));
+ builder.AddCubicBezier(new Vector2(150.201996F, -0.101999998F), new Vector2(155.472F, 1.23000002F), new Vector2(161.376007F, 1.23000002F));
+ builder.AddCubicBezier(new Vector2(165.966995F, 1.23000002F), new Vector2(170.272003F, 0.368999988F), new Vector2(174.291F, -1.35300004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: Pre-comp 1
+ // - - - - Layer: second Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0086()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(101.844002F, -45.2639999F));
+ builder.AddCubicBezier(new Vector2(104.467003F, -47.887001F), new Vector2(107.829002F, -49.2000008F), new Vector2(111.93F, -49.2000008F));
+ builder.AddCubicBezier(new Vector2(113.898003F, -49.2000008F), new Vector2(115.620003F, -48.9119987F), new Vector2(117.096001F, -48.3390007F));
+ builder.AddCubicBezier(new Vector2(118.571999F, -47.7639999F), new Vector2(119.925003F, -46.8209991F), new Vector2(121.154999F, -45.5099983F));
+ builder.AddLine(new Vector2(128.412003F, -53.0130005F));
+ builder.AddCubicBezier(new Vector2(126.361F, -55.3899994F), new Vector2(124.147003F, -57.0919991F), new Vector2(121.769997F, -58.118F));
+ builder.AddCubicBezier(new Vector2(119.390999F, -59.1419983F), new Vector2(116.726997F, -59.6549988F), new Vector2(113.775002F, -59.6549988F));
+ builder.AddCubicBezier(new Vector2(107.295998F, -59.6549988F), new Vector2(102.335999F, -57.4410019F), new Vector2(98.8919983F, -53.0130005F));
+ builder.AddCubicBezier(new Vector2(95.447998F, -48.5849991F), new Vector2(93.7259979F, -42.6389999F), new Vector2(93.7259979F, -35.1780014F));
+ builder.AddLine(new Vector2(97.9079971F, -33.2099991F));
+ builder.AddCubicBezier(new Vector2(97.9079971F, -38.6220016F), new Vector2(99.2190018F, -42.6389999F), new Vector2(101.844002F, -45.2639999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(97.9079971F, 0F));
+ builder.AddLine(new Vector2(97.9079971F, -58.4249992F));
+ builder.AddLine(new Vector2(86.8379974F, -58.4249992F));
+ builder.AddLine(new Vector2(86.8379974F, 0F));
+ builder.AddLine(new Vector2(97.9079971F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: Pre-comp 1
+ // - - - - Layer: second Outlines
+ // - - ShapeGroup: t
+ CanvasGeometry Geometry_0087()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(72.6930008F, -51.7830009F));
+ builder.AddLine(new Vector2(72.6930008F, -60.762001F));
+ builder.AddLine(new Vector2(9.59399986F, -60.762001F));
+ builder.AddLine(new Vector2(9.59399986F, -51.7830009F));
+ builder.AddLine(new Vector2(72.6930008F, -51.7830009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(23.9850006F, 0F));
+ builder.AddLine(new Vector2(37.0229988F, -85.3619995F));
+ builder.AddLine(new Vector2(27.552F, -85.3619995F));
+ builder.AddLine(new Vector2(14.5139999F, 0F));
+ builder.AddLine(new Vector2(23.9850006F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(68.8799973F, -26.3220005F));
+ builder.AddLine(new Vector2(68.8799973F, -35.3009987F));
+ builder.AddLine(new Vector2(5.90399981F, -35.3009987F));
+ builder.AddLine(new Vector2(5.90399981F, -26.3220005F));
+ builder.AddLine(new Vector2(68.8799973F, -26.3220005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(50.3069992F, 0F));
+ builder.AddLine(new Vector2(63.3450012F, -85.3619995F));
+ builder.AddLine(new Vector2(53.8740005F, -85.3619995F));
+ builder.AddLine(new Vector2(40.8359985F, 0F));
+ builder.AddLine(new Vector2(50.3069992F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0088()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(233.324005F, -11.0039997F));
+ builder.AddLine(new Vector2(233.324005F, -13.3000002F));
+ builder.AddLine(new Vector2(224.251999F, -13.3000002F));
+ builder.AddLine(new Vector2(224.251999F, -11.0039997F));
+ builder.AddLine(new Vector2(233.324005F, -11.0039997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(230.048004F, 0F));
+ builder.AddLine(new Vector2(230.048004F, -18.8719997F));
+ builder.AddLine(new Vector2(227.528F, -18.8719997F));
+ builder.AddLine(new Vector2(227.528F, 0F));
+ builder.AddLine(new Vector2(230.048004F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0089()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(220.906006F, -0.307999998F));
+ builder.AddCubicBezier(new Vector2(221.792007F, -0.699999988F), new Vector2(222.544006F, -1.25F), new Vector2(223.160004F, -1.96000004F));
+ builder.AddLine(new Vector2(221.507996F, -3.6400001F));
+ builder.AddCubicBezier(new Vector2(221.078003F, -3.15400004F), new Vector2(220.570007F, -2.78600001F), new Vector2(219.981995F, -2.53399992F));
+ builder.AddCubicBezier(new Vector2(219.393997F, -2.28200006F), new Vector2(218.744995F, -2.1559999F), new Vector2(218.035995F, -2.1559999F));
+ builder.AddCubicBezier(new Vector2(217.195999F, -2.1559999F), new Vector2(216.449005F, -2.352F), new Vector2(215.796005F, -2.74399996F));
+ builder.AddCubicBezier(new Vector2(215.141998F, -3.13599992F), new Vector2(214.628998F, -3.66799998F), new Vector2(214.255997F, -4.34000015F));
+ builder.AddCubicBezier(new Vector2(213.882004F, -5.01200008F), new Vector2(213.695999F, -5.78599977F), new Vector2(213.695999F, -6.66400003F));
+ builder.AddCubicBezier(new Vector2(213.695999F, -7.54099989F), new Vector2(213.882004F, -8.31599998F), new Vector2(214.255997F, -8.98799992F));
+ builder.AddCubicBezier(new Vector2(214.628998F, -9.65999985F), new Vector2(215.141998F, -10.1870003F), new Vector2(215.796005F, -10.5699997F));
+ builder.AddCubicBezier(new Vector2(216.449005F, -10.9519997F), new Vector2(217.195999F, -11.1440001F), new Vector2(218.035995F, -11.1440001F));
+ builder.AddCubicBezier(new Vector2(218.725998F, -11.1440001F), new Vector2(219.369995F, -11.0179996F), new Vector2(219.968002F, -10.7659998F));
+ builder.AddCubicBezier(new Vector2(220.565002F, -10.5139999F), new Vector2(221.069F, -10.1450005F), new Vector2(221.479996F, -9.65999985F));
+ builder.AddLine(new Vector2(223.160004F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(222.524994F, -12.0679998F), new Vector2(221.768997F, -12.6230001F), new Vector2(220.891998F, -13.0059996F));
+ builder.AddCubicBezier(new Vector2(220.014008F, -13.3879995F), new Vector2(219.061996F, -13.5799999F), new Vector2(218.035995F, -13.5799999F));
+ builder.AddCubicBezier(new Vector2(216.729004F, -13.5799999F), new Vector2(215.548004F, -13.276F), new Vector2(214.494003F, -12.6700001F));
+ builder.AddCubicBezier(new Vector2(213.438995F, -12.0629997F), new Vector2(212.608002F, -11.2370005F), new Vector2(212.001999F, -10.1920004F));
+ builder.AddCubicBezier(new Vector2(211.395004F, -9.14599991F), new Vector2(211.091995F, -7.96999979F), new Vector2(211.091995F, -6.66400003F));
+ builder.AddCubicBezier(new Vector2(211.091995F, -5.37599993F), new Vector2(211.395004F, -4.204F), new Vector2(212.001999F, -3.1500001F));
+ builder.AddCubicBezier(new Vector2(212.608002F, -2.09500003F), new Vector2(213.438995F, -1.25999999F), new Vector2(214.494003F, -0.643999994F));
+ builder.AddCubicBezier(new Vector2(215.548004F, -0.0280000009F), new Vector2(216.729004F, 0.280000001F), new Vector2(218.035995F, 0.280000001F));
+ builder.AddCubicBezier(new Vector2(219.061996F, 0.280000001F), new Vector2(220.018997F, 0.0839999989F), new Vector2(220.906006F, -0.307999998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0090()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(206.052002F, -0.307999998F));
+ builder.AddCubicBezier(new Vector2(206.966003F, -0.699999988F), new Vector2(207.75F, -1.26900005F), new Vector2(208.404007F, -2.01600003F));
+ builder.AddLine(new Vector2(206.779999F, -3.66799998F));
+ builder.AddCubicBezier(new Vector2(206.332001F, -3.14499998F), new Vector2(205.794998F, -2.75300002F), new Vector2(205.169998F, -2.4920001F));
+ builder.AddCubicBezier(new Vector2(204.544006F, -2.23000002F), new Vector2(203.858002F, -2.0999999F), new Vector2(203.112F, -2.0999999F));
+ builder.AddCubicBezier(new Vector2(202.216003F, -2.0999999F), new Vector2(201.421997F, -2.29099989F), new Vector2(200.731995F, -2.67400002F));
+ builder.AddCubicBezier(new Vector2(200.041F, -3.05599999F), new Vector2(199.509003F, -3.59800005F), new Vector2(199.136002F, -4.29799986F));
+ builder.AddCubicBezier(new Vector2(198.761993F, -4.99800014F), new Vector2(198.576004F, -5.81400013F), new Vector2(198.576004F, -6.74800014F));
+ builder.AddCubicBezier(new Vector2(198.576004F, -7.66200018F), new Vector2(198.753006F, -8.45600033F), new Vector2(199.108002F, -9.12800026F));
+ builder.AddCubicBezier(new Vector2(199.462006F, -9.80000019F), new Vector2(199.966003F, -10.3219995F), new Vector2(200.619995F, -10.6960001F));
+ builder.AddCubicBezier(new Vector2(201.272995F, -11.0690002F), new Vector2(202.029007F, -11.2559996F), new Vector2(202.888F, -11.2559996F));
+ builder.AddCubicBezier(new Vector2(203.709F, -11.2559996F), new Vector2(204.408997F, -11.0830002F), new Vector2(204.988007F, -10.7379999F));
+ builder.AddCubicBezier(new Vector2(205.565994F, -10.3920002F), new Vector2(206.014008F, -9.90699959F), new Vector2(206.332001F, -9.28199959F));
+ builder.AddCubicBezier(new Vector2(206.649002F, -8.65600014F), new Vector2(206.807999F, -7.89599991F), new Vector2(206.807999F, -7F));
+ builder.AddLine(new Vector2(207.731995F, -7.8119998F));
+ builder.AddLine(new Vector2(197.848007F, -7.8119998F));
+ builder.AddLine(new Vector2(197.848007F, -5.71199989F));
+ builder.AddLine(new Vector2(209.076004F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(209.132004F, -5.97300005F), new Vector2(209.169006F, -6.21099997F), new Vector2(209.188004F, -6.42600012F));
+ builder.AddCubicBezier(new Vector2(209.205994F, -6.63999987F), new Vector2(209.216003F, -6.84100008F), new Vector2(209.216003F, -7.02799988F));
+ builder.AddCubicBezier(new Vector2(209.216003F, -8.29699993F), new Vector2(208.949997F, -9.42599964F), new Vector2(208.417999F, -10.4160004F));
+ builder.AddCubicBezier(new Vector2(207.886002F, -11.4049997F), new Vector2(207.143997F, -12.1800003F), new Vector2(206.192001F, -12.7399998F));
+ builder.AddCubicBezier(new Vector2(205.240005F, -13.3000002F), new Vector2(204.156998F, -13.5799999F), new Vector2(202.944F, -13.5799999F));
+ builder.AddCubicBezier(new Vector2(201.656006F, -13.5799999F), new Vector2(200.494003F, -13.276F), new Vector2(199.457993F, -12.6700001F));
+ builder.AddCubicBezier(new Vector2(198.421997F, -12.0629997F), new Vector2(197.600006F, -11.2370005F), new Vector2(196.994003F, -10.1920004F));
+ builder.AddCubicBezier(new Vector2(196.386993F, -9.14599991F), new Vector2(196.084F, -7.96999979F), new Vector2(196.084F, -6.66400003F));
+ builder.AddCubicBezier(new Vector2(196.084F, -5.33799982F), new Vector2(196.391998F, -4.15299988F), new Vector2(197.007996F, -3.10800004F));
+ builder.AddCubicBezier(new Vector2(197.623993F, -2.06200004F), new Vector2(198.459F, -1.23599994F), new Vector2(199.514008F, -0.629999995F));
+ builder.AddCubicBezier(new Vector2(200.567993F, -0.023F), new Vector2(201.768005F, 0.280000001F), new Vector2(203.112F, 0.280000001F));
+ builder.AddCubicBezier(new Vector2(204.156998F, 0.280000001F), new Vector2(205.136993F, 0.0839999989F), new Vector2(206.052002F, -0.307999998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0091()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(193.171997F, -16.4220009F));
+ builder.AddCubicBezier(new Vector2(193.470001F, -16.7299995F), new Vector2(193.619995F, -17.1170006F), new Vector2(193.619995F, -17.5839996F));
+ builder.AddCubicBezier(new Vector2(193.619995F, -18.0319996F), new Vector2(193.470001F, -18.4099998F), new Vector2(193.171997F, -18.7180004F));
+ builder.AddCubicBezier(new Vector2(192.873001F, -19.0259991F), new Vector2(192.490005F, -19.1800003F), new Vector2(192.024002F, -19.1800003F));
+ builder.AddCubicBezier(new Vector2(191.576004F, -19.1800003F), new Vector2(191.197998F, -19.0259991F), new Vector2(190.889999F, -18.7180004F));
+ builder.AddCubicBezier(new Vector2(190.582001F, -18.4099998F), new Vector2(190.427994F, -18.0319996F), new Vector2(190.427994F, -17.5839996F));
+ builder.AddCubicBezier(new Vector2(190.427994F, -17.1170006F), new Vector2(190.582001F, -16.7299995F), new Vector2(190.889999F, -16.4220009F));
+ builder.AddCubicBezier(new Vector2(191.197998F, -16.1140003F), new Vector2(191.576004F, -15.96F), new Vector2(192.024002F, -15.96F));
+ builder.AddCubicBezier(new Vector2(192.490005F, -15.96F), new Vector2(192.873001F, -16.1140003F), new Vector2(193.171997F, -16.4220009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(191.016006F, 5.33400011F));
+ builder.AddCubicBezier(new Vector2(191.688004F, 4.98799992F), new Vector2(192.229004F, 4.48899984F), new Vector2(192.639999F, 3.83599997F));
+ builder.AddCubicBezier(new Vector2(193.050003F, 3.18199992F), new Vector2(193.255997F, 2.36999989F), new Vector2(193.255997F, 1.39999998F));
+ builder.AddLine(new Vector2(193.255997F, -13.3000002F));
+ builder.AddLine(new Vector2(190.735992F, -13.3000002F));
+ builder.AddLine(new Vector2(190.735992F, 1.42799997F));
+ builder.AddCubicBezier(new Vector2(190.735992F, 2.11800003F), new Vector2(190.529999F, 2.63599992F), new Vector2(190.119995F, 2.98200011F));
+ builder.AddCubicBezier(new Vector2(189.709F, 3.3269999F), new Vector2(189.223999F, 3.5F), new Vector2(188.664001F, 3.5F));
+ builder.AddCubicBezier(new Vector2(188.235001F, 3.5F), new Vector2(187.865997F, 3.42499995F), new Vector2(187.557999F, 3.27600002F));
+ builder.AddCubicBezier(new Vector2(187.25F, 3.12599993F), new Vector2(186.966003F, 2.89299989F), new Vector2(186.703995F, 2.57599998F));
+ builder.AddLine(new Vector2(185.080002F, 4.22800016F));
+ builder.AddCubicBezier(new Vector2(185.546997F, 4.75F), new Vector2(186.074005F, 5.15199995F), new Vector2(186.662003F, 5.43200016F));
+ builder.AddCubicBezier(new Vector2(187.25F, 5.71199989F), new Vector2(187.973999F, 5.85200024F), new Vector2(188.832001F, 5.85200024F));
+ builder.AddCubicBezier(new Vector2(189.615997F, 5.85200024F), new Vector2(190.343994F, 5.6789999F), new Vector2(191.016006F, 5.33400011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0092()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(178.528F, -2.74399996F));
+ builder.AddCubicBezier(new Vector2(177.873993F, -3.13599992F), new Vector2(177.360992F, -3.67199993F), new Vector2(176.988007F, -4.35400009F));
+ builder.AddCubicBezier(new Vector2(176.613998F, -5.03499985F), new Vector2(176.427994F, -5.81400013F), new Vector2(176.427994F, -6.69199991F));
+ builder.AddCubicBezier(new Vector2(176.427994F, -7.55000019F), new Vector2(176.613998F, -8.31599998F), new Vector2(176.988007F, -8.98799992F));
+ builder.AddCubicBezier(new Vector2(177.360992F, -9.65999985F), new Vector2(177.873993F, -10.1870003F), new Vector2(178.528F, -10.5699997F));
+ builder.AddCubicBezier(new Vector2(179.181F, -10.9519997F), new Vector2(179.917999F, -11.1440001F), new Vector2(180.740005F, -11.1440001F));
+ builder.AddCubicBezier(new Vector2(181.598007F, -11.1440001F), new Vector2(182.350006F, -10.9519997F), new Vector2(182.994003F, -10.5699997F));
+ builder.AddCubicBezier(new Vector2(183.638F, -10.1870003F), new Vector2(184.151001F, -9.65999985F), new Vector2(184.533997F, -8.98799992F));
+ builder.AddCubicBezier(new Vector2(184.916F, -8.31599998F), new Vector2(185.108002F, -7.55000019F), new Vector2(185.108002F, -6.69199991F));
+ builder.AddCubicBezier(new Vector2(185.108002F, -5.81400013F), new Vector2(184.921005F, -5.03499985F), new Vector2(184.548004F, -4.35400009F));
+ builder.AddCubicBezier(new Vector2(184.173996F, -3.67199993F), new Vector2(183.660995F, -3.13599992F), new Vector2(183.007996F, -2.74399996F));
+ builder.AddCubicBezier(new Vector2(182.354004F, -2.352F), new Vector2(181.598007F, -2.1559999F), new Vector2(180.740005F, -2.1559999F));
+ builder.AddCubicBezier(new Vector2(179.917999F, -2.1559999F), new Vector2(179.181F, -2.352F), new Vector2(178.528F, -2.74399996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(184.281998F, -0.643999994F));
+ builder.AddCubicBezier(new Vector2(185.335999F, -1.25999999F), new Vector2(186.171997F, -2.09500003F), new Vector2(186.787994F, -3.1500001F));
+ builder.AddCubicBezier(new Vector2(187.404007F, -4.204F), new Vector2(187.712006F, -5.38500023F), new Vector2(187.712006F, -6.69199991F));
+ builder.AddCubicBezier(new Vector2(187.712006F, -7.98000002F), new Vector2(187.404007F, -9.14599991F), new Vector2(186.787994F, -10.1920004F));
+ builder.AddCubicBezier(new Vector2(186.171997F, -11.2370005F), new Vector2(185.335999F, -12.0629997F), new Vector2(184.281998F, -12.6700001F));
+ builder.AddCubicBezier(new Vector2(183.227005F, -13.276F), new Vector2(182.046005F, -13.5799999F), new Vector2(180.740005F, -13.5799999F));
+ builder.AddCubicBezier(new Vector2(179.451996F, -13.5799999F), new Vector2(178.285004F, -13.2720003F), new Vector2(177.240005F, -12.6560001F));
+ builder.AddCubicBezier(new Vector2(176.194F, -12.04F), new Vector2(175.363998F, -11.2139997F), new Vector2(174.748001F, -10.1780005F));
+ builder.AddCubicBezier(new Vector2(174.132004F, -9.1420002F), new Vector2(173.824005F, -7.98000002F), new Vector2(173.824005F, -6.69199991F));
+ builder.AddCubicBezier(new Vector2(173.824005F, -5.38500023F), new Vector2(174.132004F, -4.204F), new Vector2(174.748001F, -3.1500001F));
+ builder.AddCubicBezier(new Vector2(175.363998F, -2.09500003F), new Vector2(176.194F, -1.25999999F), new Vector2(177.240005F, -0.643999994F));
+ builder.AddCubicBezier(new Vector2(178.285004F, -0.0280000009F), new Vector2(179.451996F, 0.280000001F), new Vector2(180.740005F, 0.280000001F));
+ builder.AddCubicBezier(new Vector2(182.046005F, 0.280000001F), new Vector2(183.227005F, -0.0280000009F), new Vector2(184.281998F, -0.643999994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0093()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(167.300003F, -10.3039999F));
+ builder.AddCubicBezier(new Vector2(167.897003F, -10.901F), new Vector2(168.662003F, -11.1999998F), new Vector2(169.595993F, -11.1999998F));
+ builder.AddCubicBezier(new Vector2(170.044006F, -11.1999998F), new Vector2(170.436005F, -11.1339998F), new Vector2(170.772003F, -11.0039997F));
+ builder.AddCubicBezier(new Vector2(171.108002F, -10.8730001F), new Vector2(171.416F, -10.658F), new Vector2(171.695999F, -10.3599997F));
+ builder.AddLine(new Vector2(173.348007F, -12.0679998F));
+ builder.AddCubicBezier(new Vector2(172.880997F, -12.6090002F), new Vector2(172.376999F, -12.9960003F), new Vector2(171.835999F, -13.2299995F));
+ builder.AddCubicBezier(new Vector2(171.294006F, -13.4630003F), new Vector2(170.688004F, -13.5799999F), new Vector2(170.016006F, -13.5799999F));
+ builder.AddCubicBezier(new Vector2(168.541F, -13.5799999F), new Vector2(167.412003F, -13.0760002F), new Vector2(166.628006F, -12.0679998F));
+ builder.AddCubicBezier(new Vector2(165.843994F, -11.0600004F), new Vector2(165.451996F, -9.70600033F), new Vector2(165.451996F, -8.00800037F));
+ builder.AddLine(new Vector2(166.404007F, -7.55999994F));
+ builder.AddCubicBezier(new Vector2(166.404007F, -8.79199982F), new Vector2(166.701996F, -9.70600033F), new Vector2(167.300003F, -10.3039999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(166.404007F, 0F));
+ builder.AddLine(new Vector2(166.404007F, -13.3000002F));
+ builder.AddLine(new Vector2(163.884003F, -13.3000002F));
+ builder.AddLine(new Vector2(163.884003F, 0F));
+ builder.AddLine(new Vector2(166.404007F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0094()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(149.996002F, 0F));
+ builder.AddLine(new Vector2(149.996002F, -19.4319992F));
+ builder.AddLine(new Vector2(147.363998F, -19.4319992F));
+ builder.AddLine(new Vector2(147.363998F, 0F));
+ builder.AddLine(new Vector2(149.996002F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(154.559998F, -7.55999994F));
+ builder.AddCubicBezier(new Vector2(155.753998F, -7.55999994F), new Vector2(156.828003F, -7.80200005F), new Vector2(157.779999F, -8.28800011F));
+ builder.AddCubicBezier(new Vector2(158.731995F, -8.77299976F), new Vector2(159.483002F, -9.46399975F), new Vector2(160.033997F, -10.3599997F));
+ builder.AddCubicBezier(new Vector2(160.584F, -11.2559996F), new Vector2(160.860001F, -12.3009996F), new Vector2(160.860001F, -13.4960003F));
+ builder.AddCubicBezier(new Vector2(160.860001F, -14.7089996F), new Vector2(160.584F, -15.7589998F), new Vector2(160.033997F, -16.6459999F));
+ builder.AddCubicBezier(new Vector2(159.483002F, -17.5319996F), new Vector2(158.731995F, -18.2180004F), new Vector2(157.779999F, -18.7040005F));
+ builder.AddCubicBezier(new Vector2(156.828003F, -19.1889992F), new Vector2(155.753998F, -19.4319992F), new Vector2(154.559998F, -19.4319992F));
+ builder.AddLine(new Vector2(149.128006F, -19.4319992F));
+ builder.AddLine(new Vector2(149.128006F, -17.1359997F));
+ builder.AddLine(new Vector2(154.419998F, -17.1359997F));
+ builder.AddCubicBezier(new Vector2(155.147995F, -17.1359997F), new Vector2(155.796005F, -16.9860001F), new Vector2(156.365997F, -16.6879997F));
+ builder.AddCubicBezier(new Vector2(156.934998F, -16.3889999F), new Vector2(157.382996F, -15.9689999F), new Vector2(157.710007F, -15.4280005F));
+ builder.AddCubicBezier(new Vector2(158.035995F, -14.8859997F), new Vector2(158.199997F, -14.2419996F), new Vector2(158.199997F, -13.4960003F));
+ builder.AddCubicBezier(new Vector2(158.199997F, -12.7489996F), new Vector2(158.035995F, -12.1049995F), new Vector2(157.710007F, -11.5640001F));
+ builder.AddCubicBezier(new Vector2(157.382996F, -11.0220003F), new Vector2(156.934998F, -10.6020002F), new Vector2(156.365997F, -10.3039999F));
+ builder.AddCubicBezier(new Vector2(155.796005F, -10.0050001F), new Vector2(155.147995F, -9.85599995F), new Vector2(154.419998F, -9.85599995F));
+ builder.AddLine(new Vector2(149.128006F, -9.85599995F));
+ builder.AddLine(new Vector2(149.128006F, -7.55999994F));
+ builder.AddLine(new Vector2(154.559998F, -7.55999994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0095()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(135.296005F, -0.266000003F));
+ builder.AddCubicBezier(new Vector2(136.248001F, -0.648000002F), new Vector2(137.059998F, -1.24100006F), new Vector2(137.731995F, -2.04399991F));
+ builder.AddLine(new Vector2(135.352005F, -4.39599991F));
+ builder.AddCubicBezier(new Vector2(134.940994F, -3.9289999F), new Vector2(134.464996F, -3.579F), new Vector2(133.923996F, -3.34599996F));
+ builder.AddCubicBezier(new Vector2(133.382004F, -3.11199999F), new Vector2(132.785004F, -2.99600005F), new Vector2(132.132004F, -2.99600005F));
+ builder.AddCubicBezier(new Vector2(131.404007F, -2.99600005F), new Vector2(130.774002F, -3.1500001F), new Vector2(130.242004F, -3.45799994F));
+ builder.AddCubicBezier(new Vector2(129.710007F, -3.76600003F), new Vector2(129.298996F, -4.20900011F), new Vector2(129.009995F, -4.78800011F));
+ builder.AddCubicBezier(new Vector2(128.720001F, -5.36600018F), new Vector2(128.576004F, -6.04799986F), new Vector2(128.576004F, -6.83199978F));
+ builder.AddCubicBezier(new Vector2(128.576004F, -7.61600018F), new Vector2(128.710999F, -8.28800011F), new Vector2(128.981995F, -8.84799957F));
+ builder.AddCubicBezier(new Vector2(129.251999F, -9.40799999F), new Vector2(129.634995F, -9.84599972F), new Vector2(130.130005F, -10.1639996F));
+ builder.AddCubicBezier(new Vector2(130.623993F, -10.4809999F), new Vector2(131.207993F, -10.6400003F), new Vector2(131.880005F, -10.6400003F));
+ builder.AddCubicBezier(new Vector2(132.496002F, -10.6400003F), new Vector2(133.022995F, -10.5F), new Vector2(133.462006F, -10.2200003F));
+ builder.AddCubicBezier(new Vector2(133.899994F, -9.93999958F), new Vector2(134.231995F, -9.54300022F), new Vector2(134.455994F, -9.02999973F));
+ builder.AddCubicBezier(new Vector2(134.679993F, -8.51599979F), new Vector2(134.800995F, -7.87699986F), new Vector2(134.820007F, -7.11199999F));
+ builder.AddLine(new Vector2(136.667999F, -8.37199974F));
+ builder.AddLine(new Vector2(126.811996F, -8.31599998F));
+ builder.AddLine(new Vector2(126.811996F, -5.34800005F));
+ builder.AddLine(new Vector2(138.516006F, -5.40399981F));
+ builder.AddCubicBezier(new Vector2(138.608994F, -5.73999977F), new Vector2(138.669998F, -6.04300022F), new Vector2(138.697998F, -6.31400013F));
+ builder.AddCubicBezier(new Vector2(138.725998F, -6.58400011F), new Vector2(138.740005F, -6.8499999F), new Vector2(138.740005F, -7.11199999F));
+ builder.AddCubicBezier(new Vector2(138.740005F, -8.43700027F), new Vector2(138.440994F, -9.61299992F), new Vector2(137.843994F, -10.6400003F));
+ builder.AddCubicBezier(new Vector2(137.246002F, -11.6660004F), new Vector2(136.434006F, -12.4689999F), new Vector2(135.408005F, -13.0480003F));
+ builder.AddCubicBezier(new Vector2(134.380997F, -13.6260004F), new Vector2(133.186005F, -13.9160004F), new Vector2(131.824005F, -13.9160004F));
+ builder.AddCubicBezier(new Vector2(130.442001F, -13.9160004F), new Vector2(129.201004F, -13.6079998F), new Vector2(128.100006F, -12.9919996F));
+ builder.AddCubicBezier(new Vector2(126.998001F, -12.3760004F), new Vector2(126.129997F, -11.5310001F), new Vector2(125.496002F, -10.4580002F));
+ builder.AddCubicBezier(new Vector2(124.861F, -9.38399982F), new Vector2(124.543999F, -8.17599964F), new Vector2(124.543999F, -6.83199978F));
+ builder.AddCubicBezier(new Vector2(124.543999F, -5.44999981F), new Vector2(124.870003F, -4.21799994F), new Vector2(125.524002F, -3.13599992F));
+ builder.AddCubicBezier(new Vector2(126.177002F, -2.05299997F), new Vector2(127.072998F, -1.20799994F), new Vector2(128.212006F, -0.601999998F));
+ builder.AddCubicBezier(new Vector2(129.350006F, 0.00400000019F), new Vector2(130.656998F, 0.307999998F), new Vector2(132.132004F, 0.307999998F));
+ builder.AddCubicBezier(new Vector2(133.289001F, 0.307999998F), new Vector2(134.343994F, 0.115999997F), new Vector2(135.296005F, -0.266000003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0096()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(121.617996F, -0.825999975F));
+ builder.AddCubicBezier(new Vector2(122.615997F, -1.61899996F), new Vector2(123.115997F, -2.67799997F), new Vector2(123.115997F, -4.00400019F));
+ builder.AddCubicBezier(new Vector2(123.115997F, -4.86199999F), new Vector2(122.957001F, -5.55800009F), new Vector2(122.639999F, -6.09000015F));
+ builder.AddCubicBezier(new Vector2(122.321999F, -6.62200022F), new Vector2(121.912003F, -7.05100012F), new Vector2(121.407997F, -7.37799978F));
+ builder.AddCubicBezier(new Vector2(120.903999F, -7.704F), new Vector2(120.372002F, -7.95599985F), new Vector2(119.811996F, -8.13399982F));
+ builder.AddCubicBezier(new Vector2(119.251999F, -8.31099987F), new Vector2(118.723999F, -8.46500015F), new Vector2(118.230003F, -8.59599972F));
+ builder.AddCubicBezier(new Vector2(117.735001F, -8.72599983F), new Vector2(117.323997F, -8.8760004F), new Vector2(116.998001F, -9.04399967F));
+ builder.AddCubicBezier(new Vector2(116.670998F, -9.21199989F), new Vector2(116.508003F, -9.43599987F), new Vector2(116.508003F, -9.7159996F));
+ builder.AddCubicBezier(new Vector2(116.508003F, -9.95800018F), new Vector2(116.628998F, -10.1540003F), new Vector2(116.872002F, -10.3039999F));
+ builder.AddCubicBezier(new Vector2(117.113998F, -10.4530001F), new Vector2(117.477997F, -10.5279999F), new Vector2(117.963997F, -10.5279999F));
+ builder.AddCubicBezier(new Vector2(118.468002F, -10.5279999F), new Vector2(118.986F, -10.4200001F), new Vector2(119.517998F, -10.2060003F));
+ builder.AddCubicBezier(new Vector2(120.050003F, -9.99100018F), new Vector2(120.529999F, -9.63199997F), new Vector2(120.959999F, -9.12800026F));
+ builder.AddLine(new Vector2(123.396004F, -11.6199999F));
+ builder.AddCubicBezier(new Vector2(122.797997F, -12.4040003F), new Vector2(122.004997F, -12.9960003F), new Vector2(121.015999F, -13.3979998F));
+ builder.AddCubicBezier(new Vector2(120.026001F, -13.7989998F), new Vector2(118.961998F, -14F), new Vector2(117.823997F, -14F));
+ builder.AddCubicBezier(new Vector2(116.684998F, -14F), new Vector2(115.705002F, -13.8129997F), new Vector2(114.884003F, -13.4399996F));
+ builder.AddCubicBezier(new Vector2(114.061996F, -13.066F), new Vector2(113.428001F, -12.5579996F), new Vector2(112.980003F, -11.9139996F));
+ builder.AddCubicBezier(new Vector2(112.531998F, -11.2700005F), new Vector2(112.307999F, -10.5089998F), new Vector2(112.307999F, -9.63199997F));
+ builder.AddCubicBezier(new Vector2(112.307999F, -8.79199982F), new Vector2(112.466003F, -8.10999966F), new Vector2(112.783997F, -7.58799982F));
+ builder.AddCubicBezier(new Vector2(113.100998F, -7.06500006F), new Vector2(113.512001F, -6.65399981F), new Vector2(114.015999F, -6.35599995F));
+ builder.AddCubicBezier(new Vector2(114.519997F, -6.05700016F), new Vector2(115.052002F, -5.81899977F), new Vector2(115.612F, -5.6420002F));
+ builder.AddCubicBezier(new Vector2(116.171997F, -5.46400023F), new Vector2(116.708F, -5.30600023F), new Vector2(117.222F, -5.16599989F));
+ builder.AddCubicBezier(new Vector2(117.735001F, -5.02600002F), new Vector2(118.150002F, -4.87599993F), new Vector2(118.468002F, -4.71799994F));
+ builder.AddCubicBezier(new Vector2(118.785004F, -4.55900002F), new Vector2(118.944F, -4.3119998F), new Vector2(118.944F, -3.97600007F));
+ builder.AddCubicBezier(new Vector2(118.944F, -3.6960001F), new Vector2(118.807999F, -3.48099995F), new Vector2(118.538002F, -3.33200002F));
+ builder.AddCubicBezier(new Vector2(118.266998F, -3.18199992F), new Vector2(117.898003F, -3.10800004F), new Vector2(117.431999F, -3.10800004F));
+ builder.AddCubicBezier(new Vector2(116.684998F, -3.10800004F), new Vector2(116.008003F, -3.24300003F), new Vector2(115.402F, -3.51399994F));
+ builder.AddCubicBezier(new Vector2(114.794998F, -3.78399992F), new Vector2(114.258003F, -4.16200018F), new Vector2(113.792F, -4.64799976F));
+ builder.AddLine(new Vector2(111.328003F, -2.18400002F));
+ builder.AddCubicBezier(new Vector2(111.813004F, -1.67999995F), new Vector2(112.382004F, -1.23599994F), new Vector2(113.036003F, -0.853999972F));
+ builder.AddCubicBezier(new Vector2(113.689003F, -0.470999986F), new Vector2(114.407997F, -0.172000006F), new Vector2(115.192001F, 0.0419999994F));
+ builder.AddCubicBezier(new Vector2(115.975998F, 0.256000012F), new Vector2(116.768997F, 0.363999993F), new Vector2(117.571999F, 0.363999993F));
+ builder.AddCubicBezier(new Vector2(119.269997F, 0.363999993F), new Vector2(120.619003F, -0.0320000015F), new Vector2(121.617996F, -0.825999975F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0097()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(101.458F, -4.01800013F));
+ builder.AddCubicBezier(new Vector2(101F, -4.28800011F), new Vector2(100.640999F, -4.66599989F), new Vector2(100.379997F, -5.15199995F));
+ builder.AddCubicBezier(new Vector2(100.117996F, -5.63700008F), new Vector2(99.987999F, -6.1880002F), new Vector2(99.987999F, -6.8039999F));
+ builder.AddCubicBezier(new Vector2(99.987999F, -7.42000008F), new Vector2(100.117996F, -7.96999979F), new Vector2(100.379997F, -8.45600033F));
+ builder.AddCubicBezier(new Vector2(100.640999F, -8.94099998F), new Vector2(101F, -9.31900024F), new Vector2(101.458F, -9.59000015F));
+ builder.AddCubicBezier(new Vector2(101.915001F, -9.85999966F), new Vector2(102.442001F, -9.99600029F), new Vector2(103.040001F, -9.99600029F));
+ builder.AddCubicBezier(new Vector2(103.637001F, -9.99600029F), new Vector2(104.160004F, -9.85999966F), new Vector2(104.608002F, -9.59000015F));
+ builder.AddCubicBezier(new Vector2(105.056F, -9.31900024F), new Vector2(105.415001F, -8.94099998F), new Vector2(105.685997F, -8.45600033F));
+ builder.AddCubicBezier(new Vector2(105.956001F, -7.96999979F), new Vector2(106.092003F, -7.42000008F), new Vector2(106.092003F, -6.8039999F));
+ builder.AddCubicBezier(new Vector2(106.092003F, -6.1880002F), new Vector2(105.956001F, -5.63700008F), new Vector2(105.685997F, -5.15199995F));
+ builder.AddCubicBezier(new Vector2(105.415001F, -4.66599989F), new Vector2(105.051003F, -4.28800011F), new Vector2(104.594002F, -4.01800013F));
+ builder.AddCubicBezier(new Vector2(104.136002F, -3.74699998F), new Vector2(103.609001F, -3.61199999F), new Vector2(103.012001F, -3.61199999F));
+ builder.AddCubicBezier(new Vector2(102.432999F, -3.61199999F), new Vector2(101.915001F, -3.74699998F), new Vector2(101.458F, -4.01800013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(100.183998F, 5.73999977F));
+ builder.AddLine(new Vector2(100.183998F, -3.5F));
+ builder.AddLine(new Vector2(99.5400009F, -6.8039999F));
+ builder.AddLine(new Vector2(100.239998F, -10.1359997F));
+ builder.AddLine(new Vector2(100.239998F, -13.6079998F));
+ builder.AddLine(new Vector2(95.9280014F, -13.6079998F));
+ builder.AddLine(new Vector2(95.9280014F, 5.73999977F));
+ builder.AddLine(new Vector2(100.183998F, 5.73999977F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(107.239998F, -0.657999992F));
+ builder.AddCubicBezier(new Vector2(108.248001F, -1.28299999F), new Vector2(109.036003F, -2.12299991F), new Vector2(109.606003F, -3.17799997F));
+ builder.AddCubicBezier(new Vector2(110.175003F, -4.23199987F), new Vector2(110.459999F, -5.44099998F), new Vector2(110.459999F, -6.8039999F));
+ builder.AddCubicBezier(new Vector2(110.459999F, -8.16600037F), new Vector2(110.169998F, -9.38000011F), new Vector2(109.592003F, -10.4440002F));
+ builder.AddCubicBezier(new Vector2(109.013F, -11.5080004F), new Vector2(108.223999F, -12.3479996F), new Vector2(107.225998F, -12.9639997F));
+ builder.AddCubicBezier(new Vector2(106.226997F, -13.5799999F), new Vector2(105.093002F, -13.8879995F), new Vector2(103.823997F, -13.8879995F));
+ builder.AddCubicBezier(new Vector2(102.908997F, -13.8879995F), new Vector2(102.069F, -13.7010002F), new Vector2(101.304001F, -13.3280001F));
+ builder.AddCubicBezier(new Vector2(100.538002F, -12.9540005F), new Vector2(99.913002F, -12.4460001F), new Vector2(99.4280014F, -11.802F));
+ builder.AddCubicBezier(new Vector2(98.9420013F, -11.158F), new Vector2(98.6620026F, -10.4250002F), new Vector2(98.5879974F, -9.60400009F));
+ builder.AddLine(new Vector2(98.5879974F, -3.86400008F));
+ builder.AddCubicBezier(new Vector2(98.6620026F, -3.06100011F), new Vector2(98.9380035F, -2.34699988F), new Vector2(99.4140015F, -1.722F));
+ builder.AddCubicBezier(new Vector2(99.8899994F, -1.09599996F), new Vector2(100.510002F, -0.606000006F), new Vector2(101.276001F, -0.252000004F));
+ builder.AddCubicBezier(new Vector2(102.041F, 0.101999998F), new Vector2(102.889999F, 0.280000001F), new Vector2(103.823997F, 0.280000001F));
+ builder.AddCubicBezier(new Vector2(105.093002F, 0.280000001F), new Vector2(106.232002F, -0.0320000015F), new Vector2(107.239998F, -0.657999992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0098()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(92.9319992F, 0F));
+ builder.AddLine(new Vector2(92.9319992F, -13.6079998F));
+ builder.AddLine(new Vector2(88.7040024F, -13.6079998F));
+ builder.AddLine(new Vector2(88.7040024F, -10.276F));
+ builder.AddLine(new Vector2(89.3479996F, -7F));
+ builder.AddLine(new Vector2(88.7040024F, -3.66799998F));
+ builder.AddLine(new Vector2(88.7040024F, 0F));
+ builder.AddLine(new Vector2(92.9319992F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(84.2939987F, -4.01800013F));
+ builder.AddCubicBezier(new Vector2(83.8359985F, -4.28800011F), new Vector2(83.4720001F, -4.66599989F), new Vector2(83.2020035F, -5.15199995F));
+ builder.AddCubicBezier(new Vector2(82.9309998F, -5.63700008F), new Vector2(82.7959976F, -6.1880002F), new Vector2(82.7959976F, -6.8039999F));
+ builder.AddCubicBezier(new Vector2(82.7959976F, -7.42000008F), new Vector2(82.9309998F, -7.96999979F), new Vector2(83.2020035F, -8.45600033F));
+ builder.AddCubicBezier(new Vector2(83.4720001F, -8.94099998F), new Vector2(83.8359985F, -9.31900024F), new Vector2(84.2939987F, -9.59000015F));
+ builder.AddCubicBezier(new Vector2(84.7509995F, -9.85999966F), new Vector2(85.2689972F, -9.99600029F), new Vector2(85.8479996F, -9.99600029F));
+ builder.AddCubicBezier(new Vector2(86.4449997F, -9.99600029F), new Vector2(86.9769974F, -9.85999966F), new Vector2(87.4440002F, -9.59000015F));
+ builder.AddCubicBezier(new Vector2(87.9100037F, -9.31900024F), new Vector2(88.2649994F, -8.9460001F), new Vector2(88.5080032F, -8.47000027F));
+ builder.AddCubicBezier(new Vector2(88.75F, -7.99399996F), new Vector2(88.8720016F, -7.44799995F), new Vector2(88.8720016F, -6.83199978F));
+ builder.AddCubicBezier(new Vector2(88.8720016F, -5.88000011F), new Vector2(88.5960007F, -5.10500002F), new Vector2(88.0459976F, -4.5079999F));
+ builder.AddCubicBezier(new Vector2(87.4950027F, -3.91000009F), new Vector2(86.762001F, -3.61199999F), new Vector2(85.8479996F, -3.61199999F));
+ builder.AddCubicBezier(new Vector2(85.2689972F, -3.61199999F), new Vector2(84.7509995F, -3.74699998F), new Vector2(84.2939987F, -4.01800013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(87.4580002F, -0.252000004F));
+ builder.AddCubicBezier(new Vector2(88.1949997F, -0.606000006F), new Vector2(88.7919998F, -1.09599996F), new Vector2(89.25F, -1.722F));
+ builder.AddCubicBezier(new Vector2(89.7070007F, -2.34699988F), new Vector2(89.9639969F, -3.06100011F), new Vector2(90.0199966F, -3.86400008F));
+ builder.AddLine(new Vector2(90.0199966F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(89.9639969F, -10.5459995F), new Vector2(89.7020035F, -11.2600002F), new Vector2(89.2360001F, -11.8859997F));
+ builder.AddCubicBezier(new Vector2(88.7689972F, -12.5109997F), new Vector2(88.1669998F, -13.0010004F), new Vector2(87.4300003F, -13.3559999F));
+ builder.AddCubicBezier(new Vector2(86.6920013F, -13.71F), new Vector2(85.8659973F, -13.8879995F), new Vector2(84.9520035F, -13.8879995F));
+ builder.AddCubicBezier(new Vector2(83.7009964F, -13.8879995F), new Vector2(82.5859985F, -13.5839996F), new Vector2(81.6060028F, -12.9779997F));
+ builder.AddCubicBezier(new Vector2(80.6259995F, -12.3710003F), new Vector2(79.8509979F, -11.5310001F), new Vector2(79.2819977F, -10.4580002F));
+ builder.AddCubicBezier(new Vector2(78.711998F, -9.38399982F), new Vector2(78.4280014F, -8.16600037F), new Vector2(78.4280014F, -6.8039999F));
+ builder.AddCubicBezier(new Vector2(78.4280014F, -5.44099998F), new Vector2(78.711998F, -4.23199987F), new Vector2(79.2819977F, -3.17799997F));
+ builder.AddCubicBezier(new Vector2(79.8509979F, -2.12299991F), new Vector2(80.6299973F, -1.28299999F), new Vector2(81.6200027F, -0.657999992F));
+ builder.AddCubicBezier(new Vector2(82.6090012F, -0.0320000015F), new Vector2(83.7200012F, 0.280000001F), new Vector2(84.9520035F, 0.280000001F));
+ builder.AddCubicBezier(new Vector2(85.8850021F, 0.280000001F), new Vector2(86.7200012F, 0.101999998F), new Vector2(87.4580002F, -0.252000004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0099()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(76.2440033F, 0F));
+ builder.AddLine(new Vector2(76.2440033F, -20.3279991F));
+ builder.AddLine(new Vector2(71.9319992F, -20.3279991F));
+ builder.AddLine(new Vector2(71.9319992F, 0F));
+ builder.AddLine(new Vector2(76.2440033F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0100()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(68.9079971F, 0F));
+ builder.AddLine(new Vector2(68.9079971F, -20.3279991F));
+ builder.AddLine(new Vector2(64.5960007F, -20.3279991F));
+ builder.AddLine(new Vector2(64.5960007F, 0F));
+ builder.AddLine(new Vector2(68.9079971F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0101()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(53.4519997F, -4.00400019F));
+ builder.AddCubicBezier(new Vector2(52.9850006F, -4.26499987F), new Vector2(52.6209984F, -4.64300013F), new Vector2(52.3600006F, -5.13800001F));
+ builder.AddCubicBezier(new Vector2(52.0979996F, -5.63199997F), new Vector2(51.9679985F, -6.19700003F), new Vector2(51.9679985F, -6.83199978F));
+ builder.AddCubicBezier(new Vector2(51.9679985F, -7.4289999F), new Vector2(52.0979996F, -7.96999979F), new Vector2(52.3600006F, -8.45600033F));
+ builder.AddCubicBezier(new Vector2(52.6209984F, -8.94099998F), new Vector2(52.9850006F, -9.31900024F), new Vector2(53.4519997F, -9.59000015F));
+ builder.AddCubicBezier(new Vector2(53.9179993F, -9.85999966F), new Vector2(54.4500008F, -9.99600029F), new Vector2(55.0480003F, -9.99600029F));
+ builder.AddCubicBezier(new Vector2(55.6450005F, -9.99600029F), new Vector2(56.1720009F, -9.85999966F), new Vector2(56.6300011F, -9.59000015F));
+ builder.AddCubicBezier(new Vector2(57.0870018F, -9.31900024F), new Vector2(57.4459991F, -8.9460001F), new Vector2(57.7080002F, -8.47000027F));
+ builder.AddCubicBezier(new Vector2(57.9690018F, -7.99399996F), new Vector2(58.0999985F, -7.44799995F), new Vector2(58.0999985F, -6.83199978F));
+ builder.AddCubicBezier(new Vector2(58.0999985F, -6.19700003F), new Vector2(57.973999F, -5.63199997F), new Vector2(57.7220001F, -5.13800001F));
+ builder.AddCubicBezier(new Vector2(57.4700012F, -4.64300013F), new Vector2(57.1100006F, -4.26499987F), new Vector2(56.644001F, -4.00400019F));
+ builder.AddCubicBezier(new Vector2(56.1769981F, -3.7420001F), new Vector2(55.6450005F, -3.61199999F), new Vector2(55.0480003F, -3.61199999F));
+ builder.AddCubicBezier(new Vector2(54.4500008F, -3.61199999F), new Vector2(53.9179993F, -3.7420001F), new Vector2(53.4519997F, -4.00400019F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(58.855999F, -0.643999994F));
+ builder.AddCubicBezier(new Vector2(59.9760017F, -1.278F), new Vector2(60.8619995F, -2.13199997F), new Vector2(61.5159988F, -3.20600009F));
+ builder.AddCubicBezier(new Vector2(62.1689987F, -4.27899981F), new Vector2(62.4959984F, -5.49700022F), new Vector2(62.4959984F, -6.86000013F));
+ builder.AddCubicBezier(new Vector2(62.4959984F, -8.18500042F), new Vector2(62.1689987F, -9.38399982F), new Vector2(61.5159988F, -10.4580002F));
+ builder.AddCubicBezier(new Vector2(60.8619995F, -11.5310001F), new Vector2(59.9710007F, -12.3760004F), new Vector2(58.8419991F, -12.9919996F));
+ builder.AddCubicBezier(new Vector2(57.7120018F, -13.6079998F), new Vector2(56.4480019F, -13.9160004F), new Vector2(55.0480003F, -13.9160004F));
+ builder.AddCubicBezier(new Vector2(53.6100006F, -13.9160004F), new Vector2(52.3320007F, -13.6029997F), new Vector2(51.2120018F, -12.9779997F));
+ builder.AddCubicBezier(new Vector2(50.0919991F, -12.3520002F), new Vector2(49.2099991F, -11.5080004F), new Vector2(48.5660019F, -10.4440002F));
+ builder.AddCubicBezier(new Vector2(47.9220009F, -9.38000011F), new Vector2(47.5999985F, -8.18500042F), new Vector2(47.5999985F, -6.86000013F));
+ builder.AddCubicBezier(new Vector2(47.5999985F, -5.51599979F), new Vector2(47.9259987F, -4.30200005F), new Vector2(48.5800018F, -3.22000003F));
+ builder.AddCubicBezier(new Vector2(49.2330017F, -2.13700008F), new Vector2(50.1199989F, -1.278F), new Vector2(51.2400017F, -0.643999994F));
+ builder.AddCubicBezier(new Vector2(52.3600006F, -0.00899999961F), new Vector2(53.6290016F, 0.307999998F), new Vector2(55.0480003F, 0.307999998F));
+ builder.AddCubicBezier(new Vector2(56.4659996F, 0.307999998F), new Vector2(57.7360001F, -0.00899999961F), new Vector2(58.855999F, -0.643999994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0102()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(43.5400009F, -0.433999985F));
+ builder.AddCubicBezier(new Vector2(44.7719994F, -0.927999973F), new Vector2(45.8540001F, -1.62399995F), new Vector2(46.7879982F, -2.51999998F));
+ builder.AddLine(new Vector2(43.7919998F, -5.51599979F));
+ builder.AddCubicBezier(new Vector2(43.269001F, -4.9369998F), new Vector2(42.6339989F, -4.49399996F), new Vector2(41.8880005F, -4.18599987F));
+ builder.AddCubicBezier(new Vector2(41.1409988F, -3.87800002F), new Vector2(40.2639999F, -3.72399998F), new Vector2(39.2560005F, -3.72399998F));
+ builder.AddCubicBezier(new Vector2(38.3969994F, -3.72399998F), new Vector2(37.612999F, -3.86800003F), new Vector2(36.9039993F, -4.15799999F));
+ builder.AddCubicBezier(new Vector2(36.1940002F, -4.44700003F), new Vector2(35.5779991F, -4.8670001F), new Vector2(35.0559998F, -5.41800022F));
+ builder.AddCubicBezier(new Vector2(34.5330009F, -5.96799994F), new Vector2(34.132F, -6.62200022F), new Vector2(33.8520012F, -7.37799978F));
+ builder.AddCubicBezier(new Vector2(33.5719986F, -8.13399982F), new Vector2(33.4319992F, -8.97799969F), new Vector2(33.4319992F, -9.9119997F));
+ builder.AddCubicBezier(new Vector2(33.4319992F, -10.8079996F), new Vector2(33.5719986F, -11.6379995F), new Vector2(33.8520012F, -12.4040003F));
+ builder.AddCubicBezier(new Vector2(34.132F, -13.1689997F), new Vector2(34.5330009F, -13.8219995F), new Vector2(35.0559998F, -14.3640003F));
+ builder.AddCubicBezier(new Vector2(35.5779991F, -14.9049997F), new Vector2(36.1940002F, -15.3199997F), new Vector2(36.9039993F, -15.6099997F));
+ builder.AddCubicBezier(new Vector2(37.612999F, -15.8990002F), new Vector2(38.3969994F, -16.0440006F), new Vector2(39.2560005F, -16.0440006F));
+ builder.AddCubicBezier(new Vector2(40.2260017F, -16.0440006F), new Vector2(41.0800018F, -15.8850002F), new Vector2(41.8180008F, -15.5679998F));
+ builder.AddCubicBezier(new Vector2(42.5550003F, -15.25F), new Vector2(43.1759987F, -14.8120003F), new Vector2(43.6800003F, -14.2519999F));
+ builder.AddLine(new Vector2(46.6479988F, -17.2479992F));
+ builder.AddCubicBezier(new Vector2(45.7330017F, -18.125F), new Vector2(44.6640015F, -18.816F), new Vector2(43.4420013F, -19.3199997F));
+ builder.AddCubicBezier(new Vector2(42.2190018F, -19.8239994F), new Vector2(40.8240013F, -20.0760002F), new Vector2(39.2560005F, -20.0760002F));
+ builder.AddCubicBezier(new Vector2(37.762001F, -20.0760002F), new Vector2(36.3899994F, -19.8190002F), new Vector2(35.1399994F, -19.3059998F));
+ builder.AddCubicBezier(new Vector2(33.8889999F, -18.7919998F), new Vector2(32.7919998F, -18.0779991F), new Vector2(31.8500004F, -17.1639996F));
+ builder.AddCubicBezier(new Vector2(30.9069996F, -16.2490005F), new Vector2(30.1739998F, -15.1709995F), new Vector2(29.6520004F, -13.9300003F));
+ builder.AddCubicBezier(new Vector2(29.1289997F, -12.6879997F), new Vector2(28.868F, -11.349F), new Vector2(28.868F, -9.9119997F));
+ builder.AddCubicBezier(new Vector2(28.868F, -8.47399998F), new Vector2(29.1289997F, -7.13500023F), new Vector2(29.6520004F, -5.89400005F));
+ builder.AddCubicBezier(new Vector2(30.1739998F, -4.65199995F), new Vector2(30.9069996F, -3.56500006F), new Vector2(31.8500004F, -2.63199997F));
+ builder.AddCubicBezier(new Vector2(32.7919998F, -1.69799995F), new Vector2(33.894001F, -0.975000024F), new Vector2(35.1539993F, -0.462000012F));
+ builder.AddCubicBezier(new Vector2(36.4140015F, 0.050999999F), new Vector2(37.7809982F, 0.307999998F), new Vector2(39.2560005F, 0.307999998F));
+ builder.AddCubicBezier(new Vector2(40.8800011F, 0.307999998F), new Vector2(42.3079987F, 0.0599999987F), new Vector2(43.5400009F, -0.433999985F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0103()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(6.87400007F, -2.39400005F));
+ builder.AddCubicBezier(new Vector2(5.59499979F, -3.16799998F), new Vector2(4.59600019F, -4.21400023F), new Vector2(3.87800002F, -5.53000021F));
+ builder.AddCubicBezier(new Vector2(3.15899992F, -6.84600019F), new Vector2(2.79999995F, -8.32499981F), new Vector2(2.79999995F, -9.96800041F));
+ builder.AddCubicBezier(new Vector2(2.79999995F, -11.6099997F), new Vector2(3.15400004F, -13.0799999F), new Vector2(3.86400008F, -14.3780003F));
+ builder.AddCubicBezier(new Vector2(4.57299995F, -15.6750002F), new Vector2(5.57200003F, -16.7019997F), new Vector2(6.86000013F, -17.4580002F));
+ builder.AddCubicBezier(new Vector2(8.14799976F, -18.2140007F), new Vector2(9.63199997F, -18.5919991F), new Vector2(11.3120003F, -18.5919991F));
+ builder.AddCubicBezier(new Vector2(12.9919996F, -18.5919991F), new Vector2(14.4759998F, -18.2089996F), new Vector2(15.7639999F, -17.4440002F));
+ builder.AddCubicBezier(new Vector2(17.052F, -16.6779995F), new Vector2(18.0599995F, -15.6470003F), new Vector2(18.7880001F, -14.3500004F));
+ builder.AddCubicBezier(new Vector2(19.5160007F, -13.052F), new Vector2(19.8799992F, -11.592F), new Vector2(19.8799992F, -9.96800041F));
+ builder.AddCubicBezier(new Vector2(19.8799992F, -8.32499981F), new Vector2(19.5160007F, -6.84600019F), new Vector2(18.7880001F, -5.53000021F));
+ builder.AddCubicBezier(new Vector2(18.0599995F, -4.21400023F), new Vector2(17.052F, -3.16799998F), new Vector2(15.7639999F, -2.39400005F));
+ builder.AddCubicBezier(new Vector2(14.4759998F, -1.61899996F), new Vector2(12.9919996F, -1.23199999F), new Vector2(11.3120003F, -1.23199999F));
+ builder.AddCubicBezier(new Vector2(9.63199997F, -1.23199999F), new Vector2(8.15200043F, -1.61899996F), new Vector2(6.87400007F, -2.39400005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(14.0979996F, -4.64799976F));
+ builder.AddCubicBezier(new Vector2(14.816F, -4.9460001F), new Vector2(15.4840002F, -5.39400005F), new Vector2(16.1000004F, -5.9920001F));
+ builder.AddLine(new Vector2(13.6359997F, -8.45600033F));
+ builder.AddCubicBezier(new Vector2(13.4300003F, -8.19400024F), new Vector2(13.1689997F, -7.98899984F), new Vector2(12.8520002F, -7.84000015F));
+ builder.AddCubicBezier(new Vector2(12.5340004F, -7.69000006F), new Vector2(12.1700001F, -7.61600018F), new Vector2(11.7600002F, -7.61600018F));
+ builder.AddCubicBezier(new Vector2(11.349F, -7.61600018F), new Vector2(10.9659996F, -7.71400023F), new Vector2(10.6120005F, -7.90999985F));
+ builder.AddCubicBezier(new Vector2(10.257F, -8.10599995F), new Vector2(9.98200035F, -8.3760004F), new Vector2(9.78600025F, -8.72200012F));
+ builder.AddCubicBezier(new Vector2(9.59000015F, -9.06700039F), new Vector2(9.49199963F, -9.46399975F), new Vector2(9.49199963F, -9.9119997F));
+ builder.AddCubicBezier(new Vector2(9.49199963F, -10.3780003F), new Vector2(9.59000015F, -10.7799997F), new Vector2(9.78600025F, -11.1160002F));
+ builder.AddCubicBezier(new Vector2(9.98200035F, -11.4519997F), new Vector2(10.257F, -11.7180004F), new Vector2(10.6120005F, -11.9139996F));
+ builder.AddCubicBezier(new Vector2(10.9659996F, -12.1099997F), new Vector2(11.349F, -12.2080002F), new Vector2(11.7600002F, -12.2080002F));
+ builder.AddCubicBezier(new Vector2(12.1520004F, -12.2080002F), new Vector2(12.4969997F, -12.1520004F), new Vector2(12.7959995F, -12.04F));
+ builder.AddCubicBezier(new Vector2(13.0939999F, -11.9280005F), new Vector2(13.3559999F, -11.7410002F), new Vector2(13.5799999F, -11.4799995F));
+ builder.AddLine(new Vector2(16.0160007F, -13.9440002F));
+ builder.AddCubicBezier(new Vector2(15.4560003F, -14.5039997F), new Vector2(14.816F, -14.9280005F), new Vector2(14.0979996F, -15.2180004F));
+ builder.AddCubicBezier(new Vector2(13.3789997F, -15.507F), new Vector2(12.6000004F, -15.6520004F), new Vector2(11.7600002F, -15.6520004F));
+ builder.AddCubicBezier(new Vector2(10.6020002F, -15.6520004F), new Vector2(9.55700016F, -15.3999996F), new Vector2(8.6239996F, -14.8959999F));
+ builder.AddCubicBezier(new Vector2(7.69000006F, -14.3920002F), new Vector2(6.95300007F, -13.71F), new Vector2(6.41200018F, -12.8520002F));
+ builder.AddCubicBezier(new Vector2(5.86999989F, -11.993F), new Vector2(5.5999999F, -11.0129995F), new Vector2(5.5999999F, -9.9119997F));
+ builder.AddCubicBezier(new Vector2(5.5999999F, -8.82900047F), new Vector2(5.86600018F, -7.85400009F), new Vector2(6.39799976F, -6.98600006F));
+ builder.AddCubicBezier(new Vector2(6.92999983F, -6.11800003F), new Vector2(7.65799999F, -5.43599987F), new Vector2(8.58199978F, -4.94199991F));
+ builder.AddCubicBezier(new Vector2(9.50599957F, -4.44700003F), new Vector2(10.5459995F, -4.19999981F), new Vector2(11.7040005F, -4.19999981F));
+ builder.AddCubicBezier(new Vector2(12.5810003F, -4.19999981F), new Vector2(13.3789997F, -4.34899998F), new Vector2(14.0979996F, -4.64799976F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(15.4139996F, -0.504000008F));
+ builder.AddCubicBezier(new Vector2(16.6359997F, -1.02600002F), new Vector2(17.7000008F, -1.75399995F), new Vector2(18.6060009F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(19.5109997F, -3.62100005F), new Vector2(20.2059994F, -4.70800018F), new Vector2(20.6919994F, -5.94999981F));
+ builder.AddCubicBezier(new Vector2(21.177F, -7.19099998F), new Vector2(21.4200001F, -8.52099991F), new Vector2(21.4200001F, -9.93999958F));
+ builder.AddCubicBezier(new Vector2(21.4200001F, -11.3769999F), new Vector2(21.177F, -12.7119999F), new Vector2(20.6919994F, -13.9440002F));
+ builder.AddCubicBezier(new Vector2(20.2059994F, -15.1759996F), new Vector2(19.5160007F, -16.2539997F), new Vector2(18.6200008F, -17.1779995F));
+ builder.AddCubicBezier(new Vector2(17.7240009F, -18.1019993F), new Vector2(16.6499996F, -18.8199997F), new Vector2(15.3999996F, -19.3339996F));
+ builder.AddCubicBezier(new Vector2(14.1490002F, -19.8470001F), new Vector2(12.7860003F, -20.1040001F), new Vector2(11.3120003F, -20.1040001F));
+ builder.AddCubicBezier(new Vector2(9.83699989F, -20.1040001F), new Vector2(8.48400021F, -19.8419991F), new Vector2(7.25199986F, -19.3199997F));
+ builder.AddCubicBezier(new Vector2(6.01999998F, -18.7970009F), new Vector2(4.95100021F, -18.0779991F), new Vector2(4.046F, -17.1639996F));
+ builder.AddCubicBezier(new Vector2(3.1400001F, -16.2490005F), new Vector2(2.44499993F, -15.1759996F), new Vector2(1.96000004F, -13.9440002F));
+ builder.AddCubicBezier(new Vector2(1.47399998F, -12.7119999F), new Vector2(1.23199999F, -11.3859997F), new Vector2(1.23199999F, -9.96800041F));
+ builder.AddCubicBezier(new Vector2(1.23199999F, -8.52999973F), new Vector2(1.48399997F, -7.19099998F), new Vector2(1.98800004F, -5.94999981F));
+ builder.AddCubicBezier(new Vector2(2.4920001F, -4.70800018F), new Vector2(3.1960001F, -3.62100005F), new Vector2(4.10200024F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(5.00699997F, -1.75399995F), new Vector2(6.07600021F, -1.02600002F), new Vector2(7.30800009F, -0.504000008F));
+ builder.AddCubicBezier(new Vector2(8.53999996F, 0.0179999992F), new Vector2(9.89299965F, 0.280000001F), new Vector2(11.368F, 0.280000001F));
+ builder.AddCubicBezier(new Vector2(12.842F, 0.280000001F), new Vector2(14.191F, 0.0179999992F), new Vector2(15.4139996F, -0.504000008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0104()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(417.359985F, -17.1359997F));
+ builder.AddLine(new Vector2(415.175995F, -17.1359997F));
+ builder.AddLine(new Vector2(415.175995F, -8.61600018F));
+ builder.AddLine(new Vector2(415.584015F, -5.85599995F));
+ builder.AddLine(new Vector2(415.175995F, -3.07200003F));
+ builder.AddLine(new Vector2(415.175995F, 0F));
+ builder.AddLine(new Vector2(417.359985F, 0F));
+ builder.AddLine(new Vector2(417.359985F, -17.1359997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(409.812012F, -2.29200006F));
+ builder.AddCubicBezier(new Vector2(409.26001F, -2.61999989F), new Vector2(408.828003F, -3.07999992F), new Vector2(408.515991F, -3.67199993F));
+ builder.AddCubicBezier(new Vector2(408.20401F, -4.26399994F), new Vector2(408.048004F, -4.94399977F), new Vector2(408.048004F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(408.048004F, -6.48000002F), new Vector2(408.20401F, -7.15600014F), new Vector2(408.515991F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(408.828003F, -8.32400036F), new Vector2(409.256012F, -8.77999973F), new Vector2(409.799988F, -9.1079998F));
+ builder.AddCubicBezier(new Vector2(410.343994F, -9.43599987F), new Vector2(410.976013F, -9.60000038F), new Vector2(411.696014F, -9.60000038F));
+ builder.AddCubicBezier(new Vector2(412.415985F, -9.60000038F), new Vector2(413.048004F, -9.43200016F), new Vector2(413.59201F, -9.09599972F));
+ builder.AddCubicBezier(new Vector2(414.135986F, -8.76000023F), new Vector2(414.559998F, -8.30000019F), new Vector2(414.864014F, -7.71600008F));
+ builder.AddCubicBezier(new Vector2(415.167999F, -7.13199997F), new Vector2(415.320007F, -6.45599985F), new Vector2(415.320007F, -5.6880002F));
+ builder.AddCubicBezier(new Vector2(415.320007F, -4.93599987F), new Vector2(415.167999F, -4.26800013F), new Vector2(414.864014F, -3.68400002F));
+ builder.AddCubicBezier(new Vector2(414.559998F, -3.0999999F), new Vector2(414.135986F, -2.6400001F), new Vector2(413.59201F, -2.3039999F));
+ builder.AddCubicBezier(new Vector2(413.048004F, -1.96800005F), new Vector2(412.415985F, -1.79999995F), new Vector2(411.696014F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(410.992004F, -1.79999995F), new Vector2(410.364014F, -1.96399999F), new Vector2(409.812012F, -2.29200006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(413.687988F, -0.300000012F));
+ builder.AddCubicBezier(new Vector2(414.376007F, -0.660000026F), new Vector2(414.928009F, -1.15999997F), new Vector2(415.343994F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(415.76001F, -2.44000006F), new Vector2(415.992004F, -3.16799998F), new Vector2(416.040009F, -3.98399997F));
+ builder.AddLine(new Vector2(416.040009F, -7.41599989F));
+ builder.AddCubicBezier(new Vector2(415.992004F, -8.24800014F), new Vector2(415.756012F, -8.97999954F), new Vector2(415.332001F, -9.61200047F));
+ builder.AddCubicBezier(new Vector2(414.90799F, -10.2440004F), new Vector2(414.35199F, -10.7399998F), new Vector2(413.664001F, -11.1000004F));
+ builder.AddCubicBezier(new Vector2(412.976013F, -11.46F), new Vector2(412.200012F, -11.6400003F), new Vector2(411.335999F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(410.29599F, -11.6400003F), new Vector2(409.359985F, -11.3760004F), new Vector2(408.528015F, -10.8479996F));
+ builder.AddCubicBezier(new Vector2(407.696014F, -10.3199997F), new Vector2(407.036011F, -9.6079998F), new Vector2(406.548004F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(406.059998F, -7.81599998F), new Vector2(405.81601F, -6.80800009F), new Vector2(405.81601F, -5.6880002F));
+ builder.AddCubicBezier(new Vector2(405.81601F, -4.56799984F), new Vector2(406.059998F, -3.55999994F), new Vector2(406.548004F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(407.036011F, -1.76800001F), new Vector2(407.696014F, -1.05999994F), new Vector2(408.528015F, -0.540000021F));
+ builder.AddCubicBezier(new Vector2(409.359985F, -0.0199999996F), new Vector2(410.29599F, 0.239999995F), new Vector2(411.335999F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(412.216003F, 0.239999995F), new Vector2(413F, 0.0599999987F), new Vector2(413.687988F, -0.300000012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0105()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(401.471985F, -0.263999999F));
+ builder.AddCubicBezier(new Vector2(402.256012F, -0.600000024F), new Vector2(402.928009F, -1.08800006F), new Vector2(403.488007F, -1.72800004F));
+ builder.AddLine(new Vector2(402.096008F, -3.14400005F));
+ builder.AddCubicBezier(new Vector2(401.712006F, -2.6960001F), new Vector2(401.252014F, -2.3599999F), new Vector2(400.716003F, -2.13599992F));
+ builder.AddCubicBezier(new Vector2(400.179993F, -1.91199994F), new Vector2(399.59201F, -1.79999995F), new Vector2(398.951996F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(398.18399F, -1.79999995F), new Vector2(397.503998F, -1.96399999F), new Vector2(396.911987F, -2.29200006F));
+ builder.AddCubicBezier(new Vector2(396.320007F, -2.61999989F), new Vector2(395.864014F, -3.08400011F), new Vector2(395.544006F, -3.68400002F));
+ builder.AddCubicBezier(new Vector2(395.223999F, -4.28399992F), new Vector2(395.063995F, -4.98400021F), new Vector2(395.063995F, -5.78399992F));
+ builder.AddCubicBezier(new Vector2(395.063995F, -6.56799984F), new Vector2(395.216003F, -7.24800014F), new Vector2(395.519989F, -7.82399988F));
+ builder.AddCubicBezier(new Vector2(395.824005F, -8.39999962F), new Vector2(396.256012F, -8.84799957F), new Vector2(396.81601F, -9.16800022F));
+ builder.AddCubicBezier(new Vector2(397.376007F, -9.48799992F), new Vector2(398.023987F, -9.64799976F), new Vector2(398.76001F, -9.64799976F));
+ builder.AddCubicBezier(new Vector2(399.463989F, -9.64799976F), new Vector2(400.063995F, -9.5F), new Vector2(400.559998F, -9.20400047F));
+ builder.AddCubicBezier(new Vector2(401.056F, -8.90799999F), new Vector2(401.440002F, -8.49199963F), new Vector2(401.712006F, -7.95599985F));
+ builder.AddCubicBezier(new Vector2(401.984009F, -7.42000008F), new Vector2(402.119995F, -6.76800013F), new Vector2(402.119995F, -6F));
+ builder.AddLine(new Vector2(402.911987F, -6.6960001F));
+ builder.AddLine(new Vector2(394.440002F, -6.6960001F));
+ builder.AddLine(new Vector2(394.440002F, -4.89599991F));
+ builder.AddLine(new Vector2(404.063995F, -4.89599991F));
+ builder.AddCubicBezier(new Vector2(404.112F, -5.11999989F), new Vector2(404.144012F, -5.32399988F), new Vector2(404.160004F, -5.5079999F));
+ builder.AddCubicBezier(new Vector2(404.175995F, -5.69199991F), new Vector2(404.18399F, -5.86399984F), new Vector2(404.18399F, -6.02400017F));
+ builder.AddCubicBezier(new Vector2(404.18399F, -7.11199999F), new Vector2(403.955994F, -8.07999992F), new Vector2(403.5F, -8.92800045F));
+ builder.AddCubicBezier(new Vector2(403.044006F, -9.77600002F), new Vector2(402.40799F, -10.4399996F), new Vector2(401.59201F, -10.9200001F));
+ builder.AddCubicBezier(new Vector2(400.776001F, -11.3999996F), new Vector2(399.847992F, -11.6400003F), new Vector2(398.808014F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(397.70401F, -11.6400003F), new Vector2(396.708008F, -11.3800001F), new Vector2(395.820007F, -10.8599997F));
+ builder.AddCubicBezier(new Vector2(394.932007F, -10.3400002F), new Vector2(394.227997F, -9.63199997F), new Vector2(393.708008F, -8.73600006F));
+ builder.AddCubicBezier(new Vector2(393.187988F, -7.84000015F), new Vector2(392.928009F, -6.83199978F), new Vector2(392.928009F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(392.928009F, -4.57600021F), new Vector2(393.191986F, -3.55999994F), new Vector2(393.720001F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(394.247986F, -1.76800001F), new Vector2(394.963989F, -1.05999994F), new Vector2(395.868011F, -0.540000021F));
+ builder.AddCubicBezier(new Vector2(396.772003F, -0.0199999996F), new Vector2(397.799988F, 0.239999995F), new Vector2(398.951996F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(399.847992F, 0.239999995F), new Vector2(400.687988F, 0.0719999969F), new Vector2(401.471985F, -0.263999999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0106()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(387.023987F, 0F));
+ builder.AddLine(new Vector2(392.256012F, -11.3999996F));
+ builder.AddLine(new Vector2(389.951996F, -11.3999996F));
+ builder.AddLine(new Vector2(385.727997F, -1.77600002F));
+ builder.AddLine(new Vector2(387.119995F, -1.77600002F));
+ builder.AddLine(new Vector2(382.920013F, -11.3999996F));
+ builder.AddLine(new Vector2(380.519989F, -11.3999996F));
+ builder.AddLine(new Vector2(385.752014F, 0F));
+ builder.AddLine(new Vector2(387.023987F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0107()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(375.335999F, -8.83199978F));
+ builder.AddCubicBezier(new Vector2(375.847992F, -9.34399986F), new Vector2(376.503998F, -9.60000038F), new Vector2(377.303986F, -9.60000038F));
+ builder.AddCubicBezier(new Vector2(377.687988F, -9.60000038F), new Vector2(378.023987F, -9.54399967F), new Vector2(378.312012F, -9.43200016F));
+ builder.AddCubicBezier(new Vector2(378.600006F, -9.31999969F), new Vector2(378.864014F, -9.13599968F), new Vector2(379.104004F, -8.88000011F));
+ builder.AddLine(new Vector2(380.519989F, -10.3439999F));
+ builder.AddCubicBezier(new Vector2(380.119995F, -10.8079996F), new Vector2(379.687988F, -11.1400003F), new Vector2(379.223999F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(378.76001F, -11.54F), new Vector2(378.23999F, -11.6400003F), new Vector2(377.664001F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(376.399994F, -11.6400003F), new Vector2(375.432007F, -11.2080002F), new Vector2(374.76001F, -10.3439999F));
+ builder.AddCubicBezier(new Vector2(374.088013F, -9.47999954F), new Vector2(373.752014F, -8.31999969F), new Vector2(373.752014F, -6.86399984F));
+ builder.AddLine(new Vector2(374.567993F, -6.48000002F));
+ builder.AddCubicBezier(new Vector2(374.567993F, -7.53599977F), new Vector2(374.824005F, -8.31999969F), new Vector2(375.335999F, -8.83199978F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(374.567993F, 0F));
+ builder.AddLine(new Vector2(374.567993F, -11.3999996F));
+ builder.AddLine(new Vector2(372.40799F, -11.3999996F));
+ builder.AddLine(new Vector2(372.40799F, 0F));
+ builder.AddLine(new Vector2(374.567993F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0108()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(367.343994F, -0.263999999F));
+ builder.AddCubicBezier(new Vector2(368.127991F, -0.600000024F), new Vector2(368.799988F, -1.08800006F), new Vector2(369.359985F, -1.72800004F));
+ builder.AddLine(new Vector2(367.967987F, -3.14400005F));
+ builder.AddCubicBezier(new Vector2(367.584015F, -2.6960001F), new Vector2(367.123993F, -2.3599999F), new Vector2(366.588013F, -2.13599992F));
+ builder.AddCubicBezier(new Vector2(366.052002F, -1.91199994F), new Vector2(365.463989F, -1.79999995F), new Vector2(364.824005F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(364.056F, -1.79999995F), new Vector2(363.376007F, -1.96399999F), new Vector2(362.783997F, -2.29200006F));
+ builder.AddCubicBezier(new Vector2(362.191986F, -2.61999989F), new Vector2(361.735992F, -3.08400011F), new Vector2(361.415985F, -3.68400002F));
+ builder.AddCubicBezier(new Vector2(361.096008F, -4.28399992F), new Vector2(360.936005F, -4.98400021F), new Vector2(360.936005F, -5.78399992F));
+ builder.AddCubicBezier(new Vector2(360.936005F, -6.56799984F), new Vector2(361.088013F, -7.24800014F), new Vector2(361.391998F, -7.82399988F));
+ builder.AddCubicBezier(new Vector2(361.696014F, -8.39999962F), new Vector2(362.127991F, -8.84799957F), new Vector2(362.687988F, -9.16800022F));
+ builder.AddCubicBezier(new Vector2(363.247986F, -9.48799992F), new Vector2(363.895996F, -9.64799976F), new Vector2(364.631989F, -9.64799976F));
+ builder.AddCubicBezier(new Vector2(365.335999F, -9.64799976F), new Vector2(365.936005F, -9.5F), new Vector2(366.432007F, -9.20400047F));
+ builder.AddCubicBezier(new Vector2(366.928009F, -8.90799999F), new Vector2(367.312012F, -8.49199963F), new Vector2(367.584015F, -7.95599985F));
+ builder.AddCubicBezier(new Vector2(367.855988F, -7.42000008F), new Vector2(367.992004F, -6.76800013F), new Vector2(367.992004F, -6F));
+ builder.AddLine(new Vector2(368.783997F, -6.6960001F));
+ builder.AddLine(new Vector2(360.312012F, -6.6960001F));
+ builder.AddLine(new Vector2(360.312012F, -4.89599991F));
+ builder.AddLine(new Vector2(369.936005F, -4.89599991F));
+ builder.AddCubicBezier(new Vector2(369.984009F, -5.11999989F), new Vector2(370.015991F, -5.32399988F), new Vector2(370.032013F, -5.5079999F));
+ builder.AddCubicBezier(new Vector2(370.048004F, -5.69199991F), new Vector2(370.056F, -5.86399984F), new Vector2(370.056F, -6.02400017F));
+ builder.AddCubicBezier(new Vector2(370.056F, -7.11199999F), new Vector2(369.828003F, -8.07999992F), new Vector2(369.372009F, -8.92800045F));
+ builder.AddCubicBezier(new Vector2(368.915985F, -9.77600002F), new Vector2(368.279999F, -10.4399996F), new Vector2(367.463989F, -10.9200001F));
+ builder.AddCubicBezier(new Vector2(366.64801F, -11.3999996F), new Vector2(365.720001F, -11.6400003F), new Vector2(364.679993F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(363.575989F, -11.6400003F), new Vector2(362.579987F, -11.3800001F), new Vector2(361.691986F, -10.8599997F));
+ builder.AddCubicBezier(new Vector2(360.803986F, -10.3400002F), new Vector2(360.100006F, -9.63199997F), new Vector2(359.579987F, -8.73600006F));
+ builder.AddCubicBezier(new Vector2(359.059998F, -7.84000015F), new Vector2(358.799988F, -6.83199978F), new Vector2(358.799988F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(358.799988F, -4.57600021F), new Vector2(359.063995F, -3.55999994F), new Vector2(359.59201F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(360.119995F, -1.76800001F), new Vector2(360.835999F, -1.05999994F), new Vector2(361.73999F, -0.540000021F));
+ builder.AddCubicBezier(new Vector2(362.644012F, -0.0199999996F), new Vector2(363.671997F, 0.239999995F), new Vector2(364.824005F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(365.720001F, 0.239999995F), new Vector2(366.559998F, 0.0719999969F), new Vector2(367.343994F, -0.263999999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0109()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(355.980011F, -0.69599998F));
+ builder.AddCubicBezier(new Vector2(356.73999F, -1.32000005F), new Vector2(357.119995F, -2.16799998F), new Vector2(357.119995F, -3.24000001F));
+ builder.AddCubicBezier(new Vector2(357.119995F, -3.94400001F), new Vector2(356.971985F, -4.51200008F), new Vector2(356.675995F, -4.94399977F));
+ builder.AddCubicBezier(new Vector2(356.380005F, -5.37599993F), new Vector2(356F, -5.71999979F), new Vector2(355.536011F, -5.97599983F));
+ builder.AddCubicBezier(new Vector2(355.071991F, -6.23199987F), new Vector2(354.584015F, -6.43599987F), new Vector2(354.071991F, -6.58799982F));
+ builder.AddCubicBezier(new Vector2(353.559998F, -6.73999977F), new Vector2(353.067993F, -6.88800001F), new Vector2(352.596008F, -7.03200006F));
+ builder.AddCubicBezier(new Vector2(352.123993F, -7.17600012F), new Vector2(351.743988F, -7.35200024F), new Vector2(351.455994F, -7.55999994F));
+ builder.AddCubicBezier(new Vector2(351.167999F, -7.76800013F), new Vector2(351.023987F, -8.06400013F), new Vector2(351.023987F, -8.44799995F));
+ builder.AddCubicBezier(new Vector2(351.023987F, -8.81599998F), new Vector2(351.187988F, -9.11200047F), new Vector2(351.515991F, -9.33600044F));
+ builder.AddCubicBezier(new Vector2(351.843994F, -9.56000042F), new Vector2(352.320007F, -9.67199993F), new Vector2(352.944F, -9.67199993F));
+ builder.AddCubicBezier(new Vector2(353.536011F, -9.67199993F), new Vector2(354.063995F, -9.56000042F), new Vector2(354.528015F, -9.33600044F));
+ builder.AddCubicBezier(new Vector2(354.992004F, -9.11200047F), new Vector2(355.391998F, -8.79199982F), new Vector2(355.727997F, -8.3760004F));
+ builder.AddLine(new Vector2(357.119995F, -9.76799965F));
+ builder.AddCubicBezier(new Vector2(356.671997F, -10.3920002F), new Vector2(356.100006F, -10.8599997F), new Vector2(355.403992F, -11.1719999F));
+ builder.AddCubicBezier(new Vector2(354.708008F, -11.4840002F), new Vector2(353.911987F, -11.6400003F), new Vector2(353.015991F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(352.167999F, -11.6400003F), new Vector2(351.440002F, -11.5039997F), new Vector2(350.832001F, -11.2320004F));
+ builder.AddCubicBezier(new Vector2(350.223999F, -10.96F), new Vector2(349.756012F, -10.5719995F), new Vector2(349.428009F, -10.0679998F));
+ builder.AddCubicBezier(new Vector2(349.100006F, -9.56400013F), new Vector2(348.936005F, -8.96800041F), new Vector2(348.936005F, -8.27999973F));
+ builder.AddCubicBezier(new Vector2(348.936005F, -7.59200001F), new Vector2(349.084015F, -7.03599977F), new Vector2(349.380005F, -6.61199999F));
+ builder.AddCubicBezier(new Vector2(349.675995F, -6.1880002F), new Vector2(350.056F, -5.85599995F), new Vector2(350.519989F, -5.61600018F));
+ builder.AddCubicBezier(new Vector2(350.984009F, -5.37599993F), new Vector2(351.476013F, -5.18400002F), new Vector2(351.996002F, -5.03999996F));
+ builder.AddCubicBezier(new Vector2(352.515991F, -4.89599991F), new Vector2(353.007996F, -4.74800014F), new Vector2(353.471985F, -4.59600019F));
+ builder.AddCubicBezier(new Vector2(353.936005F, -4.44399977F), new Vector2(354.31601F, -4.25199986F), new Vector2(354.612F, -4.01999998F));
+ builder.AddCubicBezier(new Vector2(354.90799F, -3.78800011F), new Vector2(355.056F, -3.46399999F), new Vector2(355.056F, -3.0480001F));
+ builder.AddCubicBezier(new Vector2(355.056F, -2.63199997F), new Vector2(354.872009F, -2.30800009F), new Vector2(354.503998F, -2.07599998F));
+ builder.AddCubicBezier(new Vector2(354.135986F, -1.84399998F), new Vector2(353.615997F, -1.72800004F), new Vector2(352.944F, -1.72800004F));
+ builder.AddCubicBezier(new Vector2(352.272003F, -1.72800004F), new Vector2(351.664001F, -1.852F), new Vector2(351.119995F, -2.0999999F));
+ builder.AddCubicBezier(new Vector2(350.575989F, -2.34800005F), new Vector2(350.096008F, -2.72799993F), new Vector2(349.679993F, -3.24000001F));
+ builder.AddLine(new Vector2(348.287994F, -1.84800005F));
+ builder.AddCubicBezier(new Vector2(348.640015F, -1.41600001F), new Vector2(349.052002F, -1.04400003F), new Vector2(349.523987F, -0.731999993F));
+ builder.AddCubicBezier(new Vector2(349.996002F, -0.419999987F), new Vector2(350.519989F, -0.180000007F), new Vector2(351.096008F, -0.0120000001F));
+ builder.AddCubicBezier(new Vector2(351.671997F, 0.156000003F), new Vector2(352.279999F, 0.239999995F), new Vector2(352.920013F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(354.200012F, 0.239999995F), new Vector2(355.220001F, -0.0719999969F), new Vector2(355.980011F, -0.69599998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0110()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(344.231995F, -0.263999999F));
+ builder.AddCubicBezier(new Vector2(345.015991F, -0.600000024F), new Vector2(345.687988F, -1.08800006F), new Vector2(346.247986F, -1.72800004F));
+ builder.AddLine(new Vector2(344.855988F, -3.14400005F));
+ builder.AddCubicBezier(new Vector2(344.471985F, -2.6960001F), new Vector2(344.011993F, -2.3599999F), new Vector2(343.476013F, -2.13599992F));
+ builder.AddCubicBezier(new Vector2(342.940002F, -1.91199994F), new Vector2(342.35199F, -1.79999995F), new Vector2(341.712006F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(340.944F, -1.79999995F), new Vector2(340.264008F, -1.96399999F), new Vector2(339.671997F, -2.29200006F));
+ builder.AddCubicBezier(new Vector2(339.079987F, -2.61999989F), new Vector2(338.623993F, -3.08400011F), new Vector2(338.303986F, -3.68400002F));
+ builder.AddCubicBezier(new Vector2(337.984009F, -4.28399992F), new Vector2(337.824005F, -4.98400021F), new Vector2(337.824005F, -5.78399992F));
+ builder.AddCubicBezier(new Vector2(337.824005F, -6.56799984F), new Vector2(337.976013F, -7.24800014F), new Vector2(338.279999F, -7.82399988F));
+ builder.AddCubicBezier(new Vector2(338.584015F, -8.39999962F), new Vector2(339.015991F, -8.84799957F), new Vector2(339.575989F, -9.16800022F));
+ builder.AddCubicBezier(new Vector2(340.135986F, -9.48799992F), new Vector2(340.783997F, -9.64799976F), new Vector2(341.519989F, -9.64799976F));
+ builder.AddCubicBezier(new Vector2(342.223999F, -9.64799976F), new Vector2(342.824005F, -9.5F), new Vector2(343.320007F, -9.20400047F));
+ builder.AddCubicBezier(new Vector2(343.81601F, -8.90799999F), new Vector2(344.200012F, -8.49199963F), new Vector2(344.471985F, -7.95599985F));
+ builder.AddCubicBezier(new Vector2(344.743988F, -7.42000008F), new Vector2(344.880005F, -6.76800013F), new Vector2(344.880005F, -6F));
+ builder.AddLine(new Vector2(345.671997F, -6.6960001F));
+ builder.AddLine(new Vector2(337.200012F, -6.6960001F));
+ builder.AddLine(new Vector2(337.200012F, -4.89599991F));
+ builder.AddLine(new Vector2(346.824005F, -4.89599991F));
+ builder.AddCubicBezier(new Vector2(346.872009F, -5.11999989F), new Vector2(346.903992F, -5.32399988F), new Vector2(346.920013F, -5.5079999F));
+ builder.AddCubicBezier(new Vector2(346.936005F, -5.69199991F), new Vector2(346.944F, -5.86399984F), new Vector2(346.944F, -6.02400017F));
+ builder.AddCubicBezier(new Vector2(346.944F, -7.11199999F), new Vector2(346.716003F, -8.07999992F), new Vector2(346.26001F, -8.92800045F));
+ builder.AddCubicBezier(new Vector2(345.803986F, -9.77600002F), new Vector2(345.167999F, -10.4399996F), new Vector2(344.35199F, -10.9200001F));
+ builder.AddCubicBezier(new Vector2(343.536011F, -11.3999996F), new Vector2(342.608002F, -11.6400003F), new Vector2(341.567993F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(340.463989F, -11.6400003F), new Vector2(339.467987F, -11.3800001F), new Vector2(338.579987F, -10.8599997F));
+ builder.AddCubicBezier(new Vector2(337.691986F, -10.3400002F), new Vector2(336.988007F, -9.63199997F), new Vector2(336.467987F, -8.73600006F));
+ builder.AddCubicBezier(new Vector2(335.947998F, -7.84000015F), new Vector2(335.687988F, -6.83199978F), new Vector2(335.687988F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(335.687988F, -4.57600021F), new Vector2(335.951996F, -3.55999994F), new Vector2(336.480011F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(337.007996F, -1.76800001F), new Vector2(337.723999F, -1.05999994F), new Vector2(338.627991F, -0.540000021F));
+ builder.AddCubicBezier(new Vector2(339.532013F, -0.0199999996F), new Vector2(340.559998F, 0.239999995F), new Vector2(341.712006F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(342.608002F, 0.239999995F), new Vector2(343.447998F, 0.0719999969F), new Vector2(344.231995F, -0.263999999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0111()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(334.847992F, 0F));
+ builder.AddLine(new Vector2(328.079987F, -8.20800018F));
+ builder.AddLine(new Vector2(325.944F, -7.46400023F));
+ builder.AddLine(new Vector2(331.992004F, 0F));
+ builder.AddLine(new Vector2(334.847992F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(324.64801F, 0F));
+ builder.AddLine(new Vector2(324.64801F, -16.6560001F));
+ builder.AddLine(new Vector2(322.391998F, -16.6560001F));
+ builder.AddLine(new Vector2(322.391998F, 0F));
+ builder.AddLine(new Vector2(324.64801F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(328.511993F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(329.567993F, -7.24800014F), new Vector2(330.488007F, -7.44399977F), new Vector2(331.272003F, -7.83599997F));
+ builder.AddCubicBezier(new Vector2(332.056F, -8.22799969F), new Vector2(332.660004F, -8.77600002F), new Vector2(333.084015F, -9.47999954F));
+ builder.AddCubicBezier(new Vector2(333.507996F, -10.184F), new Vector2(333.720001F, -11.0080004F), new Vector2(333.720001F, -11.9519997F));
+ builder.AddCubicBezier(new Vector2(333.720001F, -12.8640003F), new Vector2(333.507996F, -13.6719999F), new Vector2(333.084015F, -14.3760004F));
+ builder.AddCubicBezier(new Vector2(332.660004F, -15.0799999F), new Vector2(332.056F, -15.6359997F), new Vector2(331.272003F, -16.0440006F));
+ builder.AddCubicBezier(new Vector2(330.488007F, -16.4519997F), new Vector2(329.567993F, -16.6560001F), new Vector2(328.511993F, -16.6560001F));
+ builder.AddLine(new Vector2(323.903992F, -16.6560001F));
+ builder.AddLine(new Vector2(323.903992F, -14.6879997F));
+ builder.AddLine(new Vector2(328.440002F, -14.6879997F));
+ builder.AddCubicBezier(new Vector2(329.399994F, -14.6879997F), new Vector2(330.140015F, -14.4239998F), new Vector2(330.660004F, -13.8959999F));
+ builder.AddCubicBezier(new Vector2(331.179993F, -13.368F), new Vector2(331.440002F, -12.7040005F), new Vector2(331.440002F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(331.440002F, -11.0559998F), new Vector2(331.179993F, -10.3839998F), new Vector2(330.660004F, -9.88799953F));
+ builder.AddCubicBezier(new Vector2(330.140015F, -9.3920002F), new Vector2(329.391998F, -9.14400005F), new Vector2(328.415985F, -9.14400005F));
+ builder.AddLine(new Vector2(323.903992F, -9.14400005F));
+ builder.AddLine(new Vector2(323.903992F, -7.24800014F));
+ builder.AddLine(new Vector2(328.511993F, -7.24800014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0112()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(313.476013F, -0.69599998F));
+ builder.AddCubicBezier(new Vector2(314.235992F, -1.32000005F), new Vector2(314.615997F, -2.16799998F), new Vector2(314.615997F, -3.24000001F));
+ builder.AddCubicBezier(new Vector2(314.615997F, -3.94400001F), new Vector2(314.467987F, -4.51200008F), new Vector2(314.171997F, -4.94399977F));
+ builder.AddCubicBezier(new Vector2(313.876007F, -5.37599993F), new Vector2(313.496002F, -5.71999979F), new Vector2(313.032013F, -5.97599983F));
+ builder.AddCubicBezier(new Vector2(312.567993F, -6.23199987F), new Vector2(312.079987F, -6.43599987F), new Vector2(311.567993F, -6.58799982F));
+ builder.AddCubicBezier(new Vector2(311.056F, -6.73999977F), new Vector2(310.563995F, -6.88800001F), new Vector2(310.09201F, -7.03200006F));
+ builder.AddCubicBezier(new Vector2(309.619995F, -7.17600012F), new Vector2(309.23999F, -7.35200024F), new Vector2(308.951996F, -7.55999994F));
+ builder.AddCubicBezier(new Vector2(308.664001F, -7.76800013F), new Vector2(308.519989F, -8.06400013F), new Vector2(308.519989F, -8.44799995F));
+ builder.AddCubicBezier(new Vector2(308.519989F, -8.81599998F), new Vector2(308.68399F, -9.11200047F), new Vector2(309.011993F, -9.33600044F));
+ builder.AddCubicBezier(new Vector2(309.339996F, -9.56000042F), new Vector2(309.81601F, -9.67199993F), new Vector2(310.440002F, -9.67199993F));
+ builder.AddCubicBezier(new Vector2(311.032013F, -9.67199993F), new Vector2(311.559998F, -9.56000042F), new Vector2(312.023987F, -9.33600044F));
+ builder.AddCubicBezier(new Vector2(312.488007F, -9.11200047F), new Vector2(312.888F, -8.79199982F), new Vector2(313.223999F, -8.3760004F));
+ builder.AddLine(new Vector2(314.615997F, -9.76799965F));
+ builder.AddCubicBezier(new Vector2(314.167999F, -10.3920002F), new Vector2(313.596008F, -10.8599997F), new Vector2(312.899994F, -11.1719999F));
+ builder.AddCubicBezier(new Vector2(312.20401F, -11.4840002F), new Vector2(311.40799F, -11.6400003F), new Vector2(310.511993F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(309.664001F, -11.6400003F), new Vector2(308.936005F, -11.5039997F), new Vector2(308.328003F, -11.2320004F));
+ builder.AddCubicBezier(new Vector2(307.720001F, -10.96F), new Vector2(307.252014F, -10.5719995F), new Vector2(306.924011F, -10.0679998F));
+ builder.AddCubicBezier(new Vector2(306.596008F, -9.56400013F), new Vector2(306.432007F, -8.96800041F), new Vector2(306.432007F, -8.27999973F));
+ builder.AddCubicBezier(new Vector2(306.432007F, -7.59200001F), new Vector2(306.579987F, -7.03599977F), new Vector2(306.876007F, -6.61199999F));
+ builder.AddCubicBezier(new Vector2(307.171997F, -6.1880002F), new Vector2(307.552002F, -5.85599995F), new Vector2(308.015991F, -5.61600018F));
+ builder.AddCubicBezier(new Vector2(308.480011F, -5.37599993F), new Vector2(308.971985F, -5.18400002F), new Vector2(309.492004F, -5.03999996F));
+ builder.AddCubicBezier(new Vector2(310.011993F, -4.89599991F), new Vector2(310.503998F, -4.74800014F), new Vector2(310.967987F, -4.59600019F));
+ builder.AddCubicBezier(new Vector2(311.432007F, -4.44399977F), new Vector2(311.812012F, -4.25199986F), new Vector2(312.108002F, -4.01999998F));
+ builder.AddCubicBezier(new Vector2(312.403992F, -3.78800011F), new Vector2(312.552002F, -3.46399999F), new Vector2(312.552002F, -3.0480001F));
+ builder.AddCubicBezier(new Vector2(312.552002F, -2.63199997F), new Vector2(312.368011F, -2.30800009F), new Vector2(312F, -2.07599998F));
+ builder.AddCubicBezier(new Vector2(311.631989F, -1.84399998F), new Vector2(311.112F, -1.72800004F), new Vector2(310.440002F, -1.72800004F));
+ builder.AddCubicBezier(new Vector2(309.768005F, -1.72800004F), new Vector2(309.160004F, -1.852F), new Vector2(308.615997F, -2.0999999F));
+ builder.AddCubicBezier(new Vector2(308.071991F, -2.34800005F), new Vector2(307.59201F, -2.72799993F), new Vector2(307.175995F, -3.24000001F));
+ builder.AddLine(new Vector2(305.783997F, -1.84800005F));
+ builder.AddCubicBezier(new Vector2(306.135986F, -1.41600001F), new Vector2(306.548004F, -1.04400003F), new Vector2(307.019989F, -0.731999993F));
+ builder.AddCubicBezier(new Vector2(307.492004F, -0.419999987F), new Vector2(308.015991F, -0.180000007F), new Vector2(308.59201F, -0.0120000001F));
+ builder.AddCubicBezier(new Vector2(309.167999F, 0.156000003F), new Vector2(309.776001F, 0.239999995F), new Vector2(310.415985F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(311.696014F, 0.239999995F), new Vector2(312.716003F, -0.0719999969F), new Vector2(313.476013F, -0.69599998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0113()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(304.920013F, -9.43200016F));
+ builder.AddLine(new Vector2(304.920013F, -11.3999996F));
+ builder.AddLine(new Vector2(297.144012F, -11.3999996F));
+ builder.AddLine(new Vector2(297.144012F, -9.43200016F));
+ builder.AddLine(new Vector2(304.920013F, -9.43200016F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(302.112F, 0F));
+ builder.AddLine(new Vector2(302.112F, -16.1760006F));
+ builder.AddLine(new Vector2(299.951996F, -16.1760006F));
+ builder.AddLine(new Vector2(299.951996F, 0F));
+ builder.AddLine(new Vector2(302.112F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0114()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(287.35199F, 0F));
+ builder.AddLine(new Vector2(287.35199F, -17.1359997F));
+ builder.AddLine(new Vector2(285.191986F, -17.1359997F));
+ builder.AddLine(new Vector2(285.191986F, 0F));
+ builder.AddLine(new Vector2(287.35199F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(295.415985F, 0F));
+ builder.AddLine(new Vector2(295.415985F, -7.07999992F));
+ builder.AddCubicBezier(new Vector2(295.415985F, -7.97599983F), new Vector2(295.223999F, -8.76799965F), new Vector2(294.839996F, -9.45600033F));
+ builder.AddCubicBezier(new Vector2(294.455994F, -10.1440001F), new Vector2(293.932007F, -10.6800003F), new Vector2(293.268005F, -11.0640001F));
+ builder.AddCubicBezier(new Vector2(292.604004F, -11.448F), new Vector2(291.839996F, -11.6400003F), new Vector2(290.976013F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(290.112F, -11.6400003F), new Vector2(289.335999F, -11.4440002F), new Vector2(288.64801F, -11.052F));
+ builder.AddCubicBezier(new Vector2(287.959991F, -10.6599998F), new Vector2(287.424011F, -10.1280003F), new Vector2(287.040009F, -9.45600033F));
+ builder.AddCubicBezier(new Vector2(286.656006F, -8.7840004F), new Vector2(286.463989F, -8.01599979F), new Vector2(286.463989F, -7.15199995F));
+ builder.AddLine(new Vector2(287.35199F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(287.35199F, -7.22399998F), new Vector2(287.480011F, -7.73600006F), new Vector2(287.735992F, -8.18400002F));
+ builder.AddCubicBezier(new Vector2(287.992004F, -8.63199997F), new Vector2(288.343994F, -8.98400021F), new Vector2(288.791992F, -9.23999977F));
+ builder.AddCubicBezier(new Vector2(289.23999F, -9.49600029F), new Vector2(289.752014F, -9.6239996F), new Vector2(290.328003F, -9.6239996F));
+ builder.AddCubicBezier(new Vector2(291.191986F, -9.6239996F), new Vector2(291.891998F, -9.34399986F), new Vector2(292.428009F, -8.7840004F));
+ builder.AddCubicBezier(new Vector2(292.963989F, -8.22399998F), new Vector2(293.231995F, -7.51200008F), new Vector2(293.231995F, -6.64799976F));
+ builder.AddLine(new Vector2(293.231995F, 0F));
+ builder.AddLine(new Vector2(295.415985F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0115()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(274.571991F, -2.70000005F));
+ builder.AddCubicBezier(new Vector2(274.019989F, -3.01200008F), new Vector2(273.588013F, -3.44799995F), new Vector2(273.276001F, -4.0079999F));
+ builder.AddCubicBezier(new Vector2(272.963989F, -4.56799984F), new Vector2(272.808014F, -5.20800018F), new Vector2(272.808014F, -5.92799997F));
+ builder.AddCubicBezier(new Vector2(272.808014F, -6.64799976F), new Vector2(272.963989F, -7.28399992F), new Vector2(273.276001F, -7.83599997F));
+ builder.AddCubicBezier(new Vector2(273.588013F, -8.38799953F), new Vector2(274.015991F, -8.81999969F), new Vector2(274.559998F, -9.13199997F));
+ builder.AddCubicBezier(new Vector2(275.104004F, -9.44400024F), new Vector2(275.735992F, -9.60000038F), new Vector2(276.455994F, -9.60000038F));
+ builder.AddCubicBezier(new Vector2(277.160004F, -9.60000038F), new Vector2(277.779999F, -9.44400024F), new Vector2(278.31601F, -9.13199997F));
+ builder.AddCubicBezier(new Vector2(278.85199F, -8.81999969F), new Vector2(279.268005F, -8.38799953F), new Vector2(279.563995F, -7.83599997F));
+ builder.AddCubicBezier(new Vector2(279.859985F, -7.28399992F), new Vector2(280.007996F, -6.63999987F), new Vector2(280.007996F, -5.90399981F));
+ builder.AddCubicBezier(new Vector2(280.007996F, -5.16800022F), new Vector2(279.859985F, -4.52400017F), new Vector2(279.563995F, -3.97199988F));
+ builder.AddCubicBezier(new Vector2(279.268005F, -3.42000008F), new Vector2(278.855988F, -2.9920001F), new Vector2(278.328003F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(277.799988F, -2.38400006F), new Vector2(277.175995F, -2.23200011F), new Vector2(276.455994F, -2.23200011F));
+ builder.AddCubicBezier(new Vector2(275.752014F, -2.23200011F), new Vector2(275.123993F, -2.38800001F), new Vector2(274.571991F, -2.70000005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(278.399994F, -0.720000029F));
+ builder.AddCubicBezier(new Vector2(279.088013F, -1.07200003F), new Vector2(279.635986F, -1.56400001F), new Vector2(280.044006F, -2.1960001F));
+ builder.AddCubicBezier(new Vector2(280.451996F, -2.82800007F), new Vector2(280.679993F, -3.55999994F), new Vector2(280.727997F, -4.3920002F));
+ builder.AddLine(new Vector2(280.727997F, -7.41599989F));
+ builder.AddCubicBezier(new Vector2(280.679993F, -8.26399994F), new Vector2(280.455994F, -9.00399971F), new Vector2(280.056F, -9.63599968F));
+ builder.AddCubicBezier(new Vector2(279.656006F, -10.2679996F), new Vector2(279.108002F, -10.7600002F), new Vector2(278.411987F, -11.1120005F));
+ builder.AddCubicBezier(new Vector2(277.716003F, -11.4639997F), new Vector2(276.920013F, -11.6400003F), new Vector2(276.023987F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(275F, -11.6400003F), new Vector2(274.071991F, -11.3879995F), new Vector2(273.23999F, -10.8839998F));
+ builder.AddCubicBezier(new Vector2(272.40799F, -10.3800001F), new Vector2(271.756012F, -9.69999981F), new Vector2(271.283997F, -8.84399986F));
+ builder.AddCubicBezier(new Vector2(270.812012F, -7.98799992F), new Vector2(270.575989F, -7.01599979F), new Vector2(270.575989F, -5.92799997F));
+ builder.AddCubicBezier(new Vector2(270.575989F, -4.84000015F), new Vector2(270.81601F, -3.8599999F), new Vector2(271.29599F, -2.98799992F));
+ builder.AddCubicBezier(new Vector2(271.776001F, -2.11599994F), new Vector2(272.428009F, -1.43200004F), new Vector2(273.252014F, -0.93599999F));
+ builder.AddCubicBezier(new Vector2(274.075989F, -0.439999998F), new Vector2(275.007996F, -0.192000002F), new Vector2(276.048004F, -0.192000002F));
+ builder.AddCubicBezier(new Vector2(276.928009F, -0.192000002F), new Vector2(277.712006F, -0.368000001F), new Vector2(278.399994F, -0.720000029F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(279.179993F, 4.33199978F));
+ builder.AddCubicBezier(new Vector2(280.084015F, 3.87599993F), new Vector2(280.787994F, 3.23600006F), new Vector2(281.291992F, 2.41199994F));
+ builder.AddCubicBezier(new Vector2(281.79599F, 1.58800006F), new Vector2(282.048004F, 0.632000029F), new Vector2(282.048004F, -0.456F));
+ builder.AddLine(new Vector2(282.048004F, -11.3999996F));
+ builder.AddLine(new Vector2(279.888F, -11.3999996F));
+ builder.AddLine(new Vector2(279.888F, -8.39999962F));
+ builder.AddLine(new Vector2(280.272003F, -5.85599995F));
+ builder.AddLine(new Vector2(279.888F, -3.28800011F));
+ builder.AddLine(new Vector2(279.888F, -0.456F));
+ builder.AddCubicBezier(new Vector2(279.888F, 0.583999991F), new Vector2(279.544006F, 1.41199994F), new Vector2(278.855988F, 2.02800012F));
+ builder.AddCubicBezier(new Vector2(278.167999F, 2.64400005F), new Vector2(277.247986F, 2.9519999F), new Vector2(276.096008F, 2.9519999F));
+ builder.AddCubicBezier(new Vector2(275.216003F, 2.9519999F), new Vector2(274.455994F, 2.796F), new Vector2(273.81601F, 2.48399997F));
+ builder.AddCubicBezier(new Vector2(273.175995F, 2.17199993F), new Vector2(272.623993F, 1.72000003F), new Vector2(272.160004F, 1.12800002F));
+ builder.AddLine(new Vector2(270.743988F, 2.54399991F));
+ builder.AddCubicBezier(new Vector2(271.303986F, 3.32800007F), new Vector2(272.032013F, 3.93600011F), new Vector2(272.928009F, 4.36800003F));
+ builder.AddCubicBezier(new Vector2(273.824005F, 4.80000019F), new Vector2(274.864014F, 5.01599979F), new Vector2(276.048004F, 5.01599979F));
+ builder.AddCubicBezier(new Vector2(277.231995F, 5.01599979F), new Vector2(278.276001F, 4.78800011F), new Vector2(279.179993F, 4.33199978F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0116()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(268.032013F, -14.0760002F));
+ builder.AddCubicBezier(new Vector2(268.287994F, -14.3400002F), new Vector2(268.415985F, -14.6719999F), new Vector2(268.415985F, -15.0719995F));
+ builder.AddCubicBezier(new Vector2(268.415985F, -15.4560003F), new Vector2(268.287994F, -15.7799997F), new Vector2(268.032013F, -16.0440006F));
+ builder.AddCubicBezier(new Vector2(267.776001F, -16.3080006F), new Vector2(267.447998F, -16.4400005F), new Vector2(267.048004F, -16.4400005F));
+ builder.AddCubicBezier(new Vector2(266.64801F, -16.4400005F), new Vector2(266.320007F, -16.3080006F), new Vector2(266.063995F, -16.0440006F));
+ builder.AddCubicBezier(new Vector2(265.808014F, -15.7799997F), new Vector2(265.679993F, -15.4560003F), new Vector2(265.679993F, -15.0719995F));
+ builder.AddCubicBezier(new Vector2(265.679993F, -14.6719999F), new Vector2(265.808014F, -14.3400002F), new Vector2(266.063995F, -14.0760002F));
+ builder.AddCubicBezier(new Vector2(266.320007F, -13.8120003F), new Vector2(266.64801F, -13.6800003F), new Vector2(267.048004F, -13.6800003F));
+ builder.AddCubicBezier(new Vector2(267.447998F, -13.6800003F), new Vector2(267.776001F, -13.8120003F), new Vector2(268.032013F, -14.0760002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(268.127991F, 0F));
+ builder.AddLine(new Vector2(268.127991F, -11.3999996F));
+ builder.AddLine(new Vector2(265.944F, -11.3999996F));
+ builder.AddLine(new Vector2(265.944F, 0F));
+ builder.AddLine(new Vector2(268.127991F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0117()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(263.664001F, 0F));
+ builder.AddLine(new Vector2(256.895996F, -8.20800018F));
+ builder.AddLine(new Vector2(254.759995F, -7.46400023F));
+ builder.AddLine(new Vector2(260.808014F, 0F));
+ builder.AddLine(new Vector2(263.664001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(253.464005F, 0F));
+ builder.AddLine(new Vector2(253.464005F, -16.6560001F));
+ builder.AddLine(new Vector2(251.207993F, -16.6560001F));
+ builder.AddLine(new Vector2(251.207993F, 0F));
+ builder.AddLine(new Vector2(253.464005F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(257.328003F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(258.384003F, -7.24800014F), new Vector2(259.303986F, -7.44399977F), new Vector2(260.088013F, -7.83599997F));
+ builder.AddCubicBezier(new Vector2(260.872009F, -8.22799969F), new Vector2(261.476013F, -8.77600002F), new Vector2(261.899994F, -9.47999954F));
+ builder.AddCubicBezier(new Vector2(262.324005F, -10.184F), new Vector2(262.536011F, -11.0080004F), new Vector2(262.536011F, -11.9519997F));
+ builder.AddCubicBezier(new Vector2(262.536011F, -12.8640003F), new Vector2(262.324005F, -13.6719999F), new Vector2(261.899994F, -14.3760004F));
+ builder.AddCubicBezier(new Vector2(261.476013F, -15.0799999F), new Vector2(260.872009F, -15.6359997F), new Vector2(260.088013F, -16.0440006F));
+ builder.AddCubicBezier(new Vector2(259.303986F, -16.4519997F), new Vector2(258.384003F, -16.6560001F), new Vector2(257.328003F, -16.6560001F));
+ builder.AddLine(new Vector2(252.720001F, -16.6560001F));
+ builder.AddLine(new Vector2(252.720001F, -14.6879997F));
+ builder.AddLine(new Vector2(257.256012F, -14.6879997F));
+ builder.AddCubicBezier(new Vector2(258.216003F, -14.6879997F), new Vector2(258.955994F, -14.4239998F), new Vector2(259.476013F, -13.8959999F));
+ builder.AddCubicBezier(new Vector2(259.996002F, -13.368F), new Vector2(260.256012F, -12.7040005F), new Vector2(260.256012F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(260.256012F, -11.0559998F), new Vector2(259.996002F, -10.3839998F), new Vector2(259.476013F, -9.88799953F));
+ builder.AddCubicBezier(new Vector2(258.955994F, -9.3920002F), new Vector2(258.208008F, -9.14400005F), new Vector2(257.231995F, -9.14400005F));
+ builder.AddLine(new Vector2(252.720001F, -9.14400005F));
+ builder.AddLine(new Vector2(252.720001F, -7.24800014F));
+ builder.AddLine(new Vector2(257.328003F, -7.24800014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0118()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(242.688004F, 0F));
+ builder.AddLine(new Vector2(242.688004F, -17.1359997F));
+ builder.AddLine(new Vector2(240.528F, -17.1359997F));
+ builder.AddLine(new Vector2(240.528F, 0F));
+ builder.AddLine(new Vector2(242.688004F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0119()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(237.360001F, 0F));
+ builder.AddLine(new Vector2(237.360001F, -17.1359997F));
+ builder.AddLine(new Vector2(235.199997F, -17.1359997F));
+ builder.AddLine(new Vector2(235.199997F, 0F));
+ builder.AddLine(new Vector2(237.360001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0120()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(229.656006F, -3.76799989F));
+ builder.AddLine(new Vector2(229.656006F, -5.73600006F));
+ builder.AddLine(new Vector2(220.895996F, -5.73600006F));
+ builder.AddLine(new Vector2(220.895996F, -3.76799989F));
+ builder.AddLine(new Vector2(229.656006F, -3.76799989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(220.056F, 0F));
+ builder.AddLine(new Vector2(225.695999F, -14.0880003F));
+ builder.AddLine(new Vector2(224.832001F, -14.0880003F));
+ builder.AddLine(new Vector2(230.447998F, 0F));
+ builder.AddLine(new Vector2(232.895996F, 0F));
+ builder.AddLine(new Vector2(226.104004F, -16.6560001F));
+ builder.AddLine(new Vector2(224.472F, -16.6560001F));
+ builder.AddLine(new Vector2(217.632004F, 0F));
+ builder.AddLine(new Vector2(220.056F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0121()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(211.031998F, -5.06400013F));
+ builder.AddLine(new Vector2(211.031998F, -7.12799978F));
+ builder.AddLine(new Vector2(203.136002F, -7.12799978F));
+ builder.AddLine(new Vector2(203.136002F, -5.06400013F));
+ builder.AddLine(new Vector2(211.031998F, -5.06400013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0122()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(193.104004F, -0.263999999F));
+ builder.AddCubicBezier(new Vector2(193.888F, -0.600000024F), new Vector2(194.559998F, -1.08800006F), new Vector2(195.119995F, -1.72800004F));
+ builder.AddLine(new Vector2(193.727997F, -3.14400005F));
+ builder.AddCubicBezier(new Vector2(193.343994F, -2.6960001F), new Vector2(192.884003F, -2.3599999F), new Vector2(192.348007F, -2.13599992F));
+ builder.AddCubicBezier(new Vector2(191.811996F, -1.91199994F), new Vector2(191.223999F, -1.79999995F), new Vector2(190.584F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(189.815994F, -1.79999995F), new Vector2(189.136002F, -1.96399999F), new Vector2(188.544006F, -2.29200006F));
+ builder.AddCubicBezier(new Vector2(187.951996F, -2.61999989F), new Vector2(187.496002F, -3.08400011F), new Vector2(187.175995F, -3.68400002F));
+ builder.AddCubicBezier(new Vector2(186.856003F, -4.28399992F), new Vector2(186.695999F, -4.98400021F), new Vector2(186.695999F, -5.78399992F));
+ builder.AddCubicBezier(new Vector2(186.695999F, -6.56799984F), new Vector2(186.848007F, -7.24800014F), new Vector2(187.151993F, -7.82399988F));
+ builder.AddCubicBezier(new Vector2(187.455994F, -8.39999962F), new Vector2(187.888F, -8.84799957F), new Vector2(188.447998F, -9.16800022F));
+ builder.AddCubicBezier(new Vector2(189.007996F, -9.48799992F), new Vector2(189.656006F, -9.64799976F), new Vector2(190.391998F, -9.64799976F));
+ builder.AddCubicBezier(new Vector2(191.095993F, -9.64799976F), new Vector2(191.695999F, -9.5F), new Vector2(192.192001F, -9.20400047F));
+ builder.AddCubicBezier(new Vector2(192.688004F, -8.90799999F), new Vector2(193.072006F, -8.49199963F), new Vector2(193.343994F, -7.95599985F));
+ builder.AddCubicBezier(new Vector2(193.615997F, -7.42000008F), new Vector2(193.751999F, -6.76800013F), new Vector2(193.751999F, -6F));
+ builder.AddLine(new Vector2(194.544006F, -6.6960001F));
+ builder.AddLine(new Vector2(186.072006F, -6.6960001F));
+ builder.AddLine(new Vector2(186.072006F, -4.89599991F));
+ builder.AddLine(new Vector2(195.695999F, -4.89599991F));
+ builder.AddCubicBezier(new Vector2(195.744003F, -5.11999989F), new Vector2(195.776001F, -5.32399988F), new Vector2(195.792007F, -5.5079999F));
+ builder.AddCubicBezier(new Vector2(195.807999F, -5.69199991F), new Vector2(195.815994F, -5.86399984F), new Vector2(195.815994F, -6.02400017F));
+ builder.AddCubicBezier(new Vector2(195.815994F, -7.11199999F), new Vector2(195.587997F, -8.07999992F), new Vector2(195.132004F, -8.92800045F));
+ builder.AddCubicBezier(new Vector2(194.675995F, -9.77600002F), new Vector2(194.039993F, -10.4399996F), new Vector2(193.223999F, -10.9200001F));
+ builder.AddCubicBezier(new Vector2(192.408005F, -11.3999996F), new Vector2(191.479996F, -11.6400003F), new Vector2(190.440002F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(189.335999F, -11.6400003F), new Vector2(188.339996F, -11.3800001F), new Vector2(187.451996F, -10.8599997F));
+ builder.AddCubicBezier(new Vector2(186.563995F, -10.3400002F), new Vector2(185.860001F, -9.63199997F), new Vector2(185.339996F, -8.73600006F));
+ builder.AddCubicBezier(new Vector2(184.820007F, -7.84000015F), new Vector2(184.559998F, -6.83199978F), new Vector2(184.559998F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(184.559998F, -4.57600021F), new Vector2(184.824005F, -3.55999994F), new Vector2(185.352005F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(185.880005F, -1.76800001F), new Vector2(186.595993F, -1.05999994F), new Vector2(187.5F, -0.540000021F));
+ builder.AddCubicBezier(new Vector2(188.404007F, -0.0199999996F), new Vector2(189.432007F, 0.239999995F), new Vector2(190.584F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(191.479996F, 0.239999995F), new Vector2(192.320007F, 0.0719999969F), new Vector2(193.104004F, -0.263999999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0123()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(181.740005F, -0.69599998F));
+ builder.AddCubicBezier(new Vector2(182.5F, -1.32000005F), new Vector2(182.880005F, -2.16799998F), new Vector2(182.880005F, -3.24000001F));
+ builder.AddCubicBezier(new Vector2(182.880005F, -3.94400001F), new Vector2(182.731995F, -4.51200008F), new Vector2(182.436005F, -4.94399977F));
+ builder.AddCubicBezier(new Vector2(182.139999F, -5.37599993F), new Vector2(181.759995F, -5.71999979F), new Vector2(181.296005F, -5.97599983F));
+ builder.AddCubicBezier(new Vector2(180.832001F, -6.23199987F), new Vector2(180.343994F, -6.43599987F), new Vector2(179.832001F, -6.58799982F));
+ builder.AddCubicBezier(new Vector2(179.320007F, -6.73999977F), new Vector2(178.828003F, -6.88800001F), new Vector2(178.356003F, -7.03200006F));
+ builder.AddCubicBezier(new Vector2(177.884003F, -7.17600012F), new Vector2(177.503998F, -7.35200024F), new Vector2(177.216003F, -7.55999994F));
+ builder.AddCubicBezier(new Vector2(176.927994F, -7.76800013F), new Vector2(176.783997F, -8.06400013F), new Vector2(176.783997F, -8.44799995F));
+ builder.AddCubicBezier(new Vector2(176.783997F, -8.81599998F), new Vector2(176.947998F, -9.11200047F), new Vector2(177.276001F, -9.33600044F));
+ builder.AddCubicBezier(new Vector2(177.604004F, -9.56000042F), new Vector2(178.080002F, -9.67199993F), new Vector2(178.703995F, -9.67199993F));
+ builder.AddCubicBezier(new Vector2(179.296005F, -9.67199993F), new Vector2(179.824005F, -9.56000042F), new Vector2(180.287994F, -9.33600044F));
+ builder.AddCubicBezier(new Vector2(180.751999F, -9.11200047F), new Vector2(181.151993F, -8.79199982F), new Vector2(181.488007F, -8.3760004F));
+ builder.AddLine(new Vector2(182.880005F, -9.76799965F));
+ builder.AddCubicBezier(new Vector2(182.432007F, -10.3920002F), new Vector2(181.860001F, -10.8599997F), new Vector2(181.164001F, -11.1719999F));
+ builder.AddCubicBezier(new Vector2(180.468002F, -11.4840002F), new Vector2(179.671997F, -11.6400003F), new Vector2(178.776001F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(177.927994F, -11.6400003F), new Vector2(177.199997F, -11.5039997F), new Vector2(176.591995F, -11.2320004F));
+ builder.AddCubicBezier(new Vector2(175.983994F, -10.96F), new Vector2(175.516006F, -10.5719995F), new Vector2(175.188004F, -10.0679998F));
+ builder.AddCubicBezier(new Vector2(174.860001F, -9.56400013F), new Vector2(174.695999F, -8.96800041F), new Vector2(174.695999F, -8.27999973F));
+ builder.AddCubicBezier(new Vector2(174.695999F, -7.59200001F), new Vector2(174.843994F, -7.03599977F), new Vector2(175.139999F, -6.61199999F));
+ builder.AddCubicBezier(new Vector2(175.436005F, -6.1880002F), new Vector2(175.815994F, -5.85599995F), new Vector2(176.279999F, -5.61600018F));
+ builder.AddCubicBezier(new Vector2(176.744003F, -5.37599993F), new Vector2(177.235992F, -5.18400002F), new Vector2(177.755997F, -5.03999996F));
+ builder.AddCubicBezier(new Vector2(178.276001F, -4.89599991F), new Vector2(178.768005F, -4.74800014F), new Vector2(179.231995F, -4.59600019F));
+ builder.AddCubicBezier(new Vector2(179.695999F, -4.44399977F), new Vector2(180.076004F, -4.25199986F), new Vector2(180.371994F, -4.01999998F));
+ builder.AddCubicBezier(new Vector2(180.667999F, -3.78800011F), new Vector2(180.815994F, -3.46399999F), new Vector2(180.815994F, -3.0480001F));
+ builder.AddCubicBezier(new Vector2(180.815994F, -2.63199997F), new Vector2(180.632004F, -2.30800009F), new Vector2(180.264008F, -2.07599998F));
+ builder.AddCubicBezier(new Vector2(179.895996F, -1.84399998F), new Vector2(179.376007F, -1.72800004F), new Vector2(178.703995F, -1.72800004F));
+ builder.AddCubicBezier(new Vector2(178.031998F, -1.72800004F), new Vector2(177.423996F, -1.852F), new Vector2(176.880005F, -2.0999999F));
+ builder.AddCubicBezier(new Vector2(176.335999F, -2.34800005F), new Vector2(175.856003F, -2.72799993F), new Vector2(175.440002F, -3.24000001F));
+ builder.AddLine(new Vector2(174.048004F, -1.84800005F));
+ builder.AddCubicBezier(new Vector2(174.399994F, -1.41600001F), new Vector2(174.811996F, -1.04400003F), new Vector2(175.283997F, -0.731999993F));
+ builder.AddCubicBezier(new Vector2(175.755997F, -0.419999987F), new Vector2(176.279999F, -0.180000007F), new Vector2(176.856003F, -0.0120000001F));
+ builder.AddCubicBezier(new Vector2(177.432007F, 0.156000003F), new Vector2(178.039993F, 0.239999995F), new Vector2(178.679993F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(179.960007F, 0.239999995F), new Vector2(180.979996F, -0.0719999969F), new Vector2(181.740005F, -0.69599998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0124()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(164.063995F, 0F));
+ builder.AddLine(new Vector2(164.063995F, -11.3999996F));
+ builder.AddLine(new Vector2(161.904007F, -11.3999996F));
+ builder.AddLine(new Vector2(161.904007F, 0F));
+ builder.AddLine(new Vector2(164.063995F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(172.128006F, 0F));
+ builder.AddLine(new Vector2(172.128006F, -7.07999992F));
+ builder.AddCubicBezier(new Vector2(172.128006F, -7.86399984F), new Vector2(171.936005F, -8.60400009F), new Vector2(171.552002F, -9.30000019F));
+ builder.AddCubicBezier(new Vector2(171.167999F, -9.99600029F), new Vector2(170.643997F, -10.5600004F), new Vector2(169.979996F, -10.9919996F));
+ builder.AddCubicBezier(new Vector2(169.315994F, -11.4239998F), new Vector2(168.552002F, -11.6400003F), new Vector2(167.688004F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(166.824005F, -11.6400003F), new Vector2(166.048004F, -11.4440002F), new Vector2(165.360001F, -11.052F));
+ builder.AddCubicBezier(new Vector2(164.671997F, -10.6599998F), new Vector2(164.136002F, -10.1280003F), new Vector2(163.751999F, -9.45600033F));
+ builder.AddCubicBezier(new Vector2(163.367996F, -8.7840004F), new Vector2(163.175995F, -8.01599979F), new Vector2(163.175995F, -7.15199995F));
+ builder.AddLine(new Vector2(164.063995F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(164.063995F, -7.22399998F), new Vector2(164.192001F, -7.73600006F), new Vector2(164.447998F, -8.18400002F));
+ builder.AddCubicBezier(new Vector2(164.703995F, -8.63199997F), new Vector2(165.056F, -8.98400021F), new Vector2(165.503998F, -9.23999977F));
+ builder.AddCubicBezier(new Vector2(165.951996F, -9.49600029F), new Vector2(166.464005F, -9.6239996F), new Vector2(167.039993F, -9.6239996F));
+ builder.AddCubicBezier(new Vector2(167.904007F, -9.6239996F), new Vector2(168.604004F, -9.34399986F), new Vector2(169.139999F, -8.7840004F));
+ builder.AddCubicBezier(new Vector2(169.675995F, -8.22399998F), new Vector2(169.944F, -7.51200008F), new Vector2(169.944F, -6.64799976F));
+ builder.AddLine(new Vector2(169.944F, 0F));
+ builder.AddLine(new Vector2(172.128006F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0125()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(156.839996F, -0.263999999F));
+ builder.AddCubicBezier(new Vector2(157.623993F, -0.600000024F), new Vector2(158.296005F, -1.08800006F), new Vector2(158.856003F, -1.72800004F));
+ builder.AddLine(new Vector2(157.464005F, -3.14400005F));
+ builder.AddCubicBezier(new Vector2(157.080002F, -2.6960001F), new Vector2(156.619995F, -2.3599999F), new Vector2(156.084F, -2.13599992F));
+ builder.AddCubicBezier(new Vector2(155.548004F, -1.91199994F), new Vector2(154.960007F, -1.79999995F), new Vector2(154.320007F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(153.552002F, -1.79999995F), new Vector2(152.871994F, -1.96399999F), new Vector2(152.279999F, -2.29200006F));
+ builder.AddCubicBezier(new Vector2(151.688004F, -2.61999989F), new Vector2(151.231995F, -3.08400011F), new Vector2(150.912003F, -3.68400002F));
+ builder.AddCubicBezier(new Vector2(150.591995F, -4.28399992F), new Vector2(150.432007F, -4.98400021F), new Vector2(150.432007F, -5.78399992F));
+ builder.AddCubicBezier(new Vector2(150.432007F, -6.56799984F), new Vector2(150.584F, -7.24800014F), new Vector2(150.888F, -7.82399988F));
+ builder.AddCubicBezier(new Vector2(151.192001F, -8.39999962F), new Vector2(151.623993F, -8.84799957F), new Vector2(152.184006F, -9.16800022F));
+ builder.AddCubicBezier(new Vector2(152.744003F, -9.48799992F), new Vector2(153.391998F, -9.64799976F), new Vector2(154.128006F, -9.64799976F));
+ builder.AddCubicBezier(new Vector2(154.832001F, -9.64799976F), new Vector2(155.432007F, -9.5F), new Vector2(155.927994F, -9.20400047F));
+ builder.AddCubicBezier(new Vector2(156.423996F, -8.90799999F), new Vector2(156.807999F, -8.49199963F), new Vector2(157.080002F, -7.95599985F));
+ builder.AddCubicBezier(new Vector2(157.352005F, -7.42000008F), new Vector2(157.488007F, -6.76800013F), new Vector2(157.488007F, -6F));
+ builder.AddLine(new Vector2(158.279999F, -6.6960001F));
+ builder.AddLine(new Vector2(149.807999F, -6.6960001F));
+ builder.AddLine(new Vector2(149.807999F, -4.89599991F));
+ builder.AddLine(new Vector2(159.432007F, -4.89599991F));
+ builder.AddCubicBezier(new Vector2(159.479996F, -5.11999989F), new Vector2(159.511993F, -5.32399988F), new Vector2(159.528F, -5.5079999F));
+ builder.AddCubicBezier(new Vector2(159.544006F, -5.69199991F), new Vector2(159.552002F, -5.86399984F), new Vector2(159.552002F, -6.02400017F));
+ builder.AddCubicBezier(new Vector2(159.552002F, -7.11199999F), new Vector2(159.324005F, -8.07999992F), new Vector2(158.867996F, -8.92800045F));
+ builder.AddCubicBezier(new Vector2(158.412003F, -9.77600002F), new Vector2(157.776001F, -10.4399996F), new Vector2(156.960007F, -10.9200001F));
+ builder.AddCubicBezier(new Vector2(156.143997F, -11.3999996F), new Vector2(155.216003F, -11.6400003F), new Vector2(154.175995F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(153.072006F, -11.6400003F), new Vector2(152.076004F, -11.3800001F), new Vector2(151.188004F, -10.8599997F));
+ builder.AddCubicBezier(new Vector2(150.300003F, -10.3400002F), new Vector2(149.595993F, -9.63199997F), new Vector2(149.076004F, -8.73600006F));
+ builder.AddCubicBezier(new Vector2(148.556F, -7.84000015F), new Vector2(148.296005F, -6.83199978F), new Vector2(148.296005F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(148.296005F, -4.57600021F), new Vector2(148.559998F, -3.55999994F), new Vector2(149.087997F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(149.615997F, -1.76800001F), new Vector2(150.332001F, -1.05999994F), new Vector2(151.235992F, -0.540000021F));
+ builder.AddCubicBezier(new Vector2(152.139999F, -0.0199999996F), new Vector2(153.167999F, 0.239999995F), new Vector2(154.320007F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(155.216003F, 0.239999995F), new Vector2(156.056F, 0.0719999969F), new Vector2(156.839996F, -0.263999999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0126()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(145.188004F, -0.263999999F));
+ builder.AddCubicBezier(new Vector2(145.947998F, -0.600000024F), new Vector2(146.591995F, -1.07200003F), new Vector2(147.119995F, -1.67999995F));
+ builder.AddLine(new Vector2(145.703995F, -3.11999989F));
+ builder.AddCubicBezier(new Vector2(145.335999F, -2.704F), new Vector2(144.899994F, -2.38800001F), new Vector2(144.395996F, -2.17199993F));
+ builder.AddCubicBezier(new Vector2(143.891998F, -1.95599997F), new Vector2(143.335999F, -1.84800005F), new Vector2(142.727997F, -1.84800005F));
+ builder.AddCubicBezier(new Vector2(142.007996F, -1.84800005F), new Vector2(141.367996F, -2.01600003F), new Vector2(140.807999F, -2.352F));
+ builder.AddCubicBezier(new Vector2(140.248001F, -2.68799996F), new Vector2(139.807999F, -3.14400005F), new Vector2(139.488007F, -3.72000003F));
+ builder.AddCubicBezier(new Vector2(139.167999F, -4.296F), new Vector2(139.007996F, -4.96000004F), new Vector2(139.007996F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(139.007996F, -6.46400023F), new Vector2(139.167999F, -7.12799978F), new Vector2(139.488007F, -7.704F));
+ builder.AddCubicBezier(new Vector2(139.807999F, -8.27999973F), new Vector2(140.248001F, -8.73200035F), new Vector2(140.807999F, -9.06000042F));
+ builder.AddCubicBezier(new Vector2(141.367996F, -9.38799953F), new Vector2(142.007996F, -9.55200005F), new Vector2(142.727997F, -9.55200005F));
+ builder.AddCubicBezier(new Vector2(143.320007F, -9.55200005F), new Vector2(143.871994F, -9.44400024F), new Vector2(144.384003F, -9.22799969F));
+ builder.AddCubicBezier(new Vector2(144.895996F, -9.01200008F), new Vector2(145.328003F, -8.6960001F), new Vector2(145.679993F, -8.27999973F));
+ builder.AddLine(new Vector2(147.119995F, -9.72000027F));
+ builder.AddCubicBezier(new Vector2(146.576004F, -10.3439999F), new Vector2(145.927994F, -10.8199997F), new Vector2(145.175995F, -11.1479998F));
+ builder.AddCubicBezier(new Vector2(144.423996F, -11.4759998F), new Vector2(143.608002F, -11.6400003F), new Vector2(142.727997F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(141.608002F, -11.6400003F), new Vector2(140.595993F, -11.3800001F), new Vector2(139.692001F, -10.8599997F));
+ builder.AddCubicBezier(new Vector2(138.787994F, -10.3400002F), new Vector2(138.076004F, -9.63199997F), new Vector2(137.556F, -8.73600006F));
+ builder.AddCubicBezier(new Vector2(137.035995F, -7.84000015F), new Vector2(136.776001F, -6.83199978F), new Vector2(136.776001F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(136.776001F, -4.6079998F), new Vector2(137.035995F, -3.60400009F), new Vector2(137.556F, -2.70000005F));
+ builder.AddCubicBezier(new Vector2(138.076004F, -1.796F), new Vector2(138.787994F, -1.08000004F), new Vector2(139.692001F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(140.595993F, -0.0240000002F), new Vector2(141.608002F, 0.239999995F), new Vector2(142.727997F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(143.608002F, 0.239999995F), new Vector2(144.427994F, 0.0719999969F), new Vector2(145.188004F, -0.263999999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0127()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(134.231995F, -14.0760002F));
+ builder.AddCubicBezier(new Vector2(134.488007F, -14.3400002F), new Vector2(134.615997F, -14.6719999F), new Vector2(134.615997F, -15.0719995F));
+ builder.AddCubicBezier(new Vector2(134.615997F, -15.4560003F), new Vector2(134.488007F, -15.7799997F), new Vector2(134.231995F, -16.0440006F));
+ builder.AddCubicBezier(new Vector2(133.975998F, -16.3080006F), new Vector2(133.647995F, -16.4400005F), new Vector2(133.248001F, -16.4400005F));
+ builder.AddCubicBezier(new Vector2(132.848007F, -16.4400005F), new Vector2(132.520004F, -16.3080006F), new Vector2(132.264008F, -16.0440006F));
+ builder.AddCubicBezier(new Vector2(132.007996F, -15.7799997F), new Vector2(131.880005F, -15.4560003F), new Vector2(131.880005F, -15.0719995F));
+ builder.AddCubicBezier(new Vector2(131.880005F, -14.6719999F), new Vector2(132.007996F, -14.3400002F), new Vector2(132.264008F, -14.0760002F));
+ builder.AddCubicBezier(new Vector2(132.520004F, -13.8120003F), new Vector2(132.848007F, -13.6800003F), new Vector2(133.248001F, -13.6800003F));
+ builder.AddCubicBezier(new Vector2(133.647995F, -13.6800003F), new Vector2(133.975998F, -13.8120003F), new Vector2(134.231995F, -14.0760002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(134.328003F, 0F));
+ builder.AddLine(new Vector2(134.328003F, -11.3999996F));
+ builder.AddLine(new Vector2(132.143997F, -11.3999996F));
+ builder.AddLine(new Vector2(132.143997F, 0F));
+ builder.AddLine(new Vector2(134.328003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0128()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(129.744003F, 0F));
+ builder.AddLine(new Vector2(129.744003F, -2.06399989F));
+ builder.AddLine(new Vector2(120.816002F, -2.06399989F));
+ builder.AddLine(new Vector2(120.816002F, 0F));
+ builder.AddLine(new Vector2(129.744003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(121.536003F, 0F));
+ builder.AddLine(new Vector2(121.536003F, -16.6560001F));
+ builder.AddLine(new Vector2(119.279999F, -16.6560001F));
+ builder.AddLine(new Vector2(119.279999F, 0F));
+ builder.AddLine(new Vector2(121.536003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0129()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(112.008003F, -14.592F));
+ builder.AddLine(new Vector2(112.008003F, -16.6560001F));
+ builder.AddLine(new Vector2(98.447998F, -16.6560001F));
+ builder.AddLine(new Vector2(98.447998F, -14.592F));
+ builder.AddLine(new Vector2(112.008003F, -14.592F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(106.367996F, 0F));
+ builder.AddLine(new Vector2(106.367996F, -16.1760006F));
+ builder.AddLine(new Vector2(104.087997F, -16.1760006F));
+ builder.AddLine(new Vector2(104.087997F, 0F));
+ builder.AddLine(new Vector2(106.367996F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0130()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(95.7600021F, 0F));
+ builder.AddLine(new Vector2(95.7600021F, -16.6560001F));
+ builder.AddLine(new Vector2(93.5039978F, -16.6560001F));
+ builder.AddLine(new Vector2(93.5039978F, 0F));
+ builder.AddLine(new Vector2(95.7600021F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0131()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(75.6240005F, 0F));
+ builder.AddLine(new Vector2(75.6240005F, -12.6960001F));
+ builder.AddLine(new Vector2(75.1200027F, -12.552F));
+ builder.AddLine(new Vector2(80.6640015F, -3.40799999F));
+ builder.AddLine(new Vector2(82.2720032F, -3.40799999F));
+ builder.AddLine(new Vector2(87.8160019F, -12.552F));
+ builder.AddLine(new Vector2(87.3119965F, -12.6960001F));
+ builder.AddLine(new Vector2(87.3119965F, 0F));
+ builder.AddLine(new Vector2(89.5680008F, 0F));
+ builder.AddLine(new Vector2(89.5680008F, -16.6560001F));
+ builder.AddLine(new Vector2(87.9840012F, -16.6560001F));
+ builder.AddLine(new Vector2(80.9280014F, -5.06400013F));
+ builder.AddLine(new Vector2(82.0080032F, -5.06400013F));
+ builder.AddLine(new Vector2(74.9520035F, -16.6560001F));
+ builder.AddLine(new Vector2(73.3679962F, -16.6560001F));
+ builder.AddLine(new Vector2(73.3679962F, 0F));
+ builder.AddLine(new Vector2(75.6240005F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0132()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(60.8880005F, -8.83199978F));
+ builder.AddCubicBezier(new Vector2(61.4000015F, -9.34399986F), new Vector2(62.0559998F, -9.60000038F), new Vector2(62.855999F, -9.60000038F));
+ builder.AddCubicBezier(new Vector2(63.2400017F, -9.60000038F), new Vector2(63.5760002F, -9.54399967F), new Vector2(63.8639984F, -9.43200016F));
+ builder.AddCubicBezier(new Vector2(64.1520004F, -9.31999969F), new Vector2(64.4160004F, -9.13599968F), new Vector2(64.6559982F, -8.88000011F));
+ builder.AddLine(new Vector2(66.0719986F, -10.3439999F));
+ builder.AddCubicBezier(new Vector2(65.6719971F, -10.8079996F), new Vector2(65.2399979F, -11.1400003F), new Vector2(64.776001F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(64.3119965F, -11.54F), new Vector2(63.7919998F, -11.6400003F), new Vector2(63.2159996F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(61.9519997F, -11.6400003F), new Vector2(60.9840012F, -11.2080002F), new Vector2(60.3120003F, -10.3439999F));
+ builder.AddCubicBezier(new Vector2(59.6399994F, -9.47999954F), new Vector2(59.3040009F, -8.31999969F), new Vector2(59.3040009F, -6.86399984F));
+ builder.AddLine(new Vector2(60.1199989F, -6.48000002F));
+ builder.AddCubicBezier(new Vector2(60.1199989F, -7.53599977F), new Vector2(60.3759995F, -8.31999969F), new Vector2(60.8880005F, -8.83199978F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(60.1199989F, 0F));
+ builder.AddLine(new Vector2(60.1199989F, -11.3999996F));
+ builder.AddLine(new Vector2(57.9599991F, -11.3999996F));
+ builder.AddLine(new Vector2(57.9599991F, 0F));
+ builder.AddLine(new Vector2(60.1199989F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0133()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(52.8959999F, -0.263999999F));
+ builder.AddCubicBezier(new Vector2(53.6800003F, -0.600000024F), new Vector2(54.3520012F, -1.08800006F), new Vector2(54.9119987F, -1.72800004F));
+ builder.AddLine(new Vector2(53.5200005F, -3.14400005F));
+ builder.AddCubicBezier(new Vector2(53.1360016F, -2.6960001F), new Vector2(52.6759987F, -2.3599999F), new Vector2(52.1399994F, -2.13599992F));
+ builder.AddCubicBezier(new Vector2(51.6040001F, -1.91199994F), new Vector2(51.0159988F, -1.79999995F), new Vector2(50.3759995F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(49.6080017F, -1.79999995F), new Vector2(48.9280014F, -1.96399999F), new Vector2(48.3359985F, -2.29200006F));
+ builder.AddCubicBezier(new Vector2(47.7439995F, -2.61999989F), new Vector2(47.2879982F, -3.08400011F), new Vector2(46.9679985F, -3.68400002F));
+ builder.AddCubicBezier(new Vector2(46.6479988F, -4.28399992F), new Vector2(46.487999F, -4.98400021F), new Vector2(46.487999F, -5.78399992F));
+ builder.AddCubicBezier(new Vector2(46.487999F, -6.56799984F), new Vector2(46.6399994F, -7.24800014F), new Vector2(46.9440002F, -7.82399988F));
+ builder.AddCubicBezier(new Vector2(47.2480011F, -8.39999962F), new Vector2(47.6800003F, -8.84799957F), new Vector2(48.2400017F, -9.16800022F));
+ builder.AddCubicBezier(new Vector2(48.7999992F, -9.48799992F), new Vector2(49.4480019F, -9.64799976F), new Vector2(50.1839981F, -9.64799976F));
+ builder.AddCubicBezier(new Vector2(50.8880005F, -9.64799976F), new Vector2(51.487999F, -9.5F), new Vector2(51.9840012F, -9.20400047F));
+ builder.AddCubicBezier(new Vector2(52.4799995F, -8.90799999F), new Vector2(52.8639984F, -8.49199963F), new Vector2(53.1360016F, -7.95599985F));
+ builder.AddCubicBezier(new Vector2(53.4080009F, -7.42000008F), new Vector2(53.5439987F, -6.76800013F), new Vector2(53.5439987F, -6F));
+ builder.AddLine(new Vector2(54.3359985F, -6.6960001F));
+ builder.AddLine(new Vector2(45.8639984F, -6.6960001F));
+ builder.AddLine(new Vector2(45.8639984F, -4.89599991F));
+ builder.AddLine(new Vector2(55.487999F, -4.89599991F));
+ builder.AddCubicBezier(new Vector2(55.5359993F, -5.11999989F), new Vector2(55.5680008F, -5.32399988F), new Vector2(55.5839996F, -5.5079999F));
+ builder.AddCubicBezier(new Vector2(55.5999985F, -5.69199991F), new Vector2(55.6080017F, -5.86399984F), new Vector2(55.6080017F, -6.02400017F));
+ builder.AddCubicBezier(new Vector2(55.6080017F, -7.11199999F), new Vector2(55.3800011F, -8.07999992F), new Vector2(54.9239998F, -8.92800045F));
+ builder.AddCubicBezier(new Vector2(54.4679985F, -9.77600002F), new Vector2(53.8320007F, -10.4399996F), new Vector2(53.0159988F, -10.9200001F));
+ builder.AddCubicBezier(new Vector2(52.2000008F, -11.3999996F), new Vector2(51.2719994F, -11.6400003F), new Vector2(50.2319984F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(49.1279984F, -11.6400003F), new Vector2(48.132F, -11.3800001F), new Vector2(47.2439995F, -10.8599997F));
+ builder.AddCubicBezier(new Vector2(46.355999F, -10.3400002F), new Vector2(45.6520004F, -9.63199997F), new Vector2(45.132F, -8.73600006F));
+ builder.AddCubicBezier(new Vector2(44.6119995F, -7.84000015F), new Vector2(44.3520012F, -6.83199978F), new Vector2(44.3520012F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(44.3520012F, -4.57600021F), new Vector2(44.6160011F, -3.55999994F), new Vector2(45.144001F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(45.6720009F, -1.76800001F), new Vector2(46.3880005F, -1.05999994F), new Vector2(47.2919998F, -0.540000021F));
+ builder.AddCubicBezier(new Vector2(48.1959991F, -0.0199999996F), new Vector2(49.223999F, 0.239999995F), new Vector2(50.3759995F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(51.2719994F, 0.239999995F), new Vector2(52.1119995F, 0.0719999969F), new Vector2(52.8959999F, -0.263999999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0134()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(41.9519997F, -17.1359997F));
+ builder.AddLine(new Vector2(39.7680016F, -17.1359997F));
+ builder.AddLine(new Vector2(39.7680016F, -8.61600018F));
+ builder.AddLine(new Vector2(40.1759987F, -5.85599995F));
+ builder.AddLine(new Vector2(39.7680016F, -3.07200003F));
+ builder.AddLine(new Vector2(39.7680016F, 0F));
+ builder.AddLine(new Vector2(41.9519997F, 0F));
+ builder.AddLine(new Vector2(41.9519997F, -17.1359997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(34.4039993F, -2.29200006F));
+ builder.AddCubicBezier(new Vector2(33.8520012F, -2.61999989F), new Vector2(33.4199982F, -3.07999992F), new Vector2(33.1080017F, -3.67199993F));
+ builder.AddCubicBezier(new Vector2(32.7960014F, -4.26399994F), new Vector2(32.6399994F, -4.94399977F), new Vector2(32.6399994F, -5.71199989F));
+ builder.AddCubicBezier(new Vector2(32.6399994F, -6.48000002F), new Vector2(32.7960014F, -7.15600014F), new Vector2(33.1080017F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(33.4199982F, -8.32400036F), new Vector2(33.8479996F, -8.77999973F), new Vector2(34.3919983F, -9.1079998F));
+ builder.AddCubicBezier(new Vector2(34.9360008F, -9.43599987F), new Vector2(35.5680008F, -9.60000038F), new Vector2(36.2879982F, -9.60000038F));
+ builder.AddCubicBezier(new Vector2(37.0079994F, -9.60000038F), new Vector2(37.6399994F, -9.43200016F), new Vector2(38.1839981F, -9.09599972F));
+ builder.AddCubicBezier(new Vector2(38.7280006F, -8.76000023F), new Vector2(39.1520004F, -8.30000019F), new Vector2(39.4560013F, -7.71600008F));
+ builder.AddCubicBezier(new Vector2(39.7599983F, -7.13199997F), new Vector2(39.9119987F, -6.45599985F), new Vector2(39.9119987F, -5.6880002F));
+ builder.AddCubicBezier(new Vector2(39.9119987F, -4.93599987F), new Vector2(39.7599983F, -4.26800013F), new Vector2(39.4560013F, -3.68400002F));
+ builder.AddCubicBezier(new Vector2(39.1520004F, -3.0999999F), new Vector2(38.7280006F, -2.6400001F), new Vector2(38.1839981F, -2.3039999F));
+ builder.AddCubicBezier(new Vector2(37.6399994F, -1.96800005F), new Vector2(37.0079994F, -1.79999995F), new Vector2(36.2879982F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(35.5839996F, -1.79999995F), new Vector2(34.9560013F, -1.96399999F), new Vector2(34.4039993F, -2.29200006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(38.2799988F, -0.300000012F));
+ builder.AddCubicBezier(new Vector2(38.9679985F, -0.660000026F), new Vector2(39.5200005F, -1.15999997F), new Vector2(39.9360008F, -1.79999995F));
+ builder.AddCubicBezier(new Vector2(40.3520012F, -2.44000006F), new Vector2(40.5839996F, -3.16799998F), new Vector2(40.632F, -3.98399997F));
+ builder.AddLine(new Vector2(40.632F, -7.41599989F));
+ builder.AddCubicBezier(new Vector2(40.5839996F, -8.24800014F), new Vector2(40.3479996F, -8.97999954F), new Vector2(39.9239998F, -9.61200047F));
+ builder.AddCubicBezier(new Vector2(39.5F, -10.2440004F), new Vector2(38.9440002F, -10.7399998F), new Vector2(38.2560005F, -11.1000004F));
+ builder.AddCubicBezier(new Vector2(37.5680008F, -11.46F), new Vector2(36.7919998F, -11.6400003F), new Vector2(35.9280014F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(34.8880005F, -11.6400003F), new Vector2(33.9519997F, -11.3760004F), new Vector2(33.1199989F, -10.8479996F));
+ builder.AddCubicBezier(new Vector2(32.2879982F, -10.3199997F), new Vector2(31.6280003F, -9.6079998F), new Vector2(31.1399994F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(30.6520004F, -7.81599998F), new Vector2(30.4080009F, -6.80800009F), new Vector2(30.4080009F, -5.6880002F));
+ builder.AddCubicBezier(new Vector2(30.4080009F, -4.56799984F), new Vector2(30.6520004F, -3.55999994F), new Vector2(31.1399994F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(31.6280003F, -1.76800001F), new Vector2(32.2879982F, -1.05999994F), new Vector2(33.1199989F, -0.540000021F));
+ builder.AddCubicBezier(new Vector2(33.9519997F, -0.0199999996F), new Vector2(34.8880005F, 0.239999995F), new Vector2(35.9280014F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(36.8079987F, 0.239999995F), new Vector2(37.5919991F, 0.0599999987F), new Vector2(38.2799988F, -0.300000012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0135()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(20.1359997F, 0F));
+ builder.AddLine(new Vector2(20.1359997F, -11.3999996F));
+ builder.AddLine(new Vector2(17.9759998F, -11.3999996F));
+ builder.AddLine(new Vector2(17.9759998F, 0F));
+ builder.AddLine(new Vector2(20.1359997F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(28.2000008F, 0F));
+ builder.AddLine(new Vector2(28.2000008F, -7.07999992F));
+ builder.AddCubicBezier(new Vector2(28.2000008F, -7.86399984F), new Vector2(28.0079994F, -8.60400009F), new Vector2(27.6240005F, -9.30000019F));
+ builder.AddCubicBezier(new Vector2(27.2399998F, -9.99600029F), new Vector2(26.7159996F, -10.5600004F), new Vector2(26.052F, -10.9919996F));
+ builder.AddCubicBezier(new Vector2(25.3880005F, -11.4239998F), new Vector2(24.6240005F, -11.6400003F), new Vector2(23.7600002F, -11.6400003F));
+ builder.AddCubicBezier(new Vector2(22.8959999F, -11.6400003F), new Vector2(22.1200008F, -11.4440002F), new Vector2(21.4319992F, -11.052F));
+ builder.AddCubicBezier(new Vector2(20.7439995F, -10.6599998F), new Vector2(20.2080002F, -10.1280003F), new Vector2(19.8239994F, -9.45600033F));
+ builder.AddCubicBezier(new Vector2(19.4400005F, -8.7840004F), new Vector2(19.2479992F, -8.01599979F), new Vector2(19.2479992F, -7.15199995F));
+ builder.AddLine(new Vector2(20.1359997F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(20.1359997F, -7.22399998F), new Vector2(20.2639999F, -7.73600006F), new Vector2(20.5200005F, -8.18400002F));
+ builder.AddCubicBezier(new Vector2(20.7759991F, -8.63199997F), new Vector2(21.1280003F, -8.98400021F), new Vector2(21.5760002F, -9.23999977F));
+ builder.AddCubicBezier(new Vector2(22.0240002F, -9.49600029F), new Vector2(22.5359993F, -9.6239996F), new Vector2(23.1119995F, -9.6239996F));
+ builder.AddCubicBezier(new Vector2(23.9759998F, -9.6239996F), new Vector2(24.6760006F, -9.34399986F), new Vector2(25.2119999F, -8.7840004F));
+ builder.AddCubicBezier(new Vector2(25.7479992F, -8.22399998F), new Vector2(26.0160007F, -7.51200008F), new Vector2(26.0160007F, -6.64799976F));
+ builder.AddLine(new Vector2(26.0160007F, 0F));
+ builder.AddLine(new Vector2(28.2000008F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Layer: © Collapse Project Outlines
+ CanvasGeometry Geometry_0136()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(11.5200005F, -0.600000024F));
+ builder.AddCubicBezier(new Vector2(12.4799995F, -1.15999997F), new Vector2(13.2399998F, -1.91999996F), new Vector2(13.8000002F, -2.88000011F));
+ builder.AddCubicBezier(new Vector2(14.3599997F, -3.83999991F), new Vector2(14.6400003F, -4.92799997F), new Vector2(14.6400003F, -6.14400005F));
+ builder.AddLine(new Vector2(14.6400003F, -16.6560001F));
+ builder.AddLine(new Vector2(12.3599997F, -16.6560001F));
+ builder.AddLine(new Vector2(12.3599997F, -6.19199991F));
+ builder.AddCubicBezier(new Vector2(12.3599997F, -5.32800007F), new Vector2(12.1800003F, -4.57600021F), new Vector2(11.8199997F, -3.93600011F));
+ builder.AddCubicBezier(new Vector2(11.46F, -3.296F), new Vector2(10.9720001F, -2.79999995F), new Vector2(10.3559999F, -2.44799995F));
+ builder.AddCubicBezier(new Vector2(9.73999977F, -2.09599996F), new Vector2(9.03199959F, -1.91999996F), new Vector2(8.23200035F, -1.91999996F));
+ builder.AddCubicBezier(new Vector2(7.43200016F, -1.91999996F), new Vector2(6.71600008F, -2.09599996F), new Vector2(6.08400011F, -2.44799995F));
+ builder.AddCubicBezier(new Vector2(5.45200014F, -2.79999995F), new Vector2(4.95200014F, -3.296F), new Vector2(4.58400011F, -3.93600011F));
+ builder.AddCubicBezier(new Vector2(4.21600008F, -4.57600021F), new Vector2(4.03200006F, -5.33599997F), new Vector2(4.03200006F, -6.21600008F));
+ builder.AddLine(new Vector2(4.03200006F, -16.6560001F));
+ builder.AddLine(new Vector2(1.75199997F, -16.6560001F));
+ builder.AddLine(new Vector2(1.75199997F, -6.16800022F));
+ builder.AddCubicBezier(new Vector2(1.75199997F, -4.95200014F), new Vector2(2.03600001F, -3.8599999F), new Vector2(2.60400009F, -2.89199996F));
+ builder.AddCubicBezier(new Vector2(3.17199993F, -1.92400002F), new Vector2(3.94400001F, -1.15999997F), new Vector2(4.92000008F, -0.600000024F));
+ builder.AddCubicBezier(new Vector2(5.89599991F, -0.0399999991F), new Vector2(7F, 0.239999995F), new Vector2(8.23200035F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(9.46399975F, 0.239999995F), new Vector2(10.5600004F, -0.0399999991F), new Vector2(11.5200005F, -0.600000024F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0137()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(23987.3887F, 0F));
+ builder.AddLine(new Vector2(23987.3887F, -201.916F));
+ builder.AddLine(new Vector2(23942.2012F, -201.916F));
+ builder.AddLine(new Vector2(23942.2012F, 0F));
+ builder.AddLine(new Vector2(23987.3887F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(24026.8574F, -73.5019989F));
+ builder.AddCubicBezier(new Vector2(24039.6289F, -73.5019989F), new Vector2(24051.2109F, -76.0759964F), new Vector2(24061.6055F, -81.223999F));
+ builder.AddCubicBezier(new Vector2(24071.9961F, -86.3720016F), new Vector2(24080.1953F, -93.7590027F), new Vector2(24086.2012F, -103.389F));
+ builder.AddCubicBezier(new Vector2(24092.209F, -113.014999F), new Vector2(24095.2109F, -124.410004F), new Vector2(24095.2109F, -137.565994F));
+ builder.AddCubicBezier(new Vector2(24095.2109F, -150.910004F), new Vector2(24092.209F, -162.399002F), new Vector2(24086.2012F, -172.029007F));
+ builder.AddCubicBezier(new Vector2(24080.1953F, -181.654999F), new Vector2(24071.9961F, -189.046005F), new Vector2(24061.6055F, -194.194F));
+ builder.AddCubicBezier(new Vector2(24051.2109F, -199.341995F), new Vector2(24039.6289F, -201.916F), new Vector2(24026.8574F, -201.916F));
+ builder.AddLine(new Vector2(23976.8066F, -201.916F));
+ builder.AddLine(new Vector2(23976.8066F, -166.738007F));
+ builder.AddLine(new Vector2(24020.2793F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(24025.8066F, -166.738007F), new Vector2(24030.8125F, -165.639008F), new Vector2(24035.2949F, -163.449005F));
+ builder.AddCubicBezier(new Vector2(24039.7715F, -161.255005F), new Vector2(24043.3477F, -157.966003F), new Vector2(24046.0195F, -153.582001F));
+ builder.AddCubicBezier(new Vector2(24048.6875F, -149.194F), new Vector2(24050.0234F, -143.858002F), new Vector2(24050.0234F, -137.565994F));
+ builder.AddCubicBezier(new Vector2(24050.0234F, -131.462006F), new Vector2(24048.6875F, -126.220001F), new Vector2(24046.0195F, -121.835999F));
+ builder.AddCubicBezier(new Vector2(24043.3477F, -117.447998F), new Vector2(24039.7715F, -114.158997F), new Vector2(24035.2949F, -111.969002F));
+ builder.AddCubicBezier(new Vector2(24030.8125F, -109.775002F), new Vector2(24025.8066F, -108.68F), new Vector2(24020.2793F, -108.68F));
+ builder.AddLine(new Vector2(23976.8066F, -108.68F));
+ builder.AddLine(new Vector2(23976.8066F, -73.5019989F));
+ builder.AddLine(new Vector2(24026.8574F, -73.5019989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0138()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(23851.5391F, -36.3219986F));
+ builder.AddLine(new Vector2(23851.5391F, -72.9300003F));
+ builder.AddLine(new Vector2(23741.7168F, -72.9300003F));
+ builder.AddLine(new Vector2(23741.7168F, -36.3219986F));
+ builder.AddLine(new Vector2(23851.5391F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(23742.5742F, 0F));
+ builder.AddLine(new Vector2(23804.3496F, -167.309998F));
+ builder.AddLine(new Vector2(23787.7617F, -167.309998F));
+ builder.AddLine(new Vector2(23848.1074F, 0F));
+ builder.AddLine(new Vector2(23895.8691F, 0F));
+ builder.AddLine(new Vector2(23816.6484F, -201.916F));
+ builder.AddLine(new Vector2(23775.75F, -201.916F));
+ builder.AddLine(new Vector2(23695.9551F, 0F));
+ builder.AddLine(new Vector2(23742.5742F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0139()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(23665.3516F, 0F));
+ builder.AddLine(new Vector2(23665.3516F, -39.4679985F));
+ builder.AddLine(new Vector2(23565.5391F, -39.4679985F));
+ builder.AddLine(new Vector2(23565.5391F, 0F));
+ builder.AddLine(new Vector2(23665.3516F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(23575.834F, 0F));
+ builder.AddLine(new Vector2(23575.834F, -201.916F));
+ builder.AddLine(new Vector2(23530.6465F, -201.916F));
+ builder.AddLine(new Vector2(23530.6465F, 0F));
+ builder.AddLine(new Vector2(23575.834F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0140()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(23473.4473F, -163.020004F));
+ builder.AddLine(new Vector2(23473.4473F, -201.916F));
+ builder.AddLine(new Vector2(23364.1953F, -201.916F));
+ builder.AddLine(new Vector2(23364.1953F, -163.020004F));
+ builder.AddLine(new Vector2(23473.4473F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(23464.8672F, -84.0839996F));
+ builder.AddLine(new Vector2(23464.8672F, -122.122002F));
+ builder.AddLine(new Vector2(23364.1953F, -122.122002F));
+ builder.AddLine(new Vector2(23364.1953F, -84.0839996F));
+ builder.AddLine(new Vector2(23464.8672F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(23475.1641F, 0F));
+ builder.AddLine(new Vector2(23475.1641F, -38.8959999F));
+ builder.AddLine(new Vector2(23364.1953F, -38.8959999F));
+ builder.AddLine(new Vector2(23364.1953F, 0F));
+ builder.AddLine(new Vector2(23475.1641F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(23374.7773F, 0F));
+ builder.AddLine(new Vector2(23374.7773F, -201.916F));
+ builder.AddLine(new Vector2(23329.5898F, -201.916F));
+ builder.AddLine(new Vector2(23329.5898F, 0F));
+ builder.AddLine(new Vector2(23374.7773F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0141()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(23228.4883F, -9.29500008F));
+ builder.AddCubicBezier(new Vector2(23243.834F, -17.7770004F), new Vector2(23255.8477F, -30.316F), new Vector2(23264.5254F, -46.9039993F));
+ builder.AddCubicBezier(new Vector2(23273.1992F, -63.4920006F), new Vector2(23277.5371F, -83.7979965F), new Vector2(23277.5371F, -107.821999F));
+ builder.AddLine(new Vector2(23277.5371F, -114.400002F));
+ builder.AddLine(new Vector2(23171.4316F, -114.400002F));
+ builder.AddLine(new Vector2(23171.4316F, -76.3619995F));
+ builder.AddLine(new Vector2(23261.5215F, -74.9319992F));
+ builder.AddLine(new Vector2(23231.4922F, -94.9520035F));
+ builder.AddCubicBezier(new Vector2(23231.4922F, -82.9400024F), new Vector2(23229.248F, -72.6439972F), new Vector2(23224.7715F, -64.064003F));
+ builder.AddCubicBezier(new Vector2(23220.2891F, -55.4840012F), new Vector2(23213.9023F, -48.9510002F), new Vector2(23205.6094F, -44.4729996F));
+ builder.AddCubicBezier(new Vector2(23197.3145F, -39.9910011F), new Vector2(23187.3496F, -37.7519989F), new Vector2(23175.7227F, -37.7519989F));
+ builder.AddCubicBezier(new Vector2(23164.0898F, -37.7519989F), new Vector2(23153.793F, -40.4690018F), new Vector2(23144.834F, -45.9029999F));
+ builder.AddCubicBezier(new Vector2(23135.8691F, -51.3370018F), new Vector2(23128.8184F, -58.8180008F), new Vector2(23123.6699F, -68.3539963F));
+ builder.AddCubicBezier(new Vector2(23118.5215F, -77.8860016F), new Vector2(23115.9473F, -88.8479996F), new Vector2(23115.9473F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(23115.9473F, -113.828003F), new Vector2(23118.5664F, -124.838997F), new Vector2(23123.8125F, -134.276993F));
+ builder.AddCubicBezier(new Vector2(23129.0547F, -143.714996F), new Vector2(23136.3477F, -151.052994F), new Vector2(23145.6914F, -156.298996F));
+ builder.AddCubicBezier(new Vector2(23155.0312F, -161.541F), new Vector2(23165.6133F, -164.164001F), new Vector2(23177.4375F, -164.164001F));
+ builder.AddCubicBezier(new Vector2(23188.3066F, -164.164001F), new Vector2(23198.1738F, -162.018997F), new Vector2(23207.0391F, -157.729004F));
+ builder.AddCubicBezier(new Vector2(23215.9043F, -153.438995F), new Vector2(23223.4844F, -147.098007F), new Vector2(23229.7754F, -138.710007F));
+ builder.AddLine(new Vector2(23260.6641F, -169.598007F));
+ builder.AddCubicBezier(new Vector2(23251.3203F, -180.654007F), new Vector2(23239.5F, -189.376999F), new Vector2(23225.1992F, -195.766998F));
+ builder.AddCubicBezier(new Vector2(23210.9004F, -202.153F), new Vector2(23195.0723F, -205.348007F), new Vector2(23177.7246F, -205.348007F));
+ builder.AddCubicBezier(new Vector2(23162.6602F, -205.348007F), new Vector2(23148.5977F, -202.675995F), new Vector2(23135.5391F, -197.339996F));
+ builder.AddCubicBezier(new Vector2(23122.4766F, -192F), new Vector2(23110.9883F, -184.613007F), new Vector2(23101.0762F, -175.175003F));
+ builder.AddCubicBezier(new Vector2(23091.1602F, -165.737F), new Vector2(23083.4375F, -154.770996F), new Vector2(23077.9102F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(23072.377F, -129.794998F), new Vector2(23069.6152F, -116.115997F), new Vector2(23069.6152F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(23069.6152F, -86.5599976F), new Vector2(23072.332F, -72.9300003F), new Vector2(23077.7676F, -60.3460007F));
+ builder.AddCubicBezier(new Vector2(23083.2012F, -47.762001F), new Vector2(23090.6816F, -36.7019997F), new Vector2(23100.2188F, -27.1700001F));
+ builder.AddCubicBezier(new Vector2(23109.75F, -17.6340008F), new Vector2(23120.9531F, -10.1529999F), new Vector2(23133.8223F, -4.71899986F));
+ builder.AddCubicBezier(new Vector2(23146.6934F, 0.714999974F), new Vector2(23160.5645F, 3.43199992F), new Vector2(23175.4355F, 3.43199992F));
+ builder.AddCubicBezier(new Vector2(23195.4551F, 3.43199992F), new Vector2(23213.1387F, -0.809000015F), new Vector2(23228.4883F, -9.29500008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0142()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(23000.1172F, -36.3219986F));
+ builder.AddLine(new Vector2(23000.1172F, -72.9300003F));
+ builder.AddLine(new Vector2(22890.2949F, -72.9300003F));
+ builder.AddLine(new Vector2(22890.2949F, -36.3219986F));
+ builder.AddLine(new Vector2(23000.1172F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(22891.1523F, 0F));
+ builder.AddLine(new Vector2(22952.9277F, -167.309998F));
+ builder.AddLine(new Vector2(22936.3398F, -167.309998F));
+ builder.AddLine(new Vector2(22996.6855F, 0F));
+ builder.AddLine(new Vector2(23044.4473F, 0F));
+ builder.AddLine(new Vector2(22965.2266F, -201.916F));
+ builder.AddLine(new Vector2(22924.3281F, -201.916F));
+ builder.AddLine(new Vector2(22844.5332F, 0F));
+ builder.AddLine(new Vector2(22891.1523F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0143()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(22795.627F, 0F));
+ builder.AddLine(new Vector2(22795.627F, -201.916F));
+ builder.AddLine(new Vector2(22750.4395F, -201.916F));
+ builder.AddLine(new Vector2(22750.4395F, 0F));
+ builder.AddLine(new Vector2(22795.627F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0144()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(22676.6504F, -13.2989998F));
+ builder.AddCubicBezier(new Vector2(22690.3789F, -24.2609997F), new Vector2(22697.2422F, -39.3699989F), new Vector2(22697.2422F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(22697.2422F, -69.3059998F), new Vector2(22695.4785F, -78.1719971F), new Vector2(22691.9512F, -85.2279968F));
+ builder.AddCubicBezier(new Vector2(22688.4219F, -92.2799988F), new Vector2(22683.8945F, -98.1920013F), new Vector2(22678.3672F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(22672.834F, -107.723999F), new Vector2(22666.6855F, -111.584999F), new Vector2(22659.9199F, -114.542999F));
+ builder.AddCubicBezier(new Vector2(22653.1504F, -117.497002F), new Vector2(22646.3789F, -120.120003F), new Vector2(22639.6133F, -122.407997F));
+ builder.AddCubicBezier(new Vector2(22632.8438F, -124.695999F), new Vector2(22626.6465F, -126.984001F), new Vector2(22621.0234F, -129.272003F));
+ builder.AddCubicBezier(new Vector2(22615.3984F, -131.559998F), new Vector2(22610.8711F, -134.276993F), new Vector2(22607.4395F, -137.423004F));
+ builder.AddCubicBezier(new Vector2(22604.0078F, -140.569F), new Vector2(22602.291F, -144.617996F), new Vector2(22602.291F, -149.578003F));
+ builder.AddCubicBezier(new Vector2(22602.291F, -155.106003F), new Vector2(22604.5781F, -159.347F), new Vector2(22609.1543F, -162.304993F));
+ builder.AddCubicBezier(new Vector2(22613.7305F, -165.259003F), new Vector2(22619.9238F, -166.738007F), new Vector2(22627.7441F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(22635.3691F, -166.738007F), new Vector2(22642.2812F, -165.210007F), new Vector2(22648.4805F, -162.162003F));
+ builder.AddCubicBezier(new Vector2(22654.6738F, -159.110001F), new Vector2(22660.8223F, -154.440002F), new Vector2(22666.9277F, -148.147995F));
+ builder.AddLine(new Vector2(22696.3848F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(22688.7578F, -185.994003F), new Vector2(22679.127F, -192.666F), new Vector2(22667.5F, -197.626007F));
+ builder.AddCubicBezier(new Vector2(22655.8672F, -202.582001F), new Vector2(22642.9023F, -205.061996F), new Vector2(22628.6035F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(22614.875F, -205.061996F), new Vector2(22602.5762F, -202.725006F), new Vector2(22591.709F, -198.054993F));
+ builder.AddCubicBezier(new Vector2(22580.8418F, -193.380997F), new Vector2(22572.4043F, -186.565994F), new Vector2(22566.3984F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(22560.3926F, -168.641998F), new Vector2(22557.3887F, -157.871994F), new Vector2(22557.3887F, -145.287994F));
+ builder.AddCubicBezier(new Vector2(22557.3887F, -135.179993F), new Vector2(22559.1055F, -126.697998F), new Vector2(22562.5371F, -119.834F));
+ builder.AddCubicBezier(new Vector2(22565.9688F, -112.970001F), new Vector2(22570.4961F, -107.344002F), new Vector2(22576.123F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(22581.7441F, -98.5719986F), new Vector2(22587.9414F, -94.8539963F), new Vector2(22594.7129F, -91.8059998F));
+ builder.AddCubicBezier(new Vector2(22601.4785F, -88.7539978F), new Vector2(22608.1992F, -86.1309967F), new Vector2(22614.875F, -83.9410019F));
+ builder.AddCubicBezier(new Vector2(22621.5469F, -81.7470016F), new Vector2(22627.7441F, -79.4100037F), new Vector2(22633.4648F, -76.9339981F));
+ builder.AddCubicBezier(new Vector2(22639.1855F, -74.4540024F), new Vector2(22643.7129F, -71.5F), new Vector2(22647.0508F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(22650.3828F, -64.6360016F), new Vector2(22652.0547F, -60.2480011F), new Vector2(22652.0547F, -54.9119987F));
+ builder.AddCubicBezier(new Vector2(22652.0547F, -48.8079987F), new Vector2(22649.4316F, -43.9949989F), new Vector2(22644.1895F, -40.4690018F));
+ builder.AddCubicBezier(new Vector2(22638.9434F, -36.9389992F), new Vector2(22631.6504F, -35.1780014F), new Vector2(22622.3105F, -35.1780014F));
+ builder.AddCubicBezier(new Vector2(22611.8223F, -35.1780014F), new Vector2(22602.6211F, -37.2249985F), new Vector2(22594.7129F, -41.3269997F));
+ builder.AddCubicBezier(new Vector2(22586.7988F, -45.4249992F), new Vector2(22579.5996F, -51.1940002F), new Vector2(22573.1191F, -58.6300011F));
+ builder.AddLine(new Vector2(22543.9473F, -29.4580002F));
+ builder.AddCubicBezier(new Vector2(22553.6719F, -18.3980007F), new Vector2(22564.4902F, -10.198F), new Vector2(22576.4082F, -4.86199999F));
+ builder.AddCubicBezier(new Vector2(22588.3223F, 0.474000007F), new Vector2(22602.6719F, 3.14599991F), new Vector2(22619.4512F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(22643.8555F, 3.14599991F), new Vector2(22662.9238F, -2.33299994F), new Vector2(22676.6504F, -13.2989998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0145()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(22506.4805F, -163.020004F));
+ builder.AddLine(new Vector2(22506.4805F, -201.916F));
+ builder.AddLine(new Vector2(22397.2285F, -201.916F));
+ builder.AddLine(new Vector2(22397.2285F, -163.020004F));
+ builder.AddLine(new Vector2(22506.4805F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(22497.9004F, -84.0839996F));
+ builder.AddLine(new Vector2(22497.9004F, -122.122002F));
+ builder.AddLine(new Vector2(22397.2285F, -122.122002F));
+ builder.AddLine(new Vector2(22397.2285F, -84.0839996F));
+ builder.AddLine(new Vector2(22497.9004F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(22508.1973F, 0F));
+ builder.AddLine(new Vector2(22508.1973F, -38.8959999F));
+ builder.AddLine(new Vector2(22397.2285F, -38.8959999F));
+ builder.AddLine(new Vector2(22397.2285F, 0F));
+ builder.AddLine(new Vector2(22508.1973F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(22407.8105F, 0F));
+ builder.AddLine(new Vector2(22407.8105F, -201.916F));
+ builder.AddLine(new Vector2(22362.623F, -201.916F));
+ builder.AddLine(new Vector2(22362.623F, 0F));
+ builder.AddLine(new Vector2(22407.8105F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0146()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(22299.1309F, 0F));
+ builder.AddLine(new Vector2(22299.1309F, -201.916F));
+ builder.AddLine(new Vector2(22253.6562F, -201.916F));
+ builder.AddLine(new Vector2(22253.6562F, -40.3260002F));
+ builder.AddLine(new Vector2(22265.668F, 0F));
+ builder.AddLine(new Vector2(22299.1309F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(22277.1094F, -49.4780006F));
+ builder.AddLine(new Vector2(22158.1328F, -201.916F));
+ builder.AddLine(new Vector2(22146.9785F, -152.438004F));
+ builder.AddLine(new Vector2(22265.668F, 0F));
+ builder.AddLine(new Vector2(22277.1094F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(22171.5742F, 0F));
+ builder.AddLine(new Vector2(22171.5742F, -161.589996F));
+ builder.AddLine(new Vector2(22158.1328F, -201.916F));
+ builder.AddLine(new Vector2(22126.3867F, -201.916F));
+ builder.AddLine(new Vector2(22126.3867F, 0F));
+ builder.AddLine(new Vector2(22171.5742F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0147()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(21942.0605F, -42.1850014F));
+ builder.AddCubicBezier(new Vector2(21934.7188F, -45.1389999F), new Vector2(21928.377F, -49.4290009F), new Vector2(21923.041F, -55.0550003F));
+ builder.AddCubicBezier(new Vector2(21917.7012F, -60.6769981F), new Vector2(21913.6035F, -67.3980026F), new Vector2(21910.7441F, -75.2180023F));
+ builder.AddCubicBezier(new Vector2(21907.8848F, -83.0339966F), new Vector2(21906.4531F, -91.7080002F), new Vector2(21906.4531F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(21906.4531F, -113.828003F), new Vector2(21908.9297F, -124.838997F), new Vector2(21913.8906F, -134.276993F));
+ builder.AddCubicBezier(new Vector2(21918.8457F, -143.714996F), new Vector2(21925.8535F, -151.052994F), new Vector2(21934.9102F, -156.298996F));
+ builder.AddCubicBezier(new Vector2(21943.9648F, -161.541F), new Vector2(21954.502F, -164.164001F), new Vector2(21966.5137F, -164.164001F));
+ builder.AddCubicBezier(new Vector2(21975.2812F, -164.164001F), new Vector2(21983.3887F, -162.684998F), new Vector2(21990.8242F, -159.731003F));
+ builder.AddCubicBezier(new Vector2(21998.2598F, -156.772995F), new Vector2(22004.6465F, -152.483002F), new Vector2(22009.9863F, -146.860992F));
+ builder.AddCubicBezier(new Vector2(22015.3223F, -141.235001F), new Vector2(22019.4238F, -134.563004F), new Vector2(22022.2832F, -126.841003F));
+ builder.AddCubicBezier(new Vector2(22025.1445F, -119.119003F), new Vector2(22026.5742F, -110.584F), new Vector2(22026.5742F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(22026.5742F, -88.6600037F), new Vector2(22024.0449F, -77.5999985F), new Vector2(22018.9941F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(22013.9414F, -58.5320015F), new Vector2(22006.9336F, -51.0960007F), new Vector2(21997.9746F, -45.7599983F));
+ builder.AddCubicBezier(new Vector2(21989.0098F, -40.4199982F), new Vector2(21978.5254F, -37.7519989F), new Vector2(21966.5137F, -37.7519989F));
+ builder.AddCubicBezier(new Vector2(21957.5488F, -37.7519989F), new Vector2(21949.3984F, -39.2270012F), new Vector2(21942.0605F, -42.1850014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(22008.8418F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(22021.6133F, -9.9119997F), new Vector2(22032.7676F, -17.3029995F), new Vector2(22042.3047F, -26.7409992F));
+ builder.AddCubicBezier(new Vector2(22051.8359F, -36.1790009F), new Vector2(22059.2715F, -47.2350006F), new Vector2(22064.6113F, -59.9169998F));
+ builder.AddCubicBezier(new Vector2(22069.9473F, -72.5950012F), new Vector2(22072.6191F, -86.2740021F), new Vector2(22072.6191F, -100.958F));
+ builder.AddCubicBezier(new Vector2(22072.6191F, -115.830002F), new Vector2(22069.9961F, -129.602997F), new Vector2(22064.7539F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(22059.5078F, -154.962997F), new Vector2(22052.0273F, -166.022995F), new Vector2(22042.3047F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(22032.5801F, -184.899002F), new Vector2(22021.2832F, -192.237F), new Vector2(22008.4121F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(21995.543F, -202.725006F), new Vector2(21981.5742F, -205.348007F), new Vector2(21966.5137F, -205.348007F));
+ builder.AddCubicBezier(new Vector2(21951.2578F, -205.348007F), new Vector2(21937.1504F, -202.725006F), new Vector2(21924.1855F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(21911.2168F, -192.237F), new Vector2(21899.9688F, -184.899002F), new Vector2(21890.4375F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(21880.9023F, -166.022995F), new Vector2(21873.4648F, -155.011993F), new Vector2(21868.1289F, -142.427994F));
+ builder.AddCubicBezier(new Vector2(21862.7891F, -129.843994F), new Vector2(21860.1211F, -116.115997F), new Vector2(21860.1211F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(21860.1211F, -86.5599976F), new Vector2(21862.7891F, -72.8809967F), new Vector2(21868.1289F, -60.2029991F));
+ builder.AddCubicBezier(new Vector2(21873.4648F, -47.5209999F), new Vector2(21881F, -36.4160004F), new Vector2(21890.7246F, -26.8840008F));
+ builder.AddCubicBezier(new Vector2(21900.4473F, -17.3479996F), new Vector2(21911.7891F, -9.9119997F), new Vector2(21924.7578F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(21937.7227F, 0.75999999F), new Vector2(21951.8301F, 3.43199992F), new Vector2(21967.0859F, 3.43199992F));
+ builder.AddCubicBezier(new Vector2(21982.1465F, 3.43199992F), new Vector2(21996.0664F, 0.75999999F), new Vector2(22008.8418F, -4.57600021F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0148()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(21674.793F, 0F));
+ builder.AddLine(new Vector2(21674.793F, -201.916F));
+ builder.AddLine(new Vector2(21629.6055F, -201.916F));
+ builder.AddLine(new Vector2(21629.6055F, 0F));
+ builder.AddLine(new Vector2(21674.793F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(21711.4004F, 0F));
+ builder.AddCubicBezier(new Vector2(21726.4609F, 0F), new Vector2(21740.4297F, -2.47600007F), new Vector2(21753.3008F, -7.43599987F));
+ builder.AddCubicBezier(new Vector2(21766.1699F, -12.3920002F), new Vector2(21777.3691F, -19.3990002F), new Vector2(21786.9062F, -28.4570007F));
+ builder.AddCubicBezier(new Vector2(21796.4375F, -37.5110016F), new Vector2(21803.873F, -48.1910019F), new Vector2(21809.2129F, -60.4889984F));
+ builder.AddCubicBezier(new Vector2(21814.5488F, -72.7870026F), new Vector2(21817.2207F, -86.2740021F), new Vector2(21817.2207F, -100.958F));
+ builder.AddCubicBezier(new Vector2(21817.2207F, -116.017998F), new Vector2(21814.5488F, -129.651993F), new Vector2(21809.2129F, -141.856003F));
+ builder.AddCubicBezier(new Vector2(21803.873F, -154.056F), new Vector2(21796.3887F, -164.686996F), new Vector2(21786.7617F, -173.744995F));
+ builder.AddCubicBezier(new Vector2(21777.1328F, -182.798996F), new Vector2(21765.8848F, -189.761002F), new Vector2(21753.0137F, -194.623001F));
+ builder.AddCubicBezier(new Vector2(21740.1445F, -199.485001F), new Vector2(21726.082F, -201.916F), new Vector2(21710.8301F, -201.916F));
+ builder.AddLine(new Vector2(21659.0625F, -201.916F));
+ builder.AddLine(new Vector2(21659.0625F, -162.447998F));
+ builder.AddLine(new Vector2(21710.2578F, -162.447998F));
+ builder.AddCubicBezier(new Vector2(21722.2695F, -162.447998F), new Vector2(21732.8027F, -160.016998F), new Vector2(21741.8613F, -155.154999F));
+ builder.AddCubicBezier(new Vector2(21750.9141F, -150.292999F), new Vector2(21757.9707F, -143.237F), new Vector2(21763.0234F, -133.990997F));
+ builder.AddCubicBezier(new Vector2(21768.0742F, -124.740997F), new Vector2(21770.6035F, -113.828003F), new Vector2(21770.6035F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(21770.6035F, -88.4680023F), new Vector2(21768.123F, -77.4570007F), new Vector2(21763.168F, -68.2109985F));
+ builder.AddCubicBezier(new Vector2(21758.207F, -58.9609985F), new Vector2(21751.1992F, -51.8600006F), new Vector2(21742.1465F, -46.9039993F));
+ builder.AddCubicBezier(new Vector2(21733.0879F, -41.9440002F), new Vector2(21722.457F, -39.4679985F), new Vector2(21710.2578F, -39.4679985F));
+ builder.AddLine(new Vector2(21660.4941F, -39.4679985F));
+ builder.AddLine(new Vector2(21660.4941F, 0F));
+ builder.AddLine(new Vector2(21711.4004F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0149()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(21566.1133F, 0F));
+ builder.AddLine(new Vector2(21566.1133F, -201.916F));
+ builder.AddLine(new Vector2(21520.6387F, -201.916F));
+ builder.AddLine(new Vector2(21520.6387F, -40.3260002F));
+ builder.AddLine(new Vector2(21532.6504F, 0F));
+ builder.AddLine(new Vector2(21566.1133F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(21544.0918F, -49.4780006F));
+ builder.AddLine(new Vector2(21425.1152F, -201.916F));
+ builder.AddLine(new Vector2(21413.9609F, -152.438004F));
+ builder.AddLine(new Vector2(21532.6504F, 0F));
+ builder.AddLine(new Vector2(21544.0918F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(21438.5566F, 0F));
+ builder.AddLine(new Vector2(21438.5566F, -161.589996F));
+ builder.AddLine(new Vector2(21425.1152F, -201.916F));
+ builder.AddLine(new Vector2(21393.3691F, -201.916F));
+ builder.AddLine(new Vector2(21393.3691F, 0F));
+ builder.AddLine(new Vector2(21438.5566F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0150()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(21329.5918F, 0F));
+ builder.AddLine(new Vector2(21329.5918F, -201.916F));
+ builder.AddLine(new Vector2(21284.4043F, -201.916F));
+ builder.AddLine(new Vector2(21284.4043F, 0F));
+ builder.AddLine(new Vector2(21329.5918F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0151()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(21230.0645F, -117.260002F));
+ builder.AddLine(new Vector2(21230.0645F, -148.720001F));
+ builder.AddLine(new Vector2(21070.1895F, -148.720001F));
+ builder.AddLine(new Vector2(21070.1895F, -117.260002F));
+ builder.AddLine(new Vector2(21230.0645F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(21113.6621F, 0F));
+ builder.AddLine(new Vector2(21146.8379F, -201.916F));
+ builder.AddLine(new Vector2(21111.0879F, -201.916F));
+ builder.AddLine(new Vector2(21077.627F, 0F));
+ builder.AddLine(new Vector2(21113.6621F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(21220.627F, -57.4860001F));
+ builder.AddLine(new Vector2(21220.627F, -88.9459991F));
+ builder.AddLine(new Vector2(21060.4668F, -88.9459991F));
+ builder.AddLine(new Vector2(21060.4668F, -57.4860001F));
+ builder.AddLine(new Vector2(21220.627F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(21177.7266F, 0F));
+ builder.AddLine(new Vector2(21211.4746F, -201.916F));
+ builder.AddLine(new Vector2(21175.4375F, -201.916F));
+ builder.AddLine(new Vector2(21142.2617F, 0F));
+ builder.AddLine(new Vector2(21177.7266F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0152()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(20976.9531F, -36.3219986F));
+ builder.AddLine(new Vector2(20976.9531F, -72.9300003F));
+ builder.AddLine(new Vector2(20867.1309F, -72.9300003F));
+ builder.AddLine(new Vector2(20867.1309F, -36.3219986F));
+ builder.AddLine(new Vector2(20976.9531F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(20867.9883F, 0F));
+ builder.AddLine(new Vector2(20929.7637F, -167.309998F));
+ builder.AddLine(new Vector2(20913.1758F, -167.309998F));
+ builder.AddLine(new Vector2(20973.5215F, 0F));
+ builder.AddLine(new Vector2(21021.2832F, 0F));
+ builder.AddLine(new Vector2(20942.0625F, -201.916F));
+ builder.AddLine(new Vector2(20901.1641F, -201.916F));
+ builder.AddLine(new Vector2(20821.3691F, 0F));
+ builder.AddLine(new Vector2(20867.9883F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0153()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(20772.4629F, 0F));
+ builder.AddLine(new Vector2(20772.4629F, -201.916F));
+ builder.AddLine(new Vector2(20727.2754F, -201.916F));
+ builder.AddLine(new Vector2(20727.2754F, 0F));
+ builder.AddLine(new Vector2(20772.4629F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0154()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(20653.4863F, -13.2989998F));
+ builder.AddCubicBezier(new Vector2(20667.2148F, -24.2609997F), new Vector2(20674.0781F, -39.3699989F), new Vector2(20674.0781F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(20674.0781F, -69.3059998F), new Vector2(20672.3145F, -78.1719971F), new Vector2(20668.7871F, -85.2279968F));
+ builder.AddCubicBezier(new Vector2(20665.2578F, -92.2799988F), new Vector2(20660.7305F, -98.1920013F), new Vector2(20655.2031F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(20649.6699F, -107.723999F), new Vector2(20643.5215F, -111.584999F), new Vector2(20636.7559F, -114.542999F));
+ builder.AddCubicBezier(new Vector2(20629.9863F, -117.497002F), new Vector2(20623.2148F, -120.120003F), new Vector2(20616.4492F, -122.407997F));
+ builder.AddCubicBezier(new Vector2(20609.6797F, -124.695999F), new Vector2(20603.4824F, -126.984001F), new Vector2(20597.8594F, -129.272003F));
+ builder.AddCubicBezier(new Vector2(20592.2344F, -131.559998F), new Vector2(20587.707F, -134.276993F), new Vector2(20584.2754F, -137.423004F));
+ builder.AddCubicBezier(new Vector2(20580.8438F, -140.569F), new Vector2(20579.127F, -144.617996F), new Vector2(20579.127F, -149.578003F));
+ builder.AddCubicBezier(new Vector2(20579.127F, -155.106003F), new Vector2(20581.4141F, -159.347F), new Vector2(20585.9902F, -162.304993F));
+ builder.AddCubicBezier(new Vector2(20590.5664F, -165.259003F), new Vector2(20596.7598F, -166.738007F), new Vector2(20604.5801F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(20612.2051F, -166.738007F), new Vector2(20619.1172F, -165.210007F), new Vector2(20625.3164F, -162.162003F));
+ builder.AddCubicBezier(new Vector2(20631.5098F, -159.110001F), new Vector2(20637.6582F, -154.440002F), new Vector2(20643.7637F, -148.147995F));
+ builder.AddLine(new Vector2(20673.2207F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(20665.5938F, -185.994003F), new Vector2(20655.9629F, -192.666F), new Vector2(20644.3359F, -197.626007F));
+ builder.AddCubicBezier(new Vector2(20632.7031F, -202.582001F), new Vector2(20619.7383F, -205.061996F), new Vector2(20605.4395F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(20591.7109F, -205.061996F), new Vector2(20579.4121F, -202.725006F), new Vector2(20568.5449F, -198.054993F));
+ builder.AddCubicBezier(new Vector2(20557.6777F, -193.380997F), new Vector2(20549.2402F, -186.565994F), new Vector2(20543.2344F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(20537.2285F, -168.641998F), new Vector2(20534.2246F, -157.871994F), new Vector2(20534.2246F, -145.287994F));
+ builder.AddCubicBezier(new Vector2(20534.2246F, -135.179993F), new Vector2(20535.9414F, -126.697998F), new Vector2(20539.373F, -119.834F));
+ builder.AddCubicBezier(new Vector2(20542.8047F, -112.970001F), new Vector2(20547.332F, -107.344002F), new Vector2(20552.959F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(20558.5801F, -98.5719986F), new Vector2(20564.7773F, -94.8539963F), new Vector2(20571.5488F, -91.8059998F));
+ builder.AddCubicBezier(new Vector2(20578.3145F, -88.7539978F), new Vector2(20585.0352F, -86.1309967F), new Vector2(20591.7109F, -83.9410019F));
+ builder.AddCubicBezier(new Vector2(20598.3828F, -81.7470016F), new Vector2(20604.5801F, -79.4100037F), new Vector2(20610.3008F, -76.9339981F));
+ builder.AddCubicBezier(new Vector2(20616.0215F, -74.4540024F), new Vector2(20620.5488F, -71.5F), new Vector2(20623.8867F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(20627.2188F, -64.6360016F), new Vector2(20628.8906F, -60.2480011F), new Vector2(20628.8906F, -54.9119987F));
+ builder.AddCubicBezier(new Vector2(20628.8906F, -48.8079987F), new Vector2(20626.2676F, -43.9949989F), new Vector2(20621.0254F, -40.4690018F));
+ builder.AddCubicBezier(new Vector2(20615.7793F, -36.9389992F), new Vector2(20608.4863F, -35.1780014F), new Vector2(20599.1465F, -35.1780014F));
+ builder.AddCubicBezier(new Vector2(20588.6582F, -35.1780014F), new Vector2(20579.457F, -37.2249985F), new Vector2(20571.5488F, -41.3269997F));
+ builder.AddCubicBezier(new Vector2(20563.6348F, -45.4249992F), new Vector2(20556.4355F, -51.1940002F), new Vector2(20549.9551F, -58.6300011F));
+ builder.AddLine(new Vector2(20520.7832F, -29.4580002F));
+ builder.AddCubicBezier(new Vector2(20530.5078F, -18.3980007F), new Vector2(20541.3262F, -10.198F), new Vector2(20553.2441F, -4.86199999F));
+ builder.AddCubicBezier(new Vector2(20565.1582F, 0.474000007F), new Vector2(20579.5078F, 3.14599991F), new Vector2(20596.2871F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(20620.6914F, 3.14599991F), new Vector2(20639.7598F, -2.33299994F), new Vector2(20653.4863F, -13.2989998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0155()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(20483.3164F, -163.020004F));
+ builder.AddLine(new Vector2(20483.3164F, -201.916F));
+ builder.AddLine(new Vector2(20374.0645F, -201.916F));
+ builder.AddLine(new Vector2(20374.0645F, -163.020004F));
+ builder.AddLine(new Vector2(20483.3164F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(20474.7363F, -84.0839996F));
+ builder.AddLine(new Vector2(20474.7363F, -122.122002F));
+ builder.AddLine(new Vector2(20374.0645F, -122.122002F));
+ builder.AddLine(new Vector2(20374.0645F, -84.0839996F));
+ builder.AddLine(new Vector2(20474.7363F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(20485.0332F, 0F));
+ builder.AddLine(new Vector2(20485.0332F, -38.8959999F));
+ builder.AddLine(new Vector2(20374.0645F, -38.8959999F));
+ builder.AddLine(new Vector2(20374.0645F, 0F));
+ builder.AddLine(new Vector2(20485.0332F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(20384.6465F, 0F));
+ builder.AddLine(new Vector2(20384.6465F, -201.916F));
+ builder.AddLine(new Vector2(20339.459F, -201.916F));
+ builder.AddLine(new Vector2(20339.459F, 0F));
+ builder.AddLine(new Vector2(20384.6465F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0156()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(20275.9688F, 0F));
+ builder.AddLine(new Vector2(20275.9688F, -201.916F));
+ builder.AddLine(new Vector2(20230.4941F, -201.916F));
+ builder.AddLine(new Vector2(20230.4941F, -40.3260002F));
+ builder.AddLine(new Vector2(20242.5059F, 0F));
+ builder.AddLine(new Vector2(20275.9688F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(20253.9473F, -49.4780006F));
+ builder.AddLine(new Vector2(20134.9707F, -201.916F));
+ builder.AddLine(new Vector2(20123.8164F, -152.438004F));
+ builder.AddLine(new Vector2(20242.5059F, 0F));
+ builder.AddLine(new Vector2(20253.9473F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(20148.4121F, 0F));
+ builder.AddLine(new Vector2(20148.4121F, -161.589996F));
+ builder.AddLine(new Vector2(20134.9707F, -201.916F));
+ builder.AddLine(new Vector2(20103.2246F, -201.916F));
+ builder.AddLine(new Vector2(20103.2246F, 0F));
+ builder.AddLine(new Vector2(20148.4121F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0157()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(19918.8965F, -42.1850014F));
+ builder.AddCubicBezier(new Vector2(19911.5547F, -45.1389999F), new Vector2(19905.2129F, -49.4290009F), new Vector2(19899.877F, -55.0550003F));
+ builder.AddCubicBezier(new Vector2(19894.5371F, -60.6769981F), new Vector2(19890.4395F, -67.3980026F), new Vector2(19887.5801F, -75.2180023F));
+ builder.AddCubicBezier(new Vector2(19884.7207F, -83.0339966F), new Vector2(19883.2891F, -91.7080002F), new Vector2(19883.2891F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(19883.2891F, -113.828003F), new Vector2(19885.7656F, -124.838997F), new Vector2(19890.7266F, -134.276993F));
+ builder.AddCubicBezier(new Vector2(19895.6816F, -143.714996F), new Vector2(19902.6895F, -151.052994F), new Vector2(19911.7461F, -156.298996F));
+ builder.AddCubicBezier(new Vector2(19920.8008F, -161.541F), new Vector2(19931.3379F, -164.164001F), new Vector2(19943.3496F, -164.164001F));
+ builder.AddCubicBezier(new Vector2(19952.1172F, -164.164001F), new Vector2(19960.2246F, -162.684998F), new Vector2(19967.6602F, -159.731003F));
+ builder.AddCubicBezier(new Vector2(19975.0957F, -156.772995F), new Vector2(19981.4824F, -152.483002F), new Vector2(19986.8223F, -146.860992F));
+ builder.AddCubicBezier(new Vector2(19992.1582F, -141.235001F), new Vector2(19996.2598F, -134.563004F), new Vector2(19999.1191F, -126.841003F));
+ builder.AddCubicBezier(new Vector2(20001.9805F, -119.119003F), new Vector2(20003.4102F, -110.584F), new Vector2(20003.4102F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(20003.4102F, -88.6600037F), new Vector2(20000.8809F, -77.5999985F), new Vector2(19995.8301F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(19990.7773F, -58.5320015F), new Vector2(19983.7695F, -51.0960007F), new Vector2(19974.8105F, -45.7599983F));
+ builder.AddCubicBezier(new Vector2(19965.8457F, -40.4199982F), new Vector2(19955.3613F, -37.7519989F), new Vector2(19943.3496F, -37.7519989F));
+ builder.AddCubicBezier(new Vector2(19934.3848F, -37.7519989F), new Vector2(19926.2344F, -39.2270012F), new Vector2(19918.8965F, -42.1850014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(19985.6777F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(19998.4492F, -9.9119997F), new Vector2(20009.6035F, -17.3029995F), new Vector2(20019.1406F, -26.7409992F));
+ builder.AddCubicBezier(new Vector2(20028.6719F, -36.1790009F), new Vector2(20036.1074F, -47.2350006F), new Vector2(20041.4473F, -59.9169998F));
+ builder.AddCubicBezier(new Vector2(20046.7832F, -72.5950012F), new Vector2(20049.4551F, -86.2740021F), new Vector2(20049.4551F, -100.958F));
+ builder.AddCubicBezier(new Vector2(20049.4551F, -115.830002F), new Vector2(20046.832F, -129.602997F), new Vector2(20041.5898F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(20036.3438F, -154.962997F), new Vector2(20028.8633F, -166.022995F), new Vector2(20019.1406F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(20009.416F, -184.899002F), new Vector2(19998.1191F, -192.237F), new Vector2(19985.248F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(19972.3789F, -202.725006F), new Vector2(19958.4102F, -205.348007F), new Vector2(19943.3496F, -205.348007F));
+ builder.AddCubicBezier(new Vector2(19928.0938F, -205.348007F), new Vector2(19913.9863F, -202.725006F), new Vector2(19901.0215F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(19888.0527F, -192.237F), new Vector2(19876.8047F, -184.899002F), new Vector2(19867.2734F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(19857.7383F, -166.022995F), new Vector2(19850.3008F, -155.011993F), new Vector2(19844.9648F, -142.427994F));
+ builder.AddCubicBezier(new Vector2(19839.625F, -129.843994F), new Vector2(19836.957F, -116.115997F), new Vector2(19836.957F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(19836.957F, -86.5599976F), new Vector2(19839.625F, -72.8809967F), new Vector2(19844.9648F, -60.2029991F));
+ builder.AddCubicBezier(new Vector2(19850.3008F, -47.5209999F), new Vector2(19857.8359F, -36.4160004F), new Vector2(19867.5605F, -26.8840008F));
+ builder.AddCubicBezier(new Vector2(19877.2832F, -17.3479996F), new Vector2(19888.625F, -9.9119997F), new Vector2(19901.5938F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(19914.5586F, 0.75999999F), new Vector2(19928.666F, 3.43199992F), new Vector2(19943.9219F, 3.43199992F));
+ builder.AddCubicBezier(new Vector2(19958.9824F, 3.43199992F), new Vector2(19972.9023F, 0.75999999F), new Vector2(19985.6777F, -4.57600021F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0158()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(19651.6289F, 0F));
+ builder.AddLine(new Vector2(19651.6289F, -201.916F));
+ builder.AddLine(new Vector2(19606.4414F, -201.916F));
+ builder.AddLine(new Vector2(19606.4414F, 0F));
+ builder.AddLine(new Vector2(19651.6289F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(19688.2363F, 0F));
+ builder.AddCubicBezier(new Vector2(19703.2969F, 0F), new Vector2(19717.2656F, -2.47600007F), new Vector2(19730.1367F, -7.43599987F));
+ builder.AddCubicBezier(new Vector2(19743.0059F, -12.3920002F), new Vector2(19754.2051F, -19.3990002F), new Vector2(19763.7422F, -28.4570007F));
+ builder.AddCubicBezier(new Vector2(19773.2734F, -37.5110016F), new Vector2(19780.709F, -48.1910019F), new Vector2(19786.0488F, -60.4889984F));
+ builder.AddCubicBezier(new Vector2(19791.3848F, -72.7870026F), new Vector2(19794.0566F, -86.2740021F), new Vector2(19794.0566F, -100.958F));
+ builder.AddCubicBezier(new Vector2(19794.0566F, -116.017998F), new Vector2(19791.3848F, -129.651993F), new Vector2(19786.0488F, -141.856003F));
+ builder.AddCubicBezier(new Vector2(19780.709F, -154.056F), new Vector2(19773.2246F, -164.686996F), new Vector2(19763.5977F, -173.744995F));
+ builder.AddCubicBezier(new Vector2(19753.9688F, -182.798996F), new Vector2(19742.7207F, -189.761002F), new Vector2(19729.8496F, -194.623001F));
+ builder.AddCubicBezier(new Vector2(19716.9805F, -199.485001F), new Vector2(19702.918F, -201.916F), new Vector2(19687.666F, -201.916F));
+ builder.AddLine(new Vector2(19635.8984F, -201.916F));
+ builder.AddLine(new Vector2(19635.8984F, -162.447998F));
+ builder.AddLine(new Vector2(19687.0938F, -162.447998F));
+ builder.AddCubicBezier(new Vector2(19699.1055F, -162.447998F), new Vector2(19709.6387F, -160.016998F), new Vector2(19718.6973F, -155.154999F));
+ builder.AddCubicBezier(new Vector2(19727.75F, -150.292999F), new Vector2(19734.8066F, -143.237F), new Vector2(19739.8594F, -133.990997F));
+ builder.AddCubicBezier(new Vector2(19744.9102F, -124.740997F), new Vector2(19747.4395F, -113.828003F), new Vector2(19747.4395F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(19747.4395F, -88.4680023F), new Vector2(19744.959F, -77.4570007F), new Vector2(19740.0039F, -68.2109985F));
+ builder.AddCubicBezier(new Vector2(19735.043F, -58.9609985F), new Vector2(19728.0352F, -51.8600006F), new Vector2(19718.9824F, -46.9039993F));
+ builder.AddCubicBezier(new Vector2(19709.9238F, -41.9440002F), new Vector2(19699.293F, -39.4679985F), new Vector2(19687.0938F, -39.4679985F));
+ builder.AddLine(new Vector2(19637.3301F, -39.4679985F));
+ builder.AddLine(new Vector2(19637.3301F, 0F));
+ builder.AddLine(new Vector2(19688.2363F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0159()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(19542.9492F, 0F));
+ builder.AddLine(new Vector2(19542.9492F, -201.916F));
+ builder.AddLine(new Vector2(19497.4746F, -201.916F));
+ builder.AddLine(new Vector2(19497.4746F, -40.3260002F));
+ builder.AddLine(new Vector2(19509.4863F, 0F));
+ builder.AddLine(new Vector2(19542.9492F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(19520.9277F, -49.4780006F));
+ builder.AddLine(new Vector2(19401.9512F, -201.916F));
+ builder.AddLine(new Vector2(19390.7969F, -152.438004F));
+ builder.AddLine(new Vector2(19509.4863F, 0F));
+ builder.AddLine(new Vector2(19520.9277F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(19415.3926F, 0F));
+ builder.AddLine(new Vector2(19415.3926F, -161.589996F));
+ builder.AddLine(new Vector2(19401.9512F, -201.916F));
+ builder.AddLine(new Vector2(19370.2051F, -201.916F));
+ builder.AddLine(new Vector2(19370.2051F, 0F));
+ builder.AddLine(new Vector2(19415.3926F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0160()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(19306.4277F, 0F));
+ builder.AddLine(new Vector2(19306.4277F, -201.916F));
+ builder.AddLine(new Vector2(19261.2402F, -201.916F));
+ builder.AddLine(new Vector2(19261.2402F, 0F));
+ builder.AddLine(new Vector2(19306.4277F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0161()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(19211.1895F, -162.447998F));
+ builder.AddLine(new Vector2(19211.1895F, -201.916F));
+ builder.AddLine(new Vector2(19039.5898F, -201.916F));
+ builder.AddLine(new Vector2(19039.5898F, -162.447998F));
+ builder.AddLine(new Vector2(19211.1895F, -162.447998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(19148.2695F, 0F));
+ builder.AddLine(new Vector2(19148.2695F, -199.341995F));
+ builder.AddLine(new Vector2(19102.7969F, -199.341995F));
+ builder.AddLine(new Vector2(19102.7969F, 0F));
+ builder.AddLine(new Vector2(19148.2695F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0162()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(19002.123F, -163.020004F));
+ builder.AddLine(new Vector2(19002.123F, -201.916F));
+ builder.AddLine(new Vector2(18892.8711F, -201.916F));
+ builder.AddLine(new Vector2(18892.8711F, -163.020004F));
+ builder.AddLine(new Vector2(19002.123F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18993.543F, -84.0839996F));
+ builder.AddLine(new Vector2(18993.543F, -122.122002F));
+ builder.AddLine(new Vector2(18892.8711F, -122.122002F));
+ builder.AddLine(new Vector2(18892.8711F, -84.0839996F));
+ builder.AddLine(new Vector2(18993.543F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(19003.8398F, 0F));
+ builder.AddLine(new Vector2(19003.8398F, -38.8959999F));
+ builder.AddLine(new Vector2(18892.8711F, -38.8959999F));
+ builder.AddLine(new Vector2(18892.8711F, 0F));
+ builder.AddLine(new Vector2(19003.8398F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18903.4531F, 0F));
+ builder.AddLine(new Vector2(18903.4531F, -201.916F));
+ builder.AddLine(new Vector2(18858.2656F, -201.916F));
+ builder.AddLine(new Vector2(18858.2656F, 0F));
+ builder.AddLine(new Vector2(18903.4531F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0163()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(18784.4785F, -13.2989998F));
+ builder.AddCubicBezier(new Vector2(18798.207F, -24.2609997F), new Vector2(18805.0703F, -39.3699989F), new Vector2(18805.0703F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(18805.0703F, -69.3059998F), new Vector2(18803.3066F, -78.1719971F), new Vector2(18799.7793F, -85.2279968F));
+ builder.AddCubicBezier(new Vector2(18796.25F, -92.2799988F), new Vector2(18791.7227F, -98.1920013F), new Vector2(18786.1953F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(18780.6621F, -107.723999F), new Vector2(18774.5137F, -111.584999F), new Vector2(18767.748F, -114.542999F));
+ builder.AddCubicBezier(new Vector2(18760.9785F, -117.497002F), new Vector2(18754.207F, -120.120003F), new Vector2(18747.4414F, -122.407997F));
+ builder.AddCubicBezier(new Vector2(18740.6719F, -124.695999F), new Vector2(18734.4746F, -126.984001F), new Vector2(18728.8516F, -129.272003F));
+ builder.AddCubicBezier(new Vector2(18723.2266F, -131.559998F), new Vector2(18718.6992F, -134.276993F), new Vector2(18715.2676F, -137.423004F));
+ builder.AddCubicBezier(new Vector2(18711.8359F, -140.569F), new Vector2(18710.1191F, -144.617996F), new Vector2(18710.1191F, -149.578003F));
+ builder.AddCubicBezier(new Vector2(18710.1191F, -155.106003F), new Vector2(18712.4062F, -159.347F), new Vector2(18716.9824F, -162.304993F));
+ builder.AddCubicBezier(new Vector2(18721.5586F, -165.259003F), new Vector2(18727.752F, -166.738007F), new Vector2(18735.5723F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(18743.1973F, -166.738007F), new Vector2(18750.1094F, -165.210007F), new Vector2(18756.3086F, -162.162003F));
+ builder.AddCubicBezier(new Vector2(18762.502F, -159.110001F), new Vector2(18768.6504F, -154.440002F), new Vector2(18774.7559F, -148.147995F));
+ builder.AddLine(new Vector2(18804.2129F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(18796.5859F, -185.994003F), new Vector2(18786.9551F, -192.666F), new Vector2(18775.3281F, -197.626007F));
+ builder.AddCubicBezier(new Vector2(18763.6953F, -202.582001F), new Vector2(18750.7305F, -205.061996F), new Vector2(18736.4316F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(18722.7031F, -205.061996F), new Vector2(18710.4043F, -202.725006F), new Vector2(18699.5371F, -198.054993F));
+ builder.AddCubicBezier(new Vector2(18688.6699F, -193.380997F), new Vector2(18680.2324F, -186.565994F), new Vector2(18674.2266F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(18668.2207F, -168.641998F), new Vector2(18665.2168F, -157.871994F), new Vector2(18665.2168F, -145.287994F));
+ builder.AddCubicBezier(new Vector2(18665.2168F, -135.179993F), new Vector2(18666.9336F, -126.697998F), new Vector2(18670.3652F, -119.834F));
+ builder.AddCubicBezier(new Vector2(18673.7969F, -112.970001F), new Vector2(18678.3242F, -107.344002F), new Vector2(18683.9512F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(18689.5723F, -98.5719986F), new Vector2(18695.7695F, -94.8539963F), new Vector2(18702.541F, -91.8059998F));
+ builder.AddCubicBezier(new Vector2(18709.3066F, -88.7539978F), new Vector2(18716.0273F, -86.1309967F), new Vector2(18722.7031F, -83.9410019F));
+ builder.AddCubicBezier(new Vector2(18729.375F, -81.7470016F), new Vector2(18735.5723F, -79.4100037F), new Vector2(18741.293F, -76.9339981F));
+ builder.AddCubicBezier(new Vector2(18747.0137F, -74.4540024F), new Vector2(18751.541F, -71.5F), new Vector2(18754.8789F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(18758.2109F, -64.6360016F), new Vector2(18759.8828F, -60.2480011F), new Vector2(18759.8828F, -54.9119987F));
+ builder.AddCubicBezier(new Vector2(18759.8828F, -48.8079987F), new Vector2(18757.2598F, -43.9949989F), new Vector2(18752.0176F, -40.4690018F));
+ builder.AddCubicBezier(new Vector2(18746.7715F, -36.9389992F), new Vector2(18739.4785F, -35.1780014F), new Vector2(18730.1387F, -35.1780014F));
+ builder.AddCubicBezier(new Vector2(18719.6504F, -35.1780014F), new Vector2(18710.4492F, -37.2249985F), new Vector2(18702.541F, -41.3269997F));
+ builder.AddCubicBezier(new Vector2(18694.627F, -45.4249992F), new Vector2(18687.4277F, -51.1940002F), new Vector2(18680.9473F, -58.6300011F));
+ builder.AddLine(new Vector2(18651.7754F, -29.4580002F));
+ builder.AddCubicBezier(new Vector2(18661.5F, -18.3980007F), new Vector2(18672.3184F, -10.198F), new Vector2(18684.2363F, -4.86199999F));
+ builder.AddCubicBezier(new Vector2(18696.1504F, 0.474000007F), new Vector2(18710.5F, 3.14599991F), new Vector2(18727.2793F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(18751.6836F, 3.14599991F), new Vector2(18770.752F, -2.33299994F), new Vector2(18784.4785F, -13.2989998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0164()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(18614.3086F, -163.020004F));
+ builder.AddLine(new Vector2(18614.3086F, -201.916F));
+ builder.AddLine(new Vector2(18505.0566F, -201.916F));
+ builder.AddLine(new Vector2(18505.0566F, -163.020004F));
+ builder.AddLine(new Vector2(18614.3086F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18605.7285F, -84.0839996F));
+ builder.AddLine(new Vector2(18605.7285F, -122.122002F));
+ builder.AddLine(new Vector2(18505.0566F, -122.122002F));
+ builder.AddLine(new Vector2(18505.0566F, -84.0839996F));
+ builder.AddLine(new Vector2(18605.7285F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18616.0254F, 0F));
+ builder.AddLine(new Vector2(18616.0254F, -38.8959999F));
+ builder.AddLine(new Vector2(18505.0566F, -38.8959999F));
+ builder.AddLine(new Vector2(18505.0566F, 0F));
+ builder.AddLine(new Vector2(18616.0254F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18515.6387F, 0F));
+ builder.AddLine(new Vector2(18515.6387F, -201.916F));
+ builder.AddLine(new Vector2(18470.4512F, -201.916F));
+ builder.AddLine(new Vector2(18470.4512F, 0F));
+ builder.AddLine(new Vector2(18515.6387F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0165()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(18426.4062F, 0F));
+ builder.AddLine(new Vector2(18351.4727F, -98.3840027F));
+ builder.AddLine(new Vector2(18310.0039F, -86.9440002F));
+ builder.AddLine(new Vector2(18372.9238F, 0F));
+ builder.AddLine(new Vector2(18426.4062F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18308.2871F, 0F));
+ builder.AddLine(new Vector2(18308.2871F, -201.916F));
+ builder.AddLine(new Vector2(18263.0996F, -201.916F));
+ builder.AddLine(new Vector2(18263.0996F, 0F));
+ builder.AddLine(new Vector2(18308.2871F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18344.3242F, -82.9400024F));
+ builder.AddCubicBezier(new Vector2(18358.2383F, -82.9400024F), new Vector2(18370.3496F, -85.4160004F), new Vector2(18380.6445F, -90.3759995F));
+ builder.AddCubicBezier(new Vector2(18390.9414F, -95.3320007F), new Vector2(18398.9492F, -102.245003F), new Vector2(18404.6699F, -111.111F));
+ builder.AddCubicBezier(new Vector2(18410.3887F, -119.976997F), new Vector2(18413.25F, -130.509995F), new Vector2(18413.25F, -142.714005F));
+ builder.AddCubicBezier(new Vector2(18413.25F, -154.154007F), new Vector2(18410.4336F, -164.352005F), new Vector2(18404.8125F, -173.315994F));
+ builder.AddCubicBezier(new Vector2(18399.1855F, -182.276001F), new Vector2(18391.3223F, -189.283005F), new Vector2(18381.2168F, -194.337006F));
+ builder.AddCubicBezier(new Vector2(18371.1094F, -199.386993F), new Vector2(18359.2891F, -201.916F), new Vector2(18345.7539F, -201.916F));
+ builder.AddLine(new Vector2(18297.7051F, -201.916F));
+ builder.AddLine(new Vector2(18297.7051F, -166.738007F));
+ builder.AddLine(new Vector2(18340.6055F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(18349.373F, -166.738007F), new Vector2(18356.1934F, -164.352005F), new Vector2(18361.0547F, -159.587997F));
+ builder.AddCubicBezier(new Vector2(18365.916F, -154.820007F), new Vector2(18368.3477F, -148.813995F), new Vector2(18368.3477F, -141.570007F));
+ builder.AddCubicBezier(new Vector2(18368.3477F, -133.942001F), new Vector2(18365.8672F, -127.887001F), new Vector2(18360.9121F, -123.408997F));
+ builder.AddCubicBezier(new Vector2(18355.9512F, -118.927002F), new Vector2(18349.0879F, -116.688004F), new Vector2(18340.3203F, -116.688004F));
+ builder.AddLine(new Vector2(18297.7051F, -116.688004F));
+ builder.AddLine(new Vector2(18297.7051F, -82.9400024F));
+ builder.AddLine(new Vector2(18344.3242F, -82.9400024F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0166()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(18208.7598F, -117.260002F));
+ builder.AddLine(new Vector2(18208.7598F, -148.720001F));
+ builder.AddLine(new Vector2(18048.8848F, -148.720001F));
+ builder.AddLine(new Vector2(18048.8848F, -117.260002F));
+ builder.AddLine(new Vector2(18208.7598F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18092.3574F, 0F));
+ builder.AddLine(new Vector2(18125.5332F, -201.916F));
+ builder.AddLine(new Vector2(18089.7832F, -201.916F));
+ builder.AddLine(new Vector2(18056.3223F, 0F));
+ builder.AddLine(new Vector2(18092.3574F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18199.3223F, -57.4860001F));
+ builder.AddLine(new Vector2(18199.3223F, -88.9459991F));
+ builder.AddLine(new Vector2(18039.1621F, -88.9459991F));
+ builder.AddLine(new Vector2(18039.1621F, -57.4860001F));
+ builder.AddLine(new Vector2(18199.3223F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(18156.4219F, 0F));
+ builder.AddLine(new Vector2(18190.1699F, -201.916F));
+ builder.AddLine(new Vector2(18154.1328F, -201.916F));
+ builder.AddLine(new Vector2(18120.957F, 0F));
+ builder.AddLine(new Vector2(18156.4219F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0167()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(17885.0078F, 0F));
+ builder.AddLine(new Vector2(17885.0078F, -201.916F));
+ builder.AddLine(new Vector2(17840.3926F, -201.916F));
+ builder.AddLine(new Vector2(17840.3926F, 0F));
+ builder.AddLine(new Vector2(17885.0078F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(17926.7637F, 0F));
+ builder.AddCubicBezier(new Vector2(17941.0645F, 0F), new Vector2(17953.3125F, -2.61899996F), new Vector2(17963.5156F, -7.86499977F));
+ builder.AddCubicBezier(new Vector2(17973.7129F, -13.1070004F), new Vector2(17981.5332F, -20.1140003F), new Vector2(17986.9668F, -28.8859997F));
+ builder.AddCubicBezier(new Vector2(17992.4023F, -37.6539993F), new Vector2(17995.1191F, -47.5699997F), new Vector2(17995.1191F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(17995.1191F, -73.1179962F), new Vector2(17990.543F, -85.3219986F), new Vector2(17981.3906F, -95.237999F));
+ builder.AddCubicBezier(new Vector2(17972.2383F, -105.150002F), new Vector2(17959.082F, -111.727997F), new Vector2(17941.9219F, -114.972F));
+ builder.AddLine(new Vector2(17940.7793F, -99.814003F));
+ builder.AddCubicBezier(new Vector2(17956.4102F, -103.054001F), new Vector2(17968.2344F, -108.917F), new Vector2(17976.2422F, -117.403F));
+ builder.AddCubicBezier(new Vector2(17984.25F, -125.885002F), new Vector2(17988.2539F, -136.516006F), new Vector2(17988.2539F, -149.292007F));
+ builder.AddCubicBezier(new Vector2(17988.2539F, -158.824005F), new Vector2(17985.918F, -167.595993F), new Vector2(17981.248F, -175.604004F));
+ builder.AddCubicBezier(new Vector2(17976.5723F, -183.612F), new Vector2(17969.6641F, -189.998001F), new Vector2(17960.5117F, -194.766006F));
+ builder.AddCubicBezier(new Vector2(17951.3613F, -199.529999F), new Vector2(17940.3008F, -201.916F), new Vector2(17927.3359F, -201.916F));
+ builder.AddLine(new Vector2(17874.998F, -201.916F));
+ builder.AddLine(new Vector2(17874.998F, -166.738007F));
+ builder.AddLine(new Vector2(17918.7559F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(17926F, -166.738007F), new Vector2(17931.9121F, -164.878998F), new Vector2(17936.4883F, -161.160995F));
+ builder.AddCubicBezier(new Vector2(17941.0645F, -157.442993F), new Vector2(17943.3516F, -151.960007F), new Vector2(17943.3516F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(17943.3516F, -137.087997F), new Vector2(17941.0645F, -131.462006F), new Vector2(17936.4883F, -127.842003F));
+ builder.AddCubicBezier(new Vector2(17931.9121F, -124.218002F), new Vector2(17926F, -122.407997F), new Vector2(17918.7559F, -122.407997F));
+ builder.AddLine(new Vector2(17874.998F, -122.407997F));
+ builder.AddLine(new Vector2(17874.998F, -88.0879974F));
+ builder.AddLine(new Vector2(17922.4746F, -88.0879974F));
+ builder.AddCubicBezier(new Vector2(17928.1953F, -88.0879974F), new Vector2(17933.1016F, -86.9440002F), new Vector2(17937.2031F, -84.6559982F));
+ builder.AddCubicBezier(new Vector2(17941.3008F, -82.3679962F), new Vector2(17944.4961F, -79.2220001F), new Vector2(17946.7852F, -75.2180023F));
+ builder.AddCubicBezier(new Vector2(17949.0723F, -71.2139969F), new Vector2(17950.2168F, -66.7320023F), new Vector2(17950.2168F, -61.776001F));
+ builder.AddCubicBezier(new Vector2(17950.2168F, -54.1479988F), new Vector2(17947.7363F, -47.8069992F), new Vector2(17942.7812F, -42.757F));
+ builder.AddCubicBezier(new Vector2(17937.8203F, -37.7029991F), new Vector2(17931.0547F, -35.1780014F), new Vector2(17922.4746F, -35.1780014F));
+ builder.AddLine(new Vector2(17874.998F, -35.1780014F));
+ builder.AddLine(new Vector2(17874.998F, 0F));
+ builder.AddLine(new Vector2(17926.7637F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0168()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(17749.7305F, -36.3219986F));
+ builder.AddLine(new Vector2(17749.7305F, -72.9300003F));
+ builder.AddLine(new Vector2(17639.9082F, -72.9300003F));
+ builder.AddLine(new Vector2(17639.9082F, -36.3219986F));
+ builder.AddLine(new Vector2(17749.7305F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(17640.7656F, 0F));
+ builder.AddLine(new Vector2(17702.541F, -167.309998F));
+ builder.AddLine(new Vector2(17685.9531F, -167.309998F));
+ builder.AddLine(new Vector2(17746.2988F, 0F));
+ builder.AddLine(new Vector2(17794.0605F, 0F));
+ builder.AddLine(new Vector2(17714.8398F, -201.916F));
+ builder.AddLine(new Vector2(17673.9414F, -201.916F));
+ builder.AddLine(new Vector2(17594.1465F, 0F));
+ builder.AddLine(new Vector2(17640.7656F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0169()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(17531.5137F, -4.43300009F));
+ builder.AddCubicBezier(new Vector2(17544.0977F, -9.4829998F), new Vector2(17555.1523F, -16.5879993F), new Vector2(17564.6895F, -25.7399998F));
+ builder.AddLine(new Vector2(17534.0879F, -56.3419991F));
+ builder.AddCubicBezier(new Vector2(17528.7461F, -50.4300003F), new Vector2(17522.2637F, -45.9029999F), new Vector2(17514.6387F, -42.757F));
+ builder.AddCubicBezier(new Vector2(17507.0117F, -39.6110001F), new Vector2(17498.0508F, -38.0379982F), new Vector2(17487.7559F, -38.0379982F));
+ builder.AddCubicBezier(new Vector2(17478.9824F, -38.0379982F), new Vector2(17470.9746F, -39.5130005F), new Vector2(17463.7305F, -42.4710007F));
+ builder.AddCubicBezier(new Vector2(17456.4824F, -45.4249992F), new Vector2(17450.1914F, -49.7150002F), new Vector2(17444.8555F, -55.3409996F));
+ builder.AddCubicBezier(new Vector2(17439.5156F, -60.9630013F), new Vector2(17435.418F, -67.6389999F), new Vector2(17432.5566F, -75.3610001F));
+ builder.AddCubicBezier(new Vector2(17429.6973F, -83.0830002F), new Vector2(17428.2676F, -91.7080002F), new Vector2(17428.2676F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(17428.2676F, -110.396004F), new Vector2(17429.6973F, -118.877998F), new Vector2(17432.5566F, -126.697998F));
+ builder.AddCubicBezier(new Vector2(17435.418F, -134.514008F), new Vector2(17439.5156F, -141.186005F), new Vector2(17444.8555F, -146.718002F));
+ builder.AddCubicBezier(new Vector2(17450.1914F, -152.246002F), new Vector2(17456.4824F, -156.487F), new Vector2(17463.7305F, -159.445007F));
+ builder.AddCubicBezier(new Vector2(17470.9746F, -162.399002F), new Vector2(17478.9824F, -163.878006F), new Vector2(17487.7559F, -163.878006F));
+ builder.AddCubicBezier(new Vector2(17497.666F, -163.878006F), new Vector2(17506.3906F, -162.255997F), new Vector2(17513.9238F, -159.016006F));
+ builder.AddCubicBezier(new Vector2(17521.4531F, -155.772003F), new Vector2(17527.7949F, -151.294006F), new Vector2(17532.9434F, -145.574005F));
+ builder.AddLine(new Vector2(17563.2598F, -176.175995F));
+ builder.AddCubicBezier(new Vector2(17553.916F, -185.136002F), new Vector2(17542.998F, -192.192001F), new Vector2(17530.5117F, -197.339996F));
+ builder.AddCubicBezier(new Vector2(17518.0215F, -202.488007F), new Vector2(17503.7715F, -205.061996F), new Vector2(17487.7559F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(17472.498F, -205.061996F), new Vector2(17458.4844F, -202.438995F), new Vector2(17445.7129F, -197.197006F));
+ builder.AddCubicBezier(new Vector2(17432.9375F, -191.951004F), new Vector2(17421.7344F, -184.658005F), new Vector2(17412.1074F, -175.317993F));
+ builder.AddCubicBezier(new Vector2(17402.4785F, -165.973999F), new Vector2(17394.9922F, -154.962997F), new Vector2(17389.6562F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(17384.3164F, -129.602997F), new Vector2(17381.6484F, -115.924004F), new Vector2(17381.6484F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(17381.6484F, -86.5599976F), new Vector2(17384.3164F, -72.8809967F), new Vector2(17389.6562F, -60.2029991F));
+ builder.AddCubicBezier(new Vector2(17394.9922F, -47.5209999F), new Vector2(17402.4785F, -36.4160004F), new Vector2(17412.1074F, -26.8840008F));
+ builder.AddCubicBezier(new Vector2(17421.7344F, -17.3479996F), new Vector2(17432.9863F, -9.96100044F), new Vector2(17445.8555F, -4.71899986F));
+ builder.AddCubicBezier(new Vector2(17458.7266F, 0.523000002F), new Vector2(17472.6914F, 3.14599991F), new Vector2(17487.7559F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(17504.3438F, 3.14599991F), new Vector2(17518.9297F, 0.616999984F), new Vector2(17531.5137F, -4.43300009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0170()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(17312.1504F, -36.3219986F));
+ builder.AddLine(new Vector2(17312.1504F, -72.9300003F));
+ builder.AddLine(new Vector2(17202.3281F, -72.9300003F));
+ builder.AddLine(new Vector2(17202.3281F, -36.3219986F));
+ builder.AddLine(new Vector2(17312.1504F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(17203.1855F, 0F));
+ builder.AddLine(new Vector2(17264.9609F, -167.309998F));
+ builder.AddLine(new Vector2(17248.373F, -167.309998F));
+ builder.AddLine(new Vector2(17308.7188F, 0F));
+ builder.AddLine(new Vector2(17356.4805F, 0F));
+ builder.AddLine(new Vector2(17277.2598F, -201.916F));
+ builder.AddLine(new Vector2(17236.3613F, -201.916F));
+ builder.AddLine(new Vector2(17156.5664F, 0F));
+ builder.AddLine(new Vector2(17203.1855F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0171()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(17117.0996F, -117.260002F));
+ builder.AddLine(new Vector2(17117.0996F, -148.720001F));
+ builder.AddLine(new Vector2(16957.2246F, -148.720001F));
+ builder.AddLine(new Vector2(16957.2246F, -117.260002F));
+ builder.AddLine(new Vector2(17117.0996F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(17000.6973F, 0F));
+ builder.AddLine(new Vector2(17033.873F, -201.916F));
+ builder.AddLine(new Vector2(16998.123F, -201.916F));
+ builder.AddLine(new Vector2(16964.6621F, 0F));
+ builder.AddLine(new Vector2(17000.6973F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(17107.6621F, -57.4860001F));
+ builder.AddLine(new Vector2(17107.6621F, -88.9459991F));
+ builder.AddLine(new Vector2(16947.502F, -88.9459991F));
+ builder.AddLine(new Vector2(16947.502F, -57.4860001F));
+ builder.AddLine(new Vector2(17107.6621F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(17064.7617F, 0F));
+ builder.AddLine(new Vector2(17098.5098F, -201.916F));
+ builder.AddLine(new Vector2(17062.4727F, -201.916F));
+ builder.AddLine(new Vector2(17029.2969F, 0F));
+ builder.AddLine(new Vector2(17064.7617F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0172()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(16903.7422F, 0F));
+ builder.AddLine(new Vector2(16903.7422F, -38.3240013F));
+ builder.AddLine(new Vector2(16796.207F, -38.3240013F));
+ builder.AddLine(new Vector2(16758.168F, -25.1679993F));
+ builder.AddLine(new Vector2(16758.168F, 0F));
+ builder.AddLine(new Vector2(16903.7422F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16813.6523F, -24.5960007F));
+ builder.AddLine(new Vector2(16867.707F, -78.0780029F));
+ builder.AddCubicBezier(new Vector2(16875.5234F, -85.8939972F), new Vector2(16881.7656F, -93.0439987F), new Vector2(16886.4395F, -99.5279999F));
+ builder.AddCubicBezier(new Vector2(16891.1094F, -106.008003F), new Vector2(16894.4473F, -112.635002F), new Vector2(16896.4492F, -119.404999F));
+ builder.AddCubicBezier(new Vector2(16898.4512F, -126.170998F), new Vector2(16899.4531F, -133.656006F), new Vector2(16899.4531F, -141.856003F));
+ builder.AddCubicBezier(new Vector2(16899.4531F, -154.628006F), new Vector2(16896.6875F, -165.781998F), new Vector2(16891.1582F, -175.317993F));
+ builder.AddCubicBezier(new Vector2(16885.627F, -184.850006F), new Vector2(16877.7168F, -192.192001F), new Vector2(16867.4199F, -197.339996F));
+ builder.AddCubicBezier(new Vector2(16857.125F, -202.488007F), new Vector2(16845.0137F, -205.061996F), new Vector2(16831.0996F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(16814.8906F, -205.061996F), new Vector2(16800.6406F, -201.630005F), new Vector2(16788.3418F, -194.766006F));
+ builder.AddCubicBezier(new Vector2(16776.043F, -187.901993F), new Vector2(16765.793F, -177.699997F), new Vector2(16757.5977F, -164.164001F));
+ builder.AddLine(new Vector2(16787.9121F, -137.852005F));
+ builder.AddCubicBezier(new Vector2(16793.8203F, -147.576004F), new Vector2(16799.9688F, -154.582993F), new Vector2(16806.3594F, -158.873001F));
+ builder.AddCubicBezier(new Vector2(16812.7461F, -163.162994F), new Vector2(16819.9453F, -165.307999F), new Vector2(16827.9531F, -165.307999F));
+ builder.AddCubicBezier(new Vector2(16835.9609F, -165.307999F), new Vector2(16842.4902F, -163.065002F), new Vector2(16847.543F, -158.587006F));
+ builder.AddCubicBezier(new Vector2(16852.5938F, -154.104996F), new Vector2(16855.123F, -147.955994F), new Vector2(16855.123F, -140.139999F));
+ builder.AddCubicBezier(new Vector2(16855.123F, -136.707993F), new Vector2(16854.502F, -133.227005F), new Vector2(16853.2637F, -129.701004F));
+ builder.AddCubicBezier(new Vector2(16852.0215F, -126.170998F), new Vector2(16849.9258F, -122.453003F), new Vector2(16846.9727F, -118.546997F));
+ builder.AddCubicBezier(new Vector2(16844.0137F, -114.637001F), new Vector2(16840.25F, -110.204002F), new Vector2(16835.6738F, -105.248001F));
+ builder.AddLine(new Vector2(16758.168F, -25.1679993F));
+ builder.AddLine(new Vector2(16813.6523F, -24.5960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0173()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(16704.4004F, -163.591995F));
+ builder.AddLine(new Vector2(16704.4004F, -201.916F));
+ builder.AddLine(new Vector2(16623.4629F, -201.916F));
+ builder.AddLine(new Vector2(16623.4629F, -163.591995F));
+ builder.AddLine(new Vector2(16704.4004F, -163.591995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16707.2617F, 0F));
+ builder.AddLine(new Vector2(16707.2617F, -201.916F));
+ builder.AddLine(new Vector2(16662.3594F, -201.916F));
+ builder.AddLine(new Vector2(16662.3594F, 0F));
+ builder.AddLine(new Vector2(16707.2617F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0174()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(16544.8125F, -163.591995F));
+ builder.AddLine(new Vector2(16580.2754F, -176.748001F));
+ builder.AddLine(new Vector2(16580.2754F, -201.916F));
+ builder.AddLine(new Vector2(16449.8594F, -201.916F));
+ builder.AddLine(new Vector2(16449.8594F, -163.591995F));
+ builder.AddLine(new Vector2(16544.8125F, -163.591995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16529.3691F, -118.975998F));
+ builder.AddLine(new Vector2(16580.2754F, -176.748001F));
+ builder.AddLine(new Vector2(16529.6543F, -176.462006F));
+ builder.AddLine(new Vector2(16480.4629F, -119.262001F));
+ builder.AddLine(new Vector2(16480.4629F, -93.8079987F));
+ builder.AddLine(new Vector2(16529.3691F, -118.975998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16546.8145F, -5.57700014F));
+ builder.AddCubicBezier(new Vector2(16558.6348F, -11.3909998F), new Vector2(16567.7871F, -19.3990002F), new Vector2(16574.2695F, -29.6009998F));
+ builder.AddCubicBezier(new Vector2(16580.75F, -39.7989998F), new Vector2(16583.9941F, -51.6679993F), new Vector2(16583.9941F, -65.2080002F));
+ builder.AddCubicBezier(new Vector2(16583.9941F, -77.2200012F), new Vector2(16581.6074F, -87.6589966F), new Vector2(16576.8438F, -96.5250015F));
+ builder.AddCubicBezier(new Vector2(16572.0762F, -105.390999F), new Vector2(16565.5469F, -112.254997F), new Vector2(16557.2539F, -117.116997F));
+ builder.AddCubicBezier(new Vector2(16548.959F, -121.978996F), new Vector2(16539.6641F, -124.410004F), new Vector2(16529.3691F, -124.410004F));
+ builder.AddCubicBezier(new Vector2(16525.1719F, -124.410004F), new Vector2(16520.6895F, -123.883003F), new Vector2(16515.9258F, -122.836998F));
+ builder.AddCubicBezier(new Vector2(16511.1582F, -121.787003F), new Vector2(16506.0098F, -120.5F), new Vector2(16500.4824F, -118.975998F));
+ builder.AddLine(new Vector2(16480.4629F, -93.8079987F));
+ builder.AddCubicBezier(new Vector2(16483.1309F, -94.7600021F), new Vector2(16486.4688F, -95.4749985F), new Vector2(16490.4727F, -95.9530029F));
+ builder.AddCubicBezier(new Vector2(16494.4766F, -96.427002F), new Vector2(16498.2891F, -96.6679993F), new Vector2(16501.9121F, -96.6679993F));
+ builder.AddCubicBezier(new Vector2(16509.5352F, -96.6679993F), new Vector2(16516.1641F, -95.4749985F), new Vector2(16521.7891F, -93.0930023F));
+ builder.AddCubicBezier(new Vector2(16527.4102F, -90.7070007F), new Vector2(16531.75F, -87.3239975F), new Vector2(16534.8027F, -82.9400024F));
+ builder.AddCubicBezier(new Vector2(16537.8496F, -78.552002F), new Vector2(16539.3789F, -73.1179962F), new Vector2(16539.3789F, -66.6380005F));
+ builder.AddCubicBezier(new Vector2(16539.3789F, -60.3460007F), new Vector2(16537.8496F, -54.9570007F), new Vector2(16534.8027F, -50.4790001F));
+ builder.AddCubicBezier(new Vector2(16531.75F, -45.9970016F), new Vector2(16527.6523F, -42.5159988F), new Vector2(16522.5039F, -40.0400009F));
+ builder.AddCubicBezier(new Vector2(16517.3555F, -37.5600014F), new Vector2(16511.3496F, -36.3219986F), new Vector2(16504.4863F, -36.3219986F));
+ builder.AddCubicBezier(new Vector2(16496.8574F, -36.3219986F), new Vector2(16489.5156F, -37.9399986F), new Vector2(16482.4648F, -41.1839981F));
+ builder.AddCubicBezier(new Vector2(16475.4082F, -44.4239998F), new Vector2(16470.0684F, -48.7140007F), new Vector2(16466.4492F, -54.0540009F));
+ builder.AddLine(new Vector2(16437.2754F, -24.882F));
+ builder.AddCubicBezier(new Vector2(16445.2852F, -15.7299995F), new Vector2(16455.1016F, -8.76799965F), new Vector2(16466.7344F, -4.00400019F));
+ builder.AddCubicBezier(new Vector2(16478.3613F, 0.75999999F), new Vector2(16491.2324F, 3.14599991F), new Vector2(16505.3438F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(16521.168F, 3.14599991F), new Vector2(16534.9902F, 0.237000003F), new Vector2(16546.8145F, -5.57700014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0175()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(16386.082F, -163.591995F));
+ builder.AddLine(new Vector2(16386.082F, -201.916F));
+ builder.AddLine(new Vector2(16305.1445F, -201.916F));
+ builder.AddLine(new Vector2(16305.1445F, -163.591995F));
+ builder.AddLine(new Vector2(16386.082F, -163.591995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16388.9434F, 0F));
+ builder.AddLine(new Vector2(16388.9434F, -201.916F));
+ builder.AddLine(new Vector2(16344.041F, -201.916F));
+ builder.AddLine(new Vector2(16344.041F, 0F));
+ builder.AddLine(new Vector2(16388.9434F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0176()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(16264.5332F, -117.260002F));
+ builder.AddLine(new Vector2(16264.5332F, -148.720001F));
+ builder.AddLine(new Vector2(16104.6592F, -148.720001F));
+ builder.AddLine(new Vector2(16104.6592F, -117.260002F));
+ builder.AddLine(new Vector2(16264.5332F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16148.1309F, 0F));
+ builder.AddLine(new Vector2(16181.3066F, -201.916F));
+ builder.AddLine(new Vector2(16145.5566F, -201.916F));
+ builder.AddLine(new Vector2(16112.0947F, 0F));
+ builder.AddLine(new Vector2(16148.1309F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16255.0947F, -57.4860001F));
+ builder.AddLine(new Vector2(16255.0947F, -88.9459991F));
+ builder.AddLine(new Vector2(16094.9346F, -88.9459991F));
+ builder.AddLine(new Vector2(16094.9346F, -57.4860001F));
+ builder.AddLine(new Vector2(16255.0947F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16212.1953F, 0F));
+ builder.AddLine(new Vector2(16245.9434F, -201.916F));
+ builder.AddLine(new Vector2(16209.9072F, -201.916F));
+ builder.AddLine(new Vector2(16176.7305F, 0F));
+ builder.AddLine(new Vector2(16212.1953F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0177()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(15944.7852F, 0F));
+ builder.AddLine(new Vector2(15944.7852F, -201.916F));
+ builder.AddLine(new Vector2(15899.5977F, -201.916F));
+ builder.AddLine(new Vector2(15899.5977F, 0F));
+ builder.AddLine(new Vector2(15944.7852F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(15984.2539F, -73.5019989F));
+ builder.AddCubicBezier(new Vector2(15997.0254F, -73.5019989F), new Vector2(16008.6084F, -76.0759964F), new Vector2(16019.0029F, -81.223999F));
+ builder.AddCubicBezier(new Vector2(16029.3926F, -86.3720016F), new Vector2(16037.5928F, -93.7590027F), new Vector2(16043.5986F, -103.389F));
+ builder.AddCubicBezier(new Vector2(16049.6055F, -113.014999F), new Vector2(16052.6074F, -124.410004F), new Vector2(16052.6074F, -137.565994F));
+ builder.AddCubicBezier(new Vector2(16052.6074F, -150.910004F), new Vector2(16049.6055F, -162.399002F), new Vector2(16043.5986F, -172.029007F));
+ builder.AddCubicBezier(new Vector2(16037.5928F, -181.654999F), new Vector2(16029.3926F, -189.046005F), new Vector2(16019.0029F, -194.194F));
+ builder.AddCubicBezier(new Vector2(16008.6084F, -199.341995F), new Vector2(15997.0254F, -201.916F), new Vector2(15984.2539F, -201.916F));
+ builder.AddLine(new Vector2(15934.2031F, -201.916F));
+ builder.AddLine(new Vector2(15934.2031F, -166.738007F));
+ builder.AddLine(new Vector2(15977.6758F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(15983.2031F, -166.738007F), new Vector2(15988.208F, -165.639008F), new Vector2(15992.6904F, -163.449005F));
+ builder.AddCubicBezier(new Vector2(15997.168F, -161.255005F), new Vector2(16000.7432F, -157.966003F), new Vector2(16003.416F, -153.582001F));
+ builder.AddCubicBezier(new Vector2(16006.083F, -149.194F), new Vector2(16007.4199F, -143.858002F), new Vector2(16007.4199F, -137.565994F));
+ builder.AddCubicBezier(new Vector2(16007.4199F, -131.462006F), new Vector2(16006.083F, -126.220001F), new Vector2(16003.416F, -121.835999F));
+ builder.AddCubicBezier(new Vector2(16000.7432F, -117.447998F), new Vector2(15997.168F, -114.158997F), new Vector2(15992.6904F, -111.969002F));
+ builder.AddCubicBezier(new Vector2(15988.208F, -109.775002F), new Vector2(15983.2031F, -108.68F), new Vector2(15977.6758F, -108.68F));
+ builder.AddLine(new Vector2(15934.2031F, -108.68F));
+ builder.AddLine(new Vector2(15934.2031F, -73.5019989F));
+ builder.AddLine(new Vector2(15984.2539F, -73.5019989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0178()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(15808.9355F, -36.3219986F));
+ builder.AddLine(new Vector2(15808.9355F, -72.9300003F));
+ builder.AddLine(new Vector2(15699.1113F, -72.9300003F));
+ builder.AddLine(new Vector2(15699.1113F, -36.3219986F));
+ builder.AddLine(new Vector2(15808.9355F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(15699.9697F, 0F));
+ builder.AddLine(new Vector2(15761.7451F, -167.309998F));
+ builder.AddLine(new Vector2(15745.1572F, -167.309998F));
+ builder.AddLine(new Vector2(15805.5039F, 0F));
+ builder.AddLine(new Vector2(15853.2656F, 0F));
+ builder.AddLine(new Vector2(15774.0439F, -201.916F));
+ builder.AddLine(new Vector2(15733.1465F, -201.916F));
+ builder.AddLine(new Vector2(15653.3516F, 0F));
+ builder.AddLine(new Vector2(15699.9697F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0179()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(15622.749F, 0F));
+ builder.AddLine(new Vector2(15622.749F, -39.4679985F));
+ builder.AddLine(new Vector2(15522.9346F, -39.4679985F));
+ builder.AddLine(new Vector2(15522.9346F, 0F));
+ builder.AddLine(new Vector2(15622.749F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(15533.2305F, 0F));
+ builder.AddLine(new Vector2(15533.2305F, -201.916F));
+ builder.AddLine(new Vector2(15488.043F, -201.916F));
+ builder.AddLine(new Vector2(15488.043F, 0F));
+ builder.AddLine(new Vector2(15533.2305F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0180()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(15430.8428F, -163.020004F));
+ builder.AddLine(new Vector2(15430.8428F, -201.916F));
+ builder.AddLine(new Vector2(15321.5908F, -201.916F));
+ builder.AddLine(new Vector2(15321.5908F, -163.020004F));
+ builder.AddLine(new Vector2(15430.8428F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(15422.2637F, -84.0839996F));
+ builder.AddLine(new Vector2(15422.2637F, -122.122002F));
+ builder.AddLine(new Vector2(15321.5908F, -122.122002F));
+ builder.AddLine(new Vector2(15321.5908F, -84.0839996F));
+ builder.AddLine(new Vector2(15422.2637F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(15432.5596F, 0F));
+ builder.AddLine(new Vector2(15432.5596F, -38.8959999F));
+ builder.AddLine(new Vector2(15321.5908F, -38.8959999F));
+ builder.AddLine(new Vector2(15321.5908F, 0F));
+ builder.AddLine(new Vector2(15432.5596F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(15332.1729F, 0F));
+ builder.AddLine(new Vector2(15332.1729F, -201.916F));
+ builder.AddLine(new Vector2(15286.9854F, -201.916F));
+ builder.AddLine(new Vector2(15286.9854F, 0F));
+ builder.AddLine(new Vector2(15332.1729F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0181()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(15185.8848F, -9.29500008F));
+ builder.AddCubicBezier(new Vector2(15201.2314F, -17.7770004F), new Vector2(15213.2422F, -30.316F), new Vector2(15221.9209F, -46.9039993F));
+ builder.AddCubicBezier(new Vector2(15230.5947F, -63.4920006F), new Vector2(15234.9336F, -83.7979965F), new Vector2(15234.9336F, -107.821999F));
+ builder.AddLine(new Vector2(15234.9336F, -114.400002F));
+ builder.AddLine(new Vector2(15128.8271F, -114.400002F));
+ builder.AddLine(new Vector2(15128.8271F, -76.3619995F));
+ builder.AddLine(new Vector2(15218.918F, -74.9319992F));
+ builder.AddLine(new Vector2(15188.8877F, -94.9520035F));
+ builder.AddCubicBezier(new Vector2(15188.8877F, -82.9400024F), new Vector2(15186.6445F, -72.6439972F), new Vector2(15182.167F, -64.064003F));
+ builder.AddCubicBezier(new Vector2(15177.6846F, -55.4840012F), new Vector2(15171.2988F, -48.9510002F), new Vector2(15163.0049F, -44.4729996F));
+ builder.AddCubicBezier(new Vector2(15154.7109F, -39.9910011F), new Vector2(15144.7451F, -37.7519989F), new Vector2(15133.1172F, -37.7519989F));
+ builder.AddCubicBezier(new Vector2(15121.4854F, -37.7519989F), new Vector2(15111.1895F, -40.4690018F), new Vector2(15102.2285F, -45.9029999F));
+ builder.AddCubicBezier(new Vector2(15093.2646F, -51.3370018F), new Vector2(15086.2129F, -58.8180008F), new Vector2(15081.0654F, -68.3539963F));
+ builder.AddCubicBezier(new Vector2(15075.918F, -77.8860016F), new Vector2(15073.3438F, -88.8479996F), new Vector2(15073.3438F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(15073.3438F, -113.828003F), new Vector2(15075.9619F, -124.838997F), new Vector2(15081.209F, -134.276993F));
+ builder.AddCubicBezier(new Vector2(15086.4502F, -143.714996F), new Vector2(15093.7432F, -151.052994F), new Vector2(15103.0879F, -156.298996F));
+ builder.AddCubicBezier(new Vector2(15112.4268F, -161.541F), new Vector2(15123.0088F, -164.164001F), new Vector2(15134.834F, -164.164001F));
+ builder.AddCubicBezier(new Vector2(15145.7012F, -164.164001F), new Vector2(15155.5693F, -162.018997F), new Vector2(15164.4346F, -157.729004F));
+ builder.AddCubicBezier(new Vector2(15173.3008F, -153.438995F), new Vector2(15180.8799F, -147.098007F), new Vector2(15187.1719F, -138.710007F));
+ builder.AddLine(new Vector2(15218.0596F, -169.598007F));
+ builder.AddCubicBezier(new Vector2(15208.7158F, -180.654007F), new Vector2(15196.8965F, -189.376999F), new Vector2(15182.5957F, -195.766998F));
+ builder.AddCubicBezier(new Vector2(15168.2959F, -202.153F), new Vector2(15152.4668F, -205.348007F), new Vector2(15135.1191F, -205.348007F));
+ builder.AddCubicBezier(new Vector2(15120.0557F, -205.348007F), new Vector2(15105.9932F, -202.675995F), new Vector2(15092.9346F, -197.339996F));
+ builder.AddCubicBezier(new Vector2(15079.873F, -192F), new Vector2(15068.3828F, -184.613007F), new Vector2(15058.4717F, -175.175003F));
+ builder.AddCubicBezier(new Vector2(15048.5557F, -165.737F), new Vector2(15040.833F, -154.770996F), new Vector2(15035.3057F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(15029.7744F, -129.794998F), new Vector2(15027.0117F, -116.115997F), new Vector2(15027.0117F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(15027.0117F, -86.5599976F), new Vector2(15029.7275F, -72.9300003F), new Vector2(15035.1621F, -60.3460007F));
+ builder.AddCubicBezier(new Vector2(15040.5967F, -47.762001F), new Vector2(15048.0771F, -36.7019997F), new Vector2(15057.6133F, -27.1700001F));
+ builder.AddCubicBezier(new Vector2(15067.1445F, -17.6340008F), new Vector2(15078.3486F, -10.1529999F), new Vector2(15091.2188F, -4.71899986F));
+ builder.AddCubicBezier(new Vector2(15104.0889F, 0.714999974F), new Vector2(15117.96F, 3.43199992F), new Vector2(15132.8311F, 3.43199992F));
+ builder.AddCubicBezier(new Vector2(15152.8516F, 3.43199992F), new Vector2(15170.5342F, -0.809000015F), new Vector2(15185.8848F, -9.29500008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0182()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(14957.5137F, -36.3219986F));
+ builder.AddLine(new Vector2(14957.5137F, -72.9300003F));
+ builder.AddLine(new Vector2(14847.6895F, -72.9300003F));
+ builder.AddLine(new Vector2(14847.6895F, -36.3219986F));
+ builder.AddLine(new Vector2(14957.5137F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(14848.5479F, 0F));
+ builder.AddLine(new Vector2(14910.3232F, -167.309998F));
+ builder.AddLine(new Vector2(14893.7354F, -167.309998F));
+ builder.AddLine(new Vector2(14954.082F, 0F));
+ builder.AddLine(new Vector2(15001.8438F, 0F));
+ builder.AddLine(new Vector2(14922.6221F, -201.916F));
+ builder.AddLine(new Vector2(14881.7236F, -201.916F));
+ builder.AddLine(new Vector2(14801.9297F, 0F));
+ builder.AddLine(new Vector2(14848.5479F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0183()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(14753.0225F, 0F));
+ builder.AddLine(new Vector2(14753.0225F, -201.916F));
+ builder.AddLine(new Vector2(14707.835F, -201.916F));
+ builder.AddLine(new Vector2(14707.835F, 0F));
+ builder.AddLine(new Vector2(14753.0225F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0184()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(14634.0479F, -13.2989998F));
+ builder.AddCubicBezier(new Vector2(14647.7764F, -24.2609997F), new Vector2(14654.6396F, -39.3699989F), new Vector2(14654.6396F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(14654.6396F, -69.3059998F), new Vector2(14652.874F, -78.1719971F), new Vector2(14649.3486F, -85.2279968F));
+ builder.AddCubicBezier(new Vector2(14645.8193F, -92.2799988F), new Vector2(14641.291F, -98.1920013F), new Vector2(14635.7637F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(14630.2324F, -107.723999F), new Vector2(14624.082F, -111.584999F), new Vector2(14617.3164F, -114.542999F));
+ builder.AddCubicBezier(new Vector2(14610.5459F, -117.497002F), new Vector2(14603.7773F, -120.120003F), new Vector2(14597.0107F, -122.407997F));
+ builder.AddCubicBezier(new Vector2(14590.2402F, -124.695999F), new Vector2(14584.042F, -126.984001F), new Vector2(14578.4209F, -129.272003F));
+ builder.AddCubicBezier(new Vector2(14572.7939F, -131.559998F), new Vector2(14568.2676F, -134.276993F), new Vector2(14564.8359F, -137.423004F));
+ builder.AddCubicBezier(new Vector2(14561.4033F, -140.569F), new Vector2(14559.6885F, -144.617996F), new Vector2(14559.6885F, -149.578003F));
+ builder.AddCubicBezier(new Vector2(14559.6885F, -155.106003F), new Vector2(14561.9756F, -159.347F), new Vector2(14566.5518F, -162.304993F));
+ builder.AddCubicBezier(new Vector2(14571.1279F, -165.259003F), new Vector2(14577.3223F, -166.738007F), new Vector2(14585.1416F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(14592.7656F, -166.738007F), new Vector2(14599.6787F, -165.210007F), new Vector2(14605.877F, -162.162003F));
+ builder.AddCubicBezier(new Vector2(14612.0703F, -159.110001F), new Vector2(14618.2188F, -154.440002F), new Vector2(14624.3232F, -148.147995F));
+ builder.AddLine(new Vector2(14653.7812F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(14646.1533F, -185.994003F), new Vector2(14636.5244F, -192.666F), new Vector2(14624.8965F, -197.626007F));
+ builder.AddCubicBezier(new Vector2(14613.2637F, -202.582001F), new Vector2(14600.2998F, -205.061996F), new Vector2(14586F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(14572.2715F, -205.061996F), new Vector2(14559.9727F, -202.725006F), new Vector2(14549.1055F, -198.054993F));
+ builder.AddCubicBezier(new Vector2(14538.2373F, -193.380997F), new Vector2(14529.8008F, -186.565994F), new Vector2(14523.7949F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(14517.7891F, -168.641998F), new Vector2(14514.7852F, -157.871994F), new Vector2(14514.7852F, -145.287994F));
+ builder.AddCubicBezier(new Vector2(14514.7852F, -135.179993F), new Vector2(14516.502F, -126.697998F), new Vector2(14519.9336F, -119.834F));
+ builder.AddCubicBezier(new Vector2(14523.3662F, -112.970001F), new Vector2(14527.8926F, -107.344002F), new Vector2(14533.5186F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(14539.1406F, -98.5719986F), new Vector2(14545.3379F, -94.8539963F), new Vector2(14552.1084F, -91.8059998F));
+ builder.AddCubicBezier(new Vector2(14558.874F, -88.7539978F), new Vector2(14565.5947F, -86.1309967F), new Vector2(14572.2715F, -83.9410019F));
+ builder.AddCubicBezier(new Vector2(14578.9434F, -81.7470016F), new Vector2(14585.1406F, -79.4100037F), new Vector2(14590.8613F, -76.9339981F));
+ builder.AddCubicBezier(new Vector2(14596.582F, -74.4540024F), new Vector2(14601.1084F, -71.5F), new Vector2(14604.4463F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(14607.7803F, -64.6360016F), new Vector2(14609.4512F, -60.2480011F), new Vector2(14609.4512F, -54.9119987F));
+ builder.AddCubicBezier(new Vector2(14609.4512F, -48.8079987F), new Vector2(14606.8281F, -43.9949989F), new Vector2(14601.5869F, -40.4690018F));
+ builder.AddCubicBezier(new Vector2(14596.3398F, -36.9389992F), new Vector2(14589.0469F, -35.1780014F), new Vector2(14579.708F, -35.1780014F));
+ builder.AddCubicBezier(new Vector2(14569.2197F, -35.1780014F), new Vector2(14560.0176F, -37.2249985F), new Vector2(14552.1084F, -41.3269997F));
+ builder.AddCubicBezier(new Vector2(14544.1943F, -45.4249992F), new Vector2(14536.9951F, -51.1940002F), new Vector2(14530.5156F, -58.6300011F));
+ builder.AddLine(new Vector2(14501.3438F, -29.4580002F));
+ builder.AddCubicBezier(new Vector2(14511.0684F, -18.3980007F), new Vector2(14521.8867F, -10.198F), new Vector2(14533.8047F, -4.86199999F));
+ builder.AddCubicBezier(new Vector2(14545.7188F, 0.474000007F), new Vector2(14560.0684F, 3.14599991F), new Vector2(14576.8477F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(14601.251F, 3.14599991F), new Vector2(14620.3193F, -2.33299994F), new Vector2(14634.0479F, -13.2989998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0185()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(14463.877F, -163.020004F));
+ builder.AddLine(new Vector2(14463.877F, -201.916F));
+ builder.AddLine(new Vector2(14354.625F, -201.916F));
+ builder.AddLine(new Vector2(14354.625F, -163.020004F));
+ builder.AddLine(new Vector2(14463.877F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(14455.2979F, -84.0839996F));
+ builder.AddLine(new Vector2(14455.2979F, -122.122002F));
+ builder.AddLine(new Vector2(14354.625F, -122.122002F));
+ builder.AddLine(new Vector2(14354.625F, -84.0839996F));
+ builder.AddLine(new Vector2(14455.2979F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(14465.5938F, 0F));
+ builder.AddLine(new Vector2(14465.5938F, -38.8959999F));
+ builder.AddLine(new Vector2(14354.625F, -38.8959999F));
+ builder.AddLine(new Vector2(14354.625F, 0F));
+ builder.AddLine(new Vector2(14465.5938F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(14365.207F, 0F));
+ builder.AddLine(new Vector2(14365.207F, -201.916F));
+ builder.AddLine(new Vector2(14320.0195F, -201.916F));
+ builder.AddLine(new Vector2(14320.0195F, 0F));
+ builder.AddLine(new Vector2(14365.207F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0186()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(14256.5273F, 0F));
+ builder.AddLine(new Vector2(14256.5273F, -201.916F));
+ builder.AddLine(new Vector2(14211.0527F, -201.916F));
+ builder.AddLine(new Vector2(14211.0527F, -40.3260002F));
+ builder.AddLine(new Vector2(14223.0654F, 0F));
+ builder.AddLine(new Vector2(14256.5273F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(14234.5049F, -49.4780006F));
+ builder.AddLine(new Vector2(14115.5293F, -201.916F));
+ builder.AddLine(new Vector2(14104.375F, -152.438004F));
+ builder.AddLine(new Vector2(14223.0654F, 0F));
+ builder.AddLine(new Vector2(14234.5049F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(14128.9707F, 0F));
+ builder.AddLine(new Vector2(14128.9707F, -161.589996F));
+ builder.AddLine(new Vector2(14115.5293F, -201.916F));
+ builder.AddLine(new Vector2(14083.7832F, -201.916F));
+ builder.AddLine(new Vector2(14083.7832F, 0F));
+ builder.AddLine(new Vector2(14128.9707F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0187()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(13899.4561F, -42.1850014F));
+ builder.AddCubicBezier(new Vector2(13892.1143F, -45.1389999F), new Vector2(13885.7744F, -49.4290009F), new Vector2(13880.4385F, -55.0550003F));
+ builder.AddCubicBezier(new Vector2(13875.0977F, -60.6769981F), new Vector2(13870.999F, -67.3980026F), new Vector2(13868.1396F, -75.2180023F));
+ builder.AddCubicBezier(new Vector2(13865.2803F, -83.0339966F), new Vector2(13863.8496F, -91.7080002F), new Vector2(13863.8496F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(13863.8496F, -113.828003F), new Vector2(13866.3252F, -124.838997F), new Vector2(13871.2852F, -134.276993F));
+ builder.AddCubicBezier(new Vector2(13876.2412F, -143.714996F), new Vector2(13883.248F, -151.052994F), new Vector2(13892.3066F, -156.298996F));
+ builder.AddCubicBezier(new Vector2(13901.3613F, -161.541F), new Vector2(13911.8975F, -164.164001F), new Vector2(13923.9092F, -164.164001F));
+ builder.AddCubicBezier(new Vector2(13932.6768F, -164.164001F), new Vector2(13940.7832F, -162.684998F), new Vector2(13948.2197F, -159.731003F));
+ builder.AddCubicBezier(new Vector2(13955.6562F, -156.772995F), new Vector2(13962.041F, -152.483002F), new Vector2(13967.3818F, -146.860992F));
+ builder.AddCubicBezier(new Vector2(13972.7168F, -141.235001F), new Vector2(13976.8203F, -134.563004F), new Vector2(13979.6797F, -126.841003F));
+ builder.AddCubicBezier(new Vector2(13982.5391F, -119.119003F), new Vector2(13983.9697F, -110.584F), new Vector2(13983.9697F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(13983.9697F, -88.6600037F), new Vector2(13981.4414F, -77.5999985F), new Vector2(13976.3906F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(13971.3359F, -58.5320015F), new Vector2(13964.3291F, -51.0960007F), new Vector2(13955.3691F, -45.7599983F));
+ builder.AddCubicBezier(new Vector2(13946.4053F, -40.4199982F), new Vector2(13935.9209F, -37.7519989F), new Vector2(13923.9092F, -37.7519989F));
+ builder.AddCubicBezier(new Vector2(13914.9453F, -37.7519989F), new Vector2(13906.7939F, -39.2270012F), new Vector2(13899.4561F, -42.1850014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(13966.2373F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(13979.0078F, -9.9119997F), new Vector2(13990.1631F, -17.3029995F), new Vector2(13999.6992F, -26.7409992F));
+ builder.AddCubicBezier(new Vector2(14009.2314F, -36.1790009F), new Vector2(14016.667F, -47.2350006F), new Vector2(14022.0078F, -59.9169998F));
+ builder.AddCubicBezier(new Vector2(14027.3428F, -72.5950012F), new Vector2(14030.0156F, -86.2740021F), new Vector2(14030.0156F, -100.958F));
+ builder.AddCubicBezier(new Vector2(14030.0156F, -115.830002F), new Vector2(14027.3916F, -129.602997F), new Vector2(14022.1504F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(14016.9043F, -154.962997F), new Vector2(14009.4238F, -166.022995F), new Vector2(13999.6992F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(13989.9746F, -184.899002F), new Vector2(13978.6787F, -192.237F), new Vector2(13965.8086F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(13952.9395F, -202.725006F), new Vector2(13938.9688F, -205.348007F), new Vector2(13923.9092F, -205.348007F));
+ builder.AddCubicBezier(new Vector2(13908.6533F, -205.348007F), new Vector2(13894.5449F, -202.725006F), new Vector2(13881.5811F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(13868.6133F, -192.237F), new Vector2(13857.3652F, -184.899002F), new Vector2(13847.833F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(13838.2969F, -166.022995F), new Vector2(13830.8613F, -155.011993F), new Vector2(13825.5254F, -142.427994F));
+ builder.AddCubicBezier(new Vector2(13820.1846F, -129.843994F), new Vector2(13817.5176F, -116.115997F), new Vector2(13817.5176F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(13817.5176F, -86.5599976F), new Vector2(13820.1846F, -72.8809967F), new Vector2(13825.5254F, -60.2029991F));
+ builder.AddCubicBezier(new Vector2(13830.8613F, -47.5209999F), new Vector2(13838.3945F, -36.4160004F), new Vector2(13848.1191F, -26.8840008F));
+ builder.AddCubicBezier(new Vector2(13857.8438F, -17.3479996F), new Vector2(13869.1836F, -9.9119997F), new Vector2(13882.1533F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(13895.1172F, 0.75999999F), new Vector2(13909.2236F, 3.43199992F), new Vector2(13924.4814F, 3.43199992F));
+ builder.AddCubicBezier(new Vector2(13939.541F, 3.43199992F), new Vector2(13953.4609F, 0.75999999F), new Vector2(13966.2373F, -4.57600021F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0188()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(13632.1895F, 0F));
+ builder.AddLine(new Vector2(13632.1895F, -201.916F));
+ builder.AddLine(new Vector2(13587.002F, -201.916F));
+ builder.AddLine(new Vector2(13587.002F, 0F));
+ builder.AddLine(new Vector2(13632.1895F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(13668.7979F, 0F));
+ builder.AddCubicBezier(new Vector2(13683.8584F, 0F), new Vector2(13697.8271F, -2.47600007F), new Vector2(13710.6973F, -7.43599987F));
+ builder.AddCubicBezier(new Vector2(13723.5664F, -12.3920002F), new Vector2(13734.7656F, -19.3990002F), new Vector2(13744.3018F, -28.4570007F));
+ builder.AddCubicBezier(new Vector2(13753.834F, -37.5110016F), new Vector2(13761.2686F, -48.1910019F), new Vector2(13766.6094F, -60.4889984F));
+ builder.AddCubicBezier(new Vector2(13771.9453F, -72.7870026F), new Vector2(13774.6182F, -86.2740021F), new Vector2(13774.6182F, -100.958F));
+ builder.AddCubicBezier(new Vector2(13774.6182F, -116.017998F), new Vector2(13771.9453F, -129.651993F), new Vector2(13766.6094F, -141.856003F));
+ builder.AddCubicBezier(new Vector2(13761.2686F, -154.056F), new Vector2(13753.7842F, -164.686996F), new Vector2(13744.1592F, -173.744995F));
+ builder.AddCubicBezier(new Vector2(13734.5283F, -182.798996F), new Vector2(13723.2812F, -189.761002F), new Vector2(13710.4111F, -194.623001F));
+ builder.AddCubicBezier(new Vector2(13697.541F, -199.485001F), new Vector2(13683.4775F, -201.916F), new Vector2(13668.2256F, -201.916F));
+ builder.AddLine(new Vector2(13616.46F, -201.916F));
+ builder.AddLine(new Vector2(13616.46F, -162.447998F));
+ builder.AddLine(new Vector2(13667.6543F, -162.447998F));
+ builder.AddCubicBezier(new Vector2(13679.666F, -162.447998F), new Vector2(13690.1982F, -160.016998F), new Vector2(13699.2568F, -155.154999F));
+ builder.AddCubicBezier(new Vector2(13708.3105F, -150.292999F), new Vector2(13715.3662F, -143.237F), new Vector2(13720.4209F, -133.990997F));
+ builder.AddCubicBezier(new Vector2(13725.4707F, -124.740997F), new Vector2(13728F, -113.828003F), new Vector2(13728F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(13728F, -88.4680023F), new Vector2(13725.5186F, -77.4570007F), new Vector2(13720.5635F, -68.2109985F));
+ builder.AddCubicBezier(new Vector2(13715.6025F, -58.9609985F), new Vector2(13708.5967F, -51.8600006F), new Vector2(13699.543F, -46.9039993F));
+ builder.AddCubicBezier(new Vector2(13690.4844F, -41.9440002F), new Vector2(13679.8525F, -39.4679985F), new Vector2(13667.6543F, -39.4679985F));
+ builder.AddLine(new Vector2(13617.8896F, -39.4679985F));
+ builder.AddLine(new Vector2(13617.8896F, 0F));
+ builder.AddLine(new Vector2(13668.7979F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0189()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(13523.5098F, 0F));
+ builder.AddLine(new Vector2(13523.5098F, -201.916F));
+ builder.AddLine(new Vector2(13478.0352F, -201.916F));
+ builder.AddLine(new Vector2(13478.0352F, -40.3260002F));
+ builder.AddLine(new Vector2(13490.0479F, 0F));
+ builder.AddLine(new Vector2(13523.5098F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(13501.4873F, -49.4780006F));
+ builder.AddLine(new Vector2(13382.5117F, -201.916F));
+ builder.AddLine(new Vector2(13371.3574F, -152.438004F));
+ builder.AddLine(new Vector2(13490.0479F, 0F));
+ builder.AddLine(new Vector2(13501.4873F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(13395.9531F, 0F));
+ builder.AddLine(new Vector2(13395.9531F, -161.589996F));
+ builder.AddLine(new Vector2(13382.5117F, -201.916F));
+ builder.AddLine(new Vector2(13350.7656F, -201.916F));
+ builder.AddLine(new Vector2(13350.7656F, 0F));
+ builder.AddLine(new Vector2(13395.9531F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0190()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(13286.9873F, 0F));
+ builder.AddLine(new Vector2(13286.9873F, -201.916F));
+ builder.AddLine(new Vector2(13241.7998F, -201.916F));
+ builder.AddLine(new Vector2(13241.7998F, 0F));
+ builder.AddLine(new Vector2(13286.9873F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0191()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(13187.46F, -117.260002F));
+ builder.AddLine(new Vector2(13187.46F, -148.720001F));
+ builder.AddLine(new Vector2(13027.5859F, -148.720001F));
+ builder.AddLine(new Vector2(13027.5859F, -117.260002F));
+ builder.AddLine(new Vector2(13187.46F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(13071.0576F, 0F));
+ builder.AddLine(new Vector2(13104.2334F, -201.916F));
+ builder.AddLine(new Vector2(13068.4834F, -201.916F));
+ builder.AddLine(new Vector2(13035.0215F, 0F));
+ builder.AddLine(new Vector2(13071.0576F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(13178.0215F, -57.4860001F));
+ builder.AddLine(new Vector2(13178.0215F, -88.9459991F));
+ builder.AddLine(new Vector2(13017.8613F, -88.9459991F));
+ builder.AddLine(new Vector2(13017.8613F, -57.4860001F));
+ builder.AddLine(new Vector2(13178.0215F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(13135.1221F, 0F));
+ builder.AddLine(new Vector2(13168.8701F, -201.916F));
+ builder.AddLine(new Vector2(13132.834F, -201.916F));
+ builder.AddLine(new Vector2(13099.6572F, 0F));
+ builder.AddLine(new Vector2(13135.1221F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0192()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(12934.3496F, -36.3219986F));
+ builder.AddLine(new Vector2(12934.3496F, -72.9300003F));
+ builder.AddLine(new Vector2(12824.5254F, -72.9300003F));
+ builder.AddLine(new Vector2(12824.5254F, -36.3219986F));
+ builder.AddLine(new Vector2(12934.3496F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(12825.3838F, 0F));
+ builder.AddLine(new Vector2(12887.1592F, -167.309998F));
+ builder.AddLine(new Vector2(12870.5713F, -167.309998F));
+ builder.AddLine(new Vector2(12930.918F, 0F));
+ builder.AddLine(new Vector2(12978.6797F, 0F));
+ builder.AddLine(new Vector2(12899.458F, -201.916F));
+ builder.AddLine(new Vector2(12858.5596F, -201.916F));
+ builder.AddLine(new Vector2(12778.7656F, 0F));
+ builder.AddLine(new Vector2(12825.3838F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0193()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(12729.8594F, 0F));
+ builder.AddLine(new Vector2(12729.8594F, -201.916F));
+ builder.AddLine(new Vector2(12684.6719F, -201.916F));
+ builder.AddLine(new Vector2(12684.6719F, 0F));
+ builder.AddLine(new Vector2(12729.8594F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0194()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(12610.8838F, -13.2989998F));
+ builder.AddCubicBezier(new Vector2(12624.6123F, -24.2609997F), new Vector2(12631.4756F, -39.3699989F), new Vector2(12631.4756F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(12631.4756F, -69.3059998F), new Vector2(12629.71F, -78.1719971F), new Vector2(12626.1846F, -85.2279968F));
+ builder.AddCubicBezier(new Vector2(12622.6553F, -92.2799988F), new Vector2(12618.127F, -98.1920013F), new Vector2(12612.5996F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(12607.0684F, -107.723999F), new Vector2(12600.918F, -111.584999F), new Vector2(12594.1523F, -114.542999F));
+ builder.AddCubicBezier(new Vector2(12587.3818F, -117.497002F), new Vector2(12580.6133F, -120.120003F), new Vector2(12573.8467F, -122.407997F));
+ builder.AddCubicBezier(new Vector2(12567.0762F, -124.695999F), new Vector2(12560.8779F, -126.984001F), new Vector2(12555.2568F, -129.272003F));
+ builder.AddCubicBezier(new Vector2(12549.6299F, -131.559998F), new Vector2(12545.1035F, -134.276993F), new Vector2(12541.6719F, -137.423004F));
+ builder.AddCubicBezier(new Vector2(12538.2393F, -140.569F), new Vector2(12536.5234F, -144.617996F), new Vector2(12536.5234F, -149.578003F));
+ builder.AddCubicBezier(new Vector2(12536.5234F, -155.106003F), new Vector2(12538.8115F, -159.347F), new Vector2(12543.3877F, -162.304993F));
+ builder.AddCubicBezier(new Vector2(12547.9639F, -165.259003F), new Vector2(12554.1582F, -166.738007F), new Vector2(12561.9775F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(12569.6016F, -166.738007F), new Vector2(12576.5146F, -165.210007F), new Vector2(12582.7129F, -162.162003F));
+ builder.AddCubicBezier(new Vector2(12588.9062F, -159.110001F), new Vector2(12595.0547F, -154.440002F), new Vector2(12601.1592F, -148.147995F));
+ builder.AddLine(new Vector2(12630.6172F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(12622.9893F, -185.994003F), new Vector2(12613.3594F, -192.666F), new Vector2(12601.7314F, -197.626007F));
+ builder.AddCubicBezier(new Vector2(12590.0986F, -202.582001F), new Vector2(12577.1357F, -205.061996F), new Vector2(12562.8359F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(12549.1074F, -205.061996F), new Vector2(12536.8086F, -202.725006F), new Vector2(12525.9414F, -198.054993F));
+ builder.AddCubicBezier(new Vector2(12515.0732F, -193.380997F), new Vector2(12506.6367F, -186.565994F), new Vector2(12500.6309F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(12494.625F, -168.641998F), new Vector2(12491.6211F, -157.871994F), new Vector2(12491.6211F, -145.287994F));
+ builder.AddCubicBezier(new Vector2(12491.6211F, -135.179993F), new Vector2(12493.3379F, -126.697998F), new Vector2(12496.7695F, -119.834F));
+ builder.AddCubicBezier(new Vector2(12500.2021F, -112.970001F), new Vector2(12504.7275F, -107.344002F), new Vector2(12510.3535F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(12515.9756F, -98.5719986F), new Vector2(12522.1738F, -94.8539963F), new Vector2(12528.9443F, -91.8059998F));
+ builder.AddCubicBezier(new Vector2(12535.71F, -88.7539978F), new Vector2(12542.4307F, -86.1309967F), new Vector2(12549.1074F, -83.9410019F));
+ builder.AddCubicBezier(new Vector2(12555.7793F, -81.7470016F), new Vector2(12561.9766F, -79.4100037F), new Vector2(12567.6973F, -76.9339981F));
+ builder.AddCubicBezier(new Vector2(12573.418F, -74.4540024F), new Vector2(12577.9443F, -71.5F), new Vector2(12581.2822F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(12584.6162F, -64.6360016F), new Vector2(12586.2871F, -60.2480011F), new Vector2(12586.2871F, -54.9119987F));
+ builder.AddCubicBezier(new Vector2(12586.2871F, -48.8079987F), new Vector2(12583.6641F, -43.9949989F), new Vector2(12578.4229F, -40.4690018F));
+ builder.AddCubicBezier(new Vector2(12573.1758F, -36.9389992F), new Vector2(12565.8828F, -35.1780014F), new Vector2(12556.5439F, -35.1780014F));
+ builder.AddCubicBezier(new Vector2(12546.0557F, -35.1780014F), new Vector2(12536.8535F, -37.2249985F), new Vector2(12528.9443F, -41.3269997F));
+ builder.AddCubicBezier(new Vector2(12521.0303F, -45.4249992F), new Vector2(12513.8311F, -51.1940002F), new Vector2(12507.3516F, -58.6300011F));
+ builder.AddLine(new Vector2(12478.1797F, -29.4580002F));
+ builder.AddCubicBezier(new Vector2(12487.9043F, -18.3980007F), new Vector2(12498.7227F, -10.198F), new Vector2(12510.6406F, -4.86199999F));
+ builder.AddCubicBezier(new Vector2(12522.5547F, 0.474000007F), new Vector2(12536.9043F, 3.14599991F), new Vector2(12553.6836F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(12578.0869F, 3.14599991F), new Vector2(12597.1553F, -2.33299994F), new Vector2(12610.8838F, -13.2989998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0195()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(12440.7129F, -163.020004F));
+ builder.AddLine(new Vector2(12440.7129F, -201.916F));
+ builder.AddLine(new Vector2(12331.4609F, -201.916F));
+ builder.AddLine(new Vector2(12331.4609F, -163.020004F));
+ builder.AddLine(new Vector2(12440.7129F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(12432.1338F, -84.0839996F));
+ builder.AddLine(new Vector2(12432.1338F, -122.122002F));
+ builder.AddLine(new Vector2(12331.4609F, -122.122002F));
+ builder.AddLine(new Vector2(12331.4609F, -84.0839996F));
+ builder.AddLine(new Vector2(12432.1338F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(12442.4297F, 0F));
+ builder.AddLine(new Vector2(12442.4297F, -38.8959999F));
+ builder.AddLine(new Vector2(12331.4609F, -38.8959999F));
+ builder.AddLine(new Vector2(12331.4609F, 0F));
+ builder.AddLine(new Vector2(12442.4297F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(12342.043F, 0F));
+ builder.AddLine(new Vector2(12342.043F, -201.916F));
+ builder.AddLine(new Vector2(12296.8555F, -201.916F));
+ builder.AddLine(new Vector2(12296.8555F, 0F));
+ builder.AddLine(new Vector2(12342.043F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0196()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(12233.3643F, 0F));
+ builder.AddLine(new Vector2(12233.3643F, -201.916F));
+ builder.AddLine(new Vector2(12187.8896F, -201.916F));
+ builder.AddLine(new Vector2(12187.8896F, -40.3260002F));
+ builder.AddLine(new Vector2(12199.9023F, 0F));
+ builder.AddLine(new Vector2(12233.3643F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(12211.3418F, -49.4780006F));
+ builder.AddLine(new Vector2(12092.3662F, -201.916F));
+ builder.AddLine(new Vector2(12081.2119F, -152.438004F));
+ builder.AddLine(new Vector2(12199.9023F, 0F));
+ builder.AddLine(new Vector2(12211.3418F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(12105.8076F, 0F));
+ builder.AddLine(new Vector2(12105.8076F, -161.589996F));
+ builder.AddLine(new Vector2(12092.3662F, -201.916F));
+ builder.AddLine(new Vector2(12060.6201F, -201.916F));
+ builder.AddLine(new Vector2(12060.6201F, 0F));
+ builder.AddLine(new Vector2(12105.8076F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0197()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(11876.292F, -42.1850014F));
+ builder.AddCubicBezier(new Vector2(11868.9502F, -45.1389999F), new Vector2(11862.6094F, -49.4290009F), new Vector2(11857.2734F, -55.0550003F));
+ builder.AddCubicBezier(new Vector2(11851.9326F, -60.6769981F), new Vector2(11847.835F, -67.3980026F), new Vector2(11844.9756F, -75.2180023F));
+ builder.AddCubicBezier(new Vector2(11842.1162F, -83.0339966F), new Vector2(11840.6855F, -91.7080002F), new Vector2(11840.6855F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(11840.6855F, -113.828003F), new Vector2(11843.1611F, -124.838997F), new Vector2(11848.1211F, -134.276993F));
+ builder.AddCubicBezier(new Vector2(11853.0771F, -143.714996F), new Vector2(11860.084F, -151.052994F), new Vector2(11869.1426F, -156.298996F));
+ builder.AddCubicBezier(new Vector2(11878.1973F, -161.541F), new Vector2(11888.7334F, -164.164001F), new Vector2(11900.7451F, -164.164001F));
+ builder.AddCubicBezier(new Vector2(11909.5127F, -164.164001F), new Vector2(11917.6191F, -162.684998F), new Vector2(11925.0557F, -159.731003F));
+ builder.AddCubicBezier(new Vector2(11932.4922F, -156.772995F), new Vector2(11938.877F, -152.483002F), new Vector2(11944.2178F, -146.860992F));
+ builder.AddCubicBezier(new Vector2(11949.5527F, -141.235001F), new Vector2(11953.6562F, -134.563004F), new Vector2(11956.5156F, -126.841003F));
+ builder.AddCubicBezier(new Vector2(11959.375F, -119.119003F), new Vector2(11960.8057F, -110.584F), new Vector2(11960.8057F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(11960.8057F, -88.6600037F), new Vector2(11958.2773F, -77.5999985F), new Vector2(11953.2266F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(11948.1719F, -58.5320015F), new Vector2(11941.165F, -51.0960007F), new Vector2(11932.2051F, -45.7599983F));
+ builder.AddCubicBezier(new Vector2(11923.2412F, -40.4199982F), new Vector2(11912.7568F, -37.7519989F), new Vector2(11900.7451F, -37.7519989F));
+ builder.AddCubicBezier(new Vector2(11891.7812F, -37.7519989F), new Vector2(11883.6299F, -39.2270012F), new Vector2(11876.292F, -42.1850014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(11943.0732F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(11955.8438F, -9.9119997F), new Vector2(11966.999F, -17.3029995F), new Vector2(11976.5352F, -26.7409992F));
+ builder.AddCubicBezier(new Vector2(11986.0674F, -36.1790009F), new Vector2(11993.5029F, -47.2350006F), new Vector2(11998.8438F, -59.9169998F));
+ builder.AddCubicBezier(new Vector2(12004.1787F, -72.5950012F), new Vector2(12006.8516F, -86.2740021F), new Vector2(12006.8516F, -100.958F));
+ builder.AddCubicBezier(new Vector2(12006.8516F, -115.830002F), new Vector2(12004.2275F, -129.602997F), new Vector2(11998.9863F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(11993.7402F, -154.962997F), new Vector2(11986.2598F, -166.022995F), new Vector2(11976.5352F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(11966.8105F, -184.899002F), new Vector2(11955.5146F, -192.237F), new Vector2(11942.6445F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(11929.7754F, -202.725006F), new Vector2(11915.8047F, -205.348007F), new Vector2(11900.7451F, -205.348007F));
+ builder.AddCubicBezier(new Vector2(11885.4893F, -205.348007F), new Vector2(11871.3809F, -202.725006F), new Vector2(11858.417F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(11845.4492F, -192.237F), new Vector2(11834.2012F, -184.899002F), new Vector2(11824.6689F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(11815.1328F, -166.022995F), new Vector2(11807.6973F, -155.011993F), new Vector2(11802.3613F, -142.427994F));
+ builder.AddCubicBezier(new Vector2(11797.0215F, -129.843994F), new Vector2(11794.3535F, -116.115997F), new Vector2(11794.3535F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(11794.3535F, -86.5599976F), new Vector2(11797.0215F, -72.8809967F), new Vector2(11802.3613F, -60.2029991F));
+ builder.AddCubicBezier(new Vector2(11807.6973F, -47.5209999F), new Vector2(11815.2314F, -36.4160004F), new Vector2(11824.9551F, -26.8840008F));
+ builder.AddCubicBezier(new Vector2(11834.6797F, -17.3479996F), new Vector2(11846.0195F, -9.9119997F), new Vector2(11858.9893F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(11871.9531F, 0.75999999F), new Vector2(11886.0596F, 3.43199992F), new Vector2(11901.3174F, 3.43199992F));
+ builder.AddCubicBezier(new Vector2(11916.377F, 3.43199992F), new Vector2(11930.2969F, 0.75999999F), new Vector2(11943.0732F, -4.57600021F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0198()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(11609.0254F, 0F));
+ builder.AddLine(new Vector2(11609.0254F, -201.916F));
+ builder.AddLine(new Vector2(11563.8379F, -201.916F));
+ builder.AddLine(new Vector2(11563.8379F, 0F));
+ builder.AddLine(new Vector2(11609.0254F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(11645.6338F, 0F));
+ builder.AddCubicBezier(new Vector2(11660.6943F, 0F), new Vector2(11674.6631F, -2.47600007F), new Vector2(11687.5332F, -7.43599987F));
+ builder.AddCubicBezier(new Vector2(11700.4023F, -12.3920002F), new Vector2(11711.6016F, -19.3990002F), new Vector2(11721.1377F, -28.4570007F));
+ builder.AddCubicBezier(new Vector2(11730.6699F, -37.5110016F), new Vector2(11738.1055F, -48.1910019F), new Vector2(11743.4453F, -60.4889984F));
+ builder.AddCubicBezier(new Vector2(11748.7812F, -72.7870026F), new Vector2(11751.4541F, -86.2740021F), new Vector2(11751.4541F, -100.958F));
+ builder.AddCubicBezier(new Vector2(11751.4541F, -116.017998F), new Vector2(11748.7812F, -129.651993F), new Vector2(11743.4453F, -141.856003F));
+ builder.AddCubicBezier(new Vector2(11738.1055F, -154.056F), new Vector2(11730.6201F, -164.686996F), new Vector2(11720.9951F, -173.744995F));
+ builder.AddCubicBezier(new Vector2(11711.3643F, -182.798996F), new Vector2(11700.1172F, -189.761002F), new Vector2(11687.2471F, -194.623001F));
+ builder.AddCubicBezier(new Vector2(11674.377F, -199.485001F), new Vector2(11660.3145F, -201.916F), new Vector2(11645.0615F, -201.916F));
+ builder.AddLine(new Vector2(11593.2959F, -201.916F));
+ builder.AddLine(new Vector2(11593.2959F, -162.447998F));
+ builder.AddLine(new Vector2(11644.4902F, -162.447998F));
+ builder.AddCubicBezier(new Vector2(11656.502F, -162.447998F), new Vector2(11667.0342F, -160.016998F), new Vector2(11676.0928F, -155.154999F));
+ builder.AddCubicBezier(new Vector2(11685.1475F, -150.292999F), new Vector2(11692.2021F, -143.237F), new Vector2(11697.2568F, -133.990997F));
+ builder.AddCubicBezier(new Vector2(11702.3066F, -124.740997F), new Vector2(11704.8359F, -113.828003F), new Vector2(11704.8359F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(11704.8359F, -88.4680023F), new Vector2(11702.3555F, -77.4570007F), new Vector2(11697.3994F, -68.2109985F));
+ builder.AddCubicBezier(new Vector2(11692.4395F, -58.9609985F), new Vector2(11685.4326F, -51.8600006F), new Vector2(11676.3789F, -46.9039993F));
+ builder.AddCubicBezier(new Vector2(11667.3203F, -41.9440002F), new Vector2(11656.6895F, -39.4679985F), new Vector2(11644.4902F, -39.4679985F));
+ builder.AddLine(new Vector2(11594.7256F, -39.4679985F));
+ builder.AddLine(new Vector2(11594.7256F, 0F));
+ builder.AddLine(new Vector2(11645.6338F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0199()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(11500.3457F, 0F));
+ builder.AddLine(new Vector2(11500.3457F, -201.916F));
+ builder.AddLine(new Vector2(11454.8711F, -201.916F));
+ builder.AddLine(new Vector2(11454.8711F, -40.3260002F));
+ builder.AddLine(new Vector2(11466.8838F, 0F));
+ builder.AddLine(new Vector2(11500.3457F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(11478.3232F, -49.4780006F));
+ builder.AddLine(new Vector2(11359.3477F, -201.916F));
+ builder.AddLine(new Vector2(11348.1934F, -152.438004F));
+ builder.AddLine(new Vector2(11466.8838F, 0F));
+ builder.AddLine(new Vector2(11478.3232F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(11372.7891F, 0F));
+ builder.AddLine(new Vector2(11372.7891F, -161.589996F));
+ builder.AddLine(new Vector2(11359.3477F, -201.916F));
+ builder.AddLine(new Vector2(11327.6016F, -201.916F));
+ builder.AddLine(new Vector2(11327.6016F, 0F));
+ builder.AddLine(new Vector2(11372.7891F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0200()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(11263.8232F, 0F));
+ builder.AddLine(new Vector2(11263.8232F, -201.916F));
+ builder.AddLine(new Vector2(11218.6357F, -201.916F));
+ builder.AddLine(new Vector2(11218.6357F, 0F));
+ builder.AddLine(new Vector2(11263.8232F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0201()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(11168.5859F, -162.447998F));
+ builder.AddLine(new Vector2(11168.5859F, -201.916F));
+ builder.AddLine(new Vector2(10996.9854F, -201.916F));
+ builder.AddLine(new Vector2(10996.9854F, -162.447998F));
+ builder.AddLine(new Vector2(11168.5859F, -162.447998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(11105.666F, 0F));
+ builder.AddLine(new Vector2(11105.666F, -199.341995F));
+ builder.AddLine(new Vector2(11060.1914F, -199.341995F));
+ builder.AddLine(new Vector2(11060.1914F, 0F));
+ builder.AddLine(new Vector2(11105.666F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0202()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(10959.5195F, -163.020004F));
+ builder.AddLine(new Vector2(10959.5195F, -201.916F));
+ builder.AddLine(new Vector2(10850.2676F, -201.916F));
+ builder.AddLine(new Vector2(10850.2676F, -163.020004F));
+ builder.AddLine(new Vector2(10959.5195F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10950.9404F, -84.0839996F));
+ builder.AddLine(new Vector2(10950.9404F, -122.122002F));
+ builder.AddLine(new Vector2(10850.2676F, -122.122002F));
+ builder.AddLine(new Vector2(10850.2676F, -84.0839996F));
+ builder.AddLine(new Vector2(10950.9404F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10961.2363F, 0F));
+ builder.AddLine(new Vector2(10961.2363F, -38.8959999F));
+ builder.AddLine(new Vector2(10850.2676F, -38.8959999F));
+ builder.AddLine(new Vector2(10850.2676F, 0F));
+ builder.AddLine(new Vector2(10961.2363F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10860.8496F, 0F));
+ builder.AddLine(new Vector2(10860.8496F, -201.916F));
+ builder.AddLine(new Vector2(10815.6621F, -201.916F));
+ builder.AddLine(new Vector2(10815.6621F, 0F));
+ builder.AddLine(new Vector2(10860.8496F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0203()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(10741.874F, -13.2989998F));
+ builder.AddCubicBezier(new Vector2(10755.6016F, -24.2609997F), new Vector2(10762.4658F, -39.3699989F), new Vector2(10762.4658F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(10762.4658F, -69.3059998F), new Vector2(10760.7002F, -78.1719971F), new Vector2(10757.1748F, -85.2279968F));
+ builder.AddCubicBezier(new Vector2(10753.6445F, -92.2799988F), new Vector2(10749.1172F, -98.1920013F), new Vector2(10743.5898F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(10738.0576F, -107.723999F), new Vector2(10731.9092F, -111.584999F), new Vector2(10725.1426F, -114.542999F));
+ builder.AddCubicBezier(new Vector2(10718.373F, -117.497002F), new Vector2(10711.6025F, -120.120003F), new Vector2(10704.8369F, -122.407997F));
+ builder.AddCubicBezier(new Vector2(10698.0664F, -124.695999F), new Vector2(10691.8682F, -126.984001F), new Vector2(10686.2471F, -129.272003F));
+ builder.AddCubicBezier(new Vector2(10680.6201F, -131.559998F), new Vector2(10676.0938F, -134.276993F), new Vector2(10672.6621F, -137.423004F));
+ builder.AddCubicBezier(new Vector2(10669.2285F, -140.569F), new Vector2(10667.5137F, -144.617996F), new Vector2(10667.5137F, -149.578003F));
+ builder.AddCubicBezier(new Vector2(10667.5137F, -155.106003F), new Vector2(10669.8018F, -159.347F), new Vector2(10674.3779F, -162.304993F));
+ builder.AddCubicBezier(new Vector2(10678.9541F, -165.259003F), new Vector2(10685.1484F, -166.738007F), new Vector2(10692.9678F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(10700.5918F, -166.738007F), new Vector2(10707.5049F, -165.210007F), new Vector2(10713.7031F, -162.162003F));
+ builder.AddCubicBezier(new Vector2(10719.8965F, -159.110001F), new Vector2(10726.0449F, -154.440002F), new Vector2(10732.1494F, -148.147995F));
+ builder.AddLine(new Vector2(10761.6074F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(10753.9785F, -185.994003F), new Vector2(10744.3496F, -192.666F), new Vector2(10732.7217F, -197.626007F));
+ builder.AddCubicBezier(new Vector2(10721.0898F, -202.582001F), new Vector2(10708.126F, -205.061996F), new Vector2(10693.8262F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(10680.0967F, -205.061996F), new Vector2(10667.7998F, -202.725006F), new Vector2(10656.9316F, -198.054993F));
+ builder.AddCubicBezier(new Vector2(10646.0645F, -193.380997F), new Vector2(10637.627F, -186.565994F), new Vector2(10631.6211F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(10625.6152F, -168.641998F), new Vector2(10622.6113F, -157.871994F), new Vector2(10622.6113F, -145.287994F));
+ builder.AddCubicBezier(new Vector2(10622.6113F, -135.179993F), new Vector2(10624.3281F, -126.697998F), new Vector2(10627.7598F, -119.834F));
+ builder.AddCubicBezier(new Vector2(10631.1924F, -112.970001F), new Vector2(10635.7188F, -107.344002F), new Vector2(10641.3447F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(10646.9668F, -98.5719986F), new Vector2(10653.165F, -94.8539963F), new Vector2(10659.9346F, -91.8059998F));
+ builder.AddCubicBezier(new Vector2(10666.7012F, -88.7539978F), new Vector2(10673.4219F, -86.1309967F), new Vector2(10680.0977F, -83.9410019F));
+ builder.AddCubicBezier(new Vector2(10686.7695F, -81.7470016F), new Vector2(10692.9678F, -79.4100037F), new Vector2(10698.6885F, -76.9339981F));
+ builder.AddCubicBezier(new Vector2(10704.4092F, -74.4540024F), new Vector2(10708.9336F, -71.5F), new Vector2(10712.2725F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(10715.6064F, -64.6360016F), new Vector2(10717.2773F, -60.2480011F), new Vector2(10717.2773F, -54.9119987F));
+ builder.AddCubicBezier(new Vector2(10717.2773F, -48.8079987F), new Vector2(10714.6543F, -43.9949989F), new Vector2(10709.4131F, -40.4690018F));
+ builder.AddCubicBezier(new Vector2(10704.166F, -36.9389992F), new Vector2(10696.873F, -35.1780014F), new Vector2(10687.5342F, -35.1780014F));
+ builder.AddCubicBezier(new Vector2(10677.0459F, -35.1780014F), new Vector2(10667.8447F, -37.2249985F), new Vector2(10659.9346F, -41.3269997F));
+ builder.AddCubicBezier(new Vector2(10652.0215F, -45.4249992F), new Vector2(10644.8213F, -51.1940002F), new Vector2(10638.3418F, -58.6300011F));
+ builder.AddLine(new Vector2(10609.1699F, -29.4580002F));
+ builder.AddCubicBezier(new Vector2(10618.8936F, -18.3980007F), new Vector2(10629.7129F, -10.198F), new Vector2(10641.6309F, -4.86199999F));
+ builder.AddCubicBezier(new Vector2(10653.5449F, 0.474000007F), new Vector2(10667.8936F, 3.14599991F), new Vector2(10684.6738F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(10709.0771F, 3.14599991F), new Vector2(10728.1445F, -2.33299994F), new Vector2(10741.874F, -13.2989998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0204()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(10571.7031F, -163.020004F));
+ builder.AddLine(new Vector2(10571.7031F, -201.916F));
+ builder.AddLine(new Vector2(10462.4512F, -201.916F));
+ builder.AddLine(new Vector2(10462.4512F, -163.020004F));
+ builder.AddLine(new Vector2(10571.7031F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10563.124F, -84.0839996F));
+ builder.AddLine(new Vector2(10563.124F, -122.122002F));
+ builder.AddLine(new Vector2(10462.4512F, -122.122002F));
+ builder.AddLine(new Vector2(10462.4512F, -84.0839996F));
+ builder.AddLine(new Vector2(10563.124F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10573.4199F, 0F));
+ builder.AddLine(new Vector2(10573.4199F, -38.8959999F));
+ builder.AddLine(new Vector2(10462.4512F, -38.8959999F));
+ builder.AddLine(new Vector2(10462.4512F, 0F));
+ builder.AddLine(new Vector2(10573.4199F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10473.0332F, 0F));
+ builder.AddLine(new Vector2(10473.0332F, -201.916F));
+ builder.AddLine(new Vector2(10427.8457F, -201.916F));
+ builder.AddLine(new Vector2(10427.8457F, 0F));
+ builder.AddLine(new Vector2(10473.0332F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0205()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(10383.8018F, 0F));
+ builder.AddLine(new Vector2(10308.8701F, -98.3840027F));
+ builder.AddLine(new Vector2(10267.4004F, -86.9440002F));
+ builder.AddLine(new Vector2(10330.3203F, 0F));
+ builder.AddLine(new Vector2(10383.8018F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10265.6836F, 0F));
+ builder.AddLine(new Vector2(10265.6836F, -201.916F));
+ builder.AddLine(new Vector2(10220.4961F, -201.916F));
+ builder.AddLine(new Vector2(10220.4961F, 0F));
+ builder.AddLine(new Vector2(10265.6836F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10301.7197F, -82.9400024F));
+ builder.AddCubicBezier(new Vector2(10315.6357F, -82.9400024F), new Vector2(10327.7461F, -85.4160004F), new Vector2(10338.042F, -90.3759995F));
+ builder.AddCubicBezier(new Vector2(10348.3379F, -95.3320007F), new Vector2(10356.3447F, -102.245003F), new Vector2(10362.0664F, -111.111F));
+ builder.AddCubicBezier(new Vector2(10367.7861F, -119.976997F), new Vector2(10370.6465F, -130.509995F), new Vector2(10370.6465F, -142.714005F));
+ builder.AddCubicBezier(new Vector2(10370.6465F, -154.154007F), new Vector2(10367.8311F, -164.352005F), new Vector2(10362.209F, -173.315994F));
+ builder.AddCubicBezier(new Vector2(10356.583F, -182.276001F), new Vector2(10348.7178F, -189.283005F), new Vector2(10338.6143F, -194.337006F));
+ builder.AddCubicBezier(new Vector2(10328.5059F, -199.386993F), new Vector2(10316.6846F, -201.916F), new Vector2(10303.1504F, -201.916F));
+ builder.AddLine(new Vector2(10255.1016F, -201.916F));
+ builder.AddLine(new Vector2(10255.1016F, -166.738007F));
+ builder.AddLine(new Vector2(10298.002F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(10306.7695F, -166.738007F), new Vector2(10313.5889F, -164.352005F), new Vector2(10318.4512F, -159.587997F));
+ builder.AddCubicBezier(new Vector2(10323.3135F, -154.820007F), new Vector2(10325.7441F, -148.813995F), new Vector2(10325.7441F, -141.570007F));
+ builder.AddCubicBezier(new Vector2(10325.7441F, -133.942001F), new Vector2(10323.2637F, -127.887001F), new Vector2(10318.3076F, -123.408997F));
+ builder.AddCubicBezier(new Vector2(10313.3477F, -118.927002F), new Vector2(10306.4844F, -116.688004F), new Vector2(10297.7158F, -116.688004F));
+ builder.AddLine(new Vector2(10255.1016F, -116.688004F));
+ builder.AddLine(new Vector2(10255.1016F, -82.9400024F));
+ builder.AddLine(new Vector2(10301.7197F, -82.9400024F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0206()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(10166.1562F, -117.260002F));
+ builder.AddLine(new Vector2(10166.1562F, -148.720001F));
+ builder.AddLine(new Vector2(10006.2822F, -148.720001F));
+ builder.AddLine(new Vector2(10006.2822F, -117.260002F));
+ builder.AddLine(new Vector2(10166.1562F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10049.7539F, 0F));
+ builder.AddLine(new Vector2(10082.9297F, -201.916F));
+ builder.AddLine(new Vector2(10047.1797F, -201.916F));
+ builder.AddLine(new Vector2(10013.7178F, 0F));
+ builder.AddLine(new Vector2(10049.7539F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10156.7178F, -57.4860001F));
+ builder.AddLine(new Vector2(10156.7178F, -88.9459991F));
+ builder.AddLine(new Vector2(9996.55762F, -88.9459991F));
+ builder.AddLine(new Vector2(9996.55762F, -57.4860001F));
+ builder.AddLine(new Vector2(10156.7178F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10113.8184F, 0F));
+ builder.AddLine(new Vector2(10147.5664F, -201.916F));
+ builder.AddLine(new Vector2(10111.5303F, -201.916F));
+ builder.AddLine(new Vector2(10078.3535F, 0F));
+ builder.AddLine(new Vector2(10113.8184F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0207()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(9842.4043F, 0F));
+ builder.AddLine(new Vector2(9842.4043F, -201.916F));
+ builder.AddLine(new Vector2(9797.78809F, -201.916F));
+ builder.AddLine(new Vector2(9797.78809F, 0F));
+ builder.AddLine(new Vector2(9842.4043F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(9884.16016F, 0F));
+ builder.AddCubicBezier(new Vector2(9898.45996F, 0F), new Vector2(9910.70898F, -2.61899996F), new Vector2(9920.91113F, -7.86499977F));
+ builder.AddCubicBezier(new Vector2(9931.1084F, -13.1070004F), new Vector2(9938.92773F, -20.1140003F), new Vector2(9944.36328F, -28.8859997F));
+ builder.AddCubicBezier(new Vector2(9949.79688F, -37.6539993F), new Vector2(9952.51367F, -47.5699997F), new Vector2(9952.51367F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(9952.51367F, -73.1179962F), new Vector2(9947.93652F, -85.3219986F), new Vector2(9938.78613F, -95.237999F));
+ builder.AddCubicBezier(new Vector2(9929.63379F, -105.150002F), new Vector2(9916.47656F, -111.727997F), new Vector2(9899.31836F, -114.972F));
+ builder.AddLine(new Vector2(9898.17383F, -99.814003F));
+ builder.AddCubicBezier(new Vector2(9913.80566F, -103.054001F), new Vector2(9925.62988F, -108.917F), new Vector2(9933.6377F, -117.403F));
+ builder.AddCubicBezier(new Vector2(9941.64648F, -125.885002F), new Vector2(9945.65039F, -136.516006F), new Vector2(9945.65039F, -149.292007F));
+ builder.AddCubicBezier(new Vector2(9945.65039F, -158.824005F), new Vector2(9943.31348F, -167.595993F), new Vector2(9938.64258F, -175.604004F));
+ builder.AddCubicBezier(new Vector2(9933.96875F, -183.612F), new Vector2(9927.05859F, -189.998001F), new Vector2(9917.9082F, -194.766006F));
+ builder.AddCubicBezier(new Vector2(9908.75586F, -199.529999F), new Vector2(9897.69629F, -201.916F), new Vector2(9884.73242F, -201.916F));
+ builder.AddLine(new Vector2(9832.39355F, -201.916F));
+ builder.AddLine(new Vector2(9832.39355F, -166.738007F));
+ builder.AddLine(new Vector2(9876.15234F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(9883.39453F, -166.738007F), new Vector2(9889.30762F, -164.878998F), new Vector2(9893.88379F, -161.160995F));
+ builder.AddCubicBezier(new Vector2(9898.45996F, -157.442993F), new Vector2(9900.74805F, -151.960007F), new Vector2(9900.74805F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(9900.74805F, -137.087997F), new Vector2(9898.45996F, -131.462006F), new Vector2(9893.88379F, -127.842003F));
+ builder.AddCubicBezier(new Vector2(9889.30762F, -124.218002F), new Vector2(9883.39453F, -122.407997F), new Vector2(9876.15234F, -122.407997F));
+ builder.AddLine(new Vector2(9832.39355F, -122.407997F));
+ builder.AddLine(new Vector2(9832.39355F, -88.0879974F));
+ builder.AddLine(new Vector2(9879.87012F, -88.0879974F));
+ builder.AddCubicBezier(new Vector2(9885.58984F, -88.0879974F), new Vector2(9890.49707F, -86.9440002F), new Vector2(9894.59863F, -84.6559982F));
+ builder.AddCubicBezier(new Vector2(9898.69824F, -82.3679962F), new Vector2(9901.8916F, -79.2220001F), new Vector2(9904.17969F, -75.2180023F));
+ builder.AddCubicBezier(new Vector2(9906.46777F, -71.2139969F), new Vector2(9907.6123F, -66.7320023F), new Vector2(9907.6123F, -61.776001F));
+ builder.AddCubicBezier(new Vector2(9907.6123F, -54.1479988F), new Vector2(9905.13184F, -47.8069992F), new Vector2(9900.17578F, -42.757F));
+ builder.AddCubicBezier(new Vector2(9895.21582F, -37.7029991F), new Vector2(9888.4502F, -35.1780014F), new Vector2(9879.87012F, -35.1780014F));
+ builder.AddLine(new Vector2(9832.39355F, -35.1780014F));
+ builder.AddLine(new Vector2(9832.39355F, 0F));
+ builder.AddLine(new Vector2(9884.16016F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0208()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(9707.12598F, -36.3219986F));
+ builder.AddLine(new Vector2(9707.12598F, -72.9300003F));
+ builder.AddLine(new Vector2(9597.30176F, -72.9300003F));
+ builder.AddLine(new Vector2(9597.30176F, -36.3219986F));
+ builder.AddLine(new Vector2(9707.12598F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(9598.16016F, 0F));
+ builder.AddLine(new Vector2(9659.93555F, -167.309998F));
+ builder.AddLine(new Vector2(9643.34766F, -167.309998F));
+ builder.AddLine(new Vector2(9703.69434F, 0F));
+ builder.AddLine(new Vector2(9751.45605F, 0F));
+ builder.AddLine(new Vector2(9672.23438F, -201.916F));
+ builder.AddLine(new Vector2(9631.33594F, -201.916F));
+ builder.AddLine(new Vector2(9551.54199F, 0F));
+ builder.AddLine(new Vector2(9598.16016F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0209()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(9488.9082F, -4.43300009F));
+ builder.AddCubicBezier(new Vector2(9501.49219F, -9.4829998F), new Vector2(9512.54785F, -16.5879993F), new Vector2(9522.08398F, -25.7399998F));
+ builder.AddLine(new Vector2(9491.48145F, -56.3419991F));
+ builder.AddCubicBezier(new Vector2(9486.14062F, -50.4300003F), new Vector2(9479.65723F, -45.9029999F), new Vector2(9472.03418F, -42.757F));
+ builder.AddCubicBezier(new Vector2(9464.40527F, -39.6110001F), new Vector2(9455.44531F, -38.0379982F), new Vector2(9445.14941F, -38.0379982F));
+ builder.AddCubicBezier(new Vector2(9436.37793F, -38.0379982F), new Vector2(9428.36914F, -39.5130005F), new Vector2(9421.12598F, -42.4710007F));
+ builder.AddCubicBezier(new Vector2(9413.87695F, -45.4249992F), new Vector2(9407.58496F, -49.7150002F), new Vector2(9402.25F, -55.3409996F));
+ builder.AddCubicBezier(new Vector2(9396.90918F, -60.9630013F), new Vector2(9392.81055F, -67.6389999F), new Vector2(9389.95215F, -75.3610001F));
+ builder.AddCubicBezier(new Vector2(9387.0918F, -83.0830002F), new Vector2(9385.66211F, -91.7080002F), new Vector2(9385.66211F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(9385.66211F, -110.396004F), new Vector2(9387.0918F, -118.877998F), new Vector2(9389.95215F, -126.697998F));
+ builder.AddCubicBezier(new Vector2(9392.81055F, -134.514008F), new Vector2(9396.90918F, -141.186005F), new Vector2(9402.25F, -146.718002F));
+ builder.AddCubicBezier(new Vector2(9407.58496F, -152.246002F), new Vector2(9413.87695F, -156.487F), new Vector2(9421.12598F, -159.445007F));
+ builder.AddCubicBezier(new Vector2(9428.36914F, -162.399002F), new Vector2(9436.37793F, -163.878006F), new Vector2(9445.14941F, -163.878006F));
+ builder.AddCubicBezier(new Vector2(9455.06055F, -163.878006F), new Vector2(9463.78418F, -162.255997F), new Vector2(9471.31836F, -159.016006F));
+ builder.AddCubicBezier(new Vector2(9478.84766F, -155.772003F), new Vector2(9485.19043F, -151.294006F), new Vector2(9490.33789F, -145.574005F));
+ builder.AddLine(new Vector2(9520.65332F, -176.175995F));
+ builder.AddCubicBezier(new Vector2(9511.30859F, -185.136002F), new Vector2(9500.3916F, -192.192001F), new Vector2(9487.90723F, -197.339996F));
+ builder.AddCubicBezier(new Vector2(9475.41699F, -202.488007F), new Vector2(9461.16602F, -205.061996F), new Vector2(9445.14941F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(9429.89258F, -205.061996F), new Vector2(9415.87891F, -202.438995F), new Vector2(9403.10742F, -197.197006F));
+ builder.AddCubicBezier(new Vector2(9390.33203F, -191.951004F), new Vector2(9379.12891F, -184.658005F), new Vector2(9369.50293F, -175.317993F));
+ builder.AddCubicBezier(new Vector2(9359.87305F, -165.973999F), new Vector2(9352.3877F, -154.962997F), new Vector2(9347.05176F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(9341.71191F, -129.602997F), new Vector2(9339.04395F, -115.924004F), new Vector2(9339.04395F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(9339.04395F, -86.5599976F), new Vector2(9341.71191F, -72.8809967F), new Vector2(9347.05176F, -60.2029991F));
+ builder.AddCubicBezier(new Vector2(9352.3877F, -47.5209999F), new Vector2(9359.87305F, -36.4160004F), new Vector2(9369.50293F, -26.8840008F));
+ builder.AddCubicBezier(new Vector2(9379.12891F, -17.3479996F), new Vector2(9390.38086F, -9.96100044F), new Vector2(9403.25098F, -4.71899986F));
+ builder.AddCubicBezier(new Vector2(9416.12109F, 0.523000002F), new Vector2(9430.08594F, 3.14599991F), new Vector2(9445.14941F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(9461.7373F, 3.14599991F), new Vector2(9476.32422F, 0.616999984F), new Vector2(9488.9082F, -4.43300009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0210()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(9269.5459F, -36.3219986F));
+ builder.AddLine(new Vector2(9269.5459F, -72.9300003F));
+ builder.AddLine(new Vector2(9159.72168F, -72.9300003F));
+ builder.AddLine(new Vector2(9159.72168F, -36.3219986F));
+ builder.AddLine(new Vector2(9269.5459F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(9160.58008F, 0F));
+ builder.AddLine(new Vector2(9222.35547F, -167.309998F));
+ builder.AddLine(new Vector2(9205.76758F, -167.309998F));
+ builder.AddLine(new Vector2(9266.11426F, 0F));
+ builder.AddLine(new Vector2(9313.87598F, 0F));
+ builder.AddLine(new Vector2(9234.6543F, -201.916F));
+ builder.AddLine(new Vector2(9193.75586F, -201.916F));
+ builder.AddLine(new Vector2(9113.96191F, 0F));
+ builder.AddLine(new Vector2(9160.58008F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0211()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(9074.49414F, -117.260002F));
+ builder.AddLine(new Vector2(9074.49414F, -148.720001F));
+ builder.AddLine(new Vector2(8914.62012F, -148.720001F));
+ builder.AddLine(new Vector2(8914.62012F, -117.260002F));
+ builder.AddLine(new Vector2(9074.49414F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(8958.0918F, 0F));
+ builder.AddLine(new Vector2(8991.26758F, -201.916F));
+ builder.AddLine(new Vector2(8955.51758F, -201.916F));
+ builder.AddLine(new Vector2(8922.05566F, 0F));
+ builder.AddLine(new Vector2(8958.0918F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(9065.05566F, -57.4860001F));
+ builder.AddLine(new Vector2(9065.05566F, -88.9459991F));
+ builder.AddLine(new Vector2(8904.89648F, -88.9459991F));
+ builder.AddLine(new Vector2(8904.89648F, -57.4860001F));
+ builder.AddLine(new Vector2(9065.05566F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(9022.15625F, 0F));
+ builder.AddLine(new Vector2(9055.9043F, -201.916F));
+ builder.AddLine(new Vector2(9019.86816F, -201.916F));
+ builder.AddLine(new Vector2(8986.69141F, 0F));
+ builder.AddLine(new Vector2(9022.15625F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0212()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(8861.13867F, 0F));
+ builder.AddLine(new Vector2(8861.13867F, -38.3240013F));
+ builder.AddLine(new Vector2(8753.60254F, -38.3240013F));
+ builder.AddLine(new Vector2(8715.56445F, -25.1679993F));
+ builder.AddLine(new Vector2(8715.56445F, 0F));
+ builder.AddLine(new Vector2(8861.13867F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(8771.04785F, -24.5960007F));
+ builder.AddLine(new Vector2(8825.10254F, -78.0780029F));
+ builder.AddCubicBezier(new Vector2(8832.91797F, -85.8939972F), new Vector2(8839.16113F, -93.0439987F), new Vector2(8843.83496F, -99.5279999F));
+ builder.AddCubicBezier(new Vector2(8848.50488F, -106.008003F), new Vector2(8851.84277F, -112.635002F), new Vector2(8853.84473F, -119.404999F));
+ builder.AddCubicBezier(new Vector2(8855.84766F, -126.170998F), new Vector2(8856.84863F, -133.656006F), new Vector2(8856.84863F, -141.856003F));
+ builder.AddCubicBezier(new Vector2(8856.84863F, -154.628006F), new Vector2(8854.08203F, -165.781998F), new Vector2(8848.55469F, -175.317993F));
+ builder.AddCubicBezier(new Vector2(8843.02246F, -184.850006F), new Vector2(8835.1123F, -192.192001F), new Vector2(8824.81641F, -197.339996F));
+ builder.AddCubicBezier(new Vector2(8814.51953F, -202.488007F), new Vector2(8802.41016F, -205.061996F), new Vector2(8788.49414F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(8772.28613F, -205.061996F), new Vector2(8758.03516F, -201.630005F), new Vector2(8745.7373F, -194.766006F));
+ builder.AddCubicBezier(new Vector2(8733.43945F, -187.901993F), new Vector2(8723.18652F, -177.699997F), new Vector2(8714.99219F, -164.164001F));
+ builder.AddLine(new Vector2(8745.30859F, -137.852005F));
+ builder.AddCubicBezier(new Vector2(8751.21582F, -147.576004F), new Vector2(8757.36523F, -154.582993F), new Vector2(8763.75488F, -158.873001F));
+ builder.AddCubicBezier(new Vector2(8770.14062F, -163.162994F), new Vector2(8777.33984F, -165.307999F), new Vector2(8785.34863F, -165.307999F));
+ builder.AddCubicBezier(new Vector2(8793.35742F, -165.307999F), new Vector2(8799.88379F, -163.065002F), new Vector2(8804.93945F, -158.587006F));
+ builder.AddCubicBezier(new Vector2(8809.98926F, -154.104996F), new Vector2(8812.51855F, -147.955994F), new Vector2(8812.51855F, -140.139999F));
+ builder.AddCubicBezier(new Vector2(8812.51855F, -136.707993F), new Vector2(8811.89746F, -133.227005F), new Vector2(8810.65918F, -129.701004F));
+ builder.AddCubicBezier(new Vector2(8809.41699F, -126.170998F), new Vector2(8807.32129F, -122.453003F), new Vector2(8804.36719F, -118.546997F));
+ builder.AddCubicBezier(new Vector2(8801.40918F, -114.637001F), new Vector2(8797.64648F, -110.204002F), new Vector2(8793.07031F, -105.248001F));
+ builder.AddLine(new Vector2(8715.56445F, -25.1679993F));
+ builder.AddLine(new Vector2(8771.04785F, -24.5960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0213()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(8661.7959F, -163.591995F));
+ builder.AddLine(new Vector2(8661.7959F, -201.916F));
+ builder.AddLine(new Vector2(8580.85742F, -201.916F));
+ builder.AddLine(new Vector2(8580.85742F, -163.591995F));
+ builder.AddLine(new Vector2(8661.7959F, -163.591995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(8664.65625F, 0F));
+ builder.AddLine(new Vector2(8664.65625F, -201.916F));
+ builder.AddLine(new Vector2(8619.75391F, -201.916F));
+ builder.AddLine(new Vector2(8619.75391F, 0F));
+ builder.AddLine(new Vector2(8664.65625F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0214()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(8502.20801F, -163.591995F));
+ builder.AddLine(new Vector2(8537.67188F, -176.748001F));
+ builder.AddLine(new Vector2(8537.67188F, -201.916F));
+ builder.AddLine(new Vector2(8407.25586F, -201.916F));
+ builder.AddLine(new Vector2(8407.25586F, -163.591995F));
+ builder.AddLine(new Vector2(8502.20801F, -163.591995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(8486.76367F, -118.975998F));
+ builder.AddLine(new Vector2(8537.67188F, -176.748001F));
+ builder.AddLine(new Vector2(8487.0498F, -176.462006F));
+ builder.AddLine(new Vector2(8437.85742F, -119.262001F));
+ builder.AddLine(new Vector2(8437.85742F, -93.8079987F));
+ builder.AddLine(new Vector2(8486.76367F, -118.975998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(8504.20996F, -5.57700014F));
+ builder.AddCubicBezier(new Vector2(8516.0293F, -11.3909998F), new Vector2(8525.18164F, -19.3990002F), new Vector2(8531.66602F, -29.6009998F));
+ builder.AddCubicBezier(new Vector2(8538.14453F, -39.7989998F), new Vector2(8541.38965F, -51.6679993F), new Vector2(8541.38965F, -65.2080002F));
+ builder.AddCubicBezier(new Vector2(8541.38965F, -77.2200012F), new Vector2(8539.00391F, -87.6589966F), new Vector2(8534.24023F, -96.5250015F));
+ builder.AddCubicBezier(new Vector2(8529.4707F, -105.390999F), new Vector2(8522.94238F, -112.254997F), new Vector2(8514.64844F, -117.116997F));
+ builder.AddCubicBezier(new Vector2(8506.35352F, -121.978996F), new Vector2(8497.05957F, -124.410004F), new Vector2(8486.76367F, -124.410004F));
+ builder.AddCubicBezier(new Vector2(8482.56836F, -124.410004F), new Vector2(8478.08594F, -123.883003F), new Vector2(8473.32227F, -122.836998F));
+ builder.AddCubicBezier(new Vector2(8468.55273F, -121.787003F), new Vector2(8463.40527F, -120.5F), new Vector2(8457.87793F, -118.975998F));
+ builder.AddLine(new Vector2(8437.85742F, -93.8079987F));
+ builder.AddCubicBezier(new Vector2(8440.52539F, -94.7600021F), new Vector2(8443.86426F, -95.4749985F), new Vector2(8447.86816F, -95.9530029F));
+ builder.AddCubicBezier(new Vector2(8451.87207F, -96.427002F), new Vector2(8455.68359F, -96.6679993F), new Vector2(8459.30762F, -96.6679993F));
+ builder.AddCubicBezier(new Vector2(8466.93164F, -96.6679993F), new Vector2(8473.55859F, -95.4749985F), new Vector2(8479.18457F, -93.0930023F));
+ builder.AddCubicBezier(new Vector2(8484.80664F, -90.7070007F), new Vector2(8489.14453F, -87.3239975F), new Vector2(8492.19824F, -82.9400024F));
+ builder.AddCubicBezier(new Vector2(8495.24512F, -78.552002F), new Vector2(8496.77344F, -73.1179962F), new Vector2(8496.77344F, -66.6380005F));
+ builder.AddCubicBezier(new Vector2(8496.77344F, -60.3460007F), new Vector2(8495.24512F, -54.9570007F), new Vector2(8492.19824F, -50.4790001F));
+ builder.AddCubicBezier(new Vector2(8489.14453F, -45.9970016F), new Vector2(8485.04688F, -42.5159988F), new Vector2(8479.89941F, -40.0400009F));
+ builder.AddCubicBezier(new Vector2(8474.75195F, -37.5600014F), new Vector2(8468.74609F, -36.3219986F), new Vector2(8461.88184F, -36.3219986F));
+ builder.AddCubicBezier(new Vector2(8454.25391F, -36.3219986F), new Vector2(8446.91113F, -37.9399986F), new Vector2(8439.85938F, -41.1839981F));
+ builder.AddCubicBezier(new Vector2(8432.80273F, -44.4239998F), new Vector2(8427.46387F, -48.7140007F), new Vector2(8423.84375F, -54.0540009F));
+ builder.AddLine(new Vector2(8394.67188F, -24.882F));
+ builder.AddCubicBezier(new Vector2(8402.67969F, -15.7299995F), new Vector2(8412.49805F, -8.76799965F), new Vector2(8424.12988F, -4.00400019F));
+ builder.AddCubicBezier(new Vector2(8435.75781F, 0.75999999F), new Vector2(8448.62793F, 3.14599991F), new Vector2(8462.74023F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(8478.56348F, 3.14599991F), new Vector2(8492.38574F, 0.237000003F), new Vector2(8504.20996F, -5.57700014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0215()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(8343.47754F, -163.591995F));
+ builder.AddLine(new Vector2(8343.47754F, -201.916F));
+ builder.AddLine(new Vector2(8262.53906F, -201.916F));
+ builder.AddLine(new Vector2(8262.53906F, -163.591995F));
+ builder.AddLine(new Vector2(8343.47754F, -163.591995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(8346.33789F, 0F));
+ builder.AddLine(new Vector2(8346.33789F, -201.916F));
+ builder.AddLine(new Vector2(8301.43555F, -201.916F));
+ builder.AddLine(new Vector2(8301.43555F, 0F));
+ builder.AddLine(new Vector2(8346.33789F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0216()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(8221.92773F, -117.260002F));
+ builder.AddLine(new Vector2(8221.92773F, -148.720001F));
+ builder.AddLine(new Vector2(8062.0542F, -148.720001F));
+ builder.AddLine(new Vector2(8062.0542F, -117.260002F));
+ builder.AddLine(new Vector2(8221.92773F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(8105.5249F, 0F));
+ builder.AddLine(new Vector2(8138.70215F, -201.916F));
+ builder.AddLine(new Vector2(8102.95215F, -201.916F));
+ builder.AddLine(new Vector2(8069.48877F, 0F));
+ builder.AddLine(new Vector2(8105.5249F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(8212.48926F, -57.4860001F));
+ builder.AddLine(new Vector2(8212.48926F, -88.9459991F));
+ builder.AddLine(new Vector2(8052.33008F, -88.9459991F));
+ builder.AddLine(new Vector2(8052.33008F, -57.4860001F));
+ builder.AddLine(new Vector2(8212.48926F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(8169.58887F, 0F));
+ builder.AddLine(new Vector2(8203.33789F, -201.916F));
+ builder.AddLine(new Vector2(8167.30078F, -201.916F));
+ builder.AddLine(new Vector2(8134.125F, 0F));
+ builder.AddLine(new Vector2(8169.58887F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0217()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(7902.18018F, 0F));
+ builder.AddLine(new Vector2(7902.18018F, -201.916F));
+ builder.AddLine(new Vector2(7856.99219F, -201.916F));
+ builder.AddLine(new Vector2(7856.99219F, 0F));
+ builder.AddLine(new Vector2(7902.18018F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(7941.64697F, -73.5019989F));
+ builder.AddCubicBezier(new Vector2(7954.41895F, -73.5019989F), new Vector2(7966.00195F, -76.0759964F), new Vector2(7976.396F, -81.223999F));
+ builder.AddCubicBezier(new Vector2(7986.78613F, -86.3720016F), new Vector2(7994.98682F, -93.7590027F), new Vector2(8000.99316F, -103.389F));
+ builder.AddCubicBezier(new Vector2(8006.99902F, -113.014999F), new Vector2(8010.00098F, -124.410004F), new Vector2(8010.00098F, -137.565994F));
+ builder.AddCubicBezier(new Vector2(8010.00098F, -150.910004F), new Vector2(8006.99902F, -162.399002F), new Vector2(8000.99316F, -172.029007F));
+ builder.AddCubicBezier(new Vector2(7994.98682F, -181.654999F), new Vector2(7986.78613F, -189.046005F), new Vector2(7976.396F, -194.194F));
+ builder.AddCubicBezier(new Vector2(7966.00195F, -199.341995F), new Vector2(7954.41895F, -201.916F), new Vector2(7941.64697F, -201.916F));
+ builder.AddLine(new Vector2(7891.59814F, -201.916F));
+ builder.AddLine(new Vector2(7891.59814F, -166.738007F));
+ builder.AddLine(new Vector2(7935.06982F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(7940.59814F, -166.738007F), new Vector2(7945.60205F, -165.639008F), new Vector2(7950.08398F, -163.449005F));
+ builder.AddCubicBezier(new Vector2(7954.56201F, -161.255005F), new Vector2(7958.13818F, -157.966003F), new Vector2(7960.81006F, -153.582001F));
+ builder.AddCubicBezier(new Vector2(7963.47803F, -149.194F), new Vector2(7964.81299F, -143.858002F), new Vector2(7964.81299F, -137.565994F));
+ builder.AddCubicBezier(new Vector2(7964.81299F, -131.462006F), new Vector2(7963.47803F, -126.220001F), new Vector2(7960.81006F, -121.835999F));
+ builder.AddCubicBezier(new Vector2(7958.13818F, -117.447998F), new Vector2(7954.56201F, -114.158997F), new Vector2(7950.08398F, -111.969002F));
+ builder.AddCubicBezier(new Vector2(7945.60205F, -109.775002F), new Vector2(7940.59814F, -108.68F), new Vector2(7935.06982F, -108.68F));
+ builder.AddLine(new Vector2(7891.59814F, -108.68F));
+ builder.AddLine(new Vector2(7891.59814F, -73.5019989F));
+ builder.AddLine(new Vector2(7941.64697F, -73.5019989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0218()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(7766.33008F, -36.3219986F));
+ builder.AddLine(new Vector2(7766.33008F, -72.9300003F));
+ builder.AddLine(new Vector2(7656.50488F, -72.9300003F));
+ builder.AddLine(new Vector2(7656.50488F, -36.3219986F));
+ builder.AddLine(new Vector2(7766.33008F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(7657.36377F, 0F));
+ builder.AddLine(new Vector2(7719.14014F, -167.309998F));
+ builder.AddLine(new Vector2(7702.55176F, -167.309998F));
+ builder.AddLine(new Vector2(7762.89697F, 0F));
+ builder.AddLine(new Vector2(7810.66016F, 0F));
+ builder.AddLine(new Vector2(7731.43799F, -201.916F));
+ builder.AddLine(new Vector2(7690.54004F, -201.916F));
+ builder.AddLine(new Vector2(7610.74609F, 0F));
+ builder.AddLine(new Vector2(7657.36377F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0219()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(7580.14404F, 0F));
+ builder.AddLine(new Vector2(7580.14404F, -39.4679985F));
+ builder.AddLine(new Vector2(7480.33008F, -39.4679985F));
+ builder.AddLine(new Vector2(7480.33008F, 0F));
+ builder.AddLine(new Vector2(7580.14404F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(7490.62598F, 0F));
+ builder.AddLine(new Vector2(7490.62598F, -201.916F));
+ builder.AddLine(new Vector2(7445.43799F, -201.916F));
+ builder.AddLine(new Vector2(7445.43799F, 0F));
+ builder.AddLine(new Vector2(7490.62598F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0220()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(7388.23779F, -163.020004F));
+ builder.AddLine(new Vector2(7388.23779F, -201.916F));
+ builder.AddLine(new Vector2(7278.98584F, -201.916F));
+ builder.AddLine(new Vector2(7278.98584F, -163.020004F));
+ builder.AddLine(new Vector2(7388.23779F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(7379.6582F, -84.0839996F));
+ builder.AddLine(new Vector2(7379.6582F, -122.122002F));
+ builder.AddLine(new Vector2(7278.98584F, -122.122002F));
+ builder.AddLine(new Vector2(7278.98584F, -84.0839996F));
+ builder.AddLine(new Vector2(7379.6582F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(7389.9541F, 0F));
+ builder.AddLine(new Vector2(7389.9541F, -38.8959999F));
+ builder.AddLine(new Vector2(7278.98584F, -38.8959999F));
+ builder.AddLine(new Vector2(7278.98584F, 0F));
+ builder.AddLine(new Vector2(7389.9541F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(7289.56787F, 0F));
+ builder.AddLine(new Vector2(7289.56787F, -201.916F));
+ builder.AddLine(new Vector2(7244.37988F, -201.916F));
+ builder.AddLine(new Vector2(7244.37988F, 0F));
+ builder.AddLine(new Vector2(7289.56787F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0221()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(7143.27881F, -9.29500008F));
+ builder.AddCubicBezier(new Vector2(7158.62402F, -17.7770004F), new Vector2(7170.63623F, -30.316F), new Vector2(7179.31396F, -46.9039993F));
+ builder.AddCubicBezier(new Vector2(7187.98779F, -63.4920006F), new Vector2(7192.32812F, -83.7979965F), new Vector2(7192.32812F, -107.821999F));
+ builder.AddLine(new Vector2(7192.32812F, -114.400002F));
+ builder.AddLine(new Vector2(7086.22217F, -114.400002F));
+ builder.AddLine(new Vector2(7086.22217F, -76.3619995F));
+ builder.AddLine(new Vector2(7176.31201F, -74.9319992F));
+ builder.AddLine(new Vector2(7146.28223F, -94.9520035F));
+ builder.AddCubicBezier(new Vector2(7146.28223F, -82.9400024F), new Vector2(7144.03906F, -72.6439972F), new Vector2(7139.56104F, -64.064003F));
+ builder.AddCubicBezier(new Vector2(7135.0791F, -55.4840012F), new Vector2(7128.69189F, -48.9510002F), new Vector2(7120.39795F, -44.4729996F));
+ builder.AddCubicBezier(new Vector2(7112.104F, -39.9910011F), new Vector2(7102.13916F, -37.7519989F), new Vector2(7090.51221F, -37.7519989F));
+ builder.AddCubicBezier(new Vector2(7078.87988F, -37.7519989F), new Vector2(7068.58398F, -40.4690018F), new Vector2(7059.62402F, -45.9029999F));
+ builder.AddCubicBezier(new Vector2(7050.66016F, -51.3370018F), new Vector2(7043.60693F, -58.8180008F), new Vector2(7038.45898F, -68.3539963F));
+ builder.AddCubicBezier(new Vector2(7033.31104F, -77.8860016F), new Vector2(7030.73779F, -88.8479996F), new Vector2(7030.73779F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(7030.73779F, -113.828003F), new Vector2(7033.35693F, -124.838997F), new Vector2(7038.60303F, -134.276993F));
+ builder.AddCubicBezier(new Vector2(7043.84521F, -143.714996F), new Vector2(7051.13721F, -151.052994F), new Vector2(7060.48096F, -156.298996F));
+ builder.AddCubicBezier(new Vector2(7069.8208F, -161.541F), new Vector2(7080.40381F, -164.164001F), new Vector2(7092.22803F, -164.164001F));
+ builder.AddCubicBezier(new Vector2(7103.09619F, -164.164001F), new Vector2(7112.96289F, -162.018997F), new Vector2(7121.8291F, -157.729004F));
+ builder.AddCubicBezier(new Vector2(7130.69482F, -153.438995F), new Vector2(7138.27295F, -147.098007F), new Vector2(7144.56494F, -138.710007F));
+ builder.AddLine(new Vector2(7175.4541F, -169.598007F));
+ builder.AddCubicBezier(new Vector2(7166.10986F, -180.654007F), new Vector2(7154.29004F, -189.376999F), new Vector2(7139.99023F, -195.766998F));
+ builder.AddCubicBezier(new Vector2(7125.68994F, -202.153F), new Vector2(7109.86182F, -205.348007F), new Vector2(7092.51416F, -205.348007F));
+ builder.AddCubicBezier(new Vector2(7077.4502F, -205.348007F), new Vector2(7063.38721F, -202.675995F), new Vector2(7050.3291F, -197.339996F));
+ builder.AddCubicBezier(new Vector2(7037.26709F, -192F), new Vector2(7025.77783F, -184.613007F), new Vector2(7015.86621F, -175.175003F));
+ builder.AddCubicBezier(new Vector2(7005.94922F, -165.737F), new Vector2(6998.22803F, -154.770996F), new Vector2(6992.7002F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(6987.16797F, -129.794998F), new Vector2(6984.40576F, -116.115997F), new Vector2(6984.40576F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(6984.40576F, -86.5599976F), new Vector2(6987.12305F, -72.9300003F), new Vector2(6992.55713F, -60.3460007F));
+ builder.AddCubicBezier(new Vector2(6997.99121F, -47.762001F), new Vector2(7005.47119F, -36.7019997F), new Vector2(7015.00684F, -27.1700001F));
+ builder.AddCubicBezier(new Vector2(7024.53906F, -17.6340008F), new Vector2(7035.74316F, -10.1529999F), new Vector2(7048.61279F, -4.71899986F));
+ builder.AddCubicBezier(new Vector2(7061.48291F, 0.714999974F), new Vector2(7075.354F, 3.43199992F), new Vector2(7090.22607F, 3.43199992F));
+ builder.AddCubicBezier(new Vector2(7110.24609F, 3.43199992F), new Vector2(7127.92822F, -0.809000015F), new Vector2(7143.27881F, -9.29500008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0222()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(6914.9082F, -36.3219986F));
+ builder.AddLine(new Vector2(6914.9082F, -72.9300003F));
+ builder.AddLine(new Vector2(6805.08301F, -72.9300003F));
+ builder.AddLine(new Vector2(6805.08301F, -36.3219986F));
+ builder.AddLine(new Vector2(6914.9082F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(6805.94189F, 0F));
+ builder.AddLine(new Vector2(6867.71777F, -167.309998F));
+ builder.AddLine(new Vector2(6851.12988F, -167.309998F));
+ builder.AddLine(new Vector2(6911.47607F, 0F));
+ builder.AddLine(new Vector2(6959.23779F, 0F));
+ builder.AddLine(new Vector2(6880.01611F, -201.916F));
+ builder.AddLine(new Vector2(6839.11816F, -201.916F));
+ builder.AddLine(new Vector2(6759.32422F, 0F));
+ builder.AddLine(new Vector2(6805.94189F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0223()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(6710.41797F, 0F));
+ builder.AddLine(new Vector2(6710.41797F, -201.916F));
+ builder.AddLine(new Vector2(6665.22998F, -201.916F));
+ builder.AddLine(new Vector2(6665.22998F, 0F));
+ builder.AddLine(new Vector2(6710.41797F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0224()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(6591.44092F, -13.2989998F));
+ builder.AddCubicBezier(new Vector2(6605.16895F, -24.2609997F), new Vector2(6612.03418F, -39.3699989F), new Vector2(6612.03418F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(6612.03418F, -69.3059998F), new Vector2(6610.26904F, -78.1719971F), new Vector2(6606.74316F, -85.2279968F));
+ builder.AddCubicBezier(new Vector2(6603.21289F, -92.2799988F), new Vector2(6598.68604F, -98.1920013F), new Vector2(6593.1582F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(6587.62598F, -107.723999F), new Vector2(6581.47607F, -111.584999F), new Vector2(6574.70996F, -114.542999F));
+ builder.AddCubicBezier(new Vector2(6567.93994F, -117.497002F), new Vector2(6561.1709F, -120.120003F), new Vector2(6554.40479F, -122.407997F));
+ builder.AddCubicBezier(new Vector2(6547.63379F, -124.695999F), new Vector2(6541.43604F, -126.984001F), new Vector2(6535.81396F, -129.272003F));
+ builder.AddCubicBezier(new Vector2(6530.18799F, -131.559998F), new Vector2(6525.66113F, -134.276993F), new Vector2(6522.229F, -137.423004F));
+ builder.AddCubicBezier(new Vector2(6518.79688F, -140.569F), new Vector2(6517.08203F, -144.617996F), new Vector2(6517.08203F, -149.578003F));
+ builder.AddCubicBezier(new Vector2(6517.08203F, -155.106003F), new Vector2(6519.37012F, -159.347F), new Vector2(6523.9458F, -162.304993F));
+ builder.AddCubicBezier(new Vector2(6528.52197F, -165.259003F), new Vector2(6534.71582F, -166.738007F), new Vector2(6542.53613F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(6550.16016F, -166.738007F), new Vector2(6557.07324F, -165.210007F), new Vector2(6563.271F, -162.162003F));
+ builder.AddCubicBezier(new Vector2(6569.46484F, -159.110001F), new Vector2(6575.61377F, -154.440002F), new Vector2(6581.71777F, -148.147995F));
+ builder.AddLine(new Vector2(6611.17578F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(6603.54785F, -185.994003F), new Vector2(6593.91797F, -192.666F), new Vector2(6582.29004F, -197.626007F));
+ builder.AddCubicBezier(new Vector2(6570.6582F, -202.582001F), new Vector2(6557.69385F, -205.061996F), new Vector2(6543.39404F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(6529.66602F, -205.061996F), new Vector2(6517.36816F, -202.725006F), new Vector2(6506.5F, -198.054993F));
+ builder.AddCubicBezier(new Vector2(6495.63184F, -193.380997F), new Vector2(6487.19385F, -186.565994F), new Vector2(6481.18799F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(6475.18213F, -168.641998F), new Vector2(6472.18018F, -157.871994F), new Vector2(6472.18018F, -145.287994F));
+ builder.AddCubicBezier(new Vector2(6472.18018F, -135.179993F), new Vector2(6473.896F, -126.697998F), new Vector2(6477.32812F, -119.834F));
+ builder.AddCubicBezier(new Vector2(6480.75977F, -112.970001F), new Vector2(6485.28711F, -107.344002F), new Vector2(6490.91309F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(6496.53516F, -98.5719986F), new Vector2(6502.73193F, -94.8539963F), new Vector2(6509.50195F, -91.8059998F));
+ builder.AddCubicBezier(new Vector2(6516.26807F, -88.7539978F), new Vector2(6522.99023F, -86.1309967F), new Vector2(6529.66602F, -83.9410019F));
+ builder.AddCubicBezier(new Vector2(6536.33789F, -81.7470016F), new Vector2(6542.53613F, -79.4100037F), new Vector2(6548.25586F, -76.9339981F));
+ builder.AddCubicBezier(new Vector2(6553.97607F, -74.4540024F), new Vector2(6558.50293F, -71.5F), new Vector2(6561.84082F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(6565.17383F, -64.6360016F), new Vector2(6566.84619F, -60.2480011F), new Vector2(6566.84619F, -54.9119987F));
+ builder.AddCubicBezier(new Vector2(6566.84619F, -48.8079987F), new Vector2(6564.22217F, -43.9949989F), new Vector2(6558.97998F, -40.4690018F));
+ builder.AddCubicBezier(new Vector2(6553.73389F, -36.9389992F), new Vector2(6546.44189F, -35.1780014F), new Vector2(6537.10205F, -35.1780014F));
+ builder.AddCubicBezier(new Vector2(6526.61377F, -35.1780014F), new Vector2(6517.41211F, -37.2249985F), new Vector2(6509.50195F, -41.3269997F));
+ builder.AddCubicBezier(new Vector2(6501.58789F, -45.4249992F), new Vector2(6494.38916F, -51.1940002F), new Vector2(6487.91016F, -58.6300011F));
+ builder.AddLine(new Vector2(6458.73779F, -29.4580002F));
+ builder.AddCubicBezier(new Vector2(6468.46191F, -18.3980007F), new Vector2(6479.28076F, -10.198F), new Vector2(6491.19922F, -4.86199999F));
+ builder.AddCubicBezier(new Vector2(6503.11279F, 0.474000007F), new Vector2(6517.46191F, 3.14599991F), new Vector2(6534.24219F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(6558.646F, 3.14599991F), new Vector2(6577.71289F, -2.33299994F), new Vector2(6591.44092F, -13.2989998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0225()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(6421.27197F, -163.020004F));
+ builder.AddLine(new Vector2(6421.27197F, -201.916F));
+ builder.AddLine(new Vector2(6312.02002F, -201.916F));
+ builder.AddLine(new Vector2(6312.02002F, -163.020004F));
+ builder.AddLine(new Vector2(6421.27197F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(6412.69189F, -84.0839996F));
+ builder.AddLine(new Vector2(6412.69189F, -122.122002F));
+ builder.AddLine(new Vector2(6312.02002F, -122.122002F));
+ builder.AddLine(new Vector2(6312.02002F, -84.0839996F));
+ builder.AddLine(new Vector2(6412.69189F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(6422.98779F, 0F));
+ builder.AddLine(new Vector2(6422.98779F, -38.8959999F));
+ builder.AddLine(new Vector2(6312.02002F, -38.8959999F));
+ builder.AddLine(new Vector2(6312.02002F, 0F));
+ builder.AddLine(new Vector2(6422.98779F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(6322.60205F, 0F));
+ builder.AddLine(new Vector2(6322.60205F, -201.916F));
+ builder.AddLine(new Vector2(6277.41406F, -201.916F));
+ builder.AddLine(new Vector2(6277.41406F, 0F));
+ builder.AddLine(new Vector2(6322.60205F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0226()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(6213.9209F, 0F));
+ builder.AddLine(new Vector2(6213.9209F, -201.916F));
+ builder.AddLine(new Vector2(6168.44824F, -201.916F));
+ builder.AddLine(new Vector2(6168.44824F, -40.3260002F));
+ builder.AddLine(new Vector2(6180.45898F, 0F));
+ builder.AddLine(new Vector2(6213.9209F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(6191.89893F, -49.4780006F));
+ builder.AddLine(new Vector2(6072.92383F, -201.916F));
+ builder.AddLine(new Vector2(6061.77002F, -152.438004F));
+ builder.AddLine(new Vector2(6180.45898F, 0F));
+ builder.AddLine(new Vector2(6191.89893F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(6086.36621F, 0F));
+ builder.AddLine(new Vector2(6086.36621F, -161.589996F));
+ builder.AddLine(new Vector2(6072.92383F, -201.916F));
+ builder.AddLine(new Vector2(6041.17822F, -201.916F));
+ builder.AddLine(new Vector2(6041.17822F, 0F));
+ builder.AddLine(new Vector2(6086.36621F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0227()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(5856.85107F, -42.1850014F));
+ builder.AddCubicBezier(new Vector2(5849.50879F, -45.1389999F), new Vector2(5843.16699F, -49.4290009F), new Vector2(5837.83203F, -55.0550003F));
+ builder.AddCubicBezier(new Vector2(5832.49219F, -60.6769981F), new Vector2(5828.39404F, -67.3980026F), new Vector2(5825.53418F, -75.2180023F));
+ builder.AddCubicBezier(new Vector2(5822.67383F, -83.0339966F), new Vector2(5821.24414F, -91.7080002F), new Vector2(5821.24414F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(5821.24414F, -113.828003F), new Vector2(5823.72021F, -124.838997F), new Vector2(5828.68018F, -134.276993F));
+ builder.AddCubicBezier(new Vector2(5833.63623F, -143.714996F), new Vector2(5840.64307F, -151.052994F), new Vector2(5849.70117F, -156.298996F));
+ builder.AddCubicBezier(new Vector2(5858.75488F, -161.541F), new Vector2(5869.29199F, -164.164001F), new Vector2(5881.3042F, -164.164001F));
+ builder.AddCubicBezier(new Vector2(5890.07178F, -164.164001F), new Vector2(5898.17822F, -162.684998F), new Vector2(5905.61377F, -159.731003F));
+ builder.AddCubicBezier(new Vector2(5913.0498F, -156.772995F), new Vector2(5919.43604F, -152.483002F), new Vector2(5924.77588F, -146.860992F));
+ builder.AddCubicBezier(new Vector2(5930.11182F, -141.235001F), new Vector2(5934.21387F, -134.563004F), new Vector2(5937.07422F, -126.841003F));
+ builder.AddCubicBezier(new Vector2(5939.93408F, -119.119003F), new Vector2(5941.36377F, -110.584F), new Vector2(5941.36377F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(5941.36377F, -88.6600037F), new Vector2(5938.83398F, -77.5999985F), new Vector2(5933.78516F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(5928.73096F, -58.5320015F), new Vector2(5921.72412F, -51.0960007F), new Vector2(5912.76416F, -45.7599983F));
+ builder.AddCubicBezier(new Vector2(5903.7998F, -40.4199982F), new Vector2(5893.31592F, -37.7519989F), new Vector2(5881.3042F, -37.7519989F));
+ builder.AddCubicBezier(new Vector2(5872.33984F, -37.7519989F), new Vector2(5864.18799F, -39.2270012F), new Vector2(5856.85107F, -42.1850014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(5923.63184F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(5936.40381F, -9.9119997F), new Vector2(5947.55811F, -17.3029995F), new Vector2(5957.09424F, -26.7409992F));
+ builder.AddCubicBezier(new Vector2(5966.62598F, -36.1790009F), new Vector2(5974.06201F, -47.2350006F), new Vector2(5979.40186F, -59.9169998F));
+ builder.AddCubicBezier(new Vector2(5984.73779F, -72.5950012F), new Vector2(5987.41016F, -86.2740021F), new Vector2(5987.41016F, -100.958F));
+ builder.AddCubicBezier(new Vector2(5987.41016F, -115.830002F), new Vector2(5984.78711F, -129.602997F), new Vector2(5979.54492F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(5974.29883F, -154.962997F), new Vector2(5966.81787F, -166.022995F), new Vector2(5957.09424F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(5947.37012F, -184.899002F), new Vector2(5936.07324F, -192.237F), new Vector2(5923.20312F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(5910.33301F, -202.725006F), new Vector2(5896.36377F, -205.348007F), new Vector2(5881.3042F, -205.348007F));
+ builder.AddCubicBezier(new Vector2(5866.04785F, -205.348007F), new Vector2(5851.93994F, -202.725006F), new Vector2(5838.97607F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(5826.00781F, -192.237F), new Vector2(5814.75977F, -184.899002F), new Vector2(5805.22803F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(5795.69092F, -166.022995F), new Vector2(5788.25488F, -155.011993F), new Vector2(5782.91992F, -142.427994F));
+ builder.AddCubicBezier(new Vector2(5777.58008F, -129.843994F), new Vector2(5774.91211F, -116.115997F), new Vector2(5774.91211F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(5774.91211F, -86.5599976F), new Vector2(5777.58008F, -72.8809967F), new Vector2(5782.91992F, -60.2029991F));
+ builder.AddCubicBezier(new Vector2(5788.25488F, -47.5209999F), new Vector2(5795.79004F, -36.4160004F), new Vector2(5805.51416F, -26.8840008F));
+ builder.AddCubicBezier(new Vector2(5815.23779F, -17.3479996F), new Vector2(5826.58008F, -9.9119997F), new Vector2(5839.54785F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(5852.51221F, 0.75999999F), new Vector2(5866.62012F, 3.43199992F), new Vector2(5881.87598F, 3.43199992F));
+ builder.AddCubicBezier(new Vector2(5896.93604F, 3.43199992F), new Vector2(5910.85596F, 0.75999999F), new Vector2(5923.63184F, -4.57600021F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0228()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(5589.58398F, 0F));
+ builder.AddLine(new Vector2(5589.58398F, -201.916F));
+ builder.AddLine(new Vector2(5544.396F, -201.916F));
+ builder.AddLine(new Vector2(5544.396F, 0F));
+ builder.AddLine(new Vector2(5589.58398F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(5626.19189F, 0F));
+ builder.AddCubicBezier(new Vector2(5641.25195F, 0F), new Vector2(5655.22119F, -2.47600007F), new Vector2(5668.09082F, -7.43599987F));
+ builder.AddCubicBezier(new Vector2(5680.96094F, -12.3920002F), new Vector2(5692.16016F, -19.3990002F), new Vector2(5701.6958F, -28.4570007F));
+ builder.AddCubicBezier(new Vector2(5711.22803F, -37.5110016F), new Vector2(5718.66406F, -48.1910019F), new Vector2(5724.00391F, -60.4889984F));
+ builder.AddCubicBezier(new Vector2(5729.33887F, -72.7870026F), new Vector2(5732.01221F, -86.2740021F), new Vector2(5732.01221F, -100.958F));
+ builder.AddCubicBezier(new Vector2(5732.01221F, -116.017998F), new Vector2(5729.33887F, -129.651993F), new Vector2(5724.00391F, -141.856003F));
+ builder.AddCubicBezier(new Vector2(5718.66406F, -154.056F), new Vector2(5711.1792F, -164.686996F), new Vector2(5701.55322F, -173.744995F));
+ builder.AddCubicBezier(new Vector2(5691.92285F, -182.798996F), new Vector2(5680.6748F, -189.761002F), new Vector2(5667.80518F, -194.623001F));
+ builder.AddCubicBezier(new Vector2(5654.93506F, -199.485001F), new Vector2(5640.87109F, -201.916F), new Vector2(5625.62012F, -201.916F));
+ builder.AddLine(new Vector2(5573.854F, -201.916F));
+ builder.AddLine(new Vector2(5573.854F, -162.447998F));
+ builder.AddLine(new Vector2(5625.04785F, -162.447998F));
+ builder.AddCubicBezier(new Vector2(5637.06006F, -162.447998F), new Vector2(5647.59277F, -160.016998F), new Vector2(5656.65088F, -155.154999F));
+ builder.AddCubicBezier(new Vector2(5665.70508F, -150.292999F), new Vector2(5672.76123F, -143.237F), new Vector2(5677.81494F, -133.990997F));
+ builder.AddCubicBezier(new Vector2(5682.86523F, -124.740997F), new Vector2(5685.39404F, -113.828003F), new Vector2(5685.39404F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(5685.39404F, -88.4680023F), new Vector2(5682.91406F, -77.4570007F), new Vector2(5677.95801F, -68.2109985F));
+ builder.AddCubicBezier(new Vector2(5672.99805F, -58.9609985F), new Vector2(5665.99121F, -51.8600006F), new Vector2(5656.93701F, -46.9039993F));
+ builder.AddCubicBezier(new Vector2(5647.87891F, -41.9440002F), new Vector2(5637.24805F, -39.4679985F), new Vector2(5625.04785F, -39.4679985F));
+ builder.AddLine(new Vector2(5575.28418F, -39.4679985F));
+ builder.AddLine(new Vector2(5575.28418F, 0F));
+ builder.AddLine(new Vector2(5626.19189F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0229()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(5480.90381F, 0F));
+ builder.AddLine(new Vector2(5480.90381F, -201.916F));
+ builder.AddLine(new Vector2(5435.43018F, -201.916F));
+ builder.AddLine(new Vector2(5435.43018F, -40.3260002F));
+ builder.AddLine(new Vector2(5447.44189F, 0F));
+ builder.AddLine(new Vector2(5480.90381F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(5458.88184F, -49.4780006F));
+ builder.AddLine(new Vector2(5339.90576F, -201.916F));
+ builder.AddLine(new Vector2(5328.75195F, -152.438004F));
+ builder.AddLine(new Vector2(5447.44189F, 0F));
+ builder.AddLine(new Vector2(5458.88184F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(5353.34814F, 0F));
+ builder.AddLine(new Vector2(5353.34814F, -161.589996F));
+ builder.AddLine(new Vector2(5339.90576F, -201.916F));
+ builder.AddLine(new Vector2(5308.16016F, -201.916F));
+ builder.AddLine(new Vector2(5308.16016F, 0F));
+ builder.AddLine(new Vector2(5353.34814F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0230()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(5244.38184F, 0F));
+ builder.AddLine(new Vector2(5244.38184F, -201.916F));
+ builder.AddLine(new Vector2(5199.19385F, -201.916F));
+ builder.AddLine(new Vector2(5199.19385F, 0F));
+ builder.AddLine(new Vector2(5244.38184F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0231()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(5144.854F, -117.260002F));
+ builder.AddLine(new Vector2(5144.854F, -148.720001F));
+ builder.AddLine(new Vector2(4984.97998F, -148.720001F));
+ builder.AddLine(new Vector2(4984.97998F, -117.260002F));
+ builder.AddLine(new Vector2(5144.854F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(5028.45215F, 0F));
+ builder.AddLine(new Vector2(5061.62793F, -201.916F));
+ builder.AddLine(new Vector2(5025.87793F, -201.916F));
+ builder.AddLine(new Vector2(4992.41602F, 0F));
+ builder.AddLine(new Vector2(5028.45215F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(5135.41602F, -57.4860001F));
+ builder.AddLine(new Vector2(5135.41602F, -88.9459991F));
+ builder.AddLine(new Vector2(4975.25586F, -88.9459991F));
+ builder.AddLine(new Vector2(4975.25586F, -57.4860001F));
+ builder.AddLine(new Vector2(5135.41602F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(5092.51611F, 0F));
+ builder.AddLine(new Vector2(5126.26416F, -201.916F));
+ builder.AddLine(new Vector2(5090.22803F, -201.916F));
+ builder.AddLine(new Vector2(5057.05176F, 0F));
+ builder.AddLine(new Vector2(5092.51611F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0232()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(4891.74414F, -36.3219986F));
+ builder.AddLine(new Vector2(4891.74414F, -72.9300003F));
+ builder.AddLine(new Vector2(4781.91992F, -72.9300003F));
+ builder.AddLine(new Vector2(4781.91992F, -36.3219986F));
+ builder.AddLine(new Vector2(4891.74414F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(4782.77783F, 0F));
+ builder.AddLine(new Vector2(4844.5542F, -167.309998F));
+ builder.AddLine(new Vector2(4827.96582F, -167.309998F));
+ builder.AddLine(new Vector2(4888.31201F, 0F));
+ builder.AddLine(new Vector2(4936.07422F, 0F));
+ builder.AddLine(new Vector2(4856.85205F, -201.916F));
+ builder.AddLine(new Vector2(4815.9541F, -201.916F));
+ builder.AddLine(new Vector2(4736.16016F, 0F));
+ builder.AddLine(new Vector2(4782.77783F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0233()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(4687.25391F, 0F));
+ builder.AddLine(new Vector2(4687.25391F, -201.916F));
+ builder.AddLine(new Vector2(4642.06592F, -201.916F));
+ builder.AddLine(new Vector2(4642.06592F, 0F));
+ builder.AddLine(new Vector2(4687.25391F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0234()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(4568.27783F, -13.2989998F));
+ builder.AddCubicBezier(new Vector2(4582.00586F, -24.2609997F), new Vector2(4588.87012F, -39.3699989F), new Vector2(4588.87012F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(4588.87012F, -69.3059998F), new Vector2(4587.10498F, -78.1719971F), new Vector2(4583.5791F, -85.2279968F));
+ builder.AddCubicBezier(new Vector2(4580.04883F, -92.2799988F), new Vector2(4575.52197F, -98.1920013F), new Vector2(4569.99414F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(4564.46191F, -107.723999F), new Vector2(4558.31299F, -111.584999F), new Vector2(4551.54688F, -114.542999F));
+ builder.AddCubicBezier(new Vector2(4544.77686F, -117.497002F), new Vector2(4538.00684F, -120.120003F), new Vector2(4531.24121F, -122.407997F));
+ builder.AddCubicBezier(new Vector2(4524.47021F, -124.695999F), new Vector2(4518.27295F, -126.984001F), new Vector2(4512.65088F, -129.272003F));
+ builder.AddCubicBezier(new Vector2(4507.0249F, -131.559998F), new Vector2(4502.49805F, -134.276993F), new Vector2(4499.06592F, -137.423004F));
+ builder.AddCubicBezier(new Vector2(4495.63379F, -140.569F), new Vector2(4493.91797F, -144.617996F), new Vector2(4493.91797F, -149.578003F));
+ builder.AddCubicBezier(new Vector2(4493.91797F, -155.106003F), new Vector2(4496.20605F, -159.347F), new Vector2(4500.78223F, -162.304993F));
+ builder.AddCubicBezier(new Vector2(4505.35791F, -165.259003F), new Vector2(4511.55176F, -166.738007F), new Vector2(4519.37207F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(4526.99609F, -166.738007F), new Vector2(4533.90918F, -165.210007F), new Vector2(4540.10693F, -162.162003F));
+ builder.AddCubicBezier(new Vector2(4546.30078F, -159.110001F), new Vector2(4552.4502F, -154.440002F), new Vector2(4558.5542F, -148.147995F));
+ builder.AddLine(new Vector2(4588.01221F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(4580.38379F, -185.994003F), new Vector2(4570.75391F, -192.666F), new Vector2(4559.12598F, -197.626007F));
+ builder.AddCubicBezier(new Vector2(4547.49414F, -202.582001F), new Vector2(4534.52979F, -205.061996F), new Vector2(4520.22998F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(4506.50195F, -205.061996F), new Vector2(4494.2041F, -202.725006F), new Vector2(4483.33594F, -198.054993F));
+ builder.AddCubicBezier(new Vector2(4472.46777F, -193.380997F), new Vector2(4464.03076F, -186.565994F), new Vector2(4458.0249F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(4452.01904F, -168.641998F), new Vector2(4449.01611F, -157.871994F), new Vector2(4449.01611F, -145.287994F));
+ builder.AddCubicBezier(new Vector2(4449.01611F, -135.179993F), new Vector2(4450.73193F, -126.697998F), new Vector2(4454.16406F, -119.834F));
+ builder.AddCubicBezier(new Vector2(4457.59619F, -112.970001F), new Vector2(4462.12305F, -107.344002F), new Vector2(4467.74902F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(4473.37109F, -98.5719986F), new Vector2(4479.56885F, -94.8539963F), new Vector2(4486.33887F, -91.8059998F));
+ builder.AddCubicBezier(new Vector2(4493.10498F, -88.7539978F), new Vector2(4499.82617F, -86.1309967F), new Vector2(4506.50195F, -83.9410019F));
+ builder.AddCubicBezier(new Vector2(4513.17383F, -81.7470016F), new Vector2(4519.37207F, -79.4100037F), new Vector2(4525.0918F, -76.9339981F));
+ builder.AddCubicBezier(new Vector2(4530.81201F, -74.4540024F), new Vector2(4535.33887F, -71.5F), new Vector2(4538.67676F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(4542.00977F, -64.6360016F), new Vector2(4543.68213F, -60.2480011F), new Vector2(4543.68213F, -54.9119987F));
+ builder.AddCubicBezier(new Vector2(4543.68213F, -48.8079987F), new Vector2(4541.05908F, -43.9949989F), new Vector2(4535.81689F, -40.4690018F));
+ builder.AddCubicBezier(new Vector2(4530.5708F, -36.9389992F), new Vector2(4523.27783F, -35.1780014F), new Vector2(4513.93799F, -35.1780014F));
+ builder.AddCubicBezier(new Vector2(4503.4502F, -35.1780014F), new Vector2(4494.24902F, -37.2249985F), new Vector2(4486.33887F, -41.3269997F));
+ builder.AddCubicBezier(new Vector2(4478.4248F, -45.4249992F), new Vector2(4471.2251F, -51.1940002F), new Vector2(4464.74609F, -58.6300011F));
+ builder.AddLine(new Vector2(4435.57422F, -29.4580002F));
+ builder.AddCubicBezier(new Vector2(4445.29785F, -18.3980007F), new Vector2(4456.11719F, -10.198F), new Vector2(4468.03516F, -4.86199999F));
+ builder.AddCubicBezier(new Vector2(4479.94922F, 0.474000007F), new Vector2(4494.29785F, 3.14599991F), new Vector2(4511.07812F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(4535.48193F, 3.14599991F), new Vector2(4554.5498F, -2.33299994F), new Vector2(4568.27783F, -13.2989998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0235()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(4398.10791F, -163.020004F));
+ builder.AddLine(new Vector2(4398.10791F, -201.916F));
+ builder.AddLine(new Vector2(4288.85596F, -201.916F));
+ builder.AddLine(new Vector2(4288.85596F, -163.020004F));
+ builder.AddLine(new Vector2(4398.10791F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(4389.52783F, -84.0839996F));
+ builder.AddLine(new Vector2(4389.52783F, -122.122002F));
+ builder.AddLine(new Vector2(4288.85596F, -122.122002F));
+ builder.AddLine(new Vector2(4288.85596F, -84.0839996F));
+ builder.AddLine(new Vector2(4389.52783F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(4399.82422F, 0F));
+ builder.AddLine(new Vector2(4399.82422F, -38.8959999F));
+ builder.AddLine(new Vector2(4288.85596F, -38.8959999F));
+ builder.AddLine(new Vector2(4288.85596F, 0F));
+ builder.AddLine(new Vector2(4399.82422F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(4299.43799F, 0F));
+ builder.AddLine(new Vector2(4299.43799F, -201.916F));
+ builder.AddLine(new Vector2(4254.25F, -201.916F));
+ builder.AddLine(new Vector2(4254.25F, 0F));
+ builder.AddLine(new Vector2(4299.43799F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0236()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(4190.75781F, 0F));
+ builder.AddLine(new Vector2(4190.75781F, -201.916F));
+ builder.AddLine(new Vector2(4145.28418F, -201.916F));
+ builder.AddLine(new Vector2(4145.28418F, -40.3260002F));
+ builder.AddLine(new Vector2(4157.2959F, 0F));
+ builder.AddLine(new Vector2(4190.75781F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(4168.73584F, -49.4780006F));
+ builder.AddLine(new Vector2(4049.76001F, -201.916F));
+ builder.AddLine(new Vector2(4038.60596F, -152.438004F));
+ builder.AddLine(new Vector2(4157.2959F, 0F));
+ builder.AddLine(new Vector2(4168.73584F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(4063.2019F, 0F));
+ builder.AddLine(new Vector2(4063.2019F, -161.589996F));
+ builder.AddLine(new Vector2(4049.76001F, -201.916F));
+ builder.AddLine(new Vector2(4018.01392F, -201.916F));
+ builder.AddLine(new Vector2(4018.01392F, 0F));
+ builder.AddLine(new Vector2(4063.2019F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0237()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(3833.68701F, -42.1850014F));
+ builder.AddCubicBezier(new Vector2(3826.34497F, -45.1389999F), new Vector2(3820.00391F, -49.4290009F), new Vector2(3814.66797F, -55.0550003F));
+ builder.AddCubicBezier(new Vector2(3809.32788F, -60.6769981F), new Vector2(3805.22998F, -67.3980026F), new Vector2(3802.37012F, -75.2180023F));
+ builder.AddCubicBezier(new Vector2(3799.51001F, -83.0339966F), new Vector2(3798.08008F, -91.7080002F), new Vector2(3798.08008F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(3798.08008F, -113.828003F), new Vector2(3800.55591F, -124.838997F), new Vector2(3805.51611F, -134.276993F));
+ builder.AddCubicBezier(new Vector2(3810.47192F, -143.714996F), new Vector2(3817.479F, -151.052994F), new Vector2(3826.53711F, -156.298996F));
+ builder.AddCubicBezier(new Vector2(3835.59106F, -161.541F), new Vector2(3846.12793F, -164.164001F), new Vector2(3858.13989F, -164.164001F));
+ builder.AddCubicBezier(new Vector2(3866.90796F, -164.164001F), new Vector2(3875.01392F, -162.684998F), new Vector2(3882.44995F, -159.731003F));
+ builder.AddCubicBezier(new Vector2(3889.88599F, -156.772995F), new Vector2(3896.27197F, -152.483002F), new Vector2(3901.61206F, -146.860992F));
+ builder.AddCubicBezier(new Vector2(3906.948F, -141.235001F), new Vector2(3911.05005F, -134.563004F), new Vector2(3913.90991F, -126.841003F));
+ builder.AddCubicBezier(new Vector2(3916.77002F, -119.119003F), new Vector2(3918.19995F, -110.584F), new Vector2(3918.19995F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(3918.19995F, -88.6600037F), new Vector2(3915.6709F, -77.5999985F), new Vector2(3910.62109F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(3905.56689F, -58.5320015F), new Vector2(3898.56006F, -51.0960007F), new Vector2(3889.6001F, -45.7599983F));
+ builder.AddCubicBezier(new Vector2(3880.63599F, -40.4199982F), new Vector2(3870.1521F, -37.7519989F), new Vector2(3858.13989F, -37.7519989F));
+ builder.AddCubicBezier(new Vector2(3849.17603F, -37.7519989F), new Vector2(3841.0249F, -39.2270012F), new Vector2(3833.68701F, -42.1850014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(3900.46802F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(3913.23999F, -9.9119997F), new Vector2(3924.39404F, -17.3029995F), new Vector2(3933.92993F, -26.7409992F));
+ builder.AddCubicBezier(new Vector2(3943.46191F, -36.1790009F), new Vector2(3950.89795F, -47.2350006F), new Vector2(3956.23804F, -59.9169998F));
+ builder.AddCubicBezier(new Vector2(3961.57397F, -72.5950012F), new Vector2(3964.24609F, -86.2740021F), new Vector2(3964.24609F, -100.958F));
+ builder.AddCubicBezier(new Vector2(3964.24609F, -115.830002F), new Vector2(3961.62305F, -129.602997F), new Vector2(3956.3811F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(3951.13501F, -154.962997F), new Vector2(3943.65405F, -166.022995F), new Vector2(3933.92993F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(3924.20605F, -184.899002F), new Vector2(3912.90894F, -192.237F), new Vector2(3900.03906F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(3887.16895F, -202.725006F), new Vector2(3873.19995F, -205.348007F), new Vector2(3858.13989F, -205.348007F));
+ builder.AddCubicBezier(new Vector2(3842.88403F, -205.348007F), new Vector2(3828.77588F, -202.725006F), new Vector2(3815.81201F, -197.483002F));
+ builder.AddCubicBezier(new Vector2(3802.84399F, -192.237F), new Vector2(3791.59595F, -184.899002F), new Vector2(3782.06396F, -175.460999F));
+ builder.AddCubicBezier(new Vector2(3772.52808F, -166.022995F), new Vector2(3765.09204F, -155.011993F), new Vector2(3759.7561F, -142.427994F));
+ builder.AddCubicBezier(new Vector2(3754.41602F, -129.843994F), new Vector2(3751.74805F, -116.115997F), new Vector2(3751.74805F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(3751.74805F, -86.5599976F), new Vector2(3754.41602F, -72.8809967F), new Vector2(3759.7561F, -60.2029991F));
+ builder.AddCubicBezier(new Vector2(3765.09204F, -47.5209999F), new Vector2(3772.62598F, -36.4160004F), new Vector2(3782.3501F, -26.8840008F));
+ builder.AddCubicBezier(new Vector2(3792.07397F, -17.3479996F), new Vector2(3803.41602F, -9.9119997F), new Vector2(3816.38403F, -4.57600021F));
+ builder.AddCubicBezier(new Vector2(3829.3479F, 0.75999999F), new Vector2(3843.45605F, 3.43199992F), new Vector2(3858.71191F, 3.43199992F));
+ builder.AddCubicBezier(new Vector2(3873.77197F, 3.43199992F), new Vector2(3887.69189F, 0.75999999F), new Vector2(3900.46802F, -4.57600021F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0238()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(3566.41992F, 0F));
+ builder.AddLine(new Vector2(3566.41992F, -201.916F));
+ builder.AddLine(new Vector2(3521.23193F, -201.916F));
+ builder.AddLine(new Vector2(3521.23193F, 0F));
+ builder.AddLine(new Vector2(3566.41992F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(3603.02808F, 0F));
+ builder.AddCubicBezier(new Vector2(3618.08789F, 0F), new Vector2(3632.05688F, -2.47600007F), new Vector2(3644.927F, -7.43599987F));
+ builder.AddCubicBezier(new Vector2(3657.79712F, -12.3920002F), new Vector2(3668.99609F, -19.3990002F), new Vector2(3678.53198F, -28.4570007F));
+ builder.AddCubicBezier(new Vector2(3688.06396F, -37.5110016F), new Vector2(3695.5F, -48.1910019F), new Vector2(3700.84009F, -60.4889984F));
+ builder.AddCubicBezier(new Vector2(3706.17603F, -72.7870026F), new Vector2(3708.8479F, -86.2740021F), new Vector2(3708.8479F, -100.958F));
+ builder.AddCubicBezier(new Vector2(3708.8479F, -116.017998F), new Vector2(3706.17603F, -129.651993F), new Vector2(3700.84009F, -141.856003F));
+ builder.AddCubicBezier(new Vector2(3695.5F, -154.056F), new Vector2(3688.01392F, -164.686996F), new Vector2(3678.38892F, -173.744995F));
+ builder.AddCubicBezier(new Vector2(3668.75903F, -182.798996F), new Vector2(3657.51099F, -189.761002F), new Vector2(3644.64111F, -194.623001F));
+ builder.AddCubicBezier(new Vector2(3631.771F, -199.485001F), new Vector2(3617.70801F, -201.916F), new Vector2(3602.45605F, -201.916F));
+ builder.AddLine(new Vector2(3550.68994F, -201.916F));
+ builder.AddLine(new Vector2(3550.68994F, -162.447998F));
+ builder.AddLine(new Vector2(3601.88403F, -162.447998F));
+ builder.AddCubicBezier(new Vector2(3613.896F, -162.447998F), new Vector2(3624.42896F, -160.016998F), new Vector2(3633.48706F, -155.154999F));
+ builder.AddCubicBezier(new Vector2(3642.54102F, -150.292999F), new Vector2(3649.59692F, -143.237F), new Vector2(3654.65088F, -133.990997F));
+ builder.AddCubicBezier(new Vector2(3659.70093F, -124.740997F), new Vector2(3662.22998F, -113.828003F), new Vector2(3662.22998F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(3662.22998F, -88.4680023F), new Vector2(3659.75F, -77.4570007F), new Vector2(3654.79395F, -68.2109985F));
+ builder.AddCubicBezier(new Vector2(3649.83398F, -58.9609985F), new Vector2(3642.82593F, -51.8600006F), new Vector2(3633.77295F, -46.9039993F));
+ builder.AddCubicBezier(new Vector2(3624.71509F, -41.9440002F), new Vector2(3614.08398F, -39.4679985F), new Vector2(3601.88403F, -39.4679985F));
+ builder.AddLine(new Vector2(3552.12012F, -39.4679985F));
+ builder.AddLine(new Vector2(3552.12012F, 0F));
+ builder.AddLine(new Vector2(3603.02808F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0239()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(3457.73999F, 0F));
+ builder.AddLine(new Vector2(3457.73999F, -201.916F));
+ builder.AddLine(new Vector2(3412.26611F, -201.916F));
+ builder.AddLine(new Vector2(3412.26611F, -40.3260002F));
+ builder.AddLine(new Vector2(3424.27808F, 0F));
+ builder.AddLine(new Vector2(3457.73999F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(3435.71802F, -49.4780006F));
+ builder.AddLine(new Vector2(3316.74194F, -201.916F));
+ builder.AddLine(new Vector2(3305.58789F, -152.438004F));
+ builder.AddLine(new Vector2(3424.27808F, 0F));
+ builder.AddLine(new Vector2(3435.71802F, -49.4780006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(3330.18408F, 0F));
+ builder.AddLine(new Vector2(3330.18408F, -161.589996F));
+ builder.AddLine(new Vector2(3316.74194F, -201.916F));
+ builder.AddLine(new Vector2(3284.99609F, -201.916F));
+ builder.AddLine(new Vector2(3284.99609F, 0F));
+ builder.AddLine(new Vector2(3330.18408F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0240()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(3221.21802F, 0F));
+ builder.AddLine(new Vector2(3221.21802F, -201.916F));
+ builder.AddLine(new Vector2(3176.03003F, -201.916F));
+ builder.AddLine(new Vector2(3176.03003F, 0F));
+ builder.AddLine(new Vector2(3221.21802F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0241()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(3125.97998F, -162.447998F));
+ builder.AddLine(new Vector2(3125.97998F, -201.916F));
+ builder.AddLine(new Vector2(2954.37988F, -201.916F));
+ builder.AddLine(new Vector2(2954.37988F, -162.447998F));
+ builder.AddLine(new Vector2(3125.97998F, -162.447998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(3063.06006F, 0F));
+ builder.AddLine(new Vector2(3063.06006F, -199.341995F));
+ builder.AddLine(new Vector2(3017.58594F, -199.341995F));
+ builder.AddLine(new Vector2(3017.58594F, 0F));
+ builder.AddLine(new Vector2(3063.06006F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0242()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(2916.91406F, -163.020004F));
+ builder.AddLine(new Vector2(2916.91406F, -201.916F));
+ builder.AddLine(new Vector2(2807.66211F, -201.916F));
+ builder.AddLine(new Vector2(2807.66211F, -163.020004F));
+ builder.AddLine(new Vector2(2916.91406F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2908.33398F, -84.0839996F));
+ builder.AddLine(new Vector2(2908.33398F, -122.122002F));
+ builder.AddLine(new Vector2(2807.66211F, -122.122002F));
+ builder.AddLine(new Vector2(2807.66211F, -84.0839996F));
+ builder.AddLine(new Vector2(2908.33398F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2918.62988F, 0F));
+ builder.AddLine(new Vector2(2918.62988F, -38.8959999F));
+ builder.AddLine(new Vector2(2807.66211F, -38.8959999F));
+ builder.AddLine(new Vector2(2807.66211F, 0F));
+ builder.AddLine(new Vector2(2918.62988F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2818.2439F, 0F));
+ builder.AddLine(new Vector2(2818.2439F, -201.916F));
+ builder.AddLine(new Vector2(2773.05591F, -201.916F));
+ builder.AddLine(new Vector2(2773.05591F, 0F));
+ builder.AddLine(new Vector2(2818.2439F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0243()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(2699.26807F, -13.2989998F));
+ builder.AddCubicBezier(new Vector2(2712.99609F, -24.2609997F), new Vector2(2719.86011F, -39.3699989F), new Vector2(2719.86011F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(2719.86011F, -69.3059998F), new Vector2(2718.09497F, -78.1719971F), new Vector2(2714.56909F, -85.2279968F));
+ builder.AddCubicBezier(new Vector2(2711.03906F, -92.2799988F), new Vector2(2706.51196F, -98.1920013F), new Vector2(2700.98389F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(2695.4519F, -107.723999F), new Vector2(2689.30298F, -111.584999F), new Vector2(2682.53711F, -114.542999F));
+ builder.AddCubicBezier(new Vector2(2675.76709F, -117.497002F), new Vector2(2668.99707F, -120.120003F), new Vector2(2662.23096F, -122.407997F));
+ builder.AddCubicBezier(new Vector2(2655.46094F, -124.695999F), new Vector2(2649.26294F, -126.984001F), new Vector2(2643.64111F, -129.272003F));
+ builder.AddCubicBezier(new Vector2(2638.01489F, -131.559998F), new Vector2(2633.48804F, -134.276993F), new Vector2(2630.05591F, -137.423004F));
+ builder.AddCubicBezier(new Vector2(2626.62402F, -140.569F), new Vector2(2624.90796F, -144.617996F), new Vector2(2624.90796F, -149.578003F));
+ builder.AddCubicBezier(new Vector2(2624.90796F, -155.106003F), new Vector2(2627.19604F, -159.347F), new Vector2(2631.77197F, -162.304993F));
+ builder.AddCubicBezier(new Vector2(2636.3479F, -165.259003F), new Vector2(2642.54199F, -166.738007F), new Vector2(2650.36206F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(2657.98608F, -166.738007F), new Vector2(2664.89893F, -165.210007F), new Vector2(2671.09692F, -162.162003F));
+ builder.AddCubicBezier(new Vector2(2677.29102F, -159.110001F), new Vector2(2683.43994F, -154.440002F), new Vector2(2689.54395F, -148.147995F));
+ builder.AddLine(new Vector2(2719.00195F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(2711.37402F, -185.994003F), new Vector2(2701.7439F, -192.666F), new Vector2(2690.11597F, -197.626007F));
+ builder.AddCubicBezier(new Vector2(2678.48389F, -202.582001F), new Vector2(2665.52002F, -205.061996F), new Vector2(2651.21997F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(2637.49194F, -205.061996F), new Vector2(2625.19409F, -202.725006F), new Vector2(2614.32593F, -198.054993F));
+ builder.AddCubicBezier(new Vector2(2603.45801F, -193.380997F), new Vector2(2595.021F, -186.565994F), new Vector2(2589.01489F, -177.606003F));
+ builder.AddCubicBezier(new Vector2(2583.00903F, -168.641998F), new Vector2(2580.0061F, -157.871994F), new Vector2(2580.0061F, -145.287994F));
+ builder.AddCubicBezier(new Vector2(2580.0061F, -135.179993F), new Vector2(2581.72192F, -126.697998F), new Vector2(2585.15405F, -119.834F));
+ builder.AddCubicBezier(new Vector2(2588.58594F, -112.970001F), new Vector2(2593.11304F, -107.344002F), new Vector2(2598.73901F, -102.959999F));
+ builder.AddCubicBezier(new Vector2(2604.36108F, -98.5719986F), new Vector2(2610.55908F, -94.8539963F), new Vector2(2617.3291F, -91.8059998F));
+ builder.AddCubicBezier(new Vector2(2624.09497F, -88.7539978F), new Vector2(2630.81592F, -86.1309967F), new Vector2(2637.49194F, -83.9410019F));
+ builder.AddCubicBezier(new Vector2(2644.16406F, -81.7470016F), new Vector2(2650.36206F, -79.4100037F), new Vector2(2656.08203F, -76.9339981F));
+ builder.AddCubicBezier(new Vector2(2661.802F, -74.4540024F), new Vector2(2666.3291F, -71.5F), new Vector2(2669.66699F, -68.0680008F));
+ builder.AddCubicBezier(new Vector2(2673.00098F, -64.6360016F), new Vector2(2674.67212F, -60.2480011F), new Vector2(2674.67212F, -54.9119987F));
+ builder.AddCubicBezier(new Vector2(2674.67212F, -48.8079987F), new Vector2(2672.04907F, -43.9949989F), new Vector2(2666.80688F, -40.4690018F));
+ builder.AddCubicBezier(new Vector2(2661.56104F, -36.9389992F), new Vector2(2654.26807F, -35.1780014F), new Vector2(2644.92798F, -35.1780014F));
+ builder.AddCubicBezier(new Vector2(2634.43994F, -35.1780014F), new Vector2(2625.23901F, -37.2249985F), new Vector2(2617.3291F, -41.3269997F));
+ builder.AddCubicBezier(new Vector2(2609.41504F, -45.4249992F), new Vector2(2602.21606F, -51.1940002F), new Vector2(2595.73608F, -58.6300011F));
+ builder.AddLine(new Vector2(2566.56396F, -29.4580002F));
+ builder.AddCubicBezier(new Vector2(2576.28809F, -18.3980007F), new Vector2(2587.10693F, -10.198F), new Vector2(2599.0249F, -4.86199999F));
+ builder.AddCubicBezier(new Vector2(2610.93896F, 0.474000007F), new Vector2(2625.28809F, 3.14599991F), new Vector2(2642.06812F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(2666.47192F, 3.14599991F), new Vector2(2685.54004F, -2.33299994F), new Vector2(2699.26807F, -13.2989998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0244()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(2529.0979F, -163.020004F));
+ builder.AddLine(new Vector2(2529.0979F, -201.916F));
+ builder.AddLine(new Vector2(2419.84595F, -201.916F));
+ builder.AddLine(new Vector2(2419.84595F, -163.020004F));
+ builder.AddLine(new Vector2(2529.0979F, -163.020004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2520.51807F, -84.0839996F));
+ builder.AddLine(new Vector2(2520.51807F, -122.122002F));
+ builder.AddLine(new Vector2(2419.84595F, -122.122002F));
+ builder.AddLine(new Vector2(2419.84595F, -84.0839996F));
+ builder.AddLine(new Vector2(2520.51807F, -84.0839996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2530.81396F, 0F));
+ builder.AddLine(new Vector2(2530.81396F, -38.8959999F));
+ builder.AddLine(new Vector2(2419.84595F, -38.8959999F));
+ builder.AddLine(new Vector2(2419.84595F, 0F));
+ builder.AddLine(new Vector2(2530.81396F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2430.42798F, 0F));
+ builder.AddLine(new Vector2(2430.42798F, -201.916F));
+ builder.AddLine(new Vector2(2385.23999F, -201.916F));
+ builder.AddLine(new Vector2(2385.23999F, 0F));
+ builder.AddLine(new Vector2(2430.42798F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0245()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(2341.19604F, 0F));
+ builder.AddLine(new Vector2(2266.26392F, -98.3840027F));
+ builder.AddLine(new Vector2(2224.79395F, -86.9440002F));
+ builder.AddLine(new Vector2(2287.71411F, 0F));
+ builder.AddLine(new Vector2(2341.19604F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2223.07788F, 0F));
+ builder.AddLine(new Vector2(2223.07788F, -201.916F));
+ builder.AddLine(new Vector2(2177.88989F, -201.916F));
+ builder.AddLine(new Vector2(2177.88989F, 0F));
+ builder.AddLine(new Vector2(2223.07788F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2259.11401F, -82.9400024F));
+ builder.AddCubicBezier(new Vector2(2273.03003F, -82.9400024F), new Vector2(2285.13989F, -85.4160004F), new Vector2(2295.43604F, -90.3759995F));
+ builder.AddCubicBezier(new Vector2(2305.73193F, -95.3320007F), new Vector2(2313.73999F, -102.245003F), new Vector2(2319.45996F, -111.111F));
+ builder.AddCubicBezier(new Vector2(2325.17993F, -119.976997F), new Vector2(2328.04004F, -130.509995F), new Vector2(2328.04004F, -142.714005F));
+ builder.AddCubicBezier(new Vector2(2328.04004F, -154.154007F), new Vector2(2325.2251F, -164.352005F), new Vector2(2319.60303F, -173.315994F));
+ builder.AddCubicBezier(new Vector2(2313.97705F, -182.276001F), new Vector2(2306.11206F, -189.283005F), new Vector2(2296.00806F, -194.337006F));
+ builder.AddCubicBezier(new Vector2(2285.8999F, -199.386993F), new Vector2(2274.08008F, -201.916F), new Vector2(2260.54395F, -201.916F));
+ builder.AddLine(new Vector2(2212.49609F, -201.916F));
+ builder.AddLine(new Vector2(2212.49609F, -166.738007F));
+ builder.AddLine(new Vector2(2255.396F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(2264.16406F, -166.738007F), new Vector2(2270.98291F, -164.352005F), new Vector2(2275.84497F, -159.587997F));
+ builder.AddCubicBezier(new Vector2(2280.70703F, -154.820007F), new Vector2(2283.13794F, -148.813995F), new Vector2(2283.13794F, -141.570007F));
+ builder.AddCubicBezier(new Vector2(2283.13794F, -133.942001F), new Vector2(2280.65796F, -127.887001F), new Vector2(2275.7019F, -123.408997F));
+ builder.AddCubicBezier(new Vector2(2270.74194F, -118.927002F), new Vector2(2263.87793F, -116.688004F), new Vector2(2255.11011F, -116.688004F));
+ builder.AddLine(new Vector2(2212.49609F, -116.688004F));
+ builder.AddLine(new Vector2(2212.49609F, -82.9400024F));
+ builder.AddLine(new Vector2(2259.11401F, -82.9400024F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0246()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(2123.55005F, -117.260002F));
+ builder.AddLine(new Vector2(2123.55005F, -148.720001F));
+ builder.AddLine(new Vector2(1963.67603F, -148.720001F));
+ builder.AddLine(new Vector2(1963.67603F, -117.260002F));
+ builder.AddLine(new Vector2(2123.55005F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2007.14795F, 0F));
+ builder.AddLine(new Vector2(2040.32397F, -201.916F));
+ builder.AddLine(new Vector2(2004.57397F, -201.916F));
+ builder.AddLine(new Vector2(1971.11206F, 0F));
+ builder.AddLine(new Vector2(2007.14795F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2114.11206F, -57.4860001F));
+ builder.AddLine(new Vector2(2114.11206F, -88.9459991F));
+ builder.AddLine(new Vector2(1953.95203F, -88.9459991F));
+ builder.AddLine(new Vector2(1953.95203F, -57.4860001F));
+ builder.AddLine(new Vector2(2114.11206F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(2071.21191F, 0F));
+ builder.AddLine(new Vector2(2104.95996F, -201.916F));
+ builder.AddLine(new Vector2(2068.92407F, -201.916F));
+ builder.AddLine(new Vector2(2035.74805F, 0F));
+ builder.AddLine(new Vector2(2071.21191F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0247()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(1799.79797F, 0F));
+ builder.AddLine(new Vector2(1799.79797F, -201.916F));
+ builder.AddLine(new Vector2(1755.18201F, -201.916F));
+ builder.AddLine(new Vector2(1755.18201F, 0F));
+ builder.AddLine(new Vector2(1799.79797F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(1841.55396F, 0F));
+ builder.AddCubicBezier(new Vector2(1855.854F, 0F), new Vector2(1868.10303F, -2.61899996F), new Vector2(1878.30505F, -7.86499977F));
+ builder.AddCubicBezier(new Vector2(1888.50305F, -13.1070004F), new Vector2(1896.323F, -20.1140003F), new Vector2(1901.75696F, -28.8859997F));
+ builder.AddCubicBezier(new Vector2(1907.19104F, -37.6539993F), new Vector2(1909.90796F, -47.5699997F), new Vector2(1909.90796F, -58.6300011F));
+ builder.AddCubicBezier(new Vector2(1909.90796F, -73.1179962F), new Vector2(1905.33203F, -85.3219986F), new Vector2(1896.18005F, -95.237999F));
+ builder.AddCubicBezier(new Vector2(1887.02795F, -105.150002F), new Vector2(1873.87195F, -111.727997F), new Vector2(1856.71204F, -114.972F));
+ builder.AddLine(new Vector2(1855.56799F, -99.814003F));
+ builder.AddCubicBezier(new Vector2(1871.19995F, -103.054001F), new Vector2(1883.02405F, -108.917F), new Vector2(1891.03198F, -117.403F));
+ builder.AddCubicBezier(new Vector2(1899.04004F, -125.885002F), new Vector2(1903.04395F, -136.516006F), new Vector2(1903.04395F, -149.292007F));
+ builder.AddCubicBezier(new Vector2(1903.04395F, -158.824005F), new Vector2(1900.70703F, -167.595993F), new Vector2(1896.03699F, -175.604004F));
+ builder.AddCubicBezier(new Vector2(1891.36304F, -183.612F), new Vector2(1884.45398F, -189.998001F), new Vector2(1875.302F, -194.766006F));
+ builder.AddCubicBezier(new Vector2(1866.15002F, -199.529999F), new Vector2(1855.08997F, -201.916F), new Vector2(1842.12598F, -201.916F));
+ builder.AddLine(new Vector2(1789.78796F, -201.916F));
+ builder.AddLine(new Vector2(1789.78796F, -166.738007F));
+ builder.AddLine(new Vector2(1833.54602F, -166.738007F));
+ builder.AddCubicBezier(new Vector2(1840.79004F, -166.738007F), new Vector2(1846.70203F, -164.878998F), new Vector2(1851.27795F, -161.160995F));
+ builder.AddCubicBezier(new Vector2(1855.854F, -157.442993F), new Vector2(1858.14197F, -151.960007F), new Vector2(1858.14197F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(1858.14197F, -137.087997F), new Vector2(1855.854F, -131.462006F), new Vector2(1851.27795F, -127.842003F));
+ builder.AddCubicBezier(new Vector2(1846.70203F, -124.218002F), new Vector2(1840.79004F, -122.407997F), new Vector2(1833.54602F, -122.407997F));
+ builder.AddLine(new Vector2(1789.78796F, -122.407997F));
+ builder.AddLine(new Vector2(1789.78796F, -88.0879974F));
+ builder.AddLine(new Vector2(1837.26404F, -88.0879974F));
+ builder.AddCubicBezier(new Vector2(1842.98401F, -88.0879974F), new Vector2(1847.89099F, -86.9440002F), new Vector2(1851.99304F, -84.6559982F));
+ builder.AddCubicBezier(new Vector2(1856.09094F, -82.3679962F), new Vector2(1859.28601F, -79.2220001F), new Vector2(1861.57397F, -75.2180023F));
+ builder.AddCubicBezier(new Vector2(1863.86206F, -71.2139969F), new Vector2(1865.00598F, -66.7320023F), new Vector2(1865.00598F, -61.776001F));
+ builder.AddCubicBezier(new Vector2(1865.00598F, -54.1479988F), new Vector2(1862.526F, -47.8069992F), new Vector2(1857.56995F, -42.757F));
+ builder.AddCubicBezier(new Vector2(1852.60999F, -37.7029991F), new Vector2(1845.84399F, -35.1780014F), new Vector2(1837.26404F, -35.1780014F));
+ builder.AddLine(new Vector2(1789.78796F, -35.1780014F));
+ builder.AddLine(new Vector2(1789.78796F, 0F));
+ builder.AddLine(new Vector2(1841.55396F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0248()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(1664.52002F, -36.3219986F));
+ builder.AddLine(new Vector2(1664.52002F, -72.9300003F));
+ builder.AddLine(new Vector2(1554.69604F, -72.9300003F));
+ builder.AddLine(new Vector2(1554.69604F, -36.3219986F));
+ builder.AddLine(new Vector2(1664.52002F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(1555.55396F, 0F));
+ builder.AddLine(new Vector2(1617.32996F, -167.309998F));
+ builder.AddLine(new Vector2(1600.74194F, -167.309998F));
+ builder.AddLine(new Vector2(1661.08801F, 0F));
+ builder.AddLine(new Vector2(1708.84998F, 0F));
+ builder.AddLine(new Vector2(1629.62805F, -201.916F));
+ builder.AddLine(new Vector2(1588.72998F, -201.916F));
+ builder.AddLine(new Vector2(1508.93604F, 0F));
+ builder.AddLine(new Vector2(1555.55396F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0249()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(1446.302F, -4.43300009F));
+ builder.AddCubicBezier(new Vector2(1458.88599F, -9.4829998F), new Vector2(1469.94202F, -16.5879993F), new Vector2(1479.47803F, -25.7399998F));
+ builder.AddLine(new Vector2(1448.87598F, -56.3419991F));
+ builder.AddCubicBezier(new Vector2(1443.53601F, -50.4300003F), new Vector2(1437.052F, -45.9029999F), new Vector2(1429.42798F, -42.757F));
+ builder.AddCubicBezier(new Vector2(1421.80005F, -39.6110001F), new Vector2(1412.83997F, -38.0379982F), new Vector2(1402.54395F, -38.0379982F));
+ builder.AddCubicBezier(new Vector2(1393.77197F, -38.0379982F), new Vector2(1385.76404F, -39.5130005F), new Vector2(1378.52002F, -42.4710007F));
+ builder.AddCubicBezier(new Vector2(1371.27197F, -45.4249992F), new Vector2(1364.97998F, -49.7150002F), new Vector2(1359.64404F, -55.3409996F));
+ builder.AddCubicBezier(new Vector2(1354.30396F, -60.9630013F), new Vector2(1350.20605F, -67.6389999F), new Vector2(1347.34595F, -75.3610001F));
+ builder.AddCubicBezier(new Vector2(1344.48596F, -83.0830002F), new Vector2(1343.05603F, -91.7080002F), new Vector2(1343.05603F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(1343.05603F, -110.396004F), new Vector2(1344.48596F, -118.877998F), new Vector2(1347.34595F, -126.697998F));
+ builder.AddCubicBezier(new Vector2(1350.20605F, -134.514008F), new Vector2(1354.30396F, -141.186005F), new Vector2(1359.64404F, -146.718002F));
+ builder.AddCubicBezier(new Vector2(1364.97998F, -152.246002F), new Vector2(1371.27197F, -156.487F), new Vector2(1378.52002F, -159.445007F));
+ builder.AddCubicBezier(new Vector2(1385.76404F, -162.399002F), new Vector2(1393.77197F, -163.878006F), new Vector2(1402.54395F, -163.878006F));
+ builder.AddCubicBezier(new Vector2(1412.45605F, -163.878006F), new Vector2(1421.17896F, -162.255997F), new Vector2(1428.71301F, -159.016006F));
+ builder.AddCubicBezier(new Vector2(1436.24304F, -155.772003F), new Vector2(1442.58398F, -151.294006F), new Vector2(1447.73206F, -145.574005F));
+ builder.AddLine(new Vector2(1478.04797F, -176.175995F));
+ builder.AddCubicBezier(new Vector2(1468.70398F, -185.136002F), new Vector2(1457.78699F, -192.192001F), new Vector2(1445.30103F, -197.339996F));
+ builder.AddCubicBezier(new Vector2(1432.81104F, -202.488007F), new Vector2(1418.56006F, -205.061996F), new Vector2(1402.54395F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(1387.28796F, -205.061996F), new Vector2(1373.27405F, -202.438995F), new Vector2(1360.50195F, -197.197006F));
+ builder.AddCubicBezier(new Vector2(1347.72595F, -191.951004F), new Vector2(1336.52295F, -184.658005F), new Vector2(1326.89697F, -175.317993F));
+ builder.AddCubicBezier(new Vector2(1317.26697F, -165.973999F), new Vector2(1309.78198F, -154.962997F), new Vector2(1304.44604F, -142.285004F));
+ builder.AddCubicBezier(new Vector2(1299.10596F, -129.602997F), new Vector2(1296.43799F, -115.924004F), new Vector2(1296.43799F, -101.244003F));
+ builder.AddCubicBezier(new Vector2(1296.43799F, -86.5599976F), new Vector2(1299.10596F, -72.8809967F), new Vector2(1304.44604F, -60.2029991F));
+ builder.AddCubicBezier(new Vector2(1309.78198F, -47.5209999F), new Vector2(1317.26697F, -36.4160004F), new Vector2(1326.89697F, -26.8840008F));
+ builder.AddCubicBezier(new Vector2(1336.52295F, -17.3479996F), new Vector2(1347.77502F, -9.96100044F), new Vector2(1360.64502F, -4.71899986F));
+ builder.AddCubicBezier(new Vector2(1373.51501F, 0.523000002F), new Vector2(1387.47998F, 3.14599991F), new Vector2(1402.54395F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(1419.13196F, 3.14599991F), new Vector2(1433.71802F, 0.616999984F), new Vector2(1446.302F, -4.43300009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0250()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(1226.93994F, -36.3219986F));
+ builder.AddLine(new Vector2(1226.93994F, -72.9300003F));
+ builder.AddLine(new Vector2(1117.11597F, -72.9300003F));
+ builder.AddLine(new Vector2(1117.11597F, -36.3219986F));
+ builder.AddLine(new Vector2(1226.93994F, -36.3219986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(1117.974F, 0F));
+ builder.AddLine(new Vector2(1179.75F, -167.309998F));
+ builder.AddLine(new Vector2(1163.16199F, -167.309998F));
+ builder.AddLine(new Vector2(1223.50806F, 0F));
+ builder.AddLine(new Vector2(1271.27002F, 0F));
+ builder.AddLine(new Vector2(1192.04797F, -201.916F));
+ builder.AddLine(new Vector2(1151.15002F, -201.916F));
+ builder.AddLine(new Vector2(1071.35596F, 0F));
+ builder.AddLine(new Vector2(1117.974F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0251()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(1031.88794F, -117.260002F));
+ builder.AddLine(new Vector2(1031.88794F, -148.720001F));
+ builder.AddLine(new Vector2(872.013977F, -148.720001F));
+ builder.AddLine(new Vector2(872.013977F, -117.260002F));
+ builder.AddLine(new Vector2(1031.88794F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(915.486023F, 0F));
+ builder.AddLine(new Vector2(948.661987F, -201.916F));
+ builder.AddLine(new Vector2(912.911987F, -201.916F));
+ builder.AddLine(new Vector2(879.450012F, 0F));
+ builder.AddLine(new Vector2(915.486023F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(1022.45001F, -57.4860001F));
+ builder.AddLine(new Vector2(1022.45001F, -88.9459991F));
+ builder.AddLine(new Vector2(862.289978F, -88.9459991F));
+ builder.AddLine(new Vector2(862.289978F, -57.4860001F));
+ builder.AddLine(new Vector2(1022.45001F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(979.549988F, 0F));
+ builder.AddLine(new Vector2(1013.29797F, -201.916F));
+ builder.AddLine(new Vector2(977.262024F, -201.916F));
+ builder.AddLine(new Vector2(944.085999F, 0F));
+ builder.AddLine(new Vector2(979.549988F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0252()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(818.531982F, 0F));
+ builder.AddLine(new Vector2(818.531982F, -38.3240013F));
+ builder.AddLine(new Vector2(710.995972F, -38.3240013F));
+ builder.AddLine(new Vector2(672.958008F, -25.1679993F));
+ builder.AddLine(new Vector2(672.958008F, 0F));
+ builder.AddLine(new Vector2(818.531982F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(728.442017F, -24.5960007F));
+ builder.AddLine(new Vector2(782.495972F, -78.0780029F));
+ builder.AddCubicBezier(new Vector2(790.312012F, -85.8939972F), new Vector2(796.554993F, -93.0439987F), new Vector2(801.229004F, -99.5279999F));
+ builder.AddCubicBezier(new Vector2(805.898987F, -106.008003F), new Vector2(809.237F, -112.635002F), new Vector2(811.239014F, -119.404999F));
+ builder.AddCubicBezier(new Vector2(813.241028F, -126.170998F), new Vector2(814.242004F, -133.656006F), new Vector2(814.242004F, -141.856003F));
+ builder.AddCubicBezier(new Vector2(814.242004F, -154.628006F), new Vector2(811.476013F, -165.781998F), new Vector2(805.947998F, -175.317993F));
+ builder.AddCubicBezier(new Vector2(800.416016F, -184.850006F), new Vector2(792.505981F, -192.192001F), new Vector2(782.210022F, -197.339996F));
+ builder.AddCubicBezier(new Vector2(771.914001F, -202.488007F), new Vector2(759.804016F, -205.061996F), new Vector2(745.888F, -205.061996F));
+ builder.AddCubicBezier(new Vector2(729.679993F, -205.061996F), new Vector2(715.429016F, -201.630005F), new Vector2(703.130981F, -194.766006F));
+ builder.AddCubicBezier(new Vector2(690.833008F, -187.901993F), new Vector2(680.58197F, -177.699997F), new Vector2(672.385986F, -164.164001F));
+ builder.AddLine(new Vector2(702.702026F, -137.852005F));
+ builder.AddCubicBezier(new Vector2(708.609985F, -147.576004F), new Vector2(714.758972F, -154.582993F), new Vector2(721.148987F, -158.873001F));
+ builder.AddCubicBezier(new Vector2(727.534973F, -163.162994F), new Vector2(734.734009F, -165.307999F), new Vector2(742.742004F, -165.307999F));
+ builder.AddCubicBezier(new Vector2(750.75F, -165.307999F), new Vector2(757.278992F, -163.065002F), new Vector2(762.333008F, -158.587006F));
+ builder.AddCubicBezier(new Vector2(767.382996F, -154.104996F), new Vector2(769.911987F, -147.955994F), new Vector2(769.911987F, -140.139999F));
+ builder.AddCubicBezier(new Vector2(769.911987F, -136.707993F), new Vector2(769.291016F, -133.227005F), new Vector2(768.052979F, -129.701004F));
+ builder.AddCubicBezier(new Vector2(766.810974F, -126.170998F), new Vector2(764.715027F, -122.453003F), new Vector2(761.760986F, -118.546997F));
+ builder.AddCubicBezier(new Vector2(758.802979F, -114.637001F), new Vector2(755.039978F, -110.204002F), new Vector2(750.463989F, -105.248001F));
+ builder.AddLine(new Vector2(672.958008F, -25.1679993F));
+ builder.AddLine(new Vector2(728.442017F, -24.5960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0253()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(619.190002F, -163.591995F));
+ builder.AddLine(new Vector2(619.190002F, -201.916F));
+ builder.AddLine(new Vector2(538.252014F, -201.916F));
+ builder.AddLine(new Vector2(538.252014F, -163.591995F));
+ builder.AddLine(new Vector2(619.190002F, -163.591995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(622.049988F, 0F));
+ builder.AddLine(new Vector2(622.049988F, -201.916F));
+ builder.AddLine(new Vector2(577.14801F, -201.916F));
+ builder.AddLine(new Vector2(577.14801F, 0F));
+ builder.AddLine(new Vector2(622.049988F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0254()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(459.60199F, -163.591995F));
+ builder.AddLine(new Vector2(495.06601F, -176.748001F));
+ builder.AddLine(new Vector2(495.06601F, -201.916F));
+ builder.AddLine(new Vector2(364.649994F, -201.916F));
+ builder.AddLine(new Vector2(364.649994F, -163.591995F));
+ builder.AddLine(new Vector2(459.60199F, -163.591995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(444.15799F, -118.975998F));
+ builder.AddLine(new Vector2(495.06601F, -176.748001F));
+ builder.AddLine(new Vector2(444.444F, -176.462006F));
+ builder.AddLine(new Vector2(395.252014F, -119.262001F));
+ builder.AddLine(new Vector2(395.252014F, -93.8079987F));
+ builder.AddLine(new Vector2(444.15799F, -118.975998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(461.604004F, -5.57700014F));
+ builder.AddCubicBezier(new Vector2(473.424011F, -11.3909998F), new Vector2(482.575989F, -19.3990002F), new Vector2(489.059998F, -29.6009998F));
+ builder.AddCubicBezier(new Vector2(495.540009F, -39.7989998F), new Vector2(498.783997F, -51.6679993F), new Vector2(498.783997F, -65.2080002F));
+ builder.AddCubicBezier(new Vector2(498.783997F, -77.2200012F), new Vector2(496.39801F, -87.6589966F), new Vector2(491.634003F, -96.5250015F));
+ builder.AddCubicBezier(new Vector2(486.865997F, -105.390999F), new Vector2(480.337006F, -112.254997F), new Vector2(472.042999F, -117.116997F));
+ builder.AddCubicBezier(new Vector2(463.748993F, -121.978996F), new Vector2(454.45401F, -124.410004F), new Vector2(444.15799F, -124.410004F));
+ builder.AddCubicBezier(new Vector2(439.962006F, -124.410004F), new Vector2(435.480011F, -123.883003F), new Vector2(430.716003F, -122.836998F));
+ builder.AddCubicBezier(new Vector2(425.947998F, -121.787003F), new Vector2(420.799988F, -120.5F), new Vector2(415.272003F, -118.975998F));
+ builder.AddLine(new Vector2(395.252014F, -93.8079987F));
+ builder.AddCubicBezier(new Vector2(397.920013F, -94.7600021F), new Vector2(401.257996F, -95.4749985F), new Vector2(405.261993F, -95.9530029F));
+ builder.AddCubicBezier(new Vector2(409.265991F, -96.427002F), new Vector2(413.078003F, -96.6679993F), new Vector2(416.701996F, -96.6679993F));
+ builder.AddCubicBezier(new Vector2(424.325989F, -96.6679993F), new Vector2(430.953003F, -95.4749985F), new Vector2(436.57901F, -93.0930023F));
+ builder.AddCubicBezier(new Vector2(442.200989F, -90.7070007F), new Vector2(446.540009F, -87.3239975F), new Vector2(449.59201F, -82.9400024F));
+ builder.AddCubicBezier(new Vector2(452.640015F, -78.552002F), new Vector2(454.167999F, -73.1179962F), new Vector2(454.167999F, -66.6380005F));
+ builder.AddCubicBezier(new Vector2(454.167999F, -60.3460007F), new Vector2(452.640015F, -54.9570007F), new Vector2(449.59201F, -50.4790001F));
+ builder.AddCubicBezier(new Vector2(446.540009F, -45.9970016F), new Vector2(442.441986F, -42.5159988F), new Vector2(437.294006F, -40.0400009F));
+ builder.AddCubicBezier(new Vector2(432.145996F, -37.5600014F), new Vector2(426.140015F, -36.3219986F), new Vector2(419.276001F, -36.3219986F));
+ builder.AddCubicBezier(new Vector2(411.64801F, -36.3219986F), new Vector2(404.306F, -37.9399986F), new Vector2(397.253998F, -41.1839981F));
+ builder.AddCubicBezier(new Vector2(390.197998F, -44.4239998F), new Vector2(384.858002F, -48.7140007F), new Vector2(381.238007F, -54.0540009F));
+ builder.AddLine(new Vector2(352.06601F, -24.882F));
+ builder.AddCubicBezier(new Vector2(360.074005F, -15.7299995F), new Vector2(369.891998F, -8.76799965F), new Vector2(381.523987F, -4.00400019F));
+ builder.AddCubicBezier(new Vector2(393.152008F, 0.75999999F), new Vector2(406.022003F, 3.14599991F), new Vector2(420.134003F, 3.14599991F));
+ builder.AddCubicBezier(new Vector2(435.958008F, 3.14599991F), new Vector2(449.779999F, 0.237000003F), new Vector2(461.604004F, -5.57700014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0255()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(300.872009F, -163.591995F));
+ builder.AddLine(new Vector2(300.872009F, -201.916F));
+ builder.AddLine(new Vector2(219.934006F, -201.916F));
+ builder.AddLine(new Vector2(219.934006F, -163.591995F));
+ builder.AddLine(new Vector2(300.872009F, -163.591995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(303.731995F, 0F));
+ builder.AddLine(new Vector2(303.731995F, -201.916F));
+ builder.AddLine(new Vector2(258.829987F, -201.916F));
+ builder.AddLine(new Vector2(258.829987F, 0F));
+ builder.AddLine(new Vector2(303.731995F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0256()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(179.322006F, -117.260002F));
+ builder.AddLine(new Vector2(179.322006F, -148.720001F));
+ builder.AddLine(new Vector2(19.448F, -148.720001F));
+ builder.AddLine(new Vector2(19.448F, -117.260002F));
+ builder.AddLine(new Vector2(179.322006F, -117.260002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(62.9199982F, 0F));
+ builder.AddLine(new Vector2(96.0960007F, -201.916F));
+ builder.AddLine(new Vector2(60.3460007F, -201.916F));
+ builder.AddLine(new Vector2(26.8840008F, 0F));
+ builder.AddLine(new Vector2(62.9199982F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(169.884003F, -57.4860001F));
+ builder.AddLine(new Vector2(169.884003F, -88.9459991F));
+ builder.AddLine(new Vector2(9.72399998F, -88.9459991F));
+ builder.AddLine(new Vector2(9.72399998F, -57.4860001F));
+ builder.AddLine(new Vector2(169.884003F, -57.4860001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(126.984001F, 0F));
+ builder.AddLine(new Vector2(160.731995F, -201.916F));
+ builder.AddLine(new Vector2(124.695999F, -201.916F));
+ builder.AddLine(new Vector2(91.5199966F, 0F));
+ builder.AddLine(new Vector2(126.984001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0257()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(485.18399F, 0F));
+ builder.AddLine(new Vector2(485.18399F, -27.2159996F));
+ builder.AddLine(new Vector2(476.559998F, -27.2159996F));
+ builder.AddLine(new Vector2(476.559998F, 0F));
+ builder.AddLine(new Vector2(485.18399F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(503.216003F, 0F));
+ builder.AddLine(new Vector2(503.216003F, -17.4160004F));
+ builder.AddCubicBezier(new Vector2(503.216003F, -19.2819996F), new Vector2(502.768005F, -21.0090008F), new Vector2(501.872009F, -22.5960007F));
+ builder.AddCubicBezier(new Vector2(500.976013F, -24.1819992F), new Vector2(499.743988F, -25.4419994F), new Vector2(498.175995F, -26.3759995F));
+ builder.AddCubicBezier(new Vector2(496.608002F, -27.309F), new Vector2(494.834015F, -27.7759991F), new Vector2(492.855988F, -27.7759991F));
+ builder.AddCubicBezier(new Vector2(490.765015F, -27.7759991F), new Vector2(488.889008F, -27.3369999F), new Vector2(487.227997F, -26.4599991F));
+ builder.AddCubicBezier(new Vector2(485.56601F, -25.5820007F), new Vector2(484.26001F, -24.3409996F), new Vector2(483.308014F, -22.7360001F));
+ builder.AddCubicBezier(new Vector2(482.355988F, -21.1299992F), new Vector2(481.880005F, -19.2639999F), new Vector2(481.880005F, -17.1359997F));
+ builder.AddLine(new Vector2(485.18399F, -15.5120001F));
+ builder.AddCubicBezier(new Vector2(485.18399F, -16.4449997F), new Vector2(485.389008F, -17.2660007F), new Vector2(485.799988F, -17.9759998F));
+ builder.AddCubicBezier(new Vector2(486.209991F, -18.6849995F), new Vector2(486.769989F, -19.2360001F), new Vector2(487.480011F, -19.6280003F));
+ builder.AddCubicBezier(new Vector2(488.188995F, -20.0200005F), new Vector2(488.992004F, -20.2159996F), new Vector2(489.888F, -20.2159996F));
+ builder.AddCubicBezier(new Vector2(491.231995F, -20.2159996F), new Vector2(492.35199F, -19.7770004F), new Vector2(493.247986F, -18.8999996F));
+ builder.AddCubicBezier(new Vector2(494.144012F, -18.0219994F), new Vector2(494.59201F, -16.8929996F), new Vector2(494.59201F, -15.5120001F));
+ builder.AddLine(new Vector2(494.59201F, 0F));
+ builder.AddLine(new Vector2(503.216003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0258()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(470.567993F, 0F));
+ builder.AddLine(new Vector2(470.567993F, -27.2159996F));
+ builder.AddLine(new Vector2(462.112F, -27.2159996F));
+ builder.AddLine(new Vector2(462.112F, -20.552F));
+ builder.AddLine(new Vector2(463.399994F, -14F));
+ builder.AddLine(new Vector2(462.112F, -7.33599997F));
+ builder.AddLine(new Vector2(462.112F, 0F));
+ builder.AddLine(new Vector2(470.567993F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(453.291992F, -8.03600025F));
+ builder.AddCubicBezier(new Vector2(452.377014F, -8.57699966F), new Vector2(451.648987F, -9.33300018F), new Vector2(451.108002F, -10.3039999F));
+ builder.AddCubicBezier(new Vector2(450.56601F, -11.2740002F), new Vector2(450.29599F, -12.3760004F), new Vector2(450.29599F, -13.6079998F));
+ builder.AddCubicBezier(new Vector2(450.29599F, -14.8400002F), new Vector2(450.56601F, -15.941F), new Vector2(451.108002F, -16.9120007F));
+ builder.AddCubicBezier(new Vector2(451.648987F, -17.882F), new Vector2(452.377014F, -18.6380005F), new Vector2(453.291992F, -19.1800003F));
+ builder.AddCubicBezier(new Vector2(454.205994F, -19.7210007F), new Vector2(455.242004F, -19.9920006F), new Vector2(456.399994F, -19.9920006F));
+ builder.AddCubicBezier(new Vector2(457.593994F, -19.9920006F), new Vector2(458.65799F, -19.7210007F), new Vector2(459.59201F, -19.1800003F));
+ builder.AddCubicBezier(new Vector2(460.524994F, -18.6380005F), new Vector2(461.234009F, -17.8920002F), new Vector2(461.720001F, -16.9400005F));
+ builder.AddCubicBezier(new Vector2(462.204987F, -15.9879999F), new Vector2(462.447998F, -14.8959999F), new Vector2(462.447998F, -13.6639996F));
+ builder.AddCubicBezier(new Vector2(462.447998F, -11.7600002F), new Vector2(461.897003F, -10.21F), new Vector2(460.79599F, -9.01599979F));
+ builder.AddCubicBezier(new Vector2(459.694F, -7.8210001F), new Vector2(458.229004F, -7.22399998F), new Vector2(456.399994F, -7.22399998F));
+ builder.AddCubicBezier(new Vector2(455.242004F, -7.22399998F), new Vector2(454.205994F, -7.49399996F), new Vector2(453.291992F, -8.03600025F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(459.619995F, -0.504000008F));
+ builder.AddCubicBezier(new Vector2(461.093994F, -1.21300006F), new Vector2(462.289001F, -2.19300008F), new Vector2(463.20401F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(464.118011F, -4.69399977F), new Vector2(464.631989F, -6.12200022F), new Vector2(464.743988F, -7.72800016F));
+ builder.AddLine(new Vector2(464.743988F, -19.4880009F));
+ builder.AddCubicBezier(new Vector2(464.631989F, -21.0930004F), new Vector2(464.109009F, -22.5209999F), new Vector2(463.175995F, -23.7719994F));
+ builder.AddCubicBezier(new Vector2(462.242004F, -25.0219994F), new Vector2(461.037994F, -26.0020008F), new Vector2(459.563995F, -26.7119999F));
+ builder.AddCubicBezier(new Vector2(458.088989F, -27.4209995F), new Vector2(456.437012F, -27.7759991F), new Vector2(454.608002F, -27.7759991F));
+ builder.AddCubicBezier(new Vector2(452.105988F, -27.7759991F), new Vector2(449.876007F, -27.1690006F), new Vector2(447.915985F, -25.9559994F));
+ builder.AddCubicBezier(new Vector2(445.955994F, -24.7420006F), new Vector2(444.406006F, -23.0620003F), new Vector2(443.268005F, -20.9160004F));
+ builder.AddCubicBezier(new Vector2(442.128998F, -18.7689991F), new Vector2(441.559998F, -16.3330002F), new Vector2(441.559998F, -13.6079998F));
+ builder.AddCubicBezier(new Vector2(441.559998F, -10.882F), new Vector2(442.128998F, -8.46500015F), new Vector2(443.268005F, -6.35599995F));
+ builder.AddCubicBezier(new Vector2(444.406006F, -4.24599981F), new Vector2(445.964996F, -2.56599998F), new Vector2(447.944F, -1.31599998F));
+ builder.AddCubicBezier(new Vector2(449.921997F, -0.0649999976F), new Vector2(452.144012F, 0.560000002F), new Vector2(454.608002F, 0.560000002F));
+ builder.AddCubicBezier(new Vector2(456.473999F, 0.560000002F), new Vector2(458.144989F, 0.204999998F), new Vector2(459.619995F, -0.504000008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0259()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(424.59201F, 11.4799995F));
+ builder.AddLine(new Vector2(429.40799F, 0.167999998F));
+ builder.AddLine(new Vector2(423.920013F, -6.21600008F));
+ builder.AddLine(new Vector2(415.743988F, 11.4799995F));
+ builder.AddLine(new Vector2(424.59201F, 11.4799995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(429.40799F, 0.167999998F));
+ builder.AddLine(new Vector2(441.056F, -27.2159996F));
+ builder.AddLine(new Vector2(431.76001F, -27.2159996F));
+ builder.AddLine(new Vector2(424.536011F, -5.54400015F));
+ builder.AddLine(new Vector2(427.951996F, -5.54400015F));
+ builder.AddLine(new Vector2(420.839996F, -27.2159996F));
+ builder.AddLine(new Vector2(411.544006F, -27.2159996F));
+ builder.AddLine(new Vector2(422.743988F, 0.167999998F));
+ builder.AddLine(new Vector2(429.40799F, 0.167999998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0260()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(390.936005F, 0F));
+ builder.AddLine(new Vector2(390.936005F, -27.2159996F));
+ builder.AddLine(new Vector2(382.312012F, -27.2159996F));
+ builder.AddLine(new Vector2(382.312012F, 0F));
+ builder.AddLine(new Vector2(390.936005F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(408.967987F, 0F));
+ builder.AddLine(new Vector2(408.967987F, -17.4160004F));
+ builder.AddCubicBezier(new Vector2(408.967987F, -19.2819996F), new Vector2(408.519989F, -21.0090008F), new Vector2(407.623993F, -22.5960007F));
+ builder.AddCubicBezier(new Vector2(406.727997F, -24.1819992F), new Vector2(405.496002F, -25.4419994F), new Vector2(403.928009F, -26.3759995F));
+ builder.AddCubicBezier(new Vector2(402.359985F, -27.309F), new Vector2(400.585999F, -27.7759991F), new Vector2(398.608002F, -27.7759991F));
+ builder.AddCubicBezier(new Vector2(396.516998F, -27.7759991F), new Vector2(394.640991F, -27.3369999F), new Vector2(392.980011F, -26.4599991F));
+ builder.AddCubicBezier(new Vector2(391.317993F, -25.5820007F), new Vector2(390.011993F, -24.3409996F), new Vector2(389.059998F, -22.7360001F));
+ builder.AddCubicBezier(new Vector2(388.108002F, -21.1299992F), new Vector2(387.631989F, -19.2639999F), new Vector2(387.631989F, -17.1359997F));
+ builder.AddLine(new Vector2(390.936005F, -15.5120001F));
+ builder.AddCubicBezier(new Vector2(390.936005F, -16.4449997F), new Vector2(391.140991F, -17.2660007F), new Vector2(391.552002F, -17.9759998F));
+ builder.AddCubicBezier(new Vector2(391.962006F, -18.6849995F), new Vector2(392.522003F, -19.2360001F), new Vector2(393.231995F, -19.6280003F));
+ builder.AddCubicBezier(new Vector2(393.94101F, -20.0200005F), new Vector2(394.743988F, -20.2159996F), new Vector2(395.640015F, -20.2159996F));
+ builder.AddCubicBezier(new Vector2(396.984009F, -20.2159996F), new Vector2(398.104004F, -19.7770004F), new Vector2(399F, -18.8999996F));
+ builder.AddCubicBezier(new Vector2(399.895996F, -18.0219994F), new Vector2(400.343994F, -16.8929996F), new Vector2(400.343994F, -15.5120001F));
+ builder.AddLine(new Vector2(400.343994F, 0F));
+ builder.AddLine(new Vector2(408.967987F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0261()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(376.376007F, -10.5279999F));
+ builder.AddLine(new Vector2(376.376007F, -18.0319996F));
+ builder.AddLine(new Vector2(356.440002F, -18.0319996F));
+ builder.AddLine(new Vector2(356.440002F, -10.5279999F));
+ builder.AddLine(new Vector2(376.376007F, -10.5279999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0262()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(333.032013F, 0F));
+ builder.AddLine(new Vector2(333.032013F, -27.2159996F));
+ builder.AddLine(new Vector2(324.40799F, -27.2159996F));
+ builder.AddLine(new Vector2(324.40799F, 0F));
+ builder.AddLine(new Vector2(333.032013F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(351.063995F, 0F));
+ builder.AddLine(new Vector2(351.063995F, -17.4160004F));
+ builder.AddCubicBezier(new Vector2(351.063995F, -19.2819996F), new Vector2(350.615997F, -21.0090008F), new Vector2(349.720001F, -22.5960007F));
+ builder.AddCubicBezier(new Vector2(348.824005F, -24.1819992F), new Vector2(347.59201F, -25.4419994F), new Vector2(346.023987F, -26.3759995F));
+ builder.AddCubicBezier(new Vector2(344.455994F, -27.309F), new Vector2(342.682007F, -27.7759991F), new Vector2(340.70401F, -27.7759991F));
+ builder.AddCubicBezier(new Vector2(338.613007F, -27.7759991F), new Vector2(336.737F, -27.3369999F), new Vector2(335.075989F, -26.4599991F));
+ builder.AddCubicBezier(new Vector2(333.414001F, -25.5820007F), new Vector2(332.108002F, -24.3409996F), new Vector2(331.156006F, -22.7360001F));
+ builder.AddCubicBezier(new Vector2(330.20401F, -21.1299992F), new Vector2(329.727997F, -19.2639999F), new Vector2(329.727997F, -17.1359997F));
+ builder.AddLine(new Vector2(333.032013F, -15.5120001F));
+ builder.AddCubicBezier(new Vector2(333.032013F, -16.4449997F), new Vector2(333.237F, -17.2660007F), new Vector2(333.64801F, -17.9759998F));
+ builder.AddCubicBezier(new Vector2(334.058014F, -18.6849995F), new Vector2(334.618011F, -19.2360001F), new Vector2(335.328003F, -19.6280003F));
+ builder.AddCubicBezier(new Vector2(336.036987F, -20.0200005F), new Vector2(336.839996F, -20.2159996F), new Vector2(337.735992F, -20.2159996F));
+ builder.AddCubicBezier(new Vector2(339.079987F, -20.2159996F), new Vector2(340.200012F, -19.7770004F), new Vector2(341.096008F, -18.8999996F));
+ builder.AddCubicBezier(new Vector2(341.992004F, -18.0219994F), new Vector2(342.440002F, -16.8929996F), new Vector2(342.440002F, -15.5120001F));
+ builder.AddLine(new Vector2(342.440002F, 0F));
+ builder.AddLine(new Vector2(351.063995F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0263()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(302.119995F, -8.00800037F));
+ builder.AddCubicBezier(new Vector2(301.186005F, -8.52999973F), new Vector2(300.458008F, -9.28600025F), new Vector2(299.936005F, -10.276F));
+ builder.AddCubicBezier(new Vector2(299.412994F, -11.2650003F), new Vector2(299.152008F, -12.3940001F), new Vector2(299.152008F, -13.6639996F));
+ builder.AddCubicBezier(new Vector2(299.152008F, -14.8579998F), new Vector2(299.412994F, -15.941F), new Vector2(299.936005F, -16.9120007F));
+ builder.AddCubicBezier(new Vector2(300.458008F, -17.882F), new Vector2(301.186005F, -18.6380005F), new Vector2(302.119995F, -19.1800003F));
+ builder.AddCubicBezier(new Vector2(303.053009F, -19.7210007F), new Vector2(304.117004F, -19.9920006F), new Vector2(305.312012F, -19.9920006F));
+ builder.AddCubicBezier(new Vector2(306.506012F, -19.9920006F), new Vector2(307.561005F, -19.7210007F), new Vector2(308.476013F, -19.1800003F));
+ builder.AddCubicBezier(new Vector2(309.390015F, -18.6380005F), new Vector2(310.109009F, -17.8920002F), new Vector2(310.631989F, -16.9400005F));
+ builder.AddCubicBezier(new Vector2(311.153992F, -15.9879999F), new Vector2(311.415985F, -14.8959999F), new Vector2(311.415985F, -13.6639996F));
+ builder.AddCubicBezier(new Vector2(311.415985F, -12.3940001F), new Vector2(311.164001F, -11.2650003F), new Vector2(310.660004F, -10.276F));
+ builder.AddCubicBezier(new Vector2(310.156006F, -9.28600025F), new Vector2(309.437012F, -8.52999973F), new Vector2(308.503998F, -8.00800037F));
+ builder.AddCubicBezier(new Vector2(307.570007F, -7.48500013F), new Vector2(306.506012F, -7.22399998F), new Vector2(305.312012F, -7.22399998F));
+ builder.AddCubicBezier(new Vector2(304.117004F, -7.22399998F), new Vector2(303.053009F, -7.48500013F), new Vector2(302.119995F, -8.00800037F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(312.928009F, -1.28799999F));
+ builder.AddCubicBezier(new Vector2(315.167999F, -2.55699992F), new Vector2(316.94101F, -4.26499987F), new Vector2(318.247986F, -6.41200018F));
+ builder.AddCubicBezier(new Vector2(319.553986F, -8.55799961F), new Vector2(320.208008F, -10.9940004F), new Vector2(320.208008F, -13.7200003F));
+ builder.AddCubicBezier(new Vector2(320.208008F, -16.3700008F), new Vector2(319.553986F, -18.7689991F), new Vector2(318.247986F, -20.9160004F));
+ builder.AddCubicBezier(new Vector2(316.94101F, -23.0620003F), new Vector2(315.15799F, -24.7520008F), new Vector2(312.899994F, -25.9839993F));
+ builder.AddCubicBezier(new Vector2(310.640991F, -27.2159996F), new Vector2(308.112F, -27.8320007F), new Vector2(305.312012F, -27.8320007F));
+ builder.AddCubicBezier(new Vector2(302.437012F, -27.8320007F), new Vector2(299.880005F, -27.2059994F), new Vector2(297.640015F, -25.9559994F));
+ builder.AddCubicBezier(new Vector2(295.399994F, -24.7049999F), new Vector2(293.635986F, -23.0160007F), new Vector2(292.347992F, -20.8880005F));
+ builder.AddCubicBezier(new Vector2(291.059998F, -18.7600002F), new Vector2(290.415985F, -16.3700008F), new Vector2(290.415985F, -13.7200003F));
+ builder.AddCubicBezier(new Vector2(290.415985F, -11.0319996F), new Vector2(291.069F, -8.60499954F), new Vector2(292.376007F, -6.44000006F));
+ builder.AddCubicBezier(new Vector2(293.682007F, -4.27400017F), new Vector2(295.455994F, -2.55699992F), new Vector2(297.696014F, -1.28799999F));
+ builder.AddCubicBezier(new Vector2(299.936005F, -0.0179999992F), new Vector2(302.473999F, 0.615999997F), new Vector2(305.312012F, 0.615999997F));
+ builder.AddCubicBezier(new Vector2(308.148987F, 0.615999997F), new Vector2(310.687988F, -0.0179999992F), new Vector2(312.928009F, -1.28799999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0264()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(281.231995F, -0.532000005F));
+ builder.AddCubicBezier(new Vector2(283.135986F, -1.29700005F), new Vector2(284.76001F, -2.48200011F), new Vector2(286.104004F, -4.08799982F));
+ builder.AddLine(new Vector2(281.343994F, -8.79199982F));
+ builder.AddCubicBezier(new Vector2(280.522003F, -7.8579998F), new Vector2(279.570007F, -7.15799999F), new Vector2(278.488007F, -6.69199991F));
+ builder.AddCubicBezier(new Vector2(277.404999F, -6.2249999F), new Vector2(276.209991F, -5.9920001F), new Vector2(274.903992F, -5.9920001F));
+ builder.AddCubicBezier(new Vector2(273.447998F, -5.9920001F), new Vector2(272.187988F, -6.30000019F), new Vector2(271.123993F, -6.91599989F));
+ builder.AddCubicBezier(new Vector2(270.059998F, -7.53200006F), new Vector2(269.238007F, -8.41800022F), new Vector2(268.660004F, -9.57600021F));
+ builder.AddCubicBezier(new Vector2(268.080994F, -10.7329998F), new Vector2(267.791992F, -12.0959997F), new Vector2(267.791992F, -13.6639996F));
+ builder.AddCubicBezier(new Vector2(267.791992F, -15.2320004F), new Vector2(268.062012F, -16.5760002F), new Vector2(268.604004F, -17.6959991F));
+ builder.AddCubicBezier(new Vector2(269.144989F, -18.816F), new Vector2(269.910004F, -19.6930008F), new Vector2(270.899994F, -20.3279991F));
+ builder.AddCubicBezier(new Vector2(271.889008F, -20.9619999F), new Vector2(273.056F, -21.2800007F), new Vector2(274.399994F, -21.2800007F));
+ builder.AddCubicBezier(new Vector2(275.631989F, -21.2800007F), new Vector2(276.686005F, -21F), new Vector2(277.563995F, -20.4400005F));
+ builder.AddCubicBezier(new Vector2(278.44101F, -19.8799992F), new Vector2(279.104004F, -19.0860004F), new Vector2(279.552002F, -18.0599995F));
+ builder.AddCubicBezier(new Vector2(280F, -17.0330009F), new Vector2(280.242004F, -15.7539997F), new Vector2(280.279999F, -14.224F));
+ builder.AddLine(new Vector2(283.976013F, -16.7439995F));
+ builder.AddLine(new Vector2(264.264008F, -16.632F));
+ builder.AddLine(new Vector2(264.264008F, -10.6960001F));
+ builder.AddLine(new Vector2(287.671997F, -10.8079996F));
+ builder.AddCubicBezier(new Vector2(287.858002F, -11.4799995F), new Vector2(287.980011F, -12.0860004F), new Vector2(288.036011F, -12.6280003F));
+ builder.AddCubicBezier(new Vector2(288.09201F, -13.1689997F), new Vector2(288.119995F, -13.7010002F), new Vector2(288.119995F, -14.224F));
+ builder.AddCubicBezier(new Vector2(288.119995F, -16.8740005F), new Vector2(287.522003F, -19.2259998F), new Vector2(286.328003F, -21.2800007F));
+ builder.AddCubicBezier(new Vector2(285.132996F, -23.3330002F), new Vector2(283.509003F, -24.9379997F), new Vector2(281.455994F, -26.0960007F));
+ builder.AddCubicBezier(new Vector2(279.402008F, -27.2530003F), new Vector2(277.013F, -27.8320007F), new Vector2(274.287994F, -27.8320007F));
+ builder.AddCubicBezier(new Vector2(271.524994F, -27.8320007F), new Vector2(269.041992F, -27.2159996F), new Vector2(266.839996F, -25.9839993F));
+ builder.AddCubicBezier(new Vector2(264.636993F, -24.7520008F), new Vector2(262.901001F, -23.0620003F), new Vector2(261.631989F, -20.9160004F));
+ builder.AddCubicBezier(new Vector2(260.362F, -18.7689991F), new Vector2(259.727997F, -16.3519993F), new Vector2(259.727997F, -13.6639996F));
+ builder.AddCubicBezier(new Vector2(259.727997F, -10.901F), new Vector2(260.381012F, -8.43700027F), new Vector2(261.687988F, -6.27199984F));
+ builder.AddCubicBezier(new Vector2(262.993988F, -4.10599995F), new Vector2(264.786011F, -2.41700006F), new Vector2(267.063995F, -1.204F));
+ builder.AddCubicBezier(new Vector2(269.341003F, 0.00899999961F), new Vector2(271.95401F, 0.615999997F), new Vector2(274.903992F, 0.615999997F));
+ builder.AddCubicBezier(new Vector2(277.217987F, 0.615999997F), new Vector2(279.328003F, 0.232999995F), new Vector2(281.231995F, -0.532000005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0265()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(238.056F, 0F));
+ builder.AddLine(new Vector2(238.056F, -27.2159996F));
+ builder.AddLine(new Vector2(229.432007F, -27.2159996F));
+ builder.AddLine(new Vector2(229.432007F, 0F));
+ builder.AddLine(new Vector2(238.056F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(256.088013F, 0F));
+ builder.AddLine(new Vector2(256.088013F, -17.4160004F));
+ builder.AddCubicBezier(new Vector2(256.088013F, -19.2819996F), new Vector2(255.639999F, -21.0090008F), new Vector2(254.744003F, -22.5960007F));
+ builder.AddCubicBezier(new Vector2(253.848007F, -24.1819992F), new Vector2(252.615997F, -25.4419994F), new Vector2(251.048004F, -26.3759995F));
+ builder.AddCubicBezier(new Vector2(249.479996F, -27.309F), new Vector2(247.705994F, -27.7759991F), new Vector2(245.727997F, -27.7759991F));
+ builder.AddCubicBezier(new Vector2(243.636993F, -27.7759991F), new Vector2(241.761002F, -27.3369999F), new Vector2(240.100006F, -26.4599991F));
+ builder.AddCubicBezier(new Vector2(238.438004F, -25.5820007F), new Vector2(237.132004F, -24.3409996F), new Vector2(236.179993F, -22.7360001F));
+ builder.AddCubicBezier(new Vector2(235.227997F, -21.1299992F), new Vector2(234.751999F, -19.2639999F), new Vector2(234.751999F, -17.1359997F));
+ builder.AddLine(new Vector2(238.056F, -15.5120001F));
+ builder.AddCubicBezier(new Vector2(238.056F, -16.4449997F), new Vector2(238.261002F, -17.2660007F), new Vector2(238.671997F, -17.9759998F));
+ builder.AddCubicBezier(new Vector2(239.082001F, -18.6849995F), new Vector2(239.641998F, -19.2360001F), new Vector2(240.352005F, -19.6280003F));
+ builder.AddCubicBezier(new Vector2(241.061005F, -20.0200005F), new Vector2(241.863998F, -20.2159996F), new Vector2(242.759995F, -20.2159996F));
+ builder.AddCubicBezier(new Vector2(244.104004F, -20.2159996F), new Vector2(245.223999F, -19.7770004F), new Vector2(246.119995F, -18.8999996F));
+ builder.AddCubicBezier(new Vector2(247.016006F, -18.0219994F), new Vector2(247.464005F, -16.8929996F), new Vector2(247.464005F, -15.5120001F));
+ builder.AddLine(new Vector2(247.464005F, 0F));
+ builder.AddLine(new Vector2(256.088013F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0266()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(210.251999F, -1.62399995F));
+ builder.AddCubicBezier(new Vector2(212.024994F, -3.07999992F), new Vector2(212.912003F, -5.05800009F), new Vector2(212.912003F, -7.55999994F));
+ builder.AddCubicBezier(new Vector2(212.912003F, -9.20199966F), new Vector2(212.565994F, -10.5279999F), new Vector2(211.876007F, -11.5360003F));
+ builder.AddCubicBezier(new Vector2(211.184998F, -12.5439997F), new Vector2(210.298004F, -13.3459997F), new Vector2(209.216003F, -13.9440002F));
+ builder.AddCubicBezier(new Vector2(208.132996F, -14.5410004F), new Vector2(206.994003F, -15.0170002F), new Vector2(205.800003F, -15.3719997F));
+ builder.AddCubicBezier(new Vector2(204.604996F, -15.7259998F), new Vector2(203.457001F, -16.0720005F), new Vector2(202.356003F, -16.4080009F));
+ builder.AddCubicBezier(new Vector2(201.253998F, -16.7439995F), new Vector2(200.367996F, -17.1539993F), new Vector2(199.695999F, -17.6399994F));
+ builder.AddCubicBezier(new Vector2(199.024002F, -18.125F), new Vector2(198.688004F, -18.816F), new Vector2(198.688004F, -19.7119999F));
+ builder.AddCubicBezier(new Vector2(198.688004F, -20.5699997F), new Vector2(199.070007F, -21.2609997F), new Vector2(199.835999F, -21.7840004F));
+ builder.AddCubicBezier(new Vector2(200.600998F, -22.3059998F), new Vector2(201.712006F, -22.5680008F), new Vector2(203.167999F, -22.5680008F));
+ builder.AddCubicBezier(new Vector2(204.548996F, -22.5680008F), new Vector2(205.781006F, -22.3059998F), new Vector2(206.863998F, -21.7840004F));
+ builder.AddCubicBezier(new Vector2(207.945999F, -21.2609997F), new Vector2(208.880005F, -20.5139999F), new Vector2(209.664001F, -19.5440006F));
+ builder.AddLine(new Vector2(212.912003F, -22.7919998F));
+ builder.AddCubicBezier(new Vector2(211.865997F, -24.2479992F), new Vector2(210.531998F, -25.3400002F), new Vector2(208.908005F, -26.0680008F));
+ builder.AddCubicBezier(new Vector2(207.283997F, -26.7959995F), new Vector2(205.425995F, -27.1599998F), new Vector2(203.335999F, -27.1599998F));
+ builder.AddCubicBezier(new Vector2(201.356995F, -27.1599998F), new Vector2(199.658005F, -26.8419991F), new Vector2(198.240005F, -26.2080002F));
+ builder.AddCubicBezier(new Vector2(196.820999F, -25.573F), new Vector2(195.729004F, -24.6679993F), new Vector2(194.964005F, -23.4920006F));
+ builder.AddCubicBezier(new Vector2(194.197998F, -22.316F), new Vector2(193.815994F, -20.9249992F), new Vector2(193.815994F, -19.3199997F));
+ builder.AddCubicBezier(new Vector2(193.815994F, -17.7140007F), new Vector2(194.160995F, -16.4169998F), new Vector2(194.852005F, -15.4280005F));
+ builder.AddCubicBezier(new Vector2(195.542007F, -14.4379997F), new Vector2(196.429001F, -13.6639996F), new Vector2(197.511993F, -13.1040001F));
+ builder.AddCubicBezier(new Vector2(198.593994F, -12.5439997F), new Vector2(199.742004F, -12.0959997F), new Vector2(200.955994F, -11.7600002F));
+ builder.AddCubicBezier(new Vector2(202.169006F, -11.4239998F), new Vector2(203.317001F, -11.0780001F), new Vector2(204.399994F, -10.724F));
+ builder.AddCubicBezier(new Vector2(205.481995F, -10.3690004F), new Vector2(206.369003F, -9.92099953F), new Vector2(207.059998F, -9.38000011F));
+ builder.AddCubicBezier(new Vector2(207.75F, -8.8380003F), new Vector2(208.095993F, -8.08199978F), new Vector2(208.095993F, -7.11199999F));
+ builder.AddCubicBezier(new Vector2(208.095993F, -6.14099979F), new Vector2(207.666F, -5.38500023F), new Vector2(206.807999F, -4.84399986F));
+ builder.AddCubicBezier(new Vector2(205.949005F, -4.30200005F), new Vector2(204.735992F, -4.03200006F), new Vector2(203.167999F, -4.03200006F));
+ builder.AddCubicBezier(new Vector2(201.600006F, -4.03200006F), new Vector2(200.181F, -4.3210001F), new Vector2(198.912003F, -4.9000001F));
+ builder.AddCubicBezier(new Vector2(197.641998F, -5.47800016F), new Vector2(196.522003F, -6.36499977F), new Vector2(195.552002F, -7.55999994F));
+ builder.AddLine(new Vector2(192.304001F, -4.3119998F));
+ builder.AddCubicBezier(new Vector2(193.125F, -3.3039999F), new Vector2(194.085999F, -2.43600011F), new Vector2(195.188004F, -1.70799994F));
+ builder.AddCubicBezier(new Vector2(196.289001F, -0.980000019F), new Vector2(197.511993F, -0.419999987F), new Vector2(198.856003F, -0.0280000009F));
+ builder.AddCubicBezier(new Vector2(200.199997F, 0.363999993F), new Vector2(201.617996F, 0.560000002F), new Vector2(203.112F, 0.560000002F));
+ builder.AddCubicBezier(new Vector2(206.098007F, 0.560000002F), new Vector2(208.477997F, -0.167999998F), new Vector2(210.251999F, -1.62399995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0267()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(186.983994F, -32.8440018F));
+ builder.AddCubicBezier(new Vector2(187.580994F, -33.4599991F), new Vector2(187.880005F, -34.2340012F), new Vector2(187.880005F, -35.1679993F));
+ builder.AddCubicBezier(new Vector2(187.880005F, -36.0639992F), new Vector2(187.580994F, -36.8199997F), new Vector2(186.983994F, -37.4360008F));
+ builder.AddCubicBezier(new Vector2(186.386002F, -38.0519981F), new Vector2(185.621002F, -38.3600006F), new Vector2(184.688004F, -38.3600006F));
+ builder.AddCubicBezier(new Vector2(183.753998F, -38.3600006F), new Vector2(182.988998F, -38.0519981F), new Vector2(182.391998F, -37.4360008F));
+ builder.AddCubicBezier(new Vector2(181.794006F, -36.8199997F), new Vector2(181.496002F, -36.0639992F), new Vector2(181.496002F, -35.1679993F));
+ builder.AddCubicBezier(new Vector2(181.496002F, -34.2340012F), new Vector2(181.794006F, -33.4599991F), new Vector2(182.391998F, -32.8440018F));
+ builder.AddCubicBezier(new Vector2(182.988998F, -32.2280006F), new Vector2(183.753998F, -31.9200001F), new Vector2(184.688004F, -31.9200001F));
+ builder.AddCubicBezier(new Vector2(185.621002F, -31.9200001F), new Vector2(186.386002F, -32.2280006F), new Vector2(186.983994F, -32.8440018F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(187.207993F, 0F));
+ builder.AddLine(new Vector2(187.207993F, -26.6000004F));
+ builder.AddLine(new Vector2(182.112F, -26.6000004F));
+ builder.AddLine(new Vector2(182.112F, 0F));
+ builder.AddLine(new Vector2(187.207993F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0268()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(162.203995F, -1.62399995F));
+ builder.AddCubicBezier(new Vector2(163.977005F, -3.07999992F), new Vector2(164.863998F, -5.05800009F), new Vector2(164.863998F, -7.55999994F));
+ builder.AddCubicBezier(new Vector2(164.863998F, -9.20199966F), new Vector2(164.518005F, -10.5279999F), new Vector2(163.828003F, -11.5360003F));
+ builder.AddCubicBezier(new Vector2(163.136993F, -12.5439997F), new Vector2(162.25F, -13.3459997F), new Vector2(161.167999F, -13.9440002F));
+ builder.AddCubicBezier(new Vector2(160.085007F, -14.5410004F), new Vector2(158.945999F, -15.0170002F), new Vector2(157.751999F, -15.3719997F));
+ builder.AddCubicBezier(new Vector2(156.557007F, -15.7259998F), new Vector2(155.408997F, -16.0720005F), new Vector2(154.307999F, -16.4080009F));
+ builder.AddCubicBezier(new Vector2(153.205994F, -16.7439995F), new Vector2(152.320007F, -17.1539993F), new Vector2(151.647995F, -17.6399994F));
+ builder.AddCubicBezier(new Vector2(150.975998F, -18.125F), new Vector2(150.639999F, -18.816F), new Vector2(150.639999F, -19.7119999F));
+ builder.AddCubicBezier(new Vector2(150.639999F, -20.5699997F), new Vector2(151.022003F, -21.2609997F), new Vector2(151.787994F, -21.7840004F));
+ builder.AddCubicBezier(new Vector2(152.552994F, -22.3059998F), new Vector2(153.664001F, -22.5680008F), new Vector2(155.119995F, -22.5680008F));
+ builder.AddCubicBezier(new Vector2(156.501007F, -22.5680008F), new Vector2(157.733002F, -22.3059998F), new Vector2(158.815994F, -21.7840004F));
+ builder.AddCubicBezier(new Vector2(159.897995F, -21.2609997F), new Vector2(160.832001F, -20.5139999F), new Vector2(161.615997F, -19.5440006F));
+ builder.AddLine(new Vector2(164.863998F, -22.7919998F));
+ builder.AddCubicBezier(new Vector2(163.817993F, -24.2479992F), new Vector2(162.483994F, -25.3400002F), new Vector2(160.860001F, -26.0680008F));
+ builder.AddCubicBezier(new Vector2(159.235992F, -26.7959995F), new Vector2(157.378006F, -27.1599998F), new Vector2(155.287994F, -27.1599998F));
+ builder.AddCubicBezier(new Vector2(153.309006F, -27.1599998F), new Vector2(151.610001F, -26.8419991F), new Vector2(150.192001F, -26.2080002F));
+ builder.AddCubicBezier(new Vector2(148.772995F, -25.573F), new Vector2(147.681F, -24.6679993F), new Vector2(146.916F, -23.4920006F));
+ builder.AddCubicBezier(new Vector2(146.149994F, -22.316F), new Vector2(145.768005F, -20.9249992F), new Vector2(145.768005F, -19.3199997F));
+ builder.AddCubicBezier(new Vector2(145.768005F, -17.7140007F), new Vector2(146.113007F, -16.4169998F), new Vector2(146.804001F, -15.4280005F));
+ builder.AddCubicBezier(new Vector2(147.494003F, -14.4379997F), new Vector2(148.380997F, -13.6639996F), new Vector2(149.464005F, -13.1040001F));
+ builder.AddCubicBezier(new Vector2(150.546005F, -12.5439997F), new Vector2(151.694F, -12.0959997F), new Vector2(152.908005F, -11.7600002F));
+ builder.AddCubicBezier(new Vector2(154.121002F, -11.4239998F), new Vector2(155.268997F, -11.0780001F), new Vector2(156.352005F, -10.724F));
+ builder.AddCubicBezier(new Vector2(157.434006F, -10.3690004F), new Vector2(158.320999F, -9.92099953F), new Vector2(159.011993F, -9.38000011F));
+ builder.AddCubicBezier(new Vector2(159.701996F, -8.8380003F), new Vector2(160.048004F, -8.08199978F), new Vector2(160.048004F, -7.11199999F));
+ builder.AddCubicBezier(new Vector2(160.048004F, -6.14099979F), new Vector2(159.617996F, -5.38500023F), new Vector2(158.759995F, -4.84399986F));
+ builder.AddCubicBezier(new Vector2(157.901001F, -4.30200005F), new Vector2(156.688004F, -4.03200006F), new Vector2(155.119995F, -4.03200006F));
+ builder.AddCubicBezier(new Vector2(153.552002F, -4.03200006F), new Vector2(152.132996F, -4.3210001F), new Vector2(150.863998F, -4.9000001F));
+ builder.AddCubicBezier(new Vector2(149.593994F, -5.47800016F), new Vector2(148.473999F, -6.36499977F), new Vector2(147.503998F, -7.55999994F));
+ builder.AddLine(new Vector2(144.255997F, -4.3119998F));
+ builder.AddCubicBezier(new Vector2(145.076996F, -3.3039999F), new Vector2(146.037994F, -2.43600011F), new Vector2(147.139999F, -1.70799994F));
+ builder.AddCubicBezier(new Vector2(148.240997F, -0.980000019F), new Vector2(149.464005F, -0.419999987F), new Vector2(150.807999F, -0.0280000009F));
+ builder.AddCubicBezier(new Vector2(152.151993F, 0.363999993F), new Vector2(153.570007F, 0.560000002F), new Vector2(155.063995F, 0.560000002F));
+ builder.AddCubicBezier(new Vector2(158.050003F, 0.560000002F), new Vector2(160.429993F, -0.167999998F), new Vector2(162.203995F, -1.62399995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0269()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(138.936005F, -32.8440018F));
+ builder.AddCubicBezier(new Vector2(139.533005F, -33.4599991F), new Vector2(139.832001F, -34.2340012F), new Vector2(139.832001F, -35.1679993F));
+ builder.AddCubicBezier(new Vector2(139.832001F, -36.0639992F), new Vector2(139.533005F, -36.8199997F), new Vector2(138.936005F, -37.4360008F));
+ builder.AddCubicBezier(new Vector2(138.337997F, -38.0519981F), new Vector2(137.572998F, -38.3600006F), new Vector2(136.639999F, -38.3600006F));
+ builder.AddCubicBezier(new Vector2(135.705994F, -38.3600006F), new Vector2(134.940994F, -38.0519981F), new Vector2(134.343994F, -37.4360008F));
+ builder.AddCubicBezier(new Vector2(133.746002F, -36.8199997F), new Vector2(133.447998F, -36.0639992F), new Vector2(133.447998F, -35.1679993F));
+ builder.AddCubicBezier(new Vector2(133.447998F, -34.2340012F), new Vector2(133.746002F, -33.4599991F), new Vector2(134.343994F, -32.8440018F));
+ builder.AddCubicBezier(new Vector2(134.940994F, -32.2280006F), new Vector2(135.705994F, -31.9200001F), new Vector2(136.639999F, -31.9200001F));
+ builder.AddCubicBezier(new Vector2(137.572998F, -31.9200001F), new Vector2(138.337997F, -32.2280006F), new Vector2(138.936005F, -32.8440018F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(139.160004F, 0F));
+ builder.AddLine(new Vector2(139.160004F, -26.6000004F));
+ builder.AddLine(new Vector2(134.063995F, -26.6000004F));
+ builder.AddLine(new Vector2(134.063995F, 0F));
+ builder.AddLine(new Vector2(139.160004F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0270()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(108.416F, 0F));
+ builder.AddLine(new Vector2(108.416F, -39.9840012F));
+ builder.AddLine(new Vector2(103.375999F, -39.9840012F));
+ builder.AddLine(new Vector2(103.375999F, 0F));
+ builder.AddLine(new Vector2(108.416F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(127.232002F, 0F));
+ builder.AddLine(new Vector2(127.232002F, -16.5200005F));
+ builder.AddCubicBezier(new Vector2(127.232002F, -18.6100006F), new Vector2(126.783997F, -20.4580002F), new Vector2(125.888F, -22.0639992F));
+ builder.AddCubicBezier(new Vector2(124.991997F, -23.6690006F), new Vector2(123.768997F, -24.9200001F), new Vector2(122.220001F, -25.816F));
+ builder.AddCubicBezier(new Vector2(120.669998F, -26.7119999F), new Vector2(118.888F, -27.1599998F), new Vector2(116.872002F, -27.1599998F));
+ builder.AddCubicBezier(new Vector2(114.856003F, -27.1599998F), new Vector2(113.044998F, -26.7019997F), new Vector2(111.440002F, -25.7880001F));
+ builder.AddCubicBezier(new Vector2(109.834F, -24.8729992F), new Vector2(108.584F, -23.632F), new Vector2(107.688004F, -22.0639992F));
+ builder.AddCubicBezier(new Vector2(106.792F, -20.4960003F), new Vector2(106.344002F, -18.7040005F), new Vector2(106.344002F, -16.6879997F));
+ builder.AddLine(new Vector2(108.416F, -15.5120001F));
+ builder.AddCubicBezier(new Vector2(108.416F, -16.8560009F), new Vector2(108.713997F, -18.0499992F), new Vector2(109.311996F, -19.0960007F));
+ builder.AddCubicBezier(new Vector2(109.908997F, -20.1410007F), new Vector2(110.730003F, -20.9619999F), new Vector2(111.776001F, -21.5599995F));
+ builder.AddCubicBezier(new Vector2(112.820999F, -22.1569996F), new Vector2(114.015999F, -22.4559994F), new Vector2(115.360001F, -22.4559994F));
+ builder.AddCubicBezier(new Vector2(117.375999F, -22.4559994F), new Vector2(119.009003F, -21.802F), new Vector2(120.260002F, -20.4960003F));
+ builder.AddCubicBezier(new Vector2(121.510002F, -19.1889992F), new Vector2(122.136002F, -17.5279999F), new Vector2(122.136002F, -15.5120001F));
+ builder.AddLine(new Vector2(122.136002F, 0F));
+ builder.AddLine(new Vector2(127.232002F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0271()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(98.447998F, -22.0079994F));
+ builder.AddLine(new Vector2(98.447998F, -26.6000004F));
+ builder.AddLine(new Vector2(80.3040009F, -26.6000004F));
+ builder.AddLine(new Vector2(80.3040009F, -22.0079994F));
+ builder.AddLine(new Vector2(98.447998F, -22.0079994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(91.8960037F, 0F));
+ builder.AddLine(new Vector2(91.8960037F, -37.7439995F));
+ builder.AddLine(new Vector2(86.8560028F, -37.7439995F));
+ builder.AddLine(new Vector2(86.8560028F, 0F));
+ builder.AddLine(new Vector2(91.8960037F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0272()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(58.9119987F, 7.72800016F));
+ builder.AddLine(new Vector2(62.6640015F, 0.783999979F));
+ builder.AddCubicBezier(new Vector2(63.1489983F, -0.149000004F), new Vector2(63.4760017F, -0.904999971F), new Vector2(63.644001F, -1.48399997F));
+ builder.AddCubicBezier(new Vector2(63.8120003F, -2.06200004F), new Vector2(63.8959999F, -2.55699992F), new Vector2(63.8959999F, -2.96799994F));
+ builder.AddCubicBezier(new Vector2(63.8959999F, -4.05000019F), new Vector2(63.5219994F, -4.95599985F), new Vector2(62.776001F, -5.68400002F));
+ builder.AddCubicBezier(new Vector2(62.0289993F, -6.41200018F), new Vector2(61.1699982F, -6.77600002F), new Vector2(60.2000008F, -6.77600002F));
+ builder.AddCubicBezier(new Vector2(59.1170006F, -6.77600002F), new Vector2(58.2210007F, -6.41200018F), new Vector2(57.512001F, -5.68400002F));
+ builder.AddCubicBezier(new Vector2(56.8019981F, -4.95599985F), new Vector2(56.4480019F, -4.05000019F), new Vector2(56.4480019F, -2.96799994F));
+ builder.AddCubicBezier(new Vector2(56.4480019F, -1.99699998F), new Vector2(56.7739983F, -1.18499994F), new Vector2(57.4280014F, -0.532000005F));
+ builder.AddCubicBezier(new Vector2(58.0810013F, 0.120999999F), new Vector2(58.7999992F, 0.448000014F), new Vector2(59.5839996F, 0.448000014F));
+ builder.AddCubicBezier(new Vector2(59.9570007F, 0.448000014F), new Vector2(60.2929993F, 0.317000002F), new Vector2(60.5919991F, 0.0560000017F));
+ builder.AddCubicBezier(new Vector2(60.8899994F, -0.204999998F), new Vector2(61.1329994F, -0.541000009F), new Vector2(61.3199997F, -0.952000022F));
+ builder.AddLine(new Vector2(59.5279999F, -0.504000008F));
+ builder.AddLine(new Vector2(56.0559998F, 6.15999985F));
+ builder.AddLine(new Vector2(58.9119987F, 7.72800016F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0273()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(48.1040001F, -32.8440018F));
+ builder.AddCubicBezier(new Vector2(48.7010002F, -33.4599991F), new Vector2(49F, -34.2340012F), new Vector2(49F, -35.1679993F));
+ builder.AddCubicBezier(new Vector2(49F, -36.0639992F), new Vector2(48.7010002F, -36.8199997F), new Vector2(48.1040001F, -37.4360008F));
+ builder.AddCubicBezier(new Vector2(47.5060005F, -38.0519981F), new Vector2(46.7410011F, -38.3600006F), new Vector2(45.8079987F, -38.3600006F));
+ builder.AddCubicBezier(new Vector2(44.8740005F, -38.3600006F), new Vector2(44.1090012F, -38.0519981F), new Vector2(43.512001F, -37.4360008F));
+ builder.AddCubicBezier(new Vector2(42.9140015F, -36.8199997F), new Vector2(42.6160011F, -36.0639992F), new Vector2(42.6160011F, -35.1679993F));
+ builder.AddCubicBezier(new Vector2(42.6160011F, -34.2340012F), new Vector2(42.9140015F, -33.4599991F), new Vector2(43.512001F, -32.8440018F));
+ builder.AddCubicBezier(new Vector2(44.1090012F, -32.2280006F), new Vector2(44.8740005F, -31.9200001F), new Vector2(45.8079987F, -31.9200001F));
+ builder.AddCubicBezier(new Vector2(46.7410011F, -31.9200001F), new Vector2(47.5060005F, -32.2280006F), new Vector2(48.1040001F, -32.8440018F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(48.3279991F, 0F));
+ builder.AddLine(new Vector2(48.3279991F, -26.6000004F));
+ builder.AddLine(new Vector2(43.2319984F, -26.6000004F));
+ builder.AddLine(new Vector2(43.2319984F, 0F));
+ builder.AddLine(new Vector2(48.3279991F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<128, 166>
+ CanvasGeometry Geometry_0274()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(30.9120007F, -17.6959991F));
+ builder.AddLine(new Vector2(30.9120007F, -22.5119991F));
+ builder.AddLine(new Vector2(8.17599964F, -22.5119991F));
+ builder.AddLine(new Vector2(8.17599964F, -17.6959991F));
+ builder.AddLine(new Vector2(30.9120007F, -17.6959991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(34.9440002F, 0F));
+ builder.AddLine(new Vector2(34.9440002F, -38.8639984F));
+ builder.AddLine(new Vector2(29.6800003F, -38.8639984F));
+ builder.AddLine(new Vector2(29.6800003F, 0F));
+ builder.AddLine(new Vector2(34.9440002F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(9.85599995F, 0F));
+ builder.AddLine(new Vector2(9.85599995F, -38.8639984F));
+ builder.AddLine(new Vector2(4.59200001F, -38.8639984F));
+ builder.AddLine(new Vector2(4.59200001F, 0F));
+ builder.AddLine(new Vector2(9.85599995F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0275()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(173.462006F, -305.437988F));
+ builder.AddCubicBezier(new Vector2(173.906006F, -305.906006F), new Vector2(174.128006F, -306.463989F), new Vector2(174.128006F, -307.112F));
+ builder.AddCubicBezier(new Vector2(174.128006F, -307.783997F), new Vector2(173.906006F, -308.34201F), new Vector2(173.462006F, -308.786011F));
+ builder.AddCubicBezier(new Vector2(173.018005F, -309.230011F), new Vector2(172.460007F, -309.451996F), new Vector2(171.787994F, -309.451996F));
+ builder.AddCubicBezier(new Vector2(171.091995F, -309.451996F), new Vector2(170.528F, -309.230011F), new Vector2(170.095993F, -308.786011F));
+ builder.AddCubicBezier(new Vector2(169.664001F, -308.34201F), new Vector2(169.447998F, -307.783997F), new Vector2(169.447998F, -307.112F));
+ builder.AddCubicBezier(new Vector2(169.447998F, -306.463989F), new Vector2(169.664001F, -305.906006F), new Vector2(170.095993F, -305.437988F));
+ builder.AddCubicBezier(new Vector2(170.528F, -304.970001F), new Vector2(171.091995F, -304.735992F), new Vector2(171.787994F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(172.460007F, -304.735992F), new Vector2(173.018005F, -304.970001F), new Vector2(173.462006F, -305.437988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0276()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(164.227997F, -305.096008F));
+ builder.AddLine(new Vector2(164.227997F, -322.196014F));
+ builder.AddLine(new Vector2(160.951996F, -322.196014F));
+ builder.AddLine(new Vector2(160.951996F, -318.019989F));
+ builder.AddLine(new Vector2(161.563995F, -313.880005F));
+ builder.AddLine(new Vector2(160.951996F, -309.70401F));
+ builder.AddLine(new Vector2(160.951996F, -305.096008F));
+ builder.AddLine(new Vector2(164.227997F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(152.923996F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(152.084F, -309.056F), new Vector2(151.429993F, -309.746002F), new Vector2(150.962006F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(150.494003F, -311.497986F), new Vector2(150.259995F, -312.511993F), new Vector2(150.259995F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(150.259995F, -314.791992F), new Vector2(150.494003F, -315.794006F), new Vector2(150.962006F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(151.429993F, -317.54599F), new Vector2(152.078003F, -318.235992F), new Vector2(152.906006F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(153.733994F, -319.243988F), new Vector2(154.688004F, -319.496002F), new Vector2(155.768005F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(156.848007F, -319.496002F), new Vector2(157.789993F, -319.25F), new Vector2(158.593994F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(159.397995F, -318.265991F), new Vector2(160.028F, -317.575989F), new Vector2(160.483994F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(160.940002F, -315.799988F), new Vector2(161.167999F, -314.779999F), new Vector2(161.167999F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(161.167999F, -311.924011F), new Vector2(160.675995F, -310.526001F), new Vector2(159.692001F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(158.707993F, -308.34201F), new Vector2(157.412003F, -307.79599F), new Vector2(155.804001F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(154.723999F, -307.79599F), new Vector2(153.764008F, -308.048004F), new Vector2(152.923996F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(158.755997F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(159.787994F, -306.085999F), new Vector2(160.610001F, -306.835999F), new Vector2(161.222F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(161.834F, -308.756012F), new Vector2(162.175995F, -309.847992F), new Vector2(162.248001F, -311.071991F));
+ builder.AddLine(new Vector2(162.248001F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(162.175995F, -317.467987F), new Vector2(161.828003F, -318.56601F), new Vector2(161.203995F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(160.580002F, -320.462006F), new Vector2(159.757996F, -321.205994F), new Vector2(158.738007F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(157.718002F, -322.286011F), new Vector2(156.559998F, -322.556F), new Vector2(155.264008F, -322.556F));
+ builder.AddCubicBezier(new Vector2(153.679993F, -322.556F), new Vector2(152.257996F, -322.160004F), new Vector2(150.998001F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(149.738007F, -320.575989F), new Vector2(148.742004F, -319.507996F), new Vector2(148.009995F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(147.278F, -316.820007F), new Vector2(146.912003F, -315.308014F), new Vector2(146.912003F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(146.912003F, -311.947998F), new Vector2(147.278F, -310.436005F), new Vector2(148.009995F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(148.742004F, -307.747986F), new Vector2(149.738007F, -306.686005F), new Vector2(150.998001F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(152.257996F, -305.126007F), new Vector2(153.679993F, -304.735992F), new Vector2(155.264008F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(156.559998F, -304.735992F), new Vector2(157.723999F, -305.006012F), new Vector2(158.755997F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0277()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(143.059998F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(143.444F, -326.605988F), new Vector2(143.636002F, -327.104004F), new Vector2(143.636002F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(143.636002F, -328.279999F), new Vector2(143.444F, -328.765991F), new Vector2(143.059998F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(142.675995F, -329.558014F), new Vector2(142.184006F, -329.756012F), new Vector2(141.584F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(140.983994F, -329.756012F), new Vector2(140.492004F, -329.558014F), new Vector2(140.108002F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(139.723999F, -328.765991F), new Vector2(139.531998F, -328.279999F), new Vector2(139.531998F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(139.531998F, -327.104004F), new Vector2(139.723999F, -326.605988F), new Vector2(140.108002F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(140.492004F, -325.813995F), new Vector2(140.983994F, -325.615997F), new Vector2(141.584F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(142.184006F, -325.615997F), new Vector2(142.675995F, -325.813995F), new Vector2(143.059998F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(143.203995F, -305.096008F));
+ builder.AddLine(new Vector2(143.203995F, -322.196014F));
+ builder.AddLine(new Vector2(139.927994F, -322.196014F));
+ builder.AddLine(new Vector2(139.927994F, -305.096008F));
+ builder.AddLine(new Vector2(143.203995F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0278()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(134.582001F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(135.722F, -307.075989F), new Vector2(136.292007F, -308.347992F), new Vector2(136.292007F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(136.292007F, -311.011993F), new Vector2(136.070007F, -311.864014F), new Vector2(135.626007F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(135.182007F, -313.160004F), new Vector2(134.612F, -313.675995F), new Vector2(133.916F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(133.220001F, -314.444F), new Vector2(132.488007F, -314.75F), new Vector2(131.720001F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(130.951996F, -315.205994F), new Vector2(130.214005F, -315.428009F), new Vector2(129.505997F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(128.798004F, -315.859985F), new Vector2(128.227997F, -316.123993F), new Vector2(127.795998F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(127.363998F, -316.747986F), new Vector2(127.148003F, -317.191986F), new Vector2(127.148003F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(127.148003F, -318.320007F), new Vector2(127.393997F, -318.764008F), new Vector2(127.886002F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(128.378006F, -319.436005F), new Vector2(129.091995F, -319.604004F), new Vector2(130.028F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(130.916F, -319.604004F), new Vector2(131.707993F, -319.436005F), new Vector2(132.404007F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(133.100006F, -318.764008F), new Vector2(133.699997F, -318.283997F), new Vector2(134.203995F, -317.660004F));
+ builder.AddLine(new Vector2(136.292007F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(135.619995F, -320.68399F), new Vector2(134.761993F, -321.385986F), new Vector2(133.718002F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(132.673996F, -322.321991F), new Vector2(131.479996F, -322.556F), new Vector2(130.136002F, -322.556F));
+ builder.AddCubicBezier(new Vector2(128.863998F, -322.556F), new Vector2(127.772003F, -322.35199F), new Vector2(126.860001F, -321.944F));
+ builder.AddCubicBezier(new Vector2(125.947998F, -321.536011F), new Vector2(125.246002F, -320.95401F), new Vector2(124.753998F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(124.262001F, -319.441986F), new Vector2(124.015999F, -318.548004F), new Vector2(124.015999F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(124.015999F, -316.484009F), new Vector2(124.237999F, -315.649994F), new Vector2(124.681999F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(125.125999F, -314.377991F), new Vector2(125.695999F, -313.880005F), new Vector2(126.391998F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(127.087997F, -313.160004F), new Vector2(127.825996F, -312.872009F), new Vector2(128.606003F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(129.386002F, -312.440002F), new Vector2(130.123993F, -312.217987F), new Vector2(130.820007F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(131.516006F, -311.761993F), new Vector2(132.085999F, -311.473999F), new Vector2(132.529999F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(132.973999F, -310.778015F), new Vector2(133.195999F, -310.291992F), new Vector2(133.195999F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(133.195999F, -309.044006F), new Vector2(132.919998F, -308.558014F), new Vector2(132.367996F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(131.815994F, -307.862F), new Vector2(131.035995F, -307.687988F), new Vector2(130.028F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(129.020004F, -307.687988F), new Vector2(128.108002F, -307.873993F), new Vector2(127.292F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(126.475998F, -308.618011F), new Vector2(125.755997F, -309.187988F), new Vector2(125.132004F, -309.955994F));
+ builder.AddLine(new Vector2(123.043999F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(123.571999F, -307.220001F), new Vector2(124.190002F, -306.661987F), new Vector2(124.898003F, -306.194F));
+ builder.AddCubicBezier(new Vector2(125.606003F, -305.726013F), new Vector2(126.391998F, -305.365997F), new Vector2(127.255997F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(128.119995F, -304.862F), new Vector2(129.031998F, -304.735992F), new Vector2(129.992004F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(131.912003F, -304.735992F), new Vector2(133.442001F, -305.20401F), new Vector2(134.582001F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0279()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(116.959999F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(118.136002F, -305.996002F), new Vector2(119.143997F, -306.727997F), new Vector2(119.984001F, -307.687988F));
+ builder.AddLine(new Vector2(117.896004F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(117.32F, -309.140015F), new Vector2(116.629997F, -308.635986F), new Vector2(115.825996F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(115.022003F, -307.963989F), new Vector2(114.139999F, -307.79599F), new Vector2(113.18F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(112.028F, -307.79599F), new Vector2(111.008003F, -308.041992F), new Vector2(110.120003F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(109.232002F, -309.026001F), new Vector2(108.547997F, -309.721985F), new Vector2(108.068001F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(107.587997F, -311.522003F), new Vector2(107.348F, -312.571991F), new Vector2(107.348F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(107.348F, -314.947998F), new Vector2(107.575996F, -315.967987F), new Vector2(108.031998F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(108.487999F, -317.696014F), new Vector2(109.136002F, -318.368011F), new Vector2(109.975998F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(110.816002F, -319.328003F), new Vector2(111.788002F, -319.567993F), new Vector2(112.891998F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(113.947998F, -319.567993F), new Vector2(114.848F, -319.346008F), new Vector2(115.592003F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(116.335999F, -318.458008F), new Vector2(116.912003F, -317.834015F), new Vector2(117.32F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(117.727997F, -316.226013F), new Vector2(117.931999F, -315.247986F), new Vector2(117.931999F, -314.096008F));
+ builder.AddLine(new Vector2(119.120003F, -315.140015F));
+ builder.AddLine(new Vector2(106.412003F, -315.140015F));
+ builder.AddLine(new Vector2(106.412003F, -312.440002F));
+ builder.AddLine(new Vector2(120.848F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(120.919998F, -312.776001F), new Vector2(120.968002F, -313.082001F), new Vector2(120.991997F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(121.015999F, -313.634003F), new Vector2(121.028F, -313.891998F), new Vector2(121.028F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(121.028F, -315.764008F), new Vector2(120.685997F, -317.216003F), new Vector2(120.001999F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(119.318001F, -319.76001F), new Vector2(118.363998F, -320.756012F), new Vector2(117.139999F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(115.916F, -322.196014F), new Vector2(114.524002F, -322.556F), new Vector2(112.963997F, -322.556F));
+ builder.AddCubicBezier(new Vector2(111.307999F, -322.556F), new Vector2(109.814003F, -322.165985F), new Vector2(108.482002F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(107.150002F, -320.605988F), new Vector2(106.094002F, -319.544006F), new Vector2(105.314003F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(104.533997F, -316.855988F), new Vector2(104.143997F, -315.343994F), new Vector2(104.143997F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(104.143997F, -311.959991F), new Vector2(104.540001F, -310.436005F), new Vector2(105.332001F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(106.124001F, -307.747986F), new Vector2(107.197998F, -306.686005F), new Vector2(108.554001F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(109.910004F, -305.126007F), new Vector2(111.452003F, -304.735992F), new Vector2(113.18F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(114.524002F, -304.735992F), new Vector2(115.783997F, -304.988007F), new Vector2(116.959999F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0280()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(88.7720032F, -305.096008F));
+ builder.AddLine(new Vector2(88.7720032F, -322.196014F));
+ builder.AddLine(new Vector2(85.5319977F, -322.196014F));
+ builder.AddLine(new Vector2(85.5319977F, -305.096008F));
+ builder.AddLine(new Vector2(88.7720032F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(100.867996F, -305.096008F));
+ builder.AddLine(new Vector2(100.867996F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(100.867996F, -316.891998F), new Vector2(100.580002F, -318.002014F), new Vector2(100.003998F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(99.4280014F, -320.089996F), new Vector2(98.6419983F, -320.936005F), new Vector2(97.6460037F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(96.6500015F, -322.231995F), new Vector2(95.5039978F, -322.556F), new Vector2(94.2080002F, -322.556F));
+ builder.AddCubicBezier(new Vector2(92.9120026F, -322.556F), new Vector2(91.7480011F, -322.261993F), new Vector2(90.7160034F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(89.6839981F, -321.085999F), new Vector2(88.8799973F, -320.287994F), new Vector2(88.3040009F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(87.7279968F, -318.272003F), new Vector2(87.4400024F, -317.119995F), new Vector2(87.4400024F, -315.824005F));
+ builder.AddLine(new Vector2(88.7720032F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(88.7720032F, -315.932007F), new Vector2(88.9639969F, -316.700012F), new Vector2(89.3479996F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(89.7320023F, -318.044006F), new Vector2(90.2600021F, -318.571991F), new Vector2(90.9319992F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(91.6039963F, -319.339996F), new Vector2(92.3720016F, -319.532013F), new Vector2(93.2360001F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(94.5319977F, -319.532013F), new Vector2(95.5820007F, -319.112F), new Vector2(96.3860016F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(97.1900024F, -317.432007F), new Vector2(97.5920029F, -316.364014F), new Vector2(97.5920029F, -315.067993F));
+ builder.AddLine(new Vector2(97.5920029F, -305.096008F));
+ builder.AddLine(new Vector2(100.867996F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0281()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(70.1240005F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(69.2839966F, -309.127991F), new Vector2(68.6240005F, -309.817993F), new Vector2(68.1439972F, -310.694F));
+ builder.AddCubicBezier(new Vector2(67.6640015F, -311.570007F), new Vector2(67.4240036F, -312.571991F), new Vector2(67.4240036F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(67.4240036F, -314.803986F), new Vector2(67.6640015F, -315.787994F), new Vector2(68.1439972F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(68.6240005F, -317.515991F), new Vector2(69.2839966F, -318.194F), new Vector2(70.1240005F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(70.9639969F, -319.178009F), new Vector2(71.9120026F, -319.424011F), new Vector2(72.9680023F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(74.0719986F, -319.424011F), new Vector2(75.038002F, -319.178009F), new Vector2(75.8659973F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(76.6940002F, -318.194F), new Vector2(77.3539963F, -317.515991F), new Vector2(77.8460007F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(78.3379974F, -315.787994F), new Vector2(78.5839996F, -314.803986F), new Vector2(78.5839996F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(78.5839996F, -312.571991F), new Vector2(78.3440018F, -311.570007F), new Vector2(77.8639984F, -310.694F));
+ builder.AddCubicBezier(new Vector2(77.3840027F, -309.817993F), new Vector2(76.723999F, -309.127991F), new Vector2(75.8840027F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(75.0439987F, -308.119995F), new Vector2(74.0719986F, -307.868011F), new Vector2(72.9680023F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(71.9120026F, -307.868011F), new Vector2(70.9639969F, -308.119995F), new Vector2(70.1240005F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(77.5220032F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(78.8779984F, -306.716003F), new Vector2(79.9520035F, -307.790009F), new Vector2(80.7440033F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(81.5360031F, -310.502014F), new Vector2(81.9319992F, -312.019989F), new Vector2(81.9319992F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(81.9319992F, -315.355988F), new Vector2(81.5360031F, -316.855988F), new Vector2(80.7440033F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(79.9520035F, -319.544006F), new Vector2(78.8779984F, -320.605988F), new Vector2(77.5220032F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(76.1660004F, -322.165985F), new Vector2(74.6480026F, -322.556F), new Vector2(72.9680023F, -322.556F));
+ builder.AddCubicBezier(new Vector2(71.3119965F, -322.556F), new Vector2(69.8119965F, -322.160004F), new Vector2(68.4680023F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(67.1240005F, -320.575989F), new Vector2(66.0559998F, -319.514008F), new Vector2(65.2639999F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(64.4720001F, -316.850006F), new Vector2(64.0759964F, -315.355988F), new Vector2(64.0759964F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(64.0759964F, -312.019989F), new Vector2(64.4720001F, -310.502014F), new Vector2(65.2639999F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(66.0559998F, -307.790009F), new Vector2(67.1240005F, -306.716003F), new Vector2(68.4680023F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(69.8119965F, -305.131989F), new Vector2(71.3119965F, -304.735992F), new Vector2(72.9680023F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(74.6480026F, -304.735992F), new Vector2(76.1660004F, -305.131989F), new Vector2(77.5220032F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0282()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(60.4760017F, -330.799988F));
+ builder.AddLine(new Vector2(57.2000008F, -330.799988F));
+ builder.AddLine(new Vector2(57.2000008F, -318.019989F));
+ builder.AddLine(new Vector2(57.8120003F, -313.880005F));
+ builder.AddLine(new Vector2(57.2000008F, -309.70401F));
+ builder.AddLine(new Vector2(57.2000008F, -305.096008F));
+ builder.AddLine(new Vector2(60.4760017F, -305.096008F));
+ builder.AddLine(new Vector2(60.4760017F, -330.799988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(49.1539993F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(48.3260002F, -309.026001F), new Vector2(47.6780014F, -309.716003F), new Vector2(47.2099991F, -310.604004F));
+ builder.AddCubicBezier(new Vector2(46.7420006F, -311.492004F), new Vector2(46.5079994F, -312.511993F), new Vector2(46.5079994F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(46.5079994F, -314.81601F), new Vector2(46.7420006F, -315.829987F), new Vector2(47.2099991F, -316.705994F));
+ builder.AddCubicBezier(new Vector2(47.6780014F, -317.582001F), new Vector2(48.3199997F, -318.265991F), new Vector2(49.1360016F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(49.9519997F, -319.25F), new Vector2(50.9000015F, -319.496002F), new Vector2(51.9799995F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(53.0600014F, -319.496002F), new Vector2(54.0079994F, -319.243988F), new Vector2(54.8240013F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(55.6399994F, -318.235992F), new Vector2(56.276001F, -317.54599F), new Vector2(56.7319984F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(57.1879997F, -315.794006F), new Vector2(57.4160004F, -314.779999F), new Vector2(57.4160004F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(57.4160004F, -312.5F), new Vector2(57.1879997F, -311.497986F), new Vector2(56.7319984F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(56.276001F, -309.746002F), new Vector2(55.6399994F, -309.056F), new Vector2(54.8240013F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(54.0079994F, -308.048004F), new Vector2(53.0600014F, -307.79599F), new Vector2(51.9799995F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(50.9239998F, -307.79599F), new Vector2(49.9819984F, -308.041992F), new Vector2(49.1539993F, -308.533997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(54.9679985F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(56F, -306.085999F), new Vector2(56.8279991F, -306.835999F), new Vector2(57.4519997F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(58.0760002F, -308.756012F), new Vector2(58.4239998F, -309.847992F), new Vector2(58.4959984F, -311.071991F));
+ builder.AddLine(new Vector2(58.4959984F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(58.4239998F, -317.467987F), new Vector2(58.0699997F, -318.56601F), new Vector2(57.4339981F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(56.7980003F, -320.462006F), new Vector2(55.9640007F, -321.205994F), new Vector2(54.9319992F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(53.9000015F, -322.286011F), new Vector2(52.7360001F, -322.556F), new Vector2(51.4399986F, -322.556F));
+ builder.AddCubicBezier(new Vector2(49.8800011F, -322.556F), new Vector2(48.4760017F, -322.160004F), new Vector2(47.2280006F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(45.9799995F, -320.575989F), new Vector2(44.9900017F, -319.507996F), new Vector2(44.2579994F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(43.526001F, -316.820007F), new Vector2(43.1599998F, -315.308014F), new Vector2(43.1599998F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(43.1599998F, -311.947998F), new Vector2(43.526001F, -310.436005F), new Vector2(44.2579994F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(44.9900017F, -307.747986F), new Vector2(45.9799995F, -306.686005F), new Vector2(47.2280006F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(48.4760017F, -305.126007F), new Vector2(49.8800011F, -304.735992F), new Vector2(51.4399986F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(52.7599983F, -304.735992F), new Vector2(53.9360008F, -305.006012F), new Vector2(54.9679985F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0283()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(27.7520008F, -305.096008F));
+ builder.AddLine(new Vector2(27.7520008F, -322.196014F));
+ builder.AddLine(new Vector2(24.5119991F, -322.196014F));
+ builder.AddLine(new Vector2(24.5119991F, -305.096008F));
+ builder.AddLine(new Vector2(27.7520008F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(39.8479996F, -305.096008F));
+ builder.AddLine(new Vector2(39.8479996F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(39.8479996F, -316.891998F), new Vector2(39.5600014F, -318.002014F), new Vector2(38.9840012F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(38.4080009F, -320.089996F), new Vector2(37.6220016F, -320.936005F), new Vector2(36.6259995F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(35.6300011F, -322.231995F), new Vector2(34.4840012F, -322.556F), new Vector2(33.1879997F, -322.556F));
+ builder.AddCubicBezier(new Vector2(31.8920002F, -322.556F), new Vector2(30.7280006F, -322.261993F), new Vector2(29.6959991F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(28.6639996F, -321.085999F), new Vector2(27.8600006F, -320.287994F), new Vector2(27.2840004F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(26.7080002F, -318.272003F), new Vector2(26.4200001F, -317.119995F), new Vector2(26.4200001F, -315.824005F));
+ builder.AddLine(new Vector2(27.7520008F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(27.7520008F, -315.932007F), new Vector2(27.9440002F, -316.700012F), new Vector2(28.3279991F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(28.7119999F, -318.044006F), new Vector2(29.2399998F, -318.571991F), new Vector2(29.9120007F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(30.5839996F, -319.339996F), new Vector2(31.3519993F, -319.532013F), new Vector2(32.2159996F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(33.512001F, -319.532013F), new Vector2(34.5620003F, -319.112F), new Vector2(35.3660011F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(36.1699982F, -317.432007F), new Vector2(36.5719986F, -316.364014F), new Vector2(36.5719986F, -315.067993F));
+ builder.AddLine(new Vector2(36.5719986F, -305.096008F));
+ builder.AddLine(new Vector2(39.8479996F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0284()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(19.184F, -305.096008F));
+ builder.AddLine(new Vector2(19.184F, -330.079987F));
+ builder.AddLine(new Vector2(15.8000002F, -330.079987F));
+ builder.AddLine(new Vector2(15.8000002F, -305.096008F));
+ builder.AddLine(new Vector2(19.184F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0285()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-8.7159996F, -305.096008F));
+ builder.AddLine(new Vector2(-8.7159996F, -322.196014F));
+ builder.AddLine(new Vector2(-11.9560003F, -322.196014F));
+ builder.AddLine(new Vector2(-11.9560003F, -305.096008F));
+ builder.AddLine(new Vector2(-8.7159996F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(3.38000011F, -305.096008F));
+ builder.AddLine(new Vector2(3.38000011F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(3.38000011F, -316.891998F), new Vector2(3.09200001F, -318.002014F), new Vector2(2.51600003F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(1.94000006F, -320.089996F), new Vector2(1.15400004F, -320.936005F), new Vector2(0.158000007F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-0.838F, -322.231995F), new Vector2(-1.98399997F, -322.556F), new Vector2(-3.27999997F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-4.57600021F, -322.556F), new Vector2(-5.73999977F, -322.261993F), new Vector2(-6.77199984F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-7.8039999F, -321.085999F), new Vector2(-8.6079998F, -320.287994F), new Vector2(-9.18400002F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-9.76000023F, -318.272003F), new Vector2(-10.0480003F, -317.119995F), new Vector2(-10.0480003F, -315.824005F));
+ builder.AddLine(new Vector2(-8.7159996F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-8.7159996F, -315.932007F), new Vector2(-8.52400017F, -316.700012F), new Vector2(-8.14000034F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-7.75600004F, -318.044006F), new Vector2(-7.22800016F, -318.571991F), new Vector2(-6.55600023F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-5.88399982F, -319.339996F), new Vector2(-5.11600018F, -319.532013F), new Vector2(-4.25199986F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-2.95600009F, -319.532013F), new Vector2(-1.90600002F, -319.112F), new Vector2(-1.102F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-0.298000008F, -317.432007F), new Vector2(0.104000002F, -316.364014F), new Vector2(0.104000002F, -315.067993F));
+ builder.AddLine(new Vector2(0.104000002F, -305.096008F));
+ builder.AddLine(new Vector2(3.38000011F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0286()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-16.8880005F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-16.5039997F, -326.605988F), new Vector2(-16.3120003F, -327.104004F), new Vector2(-16.3120003F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-16.3120003F, -328.279999F), new Vector2(-16.5039997F, -328.765991F), new Vector2(-16.8880005F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-17.2719994F, -329.558014F), new Vector2(-17.7639999F, -329.756012F), new Vector2(-18.3640003F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-18.9640007F, -329.756012F), new Vector2(-19.4559994F, -329.558014F), new Vector2(-19.8400002F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-20.2240009F, -328.765991F), new Vector2(-20.4160004F, -328.279999F), new Vector2(-20.4160004F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-20.4160004F, -327.104004F), new Vector2(-20.2240009F, -326.605988F), new Vector2(-19.8400002F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-19.4559994F, -325.813995F), new Vector2(-18.9640007F, -325.615997F), new Vector2(-18.3640003F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-17.7639999F, -325.615997F), new Vector2(-17.2719994F, -325.813995F), new Vector2(-16.8880005F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-16.7439995F, -305.096008F));
+ builder.AddLine(new Vector2(-16.7439995F, -322.196014F));
+ builder.AddLine(new Vector2(-20.0200005F, -322.196014F));
+ builder.AddLine(new Vector2(-20.0200005F, -305.096008F));
+ builder.AddLine(new Vector2(-16.7439995F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0287()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-43.4020004F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-44.2299995F, -309.614014F), new Vector2(-44.8779984F, -310.268005F), new Vector2(-45.3460007F, -311.108002F));
+ builder.AddCubicBezier(new Vector2(-45.8139992F, -311.947998F), new Vector2(-46.0480003F, -312.90799F), new Vector2(-46.0480003F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(-46.0480003F, -315.067993F), new Vector2(-45.8139992F, -316.022003F), new Vector2(-45.3460007F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(-44.8779984F, -317.678009F), new Vector2(-44.2360001F, -318.325989F), new Vector2(-43.4199982F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(-42.6040001F, -319.261993F), new Vector2(-41.6559982F, -319.496002F), new Vector2(-40.5760002F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-39.5200005F, -319.496002F), new Vector2(-38.5900002F, -319.261993F), new Vector2(-37.7859993F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(-36.9819984F, -318.325989F), new Vector2(-36.3580017F, -317.678009F), new Vector2(-35.9140015F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(-35.4700012F, -316.022003F), new Vector2(-35.2480011F, -315.056F), new Vector2(-35.2480011F, -313.951996F));
+ builder.AddCubicBezier(new Vector2(-35.2480011F, -312.847992F), new Vector2(-35.4700012F, -311.881989F), new Vector2(-35.9140015F, -311.053986F));
+ builder.AddCubicBezier(new Vector2(-36.3580017F, -310.226013F), new Vector2(-36.9760017F, -309.584015F), new Vector2(-37.7680016F, -309.127991F));
+ builder.AddCubicBezier(new Vector2(-38.5600014F, -308.671997F), new Vector2(-39.4959984F, -308.444F), new Vector2(-40.5760002F, -308.444F));
+ builder.AddCubicBezier(new Vector2(-41.632F, -308.444F), new Vector2(-42.5740013F, -308.678009F), new Vector2(-43.4020004F, -309.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-37.6599998F, -306.175995F));
+ builder.AddCubicBezier(new Vector2(-36.6279984F, -306.70401F), new Vector2(-35.8059998F, -307.441986F), new Vector2(-35.1940002F, -308.390015F));
+ builder.AddCubicBezier(new Vector2(-34.5820007F, -309.338013F), new Vector2(-34.2400017F, -310.436005F), new Vector2(-34.1679993F, -311.68399F));
+ builder.AddLine(new Vector2(-34.1679993F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-34.2400017F, -317.492004F), new Vector2(-34.5760002F, -318.60199F), new Vector2(-35.1759987F, -319.549988F));
+ builder.AddCubicBezier(new Vector2(-35.776001F, -320.497986F), new Vector2(-36.5979996F, -321.235992F), new Vector2(-37.6419983F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(-38.6860008F, -322.291992F), new Vector2(-39.8800011F, -322.556F), new Vector2(-41.223999F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-42.7599983F, -322.556F), new Vector2(-44.1520004F, -322.178009F), new Vector2(-45.4000015F, -321.421997F));
+ builder.AddCubicBezier(new Vector2(-46.6479988F, -320.665985F), new Vector2(-47.6259995F, -319.645996F), new Vector2(-48.3339996F, -318.362F));
+ builder.AddCubicBezier(new Vector2(-49.0419998F, -317.078003F), new Vector2(-49.3959999F, -315.619995F), new Vector2(-49.3959999F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(-49.3959999F, -312.355988F), new Vector2(-49.0359993F, -310.885986F), new Vector2(-48.3160019F, -309.578003F));
+ builder.AddCubicBezier(new Vector2(-47.5960007F, -308.269989F), new Vector2(-46.618F, -307.243988F), new Vector2(-45.382F, -306.5F));
+ builder.AddCubicBezier(new Vector2(-44.1459999F, -305.756012F), new Vector2(-42.7480011F, -305.384003F), new Vector2(-41.1879997F, -305.384003F));
+ builder.AddCubicBezier(new Vector2(-39.868F, -305.384003F), new Vector2(-38.6920013F, -305.64801F), new Vector2(-37.6599998F, -306.175995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-36.4900017F, -298.597992F));
+ builder.AddCubicBezier(new Vector2(-35.1339989F, -299.282013F), new Vector2(-34.0779991F, -300.242004F), new Vector2(-33.3219986F, -301.477997F));
+ builder.AddCubicBezier(new Vector2(-32.5660019F, -302.713989F), new Vector2(-32.1879997F, -304.14801F), new Vector2(-32.1879997F, -305.779999F));
+ builder.AddLine(new Vector2(-32.1879997F, -322.196014F));
+ builder.AddLine(new Vector2(-35.4280014F, -322.196014F));
+ builder.AddLine(new Vector2(-35.4280014F, -317.696014F));
+ builder.AddLine(new Vector2(-34.8520012F, -313.880005F));
+ builder.AddLine(new Vector2(-35.4280014F, -310.028015F));
+ builder.AddLine(new Vector2(-35.4280014F, -305.779999F));
+ builder.AddCubicBezier(new Vector2(-35.4280014F, -304.220001F), new Vector2(-35.9440002F, -302.977997F), new Vector2(-36.9760017F, -302.053986F));
+ builder.AddCubicBezier(new Vector2(-38.0079994F, -301.130005F), new Vector2(-39.3880005F, -300.667999F), new Vector2(-41.1160011F, -300.667999F));
+ builder.AddCubicBezier(new Vector2(-42.4360008F, -300.667999F), new Vector2(-43.5760002F, -300.902008F), new Vector2(-44.5359993F, -301.369995F));
+ builder.AddCubicBezier(new Vector2(-45.4959984F, -301.838013F), new Vector2(-46.3240013F, -302.515991F), new Vector2(-47.0200005F, -303.403992F));
+ builder.AddLine(new Vector2(-49.144001F, -301.279999F));
+ builder.AddCubicBezier(new Vector2(-48.3040009F, -300.104004F), new Vector2(-47.2120018F, -299.191986F), new Vector2(-45.868F, -298.544006F));
+ builder.AddCubicBezier(new Vector2(-44.5239983F, -297.895996F), new Vector2(-42.9640007F, -297.571991F), new Vector2(-41.1879997F, -297.571991F));
+ builder.AddCubicBezier(new Vector2(-39.4119987F, -297.571991F), new Vector2(-37.8460007F, -297.914001F), new Vector2(-36.4900017F, -298.597992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0288()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-64.7679977F, -305.096008F));
+ builder.AddLine(new Vector2(-64.7679977F, -322.196014F));
+ builder.AddLine(new Vector2(-68.0080032F, -322.196014F));
+ builder.AddLine(new Vector2(-68.0080032F, -305.096008F));
+ builder.AddLine(new Vector2(-64.7679977F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-52.6720009F, -305.096008F));
+ builder.AddLine(new Vector2(-52.6720009F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-52.6720009F, -316.891998F), new Vector2(-52.9599991F, -318.002014F), new Vector2(-53.5359993F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-54.1119995F, -320.089996F), new Vector2(-54.8979988F, -320.936005F), new Vector2(-55.894001F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-56.8899994F, -322.231995F), new Vector2(-58.0359993F, -322.556F), new Vector2(-59.3320007F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-60.6279984F, -322.556F), new Vector2(-61.7919998F, -322.261993F), new Vector2(-62.8240013F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-63.855999F, -321.085999F), new Vector2(-64.6600037F, -320.287994F), new Vector2(-65.2360001F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-65.8119965F, -318.272003F), new Vector2(-66.0999985F, -317.119995F), new Vector2(-66.0999985F, -315.824005F));
+ builder.AddLine(new Vector2(-64.7679977F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-64.7679977F, -315.932007F), new Vector2(-64.5759964F, -316.700012F), new Vector2(-64.1920013F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-63.8079987F, -318.044006F), new Vector2(-63.2799988F, -318.571991F), new Vector2(-62.6080017F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-61.9360008F, -319.339996F), new Vector2(-61.1679993F, -319.532013F), new Vector2(-60.3040009F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-59.0079994F, -319.532013F), new Vector2(-57.9580002F, -319.112F), new Vector2(-57.1539993F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-56.3499985F, -317.432007F), new Vector2(-55.9480019F, -316.364014F), new Vector2(-55.9480019F, -315.067993F));
+ builder.AddLine(new Vector2(-55.9480019F, -305.096008F));
+ builder.AddLine(new Vector2(-52.6720009F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0289()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-72.9400024F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-72.5559998F, -326.605988F), new Vector2(-72.3639984F, -327.104004F), new Vector2(-72.3639984F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-72.3639984F, -328.279999F), new Vector2(-72.5559998F, -328.765991F), new Vector2(-72.9400024F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-73.3239975F, -329.558014F), new Vector2(-73.8160019F, -329.756012F), new Vector2(-74.4160004F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-75.0159988F, -329.756012F), new Vector2(-75.5080032F, -329.558014F), new Vector2(-75.8919983F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-76.276001F, -328.765991F), new Vector2(-76.4680023F, -328.279999F), new Vector2(-76.4680023F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-76.4680023F, -327.104004F), new Vector2(-76.276001F, -326.605988F), new Vector2(-75.8919983F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-75.5080032F, -325.813995F), new Vector2(-75.0159988F, -325.615997F), new Vector2(-74.4160004F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-73.8160019F, -325.615997F), new Vector2(-73.3239975F, -325.813995F), new Vector2(-72.9400024F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-72.7959976F, -305.096008F));
+ builder.AddLine(new Vector2(-72.7959976F, -322.196014F));
+ builder.AddLine(new Vector2(-76.0719986F, -322.196014F));
+ builder.AddLine(new Vector2(-76.0719986F, -305.096008F));
+ builder.AddLine(new Vector2(-72.7959976F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0290()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-92.5599976F, -305.096008F));
+ builder.AddLine(new Vector2(-92.5599976F, -322.196014F));
+ builder.AddLine(new Vector2(-95.8000031F, -322.196014F));
+ builder.AddLine(new Vector2(-95.8000031F, -305.096008F));
+ builder.AddLine(new Vector2(-92.5599976F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-80.4639969F, -305.096008F));
+ builder.AddLine(new Vector2(-80.4639969F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-80.4639969F, -316.891998F), new Vector2(-80.7519989F, -318.002014F), new Vector2(-81.3280029F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-81.9039993F, -320.089996F), new Vector2(-82.6900024F, -320.936005F), new Vector2(-83.685997F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-84.6819992F, -322.231995F), new Vector2(-85.8280029F, -322.556F), new Vector2(-87.1240005F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-88.4199982F, -322.556F), new Vector2(-89.5839996F, -322.261993F), new Vector2(-90.6159973F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-91.6480026F, -321.085999F), new Vector2(-92.4520035F, -320.287994F), new Vector2(-93.0279999F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-93.6039963F, -318.272003F), new Vector2(-93.8919983F, -317.119995F), new Vector2(-93.8919983F, -315.824005F));
+ builder.AddLine(new Vector2(-92.5599976F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-92.5599976F, -315.932007F), new Vector2(-92.3679962F, -316.700012F), new Vector2(-91.9840012F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-91.5999985F, -318.044006F), new Vector2(-91.0719986F, -318.571991F), new Vector2(-90.4000015F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-89.7279968F, -319.339996F), new Vector2(-88.9599991F, -319.532013F), new Vector2(-88.0960007F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-86.8000031F, -319.532013F), new Vector2(-85.75F, -319.112F), new Vector2(-84.9459991F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-84.1419983F, -317.432007F), new Vector2(-83.7399979F, -316.364014F), new Vector2(-83.7399979F, -315.067993F));
+ builder.AddLine(new Vector2(-83.7399979F, -305.096008F));
+ builder.AddLine(new Vector2(-80.4639969F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0291()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-103.396004F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-102.220001F, -305.996002F), new Vector2(-101.211998F, -306.727997F), new Vector2(-100.372002F, -307.687988F));
+ builder.AddLine(new Vector2(-102.459999F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-103.036003F, -309.140015F), new Vector2(-103.725998F, -308.635986F), new Vector2(-104.529999F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-105.334F, -307.963989F), new Vector2(-106.216003F, -307.79599F), new Vector2(-107.176003F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-108.328003F, -307.79599F), new Vector2(-109.348F, -308.041992F), new Vector2(-110.236F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-111.124001F, -309.026001F), new Vector2(-111.807999F, -309.721985F), new Vector2(-112.288002F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-112.767998F, -311.522003F), new Vector2(-113.008003F, -312.571991F), new Vector2(-113.008003F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-113.008003F, -314.947998F), new Vector2(-112.779999F, -315.967987F), new Vector2(-112.323997F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-111.867996F, -317.696014F), new Vector2(-111.220001F, -318.368011F), new Vector2(-110.379997F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-109.540001F, -319.328003F), new Vector2(-108.568001F, -319.567993F), new Vector2(-107.463997F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-106.407997F, -319.567993F), new Vector2(-105.508003F, -319.346008F), new Vector2(-104.764F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-104.019997F, -318.458008F), new Vector2(-103.444F, -317.834015F), new Vector2(-103.036003F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-102.627998F, -316.226013F), new Vector2(-102.424004F, -315.247986F), new Vector2(-102.424004F, -314.096008F));
+ builder.AddLine(new Vector2(-101.236F, -315.140015F));
+ builder.AddLine(new Vector2(-113.944F, -315.140015F));
+ builder.AddLine(new Vector2(-113.944F, -312.440002F));
+ builder.AddLine(new Vector2(-99.5080032F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-99.435997F, -312.776001F), new Vector2(-99.3880005F, -313.082001F), new Vector2(-99.3639984F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-99.3399963F, -313.634003F), new Vector2(-99.3280029F, -313.891998F), new Vector2(-99.3280029F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-99.3280029F, -315.764008F), new Vector2(-99.6699982F, -317.216003F), new Vector2(-100.353996F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-101.038002F, -319.76001F), new Vector2(-101.991997F, -320.756012F), new Vector2(-103.216003F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-104.440002F, -322.196014F), new Vector2(-105.832001F, -322.556F), new Vector2(-107.391998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-109.047997F, -322.556F), new Vector2(-110.542F, -322.165985F), new Vector2(-111.874001F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-113.206001F, -320.605988F), new Vector2(-114.262001F, -319.544006F), new Vector2(-115.042F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-115.821999F, -316.855988F), new Vector2(-116.211998F, -315.343994F), new Vector2(-116.211998F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-116.211998F, -311.959991F), new Vector2(-115.816002F, -310.436005F), new Vector2(-115.024002F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-114.232002F, -307.747986F), new Vector2(-113.157997F, -306.686005F), new Vector2(-111.802002F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-110.445999F, -305.126007F), new Vector2(-108.903999F, -304.735992F), new Vector2(-107.176003F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-105.832001F, -304.735992F), new Vector2(-104.571999F, -304.988007F), new Vector2(-103.396004F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0292()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-130.414001F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-131.242004F, -309.056F), new Vector2(-131.878006F, -309.746002F), new Vector2(-132.322006F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-132.766006F, -311.497986F), new Vector2(-132.988007F, -312.5F), new Vector2(-132.988007F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-132.988007F, -314.779999F), new Vector2(-132.759995F, -315.794006F), new Vector2(-132.304001F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-131.848007F, -317.54599F), new Vector2(-131.212006F, -318.235992F), new Vector2(-130.395996F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-129.580002F, -319.243988F), new Vector2(-128.643997F, -319.496002F), new Vector2(-127.587997F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-126.508003F, -319.496002F), new Vector2(-125.559998F, -319.243988F), new Vector2(-124.744003F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-123.928001F, -318.235992F), new Vector2(-123.286003F, -317.54599F), new Vector2(-122.818001F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-122.349998F, -315.794006F), new Vector2(-122.115997F, -314.791992F), new Vector2(-122.115997F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-122.115997F, -312.511993F), new Vector2(-122.349998F, -311.497986F), new Vector2(-122.818001F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-123.286003F, -309.746002F), new Vector2(-123.928001F, -309.056F), new Vector2(-124.744003F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-125.559998F, -308.048004F), new Vector2(-126.508003F, -307.79599F), new Vector2(-127.587997F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-128.643997F, -307.79599F), new Vector2(-129.585999F, -308.048004F), new Vector2(-130.414001F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-132.807999F, -297.932007F));
+ builder.AddLine(new Vector2(-132.807999F, -309.380005F));
+ builder.AddLine(new Vector2(-133.419998F, -313.556F));
+ builder.AddLine(new Vector2(-132.807999F, -317.696014F));
+ builder.AddLine(new Vector2(-132.807999F, -322.196014F));
+ builder.AddLine(new Vector2(-136.048004F, -322.196014F));
+ builder.AddLine(new Vector2(-136.048004F, -297.932007F));
+ builder.AddLine(new Vector2(-132.807999F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-122.818001F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-121.557999F, -306.686005F), new Vector2(-120.568001F, -307.747986F), new Vector2(-119.848F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-119.127998F, -310.436005F), new Vector2(-118.767998F, -311.947998F), new Vector2(-118.767998F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-118.767998F, -315.308014F), new Vector2(-119.127998F, -316.820007F), new Vector2(-119.848F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-120.568001F, -319.507996F), new Vector2(-121.557999F, -320.575989F), new Vector2(-122.818001F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-124.078003F, -322.160004F), new Vector2(-125.487999F, -322.556F), new Vector2(-127.047997F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-128.320007F, -322.556F), new Vector2(-129.477997F, -322.286011F), new Vector2(-130.522003F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-131.565994F, -321.205994F), new Vector2(-132.406006F, -320.462006F), new Vector2(-133.042007F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-133.677994F, -318.56601F), new Vector2(-134.031998F, -317.467987F), new Vector2(-134.104004F, -316.220001F));
+ builder.AddLine(new Vector2(-134.104004F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(-134.031998F, -309.847992F), new Vector2(-133.684006F, -308.756012F), new Vector2(-133.059998F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-132.436005F, -306.835999F), new Vector2(-131.602005F, -306.085999F), new Vector2(-130.557999F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-129.514008F, -305.006012F), new Vector2(-128.343994F, -304.735992F), new Vector2(-127.047997F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-125.487999F, -304.735992F), new Vector2(-124.078003F, -305.126007F), new Vector2(-122.818001F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0293()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-151.365997F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-152.194F, -309.056F), new Vector2(-152.830002F, -309.746002F), new Vector2(-153.274002F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-153.718002F, -311.497986F), new Vector2(-153.940002F, -312.5F), new Vector2(-153.940002F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-153.940002F, -314.779999F), new Vector2(-153.712006F, -315.794006F), new Vector2(-153.255997F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-152.800003F, -317.54599F), new Vector2(-152.164001F, -318.235992F), new Vector2(-151.348007F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-150.531998F, -319.243988F), new Vector2(-149.595993F, -319.496002F), new Vector2(-148.539993F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-147.460007F, -319.496002F), new Vector2(-146.511993F, -319.243988F), new Vector2(-145.695999F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-144.880005F, -318.235992F), new Vector2(-144.238007F, -317.54599F), new Vector2(-143.770004F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-143.302002F, -315.794006F), new Vector2(-143.067993F, -314.791992F), new Vector2(-143.067993F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-143.067993F, -312.511993F), new Vector2(-143.302002F, -311.497986F), new Vector2(-143.770004F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-144.238007F, -309.746002F), new Vector2(-144.880005F, -309.056F), new Vector2(-145.695999F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-146.511993F, -308.048004F), new Vector2(-147.460007F, -307.79599F), new Vector2(-148.539993F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-149.595993F, -307.79599F), new Vector2(-150.537994F, -308.048004F), new Vector2(-151.365997F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-153.759995F, -297.932007F));
+ builder.AddLine(new Vector2(-153.759995F, -309.380005F));
+ builder.AddLine(new Vector2(-154.371994F, -313.556F));
+ builder.AddLine(new Vector2(-153.759995F, -317.696014F));
+ builder.AddLine(new Vector2(-153.759995F, -322.196014F));
+ builder.AddLine(new Vector2(-157F, -322.196014F));
+ builder.AddLine(new Vector2(-157F, -297.932007F));
+ builder.AddLine(new Vector2(-153.759995F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-143.770004F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-142.509995F, -306.686005F), new Vector2(-141.520004F, -307.747986F), new Vector2(-140.800003F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-140.080002F, -310.436005F), new Vector2(-139.720001F, -311.947998F), new Vector2(-139.720001F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-139.720001F, -315.308014F), new Vector2(-140.080002F, -316.820007F), new Vector2(-140.800003F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-141.520004F, -319.507996F), new Vector2(-142.509995F, -320.575989F), new Vector2(-143.770004F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-145.029999F, -322.160004F), new Vector2(-146.440002F, -322.556F), new Vector2(-148F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-149.272003F, -322.556F), new Vector2(-150.429993F, -322.286011F), new Vector2(-151.473999F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-152.518005F, -321.205994F), new Vector2(-153.358002F, -320.462006F), new Vector2(-153.994003F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-154.630005F, -318.56601F), new Vector2(-154.983994F, -317.467987F), new Vector2(-155.056F, -316.220001F));
+ builder.AddLine(new Vector2(-155.056F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(-154.983994F, -309.847992F), new Vector2(-154.636002F, -308.756012F), new Vector2(-154.011993F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-153.388F, -306.835999F), new Vector2(-152.554001F, -306.085999F), new Vector2(-151.509995F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-150.466003F, -305.006012F), new Vector2(-149.296005F, -304.735992F), new Vector2(-148F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-146.440002F, -304.735992F), new Vector2(-145.029999F, -305.126007F), new Vector2(-143.770004F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0294()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-161.716003F, -305.096008F));
+ builder.AddLine(new Vector2(-161.716003F, -322.196014F));
+ builder.AddLine(new Vector2(-164.992004F, -322.196014F));
+ builder.AddLine(new Vector2(-164.992004F, -318.019989F));
+ builder.AddLine(new Vector2(-164.380005F, -313.880005F));
+ builder.AddLine(new Vector2(-164.992004F, -309.70401F));
+ builder.AddLine(new Vector2(-164.992004F, -305.096008F));
+ builder.AddLine(new Vector2(-161.716003F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-173.020004F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-173.860001F, -309.056F), new Vector2(-174.514008F, -309.746002F), new Vector2(-174.981995F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-175.449997F, -311.497986F), new Vector2(-175.684006F, -312.511993F), new Vector2(-175.684006F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-175.684006F, -314.791992F), new Vector2(-175.449997F, -315.794006F), new Vector2(-174.981995F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-174.514008F, -317.54599F), new Vector2(-173.865997F, -318.235992F), new Vector2(-173.037994F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-172.210007F, -319.243988F), new Vector2(-171.255997F, -319.496002F), new Vector2(-170.175995F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-169.095993F, -319.496002F), new Vector2(-168.154007F, -319.25F), new Vector2(-167.350006F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(-166.546005F, -318.265991F), new Vector2(-165.916F, -317.575989F), new Vector2(-165.460007F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(-165.003998F, -315.799988F), new Vector2(-164.776001F, -314.779999F), new Vector2(-164.776001F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-164.776001F, -311.924011F), new Vector2(-165.268005F, -310.526001F), new Vector2(-166.251999F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(-167.235992F, -308.34201F), new Vector2(-168.531998F, -307.79599F), new Vector2(-170.139999F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-171.220001F, -307.79599F), new Vector2(-172.179993F, -308.048004F), new Vector2(-173.020004F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-167.188004F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-166.156006F, -306.085999F), new Vector2(-165.334F, -306.835999F), new Vector2(-164.722F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-164.110001F, -308.756012F), new Vector2(-163.768005F, -309.847992F), new Vector2(-163.695999F, -311.071991F));
+ builder.AddLine(new Vector2(-163.695999F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-163.768005F, -317.467987F), new Vector2(-164.115997F, -318.56601F), new Vector2(-164.740005F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-165.363998F, -320.462006F), new Vector2(-166.186005F, -321.205994F), new Vector2(-167.205994F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-168.225998F, -322.286011F), new Vector2(-169.384003F, -322.556F), new Vector2(-170.679993F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-172.264008F, -322.556F), new Vector2(-173.686005F, -322.160004F), new Vector2(-174.945999F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-176.205994F, -320.575989F), new Vector2(-177.201996F, -319.507996F), new Vector2(-177.934006F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-178.666F, -316.820007F), new Vector2(-179.031998F, -315.308014F), new Vector2(-179.031998F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-179.031998F, -311.947998F), new Vector2(-178.666F, -310.436005F), new Vector2(-177.934006F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-177.201996F, -307.747986F), new Vector2(-176.205994F, -306.686005F), new Vector2(-174.945999F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-173.686005F, -305.126007F), new Vector2(-172.264008F, -304.735992F), new Vector2(-170.679993F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-169.384003F, -304.735992F), new Vector2(-168.220001F, -305.006012F), new Vector2(-167.188004F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0295()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-194.440002F, -305.096008F));
+ builder.AddLine(new Vector2(-194.440002F, -330.799988F));
+ builder.AddLine(new Vector2(-197.679993F, -330.799988F));
+ builder.AddLine(new Vector2(-197.679993F, -305.096008F));
+ builder.AddLine(new Vector2(-194.440002F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-182.343994F, -305.096008F));
+ builder.AddLine(new Vector2(-182.343994F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-182.343994F, -317.059998F), new Vector2(-182.632004F, -318.247986F), new Vector2(-183.207993F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-183.783997F, -320.312012F), new Vector2(-184.570007F, -321.115997F), new Vector2(-185.565994F, -321.691986F));
+ builder.AddCubicBezier(new Vector2(-186.561996F, -322.268005F), new Vector2(-187.707993F, -322.556F), new Vector2(-189.003998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-190.300003F, -322.556F), new Vector2(-191.464005F, -322.261993F), new Vector2(-192.496002F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-193.528F, -321.085999F), new Vector2(-194.332001F, -320.287994F), new Vector2(-194.908005F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-195.483994F, -318.272003F), new Vector2(-195.772003F, -317.119995F), new Vector2(-195.772003F, -315.824005F));
+ builder.AddLine(new Vector2(-194.440002F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-194.440002F, -315.932007F), new Vector2(-194.248001F, -316.700012F), new Vector2(-193.863998F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-193.479996F, -318.044006F), new Vector2(-192.951996F, -318.571991F), new Vector2(-192.279999F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-191.608002F, -319.339996F), new Vector2(-190.839996F, -319.532013F), new Vector2(-189.975998F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-188.679993F, -319.532013F), new Vector2(-187.630005F, -319.112F), new Vector2(-186.826004F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-186.022003F, -317.432007F), new Vector2(-185.619995F, -316.364014F), new Vector2(-185.619995F, -315.067993F));
+ builder.AddLine(new Vector2(-185.619995F, -305.096008F));
+ builder.AddLine(new Vector2(-182.343994F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0296()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-219.315994F, -297.932007F));
+ builder.AddLine(new Vector2(-216.076004F, -304.951996F));
+ builder.AddLine(new Vector2(-217.912003F, -308.264008F));
+ builder.AddLine(new Vector2(-222.916F, -297.932007F));
+ builder.AddLine(new Vector2(-219.315994F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-216.076004F, -304.951996F));
+ builder.AddLine(new Vector2(-208.084F, -322.196014F));
+ builder.AddLine(new Vector2(-211.684006F, -322.196014F));
+ builder.AddLine(new Vector2(-217.479996F, -308.696014F));
+ builder.AddLine(new Vector2(-216.328003F, -308.696014F));
+ builder.AddLine(new Vector2(-221.835999F, -322.196014F));
+ builder.AddLine(new Vector2(-225.436005F, -322.196014F));
+ builder.AddLine(new Vector2(-218.020004F, -304.951996F));
+ builder.AddLine(new Vector2(-216.076004F, -304.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0297()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-228.388F, -305.096008F));
+ builder.AddLine(new Vector2(-228.388F, -330.799988F));
+ builder.AddLine(new Vector2(-231.628006F, -330.799988F));
+ builder.AddLine(new Vector2(-231.628006F, -305.096008F));
+ builder.AddLine(new Vector2(-228.388F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0298()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-234.796005F, -319.243988F));
+ builder.AddLine(new Vector2(-234.796005F, -322.196014F));
+ builder.AddLine(new Vector2(-246.460007F, -322.196014F));
+ builder.AddLine(new Vector2(-246.460007F, -319.243988F));
+ builder.AddLine(new Vector2(-234.796005F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-239.007996F, -305.096008F));
+ builder.AddLine(new Vector2(-239.007996F, -329.359985F));
+ builder.AddLine(new Vector2(-242.248001F, -329.359985F));
+ builder.AddLine(new Vector2(-242.248001F, -305.096008F));
+ builder.AddLine(new Vector2(-239.007996F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0299()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-261.14801F, -305.096008F));
+ builder.AddLine(new Vector2(-261.14801F, -322.196014F));
+ builder.AddLine(new Vector2(-264.388F, -322.196014F));
+ builder.AddLine(new Vector2(-264.388F, -305.096008F));
+ builder.AddLine(new Vector2(-261.14801F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-249.052002F, -305.096008F));
+ builder.AddLine(new Vector2(-249.052002F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-249.052002F, -316.891998F), new Vector2(-249.339996F, -318.002014F), new Vector2(-249.916F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-250.492004F, -320.089996F), new Vector2(-251.278F, -320.936005F), new Vector2(-252.274002F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-253.270004F, -322.231995F), new Vector2(-254.416F, -322.556F), new Vector2(-255.712006F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-257.007996F, -322.556F), new Vector2(-258.171997F, -322.261993F), new Vector2(-259.20401F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-260.235992F, -321.085999F), new Vector2(-261.040009F, -320.287994F), new Vector2(-261.615997F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-262.191986F, -318.272003F), new Vector2(-262.480011F, -317.119995F), new Vector2(-262.480011F, -315.824005F));
+ builder.AddLine(new Vector2(-261.14801F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-261.14801F, -315.932007F), new Vector2(-260.955994F, -316.700012F), new Vector2(-260.571991F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-260.187988F, -318.044006F), new Vector2(-259.660004F, -318.571991F), new Vector2(-258.988007F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-258.31601F, -319.339996F), new Vector2(-257.548004F, -319.532013F), new Vector2(-256.68399F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-255.388F, -319.532013F), new Vector2(-254.337997F, -319.112F), new Vector2(-253.533997F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-252.729996F, -317.432007F), new Vector2(-252.328003F, -316.364014F), new Vector2(-252.328003F, -315.067993F));
+ builder.AddLine(new Vector2(-252.328003F, -305.096008F));
+ builder.AddLine(new Vector2(-249.052002F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0300()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-271.984009F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-270.808014F, -305.996002F), new Vector2(-269.799988F, -306.727997F), new Vector2(-268.959991F, -307.687988F));
+ builder.AddLine(new Vector2(-271.048004F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-271.623993F, -309.140015F), new Vector2(-272.313995F, -308.635986F), new Vector2(-273.118011F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-273.921997F, -307.963989F), new Vector2(-274.803986F, -307.79599F), new Vector2(-275.764008F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-276.915985F, -307.79599F), new Vector2(-277.936005F, -308.041992F), new Vector2(-278.824005F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-279.712006F, -309.026001F), new Vector2(-280.395996F, -309.721985F), new Vector2(-280.876007F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-281.355988F, -311.522003F), new Vector2(-281.596008F, -312.571991F), new Vector2(-281.596008F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-281.596008F, -314.947998F), new Vector2(-281.368011F, -315.967987F), new Vector2(-280.911987F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-280.455994F, -317.696014F), new Vector2(-279.808014F, -318.368011F), new Vector2(-278.967987F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-278.127991F, -319.328003F), new Vector2(-277.156006F, -319.567993F), new Vector2(-276.052002F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-274.996002F, -319.567993F), new Vector2(-274.096008F, -319.346008F), new Vector2(-273.35199F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-272.608002F, -318.458008F), new Vector2(-272.032013F, -317.834015F), new Vector2(-271.623993F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-271.216003F, -316.226013F), new Vector2(-271.011993F, -315.247986F), new Vector2(-271.011993F, -314.096008F));
+ builder.AddLine(new Vector2(-269.824005F, -315.140015F));
+ builder.AddLine(new Vector2(-282.532013F, -315.140015F));
+ builder.AddLine(new Vector2(-282.532013F, -312.440002F));
+ builder.AddLine(new Vector2(-268.096008F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-268.023987F, -312.776001F), new Vector2(-267.976013F, -313.082001F), new Vector2(-267.951996F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-267.928009F, -313.634003F), new Vector2(-267.915985F, -313.891998F), new Vector2(-267.915985F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-267.915985F, -315.764008F), new Vector2(-268.257996F, -317.216003F), new Vector2(-268.941986F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-269.626007F, -319.76001F), new Vector2(-270.579987F, -320.756012F), new Vector2(-271.803986F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-273.028015F, -322.196014F), new Vector2(-274.420013F, -322.556F), new Vector2(-275.980011F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-277.635986F, -322.556F), new Vector2(-279.130005F, -322.165985F), new Vector2(-280.462006F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-281.794006F, -320.605988F), new Vector2(-282.850006F, -319.544006F), new Vector2(-283.630005F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-284.410004F, -316.855988F), new Vector2(-284.799988F, -315.343994F), new Vector2(-284.799988F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-284.799988F, -311.959991F), new Vector2(-284.403992F, -310.436005F), new Vector2(-283.612F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-282.820007F, -307.747986F), new Vector2(-281.746002F, -306.686005F), new Vector2(-280.390015F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-279.033997F, -305.126007F), new Vector2(-277.492004F, -304.735992F), new Vector2(-275.764008F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-274.420013F, -304.735992F), new Vector2(-273.160004F, -304.988007F), new Vector2(-271.984009F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0301()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-293.187988F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-292.420013F, -319.112F), new Vector2(-291.436005F, -319.496002F), new Vector2(-290.235992F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-289.660004F, -319.496002F), new Vector2(-289.156006F, -319.411987F), new Vector2(-288.723999F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-288.291992F, -319.075989F), new Vector2(-287.895996F, -318.799988F), new Vector2(-287.536011F, -318.415985F));
+ builder.AddLine(new Vector2(-285.411987F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-286.011993F, -321.308014F), new Vector2(-286.660004F, -321.806F), new Vector2(-287.355988F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-288.052002F, -322.406006F), new Vector2(-288.832001F, -322.556F), new Vector2(-289.696014F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-291.59201F, -322.556F), new Vector2(-293.044006F, -321.90799F), new Vector2(-294.052002F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-295.059998F, -319.31601F), new Vector2(-295.563995F, -317.575989F), new Vector2(-295.563995F, -315.391998F));
+ builder.AddLine(new Vector2(-294.339996F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-294.339996F, -316.399994F), new Vector2(-293.955994F, -317.575989F), new Vector2(-293.187988F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-294.339996F, -305.096008F));
+ builder.AddLine(new Vector2(-294.339996F, -322.196014F));
+ builder.AddLine(new Vector2(-297.579987F, -322.196014F));
+ builder.AddLine(new Vector2(-297.579987F, -305.096008F));
+ builder.AddLine(new Vector2(-294.339996F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0302()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-307.696014F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-306.928009F, -319.112F), new Vector2(-305.944F, -319.496002F), new Vector2(-304.743988F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-304.167999F, -319.496002F), new Vector2(-303.664001F, -319.411987F), new Vector2(-303.231995F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-302.799988F, -319.075989F), new Vector2(-302.403992F, -318.799988F), new Vector2(-302.044006F, -318.415985F));
+ builder.AddLine(new Vector2(-299.920013F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-300.519989F, -321.308014F), new Vector2(-301.167999F, -321.806F), new Vector2(-301.864014F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-302.559998F, -322.406006F), new Vector2(-303.339996F, -322.556F), new Vector2(-304.20401F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-306.100006F, -322.556F), new Vector2(-307.552002F, -321.90799F), new Vector2(-308.559998F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-309.567993F, -319.31601F), new Vector2(-310.071991F, -317.575989F), new Vector2(-310.071991F, -315.391998F));
+ builder.AddLine(new Vector2(-308.847992F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-308.847992F, -316.399994F), new Vector2(-308.463989F, -317.575989F), new Vector2(-307.696014F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-308.847992F, -305.096008F));
+ builder.AddLine(new Vector2(-308.847992F, -322.196014F));
+ builder.AddLine(new Vector2(-312.088013F, -322.196014F));
+ builder.AddLine(new Vector2(-312.088013F, -305.096008F));
+ builder.AddLine(new Vector2(-308.847992F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0303()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-319.971985F, -305.726013F));
+ builder.AddCubicBezier(new Vector2(-318.868011F, -306.338013F), new Vector2(-318.003998F, -307.208008F), new Vector2(-317.380005F, -308.335999F));
+ builder.AddCubicBezier(new Vector2(-316.756012F, -309.463989F), new Vector2(-316.444F, -310.772003F), new Vector2(-316.444F, -312.26001F));
+ builder.AddLine(new Vector2(-316.444F, -322.196014F));
+ builder.AddLine(new Vector2(-319.68399F, -322.196014F));
+ builder.AddLine(new Vector2(-319.68399F, -312.403992F));
+ builder.AddCubicBezier(new Vector2(-319.68399F, -310.988007F), new Vector2(-320.044006F, -309.877991F), new Vector2(-320.764008F, -309.074005F));
+ builder.AddCubicBezier(new Vector2(-321.484009F, -308.269989F), new Vector2(-322.480011F, -307.868011F), new Vector2(-323.752014F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-324.59201F, -307.868011F), new Vector2(-325.324005F, -308.048004F), new Vector2(-325.947998F, -308.40799F));
+ builder.AddCubicBezier(new Vector2(-326.571991F, -308.768005F), new Vector2(-327.04599F, -309.290009F), new Vector2(-327.369995F, -309.973999F));
+ builder.AddCubicBezier(new Vector2(-327.694F, -310.65799F), new Vector2(-327.855988F, -311.467987F), new Vector2(-327.855988F, -312.403992F));
+ builder.AddLine(new Vector2(-327.855988F, -322.196014F));
+ builder.AddLine(new Vector2(-331.096008F, -322.196014F));
+ builder.AddLine(new Vector2(-331.096008F, -312.26001F));
+ builder.AddCubicBezier(new Vector2(-331.096008F, -310.772003F), new Vector2(-330.783997F, -309.463989F), new Vector2(-330.160004F, -308.335999F));
+ builder.AddCubicBezier(new Vector2(-329.536011F, -307.208008F), new Vector2(-328.665985F, -306.338013F), new Vector2(-327.549988F, -305.726013F));
+ builder.AddCubicBezier(new Vector2(-326.43399F, -305.114014F), new Vector2(-325.167999F, -304.808014F), new Vector2(-323.752014F, -304.808014F));
+ builder.AddCubicBezier(new Vector2(-322.335999F, -304.808014F), new Vector2(-321.075989F, -305.114014F), new Vector2(-319.971985F, -305.726013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0304()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-336.765991F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-335.626007F, -305.996002F), new Vector2(-334.660004F, -306.70401F), new Vector2(-333.868011F, -307.615997F));
+ builder.AddLine(new Vector2(-335.992004F, -309.776001F));
+ builder.AddCubicBezier(new Vector2(-336.544006F, -309.152008F), new Vector2(-337.197998F, -308.678009F), new Vector2(-337.95401F, -308.354004F));
+ builder.AddCubicBezier(new Vector2(-338.709991F, -308.029999F), new Vector2(-339.544006F, -307.868011F), new Vector2(-340.455994F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-341.536011F, -307.868011F), new Vector2(-342.496002F, -308.119995F), new Vector2(-343.335999F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-344.175995F, -309.127991F), new Vector2(-344.835999F, -309.812012F), new Vector2(-345.31601F, -310.675995F));
+ builder.AddCubicBezier(new Vector2(-345.79599F, -311.540009F), new Vector2(-346.036011F, -312.536011F), new Vector2(-346.036011F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-346.036011F, -314.791992F), new Vector2(-345.79599F, -315.787994F), new Vector2(-345.31601F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-344.835999F, -317.515991F), new Vector2(-344.175995F, -318.194F), new Vector2(-343.335999F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-342.496002F, -319.178009F), new Vector2(-341.536011F, -319.424011F), new Vector2(-340.455994F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-339.567993F, -319.424011F), new Vector2(-338.73999F, -319.261993F), new Vector2(-337.971985F, -318.937988F));
+ builder.AddCubicBezier(new Vector2(-337.20401F, -318.614014F), new Vector2(-336.556F, -318.140015F), new Vector2(-336.028015F, -317.515991F));
+ builder.AddLine(new Vector2(-333.868011F, -319.675995F));
+ builder.AddCubicBezier(new Vector2(-334.68399F, -320.612F), new Vector2(-335.656006F, -321.325989F), new Vector2(-336.783997F, -321.817993F));
+ builder.AddCubicBezier(new Vector2(-337.911987F, -322.309998F), new Vector2(-339.135986F, -322.556F), new Vector2(-340.455994F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-342.135986F, -322.556F), new Vector2(-343.653992F, -322.165985F), new Vector2(-345.01001F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-346.365997F, -320.605988F), new Vector2(-347.43399F, -319.544006F), new Vector2(-348.213989F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-348.993988F, -316.855988F), new Vector2(-349.384003F, -315.343994F), new Vector2(-349.384003F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-349.384003F, -312.007996F), new Vector2(-348.993988F, -310.502014F), new Vector2(-348.213989F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-347.43399F, -307.790009F), new Vector2(-346.365997F, -306.716003F), new Vector2(-345.01001F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-343.653992F, -305.131989F), new Vector2(-342.135986F, -304.735992F), new Vector2(-340.455994F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-339.135986F, -304.735992F), new Vector2(-337.906006F, -304.988007F), new Vector2(-336.765991F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0305()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-361.06601F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(-359.925995F, -307.075989F), new Vector2(-359.355988F, -308.347992F), new Vector2(-359.355988F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(-359.355988F, -311.011993F), new Vector2(-359.578003F, -311.864014F), new Vector2(-360.022003F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(-360.466003F, -313.160004F), new Vector2(-361.036011F, -313.675995F), new Vector2(-361.731995F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(-362.428009F, -314.444F), new Vector2(-363.160004F, -314.75F), new Vector2(-363.928009F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(-364.696014F, -315.205994F), new Vector2(-365.43399F, -315.428009F), new Vector2(-366.141998F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(-366.850006F, -315.859985F), new Vector2(-367.420013F, -316.123993F), new Vector2(-367.85199F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(-368.283997F, -316.747986F), new Vector2(-368.5F, -317.191986F), new Vector2(-368.5F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(-368.5F, -318.320007F), new Vector2(-368.253998F, -318.764008F), new Vector2(-367.761993F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-367.269989F, -319.436005F), new Vector2(-366.556F, -319.604004F), new Vector2(-365.619995F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(-364.731995F, -319.604004F), new Vector2(-363.940002F, -319.436005F), new Vector2(-363.243988F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-362.548004F, -318.764008F), new Vector2(-361.947998F, -318.283997F), new Vector2(-361.444F, -317.660004F));
+ builder.AddLine(new Vector2(-359.355988F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(-360.028015F, -320.68399F), new Vector2(-360.885986F, -321.385986F), new Vector2(-361.929993F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(-362.973999F, -322.321991F), new Vector2(-364.167999F, -322.556F), new Vector2(-365.511993F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-366.783997F, -322.556F), new Vector2(-367.876007F, -322.35199F), new Vector2(-368.787994F, -321.944F));
+ builder.AddCubicBezier(new Vector2(-369.700012F, -321.536011F), new Vector2(-370.402008F, -320.95401F), new Vector2(-370.894012F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(-371.385986F, -319.441986F), new Vector2(-371.631989F, -318.548004F), new Vector2(-371.631989F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(-371.631989F, -316.484009F), new Vector2(-371.410004F, -315.649994F), new Vector2(-370.966003F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(-370.522003F, -314.377991F), new Vector2(-369.951996F, -313.880005F), new Vector2(-369.256012F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(-368.559998F, -313.160004F), new Vector2(-367.821991F, -312.872009F), new Vector2(-367.041992F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(-366.261993F, -312.440002F), new Vector2(-365.523987F, -312.217987F), new Vector2(-364.828003F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(-364.131989F, -311.761993F), new Vector2(-363.562012F, -311.473999F), new Vector2(-363.118011F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(-362.674011F, -310.778015F), new Vector2(-362.451996F, -310.291992F), new Vector2(-362.451996F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(-362.451996F, -309.044006F), new Vector2(-362.727997F, -308.558014F), new Vector2(-363.279999F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(-363.832001F, -307.862F), new Vector2(-364.612F, -307.687988F), new Vector2(-365.619995F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(-366.627991F, -307.687988F), new Vector2(-367.540009F, -307.873993F), new Vector2(-368.355988F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(-369.171997F, -308.618011F), new Vector2(-369.891998F, -309.187988F), new Vector2(-370.515991F, -309.955994F));
+ builder.AddLine(new Vector2(-372.604004F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-372.075989F, -307.220001F), new Vector2(-371.458008F, -306.661987F), new Vector2(-370.75F, -306.194F));
+ builder.AddCubicBezier(new Vector2(-370.041992F, -305.726013F), new Vector2(-369.256012F, -305.365997F), new Vector2(-368.391998F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(-367.528015F, -304.862F), new Vector2(-366.615997F, -304.735992F), new Vector2(-365.656006F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-363.735992F, -304.735992F), new Vector2(-362.205994F, -305.20401F), new Vector2(-361.06601F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0306()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-376.023987F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-375.640015F, -326.605988F), new Vector2(-375.447998F, -327.104004F), new Vector2(-375.447998F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-375.447998F, -328.279999F), new Vector2(-375.640015F, -328.765991F), new Vector2(-376.023987F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-376.40799F, -329.558014F), new Vector2(-376.899994F, -329.756012F), new Vector2(-377.5F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-378.100006F, -329.756012F), new Vector2(-378.59201F, -329.558014F), new Vector2(-378.976013F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-379.359985F, -328.765991F), new Vector2(-379.552002F, -328.279999F), new Vector2(-379.552002F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-379.552002F, -327.104004F), new Vector2(-379.359985F, -326.605988F), new Vector2(-378.976013F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-378.59201F, -325.813995F), new Vector2(-378.100006F, -325.615997F), new Vector2(-377.5F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-376.899994F, -325.615997F), new Vector2(-376.40799F, -325.813995F), new Vector2(-376.023987F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-375.880005F, -305.096008F));
+ builder.AddLine(new Vector2(-375.880005F, -322.196014F));
+ builder.AddLine(new Vector2(-379.156006F, -322.196014F));
+ builder.AddLine(new Vector2(-379.156006F, -305.096008F));
+ builder.AddLine(new Vector2(-375.880005F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0307()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-389.776001F, -319.243988F));
+ builder.AddLine(new Vector2(-389.776001F, -322.196014F));
+ builder.AddLine(new Vector2(-401.440002F, -322.196014F));
+ builder.AddLine(new Vector2(-401.440002F, -319.243988F));
+ builder.AddLine(new Vector2(-389.776001F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-393.988007F, -305.096008F));
+ builder.AddLine(new Vector2(-393.988007F, -329.359985F));
+ builder.AddLine(new Vector2(-397.227997F, -329.359985F));
+ builder.AddLine(new Vector2(-397.227997F, -305.096008F));
+ builder.AddLine(new Vector2(-393.988007F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0308()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-404.5F, -305.096008F));
+ builder.AddLine(new Vector2(-404.5F, -322.196014F));
+ builder.AddLine(new Vector2(-407.776001F, -322.196014F));
+ builder.AddLine(new Vector2(-407.776001F, -318.019989F));
+ builder.AddLine(new Vector2(-407.164001F, -313.880005F));
+ builder.AddLine(new Vector2(-407.776001F, -309.70401F));
+ builder.AddLine(new Vector2(-407.776001F, -305.096008F));
+ builder.AddLine(new Vector2(-404.5F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-415.803986F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-416.644012F, -309.056F), new Vector2(-417.298004F, -309.746002F), new Vector2(-417.765991F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-418.234009F, -311.497986F), new Vector2(-418.467987F, -312.511993F), new Vector2(-418.467987F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-418.467987F, -314.791992F), new Vector2(-418.234009F, -315.794006F), new Vector2(-417.765991F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-417.298004F, -317.54599F), new Vector2(-416.649994F, -318.235992F), new Vector2(-415.821991F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-414.993988F, -319.243988F), new Vector2(-414.040009F, -319.496002F), new Vector2(-412.959991F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-411.880005F, -319.496002F), new Vector2(-410.937988F, -319.25F), new Vector2(-410.134003F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(-409.329987F, -318.265991F), new Vector2(-408.700012F, -317.575989F), new Vector2(-408.243988F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(-407.787994F, -315.799988F), new Vector2(-407.559998F, -314.779999F), new Vector2(-407.559998F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-407.559998F, -311.924011F), new Vector2(-408.052002F, -310.526001F), new Vector2(-409.036011F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(-410.019989F, -308.34201F), new Vector2(-411.31601F, -307.79599F), new Vector2(-412.924011F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-414.003998F, -307.79599F), new Vector2(-414.963989F, -308.048004F), new Vector2(-415.803986F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-409.971985F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-408.940002F, -306.085999F), new Vector2(-408.118011F, -306.835999F), new Vector2(-407.506012F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-406.894012F, -308.756012F), new Vector2(-406.552002F, -309.847992F), new Vector2(-406.480011F, -311.071991F));
+ builder.AddLine(new Vector2(-406.480011F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-406.552002F, -317.467987F), new Vector2(-406.899994F, -318.56601F), new Vector2(-407.523987F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-408.14801F, -320.462006F), new Vector2(-408.970001F, -321.205994F), new Vector2(-409.98999F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-411.01001F, -322.286011F), new Vector2(-412.167999F, -322.556F), new Vector2(-413.463989F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-415.048004F, -322.556F), new Vector2(-416.470001F, -322.160004F), new Vector2(-417.730011F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-418.98999F, -320.575989F), new Vector2(-419.985992F, -319.507996F), new Vector2(-420.717987F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-421.450012F, -316.820007F), new Vector2(-421.81601F, -315.308014F), new Vector2(-421.81601F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-421.81601F, -311.947998F), new Vector2(-421.450012F, -310.436005F), new Vector2(-420.717987F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-419.985992F, -307.747986F), new Vector2(-418.98999F, -306.686005F), new Vector2(-417.730011F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-416.470001F, -305.126007F), new Vector2(-415.048004F, -304.735992F), new Vector2(-413.463989F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-412.167999F, -304.735992F), new Vector2(-411.003998F, -305.006012F), new Vector2(-409.971985F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0309()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-437.223999F, -305.096008F));
+ builder.AddLine(new Vector2(-437.223999F, -330.799988F));
+ builder.AddLine(new Vector2(-440.463989F, -330.799988F));
+ builder.AddLine(new Vector2(-440.463989F, -305.096008F));
+ builder.AddLine(new Vector2(-437.223999F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-425.127991F, -305.096008F));
+ builder.AddLine(new Vector2(-425.127991F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-425.127991F, -317.059998F), new Vector2(-425.415985F, -318.247986F), new Vector2(-425.992004F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-426.567993F, -320.312012F), new Vector2(-427.354004F, -321.115997F), new Vector2(-428.350006F, -321.691986F));
+ builder.AddCubicBezier(new Vector2(-429.346008F, -322.268005F), new Vector2(-430.492004F, -322.556F), new Vector2(-431.787994F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-433.084015F, -322.556F), new Vector2(-434.247986F, -322.261993F), new Vector2(-435.279999F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-436.312012F, -321.085999F), new Vector2(-437.115997F, -320.287994F), new Vector2(-437.691986F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-438.268005F, -318.272003F), new Vector2(-438.556F, -317.119995F), new Vector2(-438.556F, -315.824005F));
+ builder.AddLine(new Vector2(-437.223999F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-437.223999F, -315.932007F), new Vector2(-437.032013F, -316.700012F), new Vector2(-436.64801F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-436.264008F, -318.044006F), new Vector2(-435.735992F, -318.571991F), new Vector2(-435.063995F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-434.391998F, -319.339996F), new Vector2(-433.623993F, -319.532013F), new Vector2(-432.76001F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-431.463989F, -319.532013F), new Vector2(-430.414001F, -319.112F), new Vector2(-429.609985F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-428.806F, -317.432007F), new Vector2(-428.403992F, -316.364014F), new Vector2(-428.403992F, -315.067993F));
+ builder.AddLine(new Vector2(-428.403992F, -305.096008F));
+ builder.AddLine(new Vector2(-425.127991F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0310()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-460.696014F, -305.096008F));
+ builder.AddLine(new Vector2(-455.727997F, -317.984009F));
+ builder.AddLine(new Vector2(-456.915985F, -317.984009F));
+ builder.AddLine(new Vector2(-451.984009F, -305.096008F));
+ builder.AddLine(new Vector2(-450.075989F, -305.096008F));
+ builder.AddLine(new Vector2(-443.343994F, -322.196014F));
+ builder.AddLine(new Vector2(-446.727997F, -322.196014F));
+ builder.AddLine(new Vector2(-451.623993F, -308.876007F));
+ builder.AddLine(new Vector2(-450.544006F, -308.876007F));
+ builder.AddLine(new Vector2(-455.403992F, -322.196014F));
+ builder.AddLine(new Vector2(-457.276001F, -322.196014F));
+ builder.AddLine(new Vector2(-462.135986F, -308.876007F));
+ builder.AddLine(new Vector2(-461.056F, -308.876007F));
+ builder.AddLine(new Vector2(-465.951996F, -322.196014F));
+ builder.AddLine(new Vector2(-469.335999F, -322.196014F));
+ builder.AddLine(new Vector2(-462.604004F, -305.096008F));
+ builder.AddLine(new Vector2(-460.696014F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0311()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-490.846008F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-491.674011F, -309.614014F), new Vector2(-492.321991F, -310.268005F), new Vector2(-492.790009F, -311.108002F));
+ builder.AddCubicBezier(new Vector2(-493.257996F, -311.947998F), new Vector2(-493.492004F, -312.90799F), new Vector2(-493.492004F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(-493.492004F, -315.067993F), new Vector2(-493.257996F, -316.022003F), new Vector2(-492.790009F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(-492.321991F, -317.678009F), new Vector2(-491.679993F, -318.325989F), new Vector2(-490.864014F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(-490.048004F, -319.261993F), new Vector2(-489.100006F, -319.496002F), new Vector2(-488.019989F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-486.963989F, -319.496002F), new Vector2(-486.033997F, -319.261993F), new Vector2(-485.230011F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(-484.425995F, -318.325989F), new Vector2(-483.802002F, -317.678009F), new Vector2(-483.358002F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(-482.914001F, -316.022003F), new Vector2(-482.691986F, -315.056F), new Vector2(-482.691986F, -313.951996F));
+ builder.AddCubicBezier(new Vector2(-482.691986F, -312.847992F), new Vector2(-482.914001F, -311.881989F), new Vector2(-483.358002F, -311.053986F));
+ builder.AddCubicBezier(new Vector2(-483.802002F, -310.226013F), new Vector2(-484.420013F, -309.584015F), new Vector2(-485.212006F, -309.127991F));
+ builder.AddCubicBezier(new Vector2(-486.003998F, -308.671997F), new Vector2(-486.940002F, -308.444F), new Vector2(-488.019989F, -308.444F));
+ builder.AddCubicBezier(new Vector2(-489.075989F, -308.444F), new Vector2(-490.018005F, -308.678009F), new Vector2(-490.846008F, -309.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-485.104004F, -306.175995F));
+ builder.AddCubicBezier(new Vector2(-484.071991F, -306.70401F), new Vector2(-483.25F, -307.441986F), new Vector2(-482.638F, -308.390015F));
+ builder.AddCubicBezier(new Vector2(-482.026001F, -309.338013F), new Vector2(-481.68399F, -310.436005F), new Vector2(-481.612F, -311.68399F));
+ builder.AddLine(new Vector2(-481.612F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-481.68399F, -317.492004F), new Vector2(-482.019989F, -318.60199F), new Vector2(-482.619995F, -319.549988F));
+ builder.AddCubicBezier(new Vector2(-483.220001F, -320.497986F), new Vector2(-484.041992F, -321.235992F), new Vector2(-485.085999F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(-486.130005F, -322.291992F), new Vector2(-487.324005F, -322.556F), new Vector2(-488.667999F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-490.20401F, -322.556F), new Vector2(-491.596008F, -322.178009F), new Vector2(-492.843994F, -321.421997F));
+ builder.AddCubicBezier(new Vector2(-494.09201F, -320.665985F), new Vector2(-495.070007F, -319.645996F), new Vector2(-495.778015F, -318.362F));
+ builder.AddCubicBezier(new Vector2(-496.485992F, -317.078003F), new Vector2(-496.839996F, -315.619995F), new Vector2(-496.839996F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(-496.839996F, -312.355988F), new Vector2(-496.480011F, -310.885986F), new Vector2(-495.76001F, -309.578003F));
+ builder.AddCubicBezier(new Vector2(-495.040009F, -308.269989F), new Vector2(-494.062012F, -307.243988F), new Vector2(-492.825989F, -306.5F));
+ builder.AddCubicBezier(new Vector2(-491.589996F, -305.756012F), new Vector2(-490.191986F, -305.384003F), new Vector2(-488.631989F, -305.384003F));
+ builder.AddCubicBezier(new Vector2(-487.312012F, -305.384003F), new Vector2(-486.135986F, -305.64801F), new Vector2(-485.104004F, -306.175995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-483.93399F, -298.597992F));
+ builder.AddCubicBezier(new Vector2(-482.578003F, -299.282013F), new Vector2(-481.522003F, -300.242004F), new Vector2(-480.765991F, -301.477997F));
+ builder.AddCubicBezier(new Vector2(-480.01001F, -302.713989F), new Vector2(-479.631989F, -304.14801F), new Vector2(-479.631989F, -305.779999F));
+ builder.AddLine(new Vector2(-479.631989F, -322.196014F));
+ builder.AddLine(new Vector2(-482.872009F, -322.196014F));
+ builder.AddLine(new Vector2(-482.872009F, -317.696014F));
+ builder.AddLine(new Vector2(-482.29599F, -313.880005F));
+ builder.AddLine(new Vector2(-482.872009F, -310.028015F));
+ builder.AddLine(new Vector2(-482.872009F, -305.779999F));
+ builder.AddCubicBezier(new Vector2(-482.872009F, -304.220001F), new Vector2(-483.388F, -302.977997F), new Vector2(-484.420013F, -302.053986F));
+ builder.AddCubicBezier(new Vector2(-485.451996F, -301.130005F), new Vector2(-486.832001F, -300.667999F), new Vector2(-488.559998F, -300.667999F));
+ builder.AddCubicBezier(new Vector2(-489.880005F, -300.667999F), new Vector2(-491.019989F, -300.902008F), new Vector2(-491.980011F, -301.369995F));
+ builder.AddCubicBezier(new Vector2(-492.940002F, -301.838013F), new Vector2(-493.768005F, -302.515991F), new Vector2(-494.463989F, -303.403992F));
+ builder.AddLine(new Vector2(-496.588013F, -301.279999F));
+ builder.AddCubicBezier(new Vector2(-495.747986F, -300.104004F), new Vector2(-494.656006F, -299.191986F), new Vector2(-493.312012F, -298.544006F));
+ builder.AddCubicBezier(new Vector2(-491.967987F, -297.895996F), new Vector2(-490.40799F, -297.571991F), new Vector2(-488.631989F, -297.571991F));
+ builder.AddCubicBezier(new Vector2(-486.855988F, -297.571991F), new Vector2(-485.290009F, -297.914001F), new Vector2(-483.93399F, -298.597992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0312()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-512.211975F, -305.096008F));
+ builder.AddLine(new Vector2(-512.211975F, -322.196014F));
+ builder.AddLine(new Vector2(-515.452026F, -322.196014F));
+ builder.AddLine(new Vector2(-515.452026F, -305.096008F));
+ builder.AddLine(new Vector2(-512.211975F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-500.115997F, -305.096008F));
+ builder.AddLine(new Vector2(-500.115997F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-500.115997F, -316.891998F), new Vector2(-500.403992F, -318.002014F), new Vector2(-500.980011F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-501.556F, -320.089996F), new Vector2(-502.34201F, -320.936005F), new Vector2(-503.338013F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-504.334015F, -322.231995F), new Vector2(-505.480011F, -322.556F), new Vector2(-506.776001F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-508.071991F, -322.556F), new Vector2(-509.235992F, -322.261993F), new Vector2(-510.268005F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-511.299988F, -321.085999F), new Vector2(-512.104004F, -320.287994F), new Vector2(-512.679993F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-513.255981F, -318.272003F), new Vector2(-513.544006F, -317.119995F), new Vector2(-513.544006F, -315.824005F));
+ builder.AddLine(new Vector2(-512.211975F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-512.211975F, -315.932007F), new Vector2(-512.02002F, -316.700012F), new Vector2(-511.635986F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-511.252014F, -318.044006F), new Vector2(-510.723999F, -318.571991F), new Vector2(-510.052002F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-509.380005F, -319.339996F), new Vector2(-508.612F, -319.532013F), new Vector2(-507.747986F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-506.451996F, -319.532013F), new Vector2(-505.402008F, -319.112F), new Vector2(-504.597992F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-503.794006F, -317.432007F), new Vector2(-503.391998F, -316.364014F), new Vector2(-503.391998F, -315.067993F));
+ builder.AddLine(new Vector2(-503.391998F, -305.096008F));
+ builder.AddLine(new Vector2(-500.115997F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0313()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-520.383972F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-520F, -326.605988F), new Vector2(-519.807983F, -327.104004F), new Vector2(-519.807983F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-519.807983F, -328.279999F), new Vector2(-520F, -328.765991F), new Vector2(-520.383972F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-520.768005F, -329.558014F), new Vector2(-521.26001F, -329.756012F), new Vector2(-521.859985F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-522.460022F, -329.756012F), new Vector2(-522.952026F, -329.558014F), new Vector2(-523.335999F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-523.719971F, -328.765991F), new Vector2(-523.911987F, -328.279999F), new Vector2(-523.911987F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-523.911987F, -327.104004F), new Vector2(-523.719971F, -326.605988F), new Vector2(-523.335999F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-522.952026F, -325.813995F), new Vector2(-522.460022F, -325.615997F), new Vector2(-521.859985F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-521.26001F, -325.615997F), new Vector2(-520.768005F, -325.813995F), new Vector2(-520.383972F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-520.23999F, -305.096008F));
+ builder.AddLine(new Vector2(-520.23999F, -322.196014F));
+ builder.AddLine(new Vector2(-523.515991F, -322.196014F));
+ builder.AddLine(new Vector2(-523.515991F, -305.096008F));
+ builder.AddLine(new Vector2(-520.23999F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0314()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-528.231995F, -330.799988F));
+ builder.AddLine(new Vector2(-531.507996F, -330.799988F));
+ builder.AddLine(new Vector2(-531.507996F, -318.019989F));
+ builder.AddLine(new Vector2(-530.895996F, -313.880005F));
+ builder.AddLine(new Vector2(-531.507996F, -309.70401F));
+ builder.AddLine(new Vector2(-531.507996F, -305.096008F));
+ builder.AddLine(new Vector2(-528.231995F, -305.096008F));
+ builder.AddLine(new Vector2(-528.231995F, -330.799988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-539.554016F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-540.382019F, -309.026001F), new Vector2(-541.030029F, -309.716003F), new Vector2(-541.497986F, -310.604004F));
+ builder.AddCubicBezier(new Vector2(-541.966003F, -311.492004F), new Vector2(-542.200012F, -312.511993F), new Vector2(-542.200012F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-542.200012F, -314.81601F), new Vector2(-541.966003F, -315.829987F), new Vector2(-541.497986F, -316.705994F));
+ builder.AddCubicBezier(new Vector2(-541.030029F, -317.582001F), new Vector2(-540.388F, -318.265991F), new Vector2(-539.572021F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(-538.755981F, -319.25F), new Vector2(-537.807983F, -319.496002F), new Vector2(-536.728027F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-535.64801F, -319.496002F), new Vector2(-534.700012F, -319.243988F), new Vector2(-533.883972F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-533.067993F, -318.235992F), new Vector2(-532.432007F, -317.54599F), new Vector2(-531.976013F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-531.52002F, -315.794006F), new Vector2(-531.291992F, -314.779999F), new Vector2(-531.291992F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-531.291992F, -312.5F), new Vector2(-531.52002F, -311.497986F), new Vector2(-531.976013F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-532.432007F, -309.746002F), new Vector2(-533.067993F, -309.056F), new Vector2(-533.883972F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-534.700012F, -308.048004F), new Vector2(-535.64801F, -307.79599F), new Vector2(-536.728027F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-537.783997F, -307.79599F), new Vector2(-538.726013F, -308.041992F), new Vector2(-539.554016F, -308.533997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-533.73999F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-532.708008F, -306.085999F), new Vector2(-531.880005F, -306.835999F), new Vector2(-531.255981F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-530.632019F, -308.756012F), new Vector2(-530.283997F, -309.847992F), new Vector2(-530.211975F, -311.071991F));
+ builder.AddLine(new Vector2(-530.211975F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-530.283997F, -317.467987F), new Vector2(-530.638F, -318.56601F), new Vector2(-531.273987F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-531.909973F, -320.462006F), new Vector2(-532.744019F, -321.205994F), new Vector2(-533.776001F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-534.807983F, -322.286011F), new Vector2(-535.971985F, -322.556F), new Vector2(-537.268005F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-538.828003F, -322.556F), new Vector2(-540.231995F, -322.160004F), new Vector2(-541.47998F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-542.728027F, -320.575989F), new Vector2(-543.718018F, -319.507996F), new Vector2(-544.450012F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-545.182007F, -316.820007F), new Vector2(-545.547974F, -315.308014F), new Vector2(-545.547974F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-545.547974F, -311.947998F), new Vector2(-545.182007F, -310.436005F), new Vector2(-544.450012F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-543.718018F, -307.747986F), new Vector2(-542.728027F, -306.686005F), new Vector2(-541.47998F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-540.231995F, -305.126007F), new Vector2(-538.828003F, -304.735992F), new Vector2(-537.268005F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-535.947998F, -304.735992F), new Vector2(-534.771973F, -305.006012F), new Vector2(-533.73999F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0315()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-553.971985F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-553.203979F, -319.112F), new Vector2(-552.219971F, -319.496002F), new Vector2(-551.02002F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-550.44397F, -319.496002F), new Vector2(-549.940002F, -319.411987F), new Vector2(-549.507996F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-549.075989F, -319.075989F), new Vector2(-548.679993F, -318.799988F), new Vector2(-548.320007F, -318.415985F));
+ builder.AddLine(new Vector2(-546.195984F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-546.796021F, -321.308014F), new Vector2(-547.44397F, -321.806F), new Vector2(-548.140015F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-548.835999F, -322.406006F), new Vector2(-549.616028F, -322.556F), new Vector2(-550.47998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-552.375977F, -322.556F), new Vector2(-553.828003F, -321.90799F), new Vector2(-554.835999F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-555.843994F, -319.31601F), new Vector2(-556.348022F, -317.575989F), new Vector2(-556.348022F, -315.391998F));
+ builder.AddLine(new Vector2(-555.124023F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-555.124023F, -316.399994F), new Vector2(-554.73999F, -317.575989F), new Vector2(-553.971985F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-555.124023F, -305.096008F));
+ builder.AddLine(new Vector2(-555.124023F, -322.196014F));
+ builder.AddLine(new Vector2(-558.364014F, -322.196014F));
+ builder.AddLine(new Vector2(-558.364014F, -305.096008F));
+ builder.AddLine(new Vector2(-555.124023F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0316()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-563.080017F, -305.096008F));
+ builder.AddLine(new Vector2(-563.080017F, -322.196014F));
+ builder.AddLine(new Vector2(-566.356018F, -322.196014F));
+ builder.AddLine(new Vector2(-566.356018F, -318.019989F));
+ builder.AddLine(new Vector2(-565.744019F, -313.880005F));
+ builder.AddLine(new Vector2(-566.356018F, -309.70401F));
+ builder.AddLine(new Vector2(-566.356018F, -305.096008F));
+ builder.AddLine(new Vector2(-563.080017F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-574.383972F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-575.223999F, -309.056F), new Vector2(-575.877991F, -309.746002F), new Vector2(-576.346008F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-576.814026F, -311.497986F), new Vector2(-577.047974F, -312.511993F), new Vector2(-577.047974F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-577.047974F, -314.791992F), new Vector2(-576.814026F, -315.794006F), new Vector2(-576.346008F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-575.877991F, -317.54599F), new Vector2(-575.22998F, -318.235992F), new Vector2(-574.401978F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-573.573975F, -319.243988F), new Vector2(-572.619995F, -319.496002F), new Vector2(-571.539978F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-570.460022F, -319.496002F), new Vector2(-569.518005F, -319.25F), new Vector2(-568.713989F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(-567.909973F, -318.265991F), new Vector2(-567.280029F, -317.575989F), new Vector2(-566.823975F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(-566.367981F, -315.799988F), new Vector2(-566.140015F, -314.779999F), new Vector2(-566.140015F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-566.140015F, -311.924011F), new Vector2(-566.632019F, -310.526001F), new Vector2(-567.616028F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(-568.599976F, -308.34201F), new Vector2(-569.895996F, -307.79599F), new Vector2(-571.504028F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-572.583984F, -307.79599F), new Vector2(-573.544006F, -308.048004F), new Vector2(-574.383972F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-568.552002F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-567.52002F, -306.085999F), new Vector2(-566.697998F, -306.835999F), new Vector2(-566.085999F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-565.473999F, -308.756012F), new Vector2(-565.132019F, -309.847992F), new Vector2(-565.059998F, -311.071991F));
+ builder.AddLine(new Vector2(-565.059998F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-565.132019F, -317.467987F), new Vector2(-565.47998F, -318.56601F), new Vector2(-566.104004F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-566.728027F, -320.462006F), new Vector2(-567.549988F, -321.205994F), new Vector2(-568.570007F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-569.590027F, -322.286011F), new Vector2(-570.747986F, -322.556F), new Vector2(-572.044006F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-573.627991F, -322.556F), new Vector2(-575.049988F, -322.160004F), new Vector2(-576.309998F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-577.570007F, -320.575989F), new Vector2(-578.565979F, -319.507996F), new Vector2(-579.297974F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-580.030029F, -316.820007F), new Vector2(-580.395996F, -315.308014F), new Vector2(-580.395996F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-580.395996F, -311.947998F), new Vector2(-580.030029F, -310.436005F), new Vector2(-579.297974F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-578.565979F, -307.747986F), new Vector2(-577.570007F, -306.686005F), new Vector2(-576.309998F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-575.049988F, -305.126007F), new Vector2(-573.627991F, -304.735992F), new Vector2(-572.044006F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-570.747986F, -304.735992F), new Vector2(-569.583984F, -305.006012F), new Vector2(-568.552002F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0317()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-595.245972F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-596.073975F, -309.614014F), new Vector2(-596.721985F, -310.268005F), new Vector2(-597.190002F, -311.108002F));
+ builder.AddCubicBezier(new Vector2(-597.65802F, -311.947998F), new Vector2(-597.892029F, -312.90799F), new Vector2(-597.892029F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(-597.892029F, -315.067993F), new Vector2(-597.65802F, -316.022003F), new Vector2(-597.190002F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(-596.721985F, -317.678009F), new Vector2(-596.080017F, -318.325989F), new Vector2(-595.263977F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(-594.447998F, -319.261993F), new Vector2(-593.5F, -319.496002F), new Vector2(-592.419983F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-591.364014F, -319.496002F), new Vector2(-590.434021F, -319.261993F), new Vector2(-589.630005F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(-588.825989F, -318.325989F), new Vector2(-588.202026F, -317.678009F), new Vector2(-587.757996F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(-587.314026F, -316.022003F), new Vector2(-587.09198F, -315.056F), new Vector2(-587.09198F, -313.951996F));
+ builder.AddCubicBezier(new Vector2(-587.09198F, -312.847992F), new Vector2(-587.314026F, -311.881989F), new Vector2(-587.757996F, -311.053986F));
+ builder.AddCubicBezier(new Vector2(-588.202026F, -310.226013F), new Vector2(-588.820007F, -309.584015F), new Vector2(-589.612F, -309.127991F));
+ builder.AddCubicBezier(new Vector2(-590.403992F, -308.671997F), new Vector2(-591.340027F, -308.444F), new Vector2(-592.419983F, -308.444F));
+ builder.AddCubicBezier(new Vector2(-593.476013F, -308.444F), new Vector2(-594.41803F, -308.678009F), new Vector2(-595.245972F, -309.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-589.504028F, -306.175995F));
+ builder.AddCubicBezier(new Vector2(-588.471985F, -306.70401F), new Vector2(-587.650024F, -307.441986F), new Vector2(-587.038025F, -308.390015F));
+ builder.AddCubicBezier(new Vector2(-586.426025F, -309.338013F), new Vector2(-586.083984F, -310.436005F), new Vector2(-586.012024F, -311.68399F));
+ builder.AddLine(new Vector2(-586.012024F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-586.083984F, -317.492004F), new Vector2(-586.419983F, -318.60199F), new Vector2(-587.02002F, -319.549988F));
+ builder.AddCubicBezier(new Vector2(-587.619995F, -320.497986F), new Vector2(-588.442017F, -321.235992F), new Vector2(-589.486023F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(-590.530029F, -322.291992F), new Vector2(-591.723999F, -322.556F), new Vector2(-593.067993F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-594.604004F, -322.556F), new Vector2(-595.995972F, -322.178009F), new Vector2(-597.244019F, -321.421997F));
+ builder.AddCubicBezier(new Vector2(-598.492004F, -320.665985F), new Vector2(-599.469971F, -319.645996F), new Vector2(-600.177979F, -318.362F));
+ builder.AddCubicBezier(new Vector2(-600.885986F, -317.078003F), new Vector2(-601.23999F, -315.619995F), new Vector2(-601.23999F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(-601.23999F, -312.355988F), new Vector2(-600.880005F, -310.885986F), new Vector2(-600.159973F, -309.578003F));
+ builder.AddCubicBezier(new Vector2(-599.440002F, -308.269989F), new Vector2(-598.461975F, -307.243988F), new Vector2(-597.226013F, -306.5F));
+ builder.AddCubicBezier(new Vector2(-595.98999F, -305.756012F), new Vector2(-594.59198F, -305.384003F), new Vector2(-593.031982F, -305.384003F));
+ builder.AddCubicBezier(new Vector2(-591.711975F, -305.384003F), new Vector2(-590.536011F, -305.64801F), new Vector2(-589.504028F, -306.175995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-588.333984F, -298.597992F));
+ builder.AddCubicBezier(new Vector2(-586.978027F, -299.282013F), new Vector2(-585.921997F, -300.242004F), new Vector2(-585.166016F, -301.477997F));
+ builder.AddCubicBezier(new Vector2(-584.409973F, -302.713989F), new Vector2(-584.031982F, -304.14801F), new Vector2(-584.031982F, -305.779999F));
+ builder.AddLine(new Vector2(-584.031982F, -322.196014F));
+ builder.AddLine(new Vector2(-587.271973F, -322.196014F));
+ builder.AddLine(new Vector2(-587.271973F, -317.696014F));
+ builder.AddLine(new Vector2(-586.695984F, -313.880005F));
+ builder.AddLine(new Vector2(-587.271973F, -310.028015F));
+ builder.AddLine(new Vector2(-587.271973F, -305.779999F));
+ builder.AddCubicBezier(new Vector2(-587.271973F, -304.220001F), new Vector2(-587.788025F, -302.977997F), new Vector2(-588.820007F, -302.053986F));
+ builder.AddCubicBezier(new Vector2(-589.85199F, -301.130005F), new Vector2(-591.231995F, -300.667999F), new Vector2(-592.960022F, -300.667999F));
+ builder.AddCubicBezier(new Vector2(-594.280029F, -300.667999F), new Vector2(-595.419983F, -300.902008F), new Vector2(-596.380005F, -301.369995F));
+ builder.AddCubicBezier(new Vector2(-597.340027F, -301.838013F), new Vector2(-598.16803F, -302.515991F), new Vector2(-598.864014F, -303.403992F));
+ builder.AddLine(new Vector2(-600.987976F, -301.279999F));
+ builder.AddCubicBezier(new Vector2(-600.14801F, -300.104004F), new Vector2(-599.05603F, -299.191986F), new Vector2(-597.711975F, -298.544006F));
+ builder.AddCubicBezier(new Vector2(-596.367981F, -297.895996F), new Vector2(-594.807983F, -297.571991F), new Vector2(-593.031982F, -297.571991F));
+ builder.AddCubicBezier(new Vector2(-591.255981F, -297.571991F), new Vector2(-589.690002F, -297.914001F), new Vector2(-588.333984F, -298.597992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0318()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-607.719971F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-606.544006F, -305.996002F), new Vector2(-605.536011F, -306.727997F), new Vector2(-604.695984F, -307.687988F));
+ builder.AddLine(new Vector2(-606.783997F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-607.359985F, -309.140015F), new Vector2(-608.049988F, -308.635986F), new Vector2(-608.854004F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-609.65802F, -307.963989F), new Vector2(-610.539978F, -307.79599F), new Vector2(-611.5F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-612.651978F, -307.79599F), new Vector2(-613.671997F, -308.041992F), new Vector2(-614.559998F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-615.447998F, -309.026001F), new Vector2(-616.132019F, -309.721985F), new Vector2(-616.612F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-617.09198F, -311.522003F), new Vector2(-617.33197F, -312.571991F), new Vector2(-617.33197F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-617.33197F, -314.947998F), new Vector2(-617.104004F, -315.967987F), new Vector2(-616.64801F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-616.192017F, -317.696014F), new Vector2(-615.544006F, -318.368011F), new Vector2(-614.703979F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-613.864014F, -319.328003F), new Vector2(-612.892029F, -319.567993F), new Vector2(-611.788025F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-610.731995F, -319.567993F), new Vector2(-609.83197F, -319.346008F), new Vector2(-609.088013F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-608.343994F, -318.458008F), new Vector2(-607.768005F, -317.834015F), new Vector2(-607.359985F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-606.952026F, -316.226013F), new Vector2(-606.747986F, -315.247986F), new Vector2(-606.747986F, -314.096008F));
+ builder.AddLine(new Vector2(-605.559998F, -315.140015F));
+ builder.AddLine(new Vector2(-618.268005F, -315.140015F));
+ builder.AddLine(new Vector2(-618.268005F, -312.440002F));
+ builder.AddLine(new Vector2(-603.83197F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-603.76001F, -312.776001F), new Vector2(-603.711975F, -313.082001F), new Vector2(-603.687988F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-603.664001F, -313.634003F), new Vector2(-603.651978F, -313.891998F), new Vector2(-603.651978F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-603.651978F, -315.764008F), new Vector2(-603.994019F, -317.216003F), new Vector2(-604.677979F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-605.362F, -319.76001F), new Vector2(-606.315979F, -320.756012F), new Vector2(-607.539978F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-608.763977F, -322.196014F), new Vector2(-610.156006F, -322.556F), new Vector2(-611.716003F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-613.372009F, -322.556F), new Vector2(-614.866028F, -322.165985F), new Vector2(-616.197998F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-617.530029F, -320.605988F), new Vector2(-618.585999F, -319.544006F), new Vector2(-619.366028F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-620.145996F, -316.855988F), new Vector2(-620.536011F, -315.343994F), new Vector2(-620.536011F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-620.536011F, -311.959991F), new Vector2(-620.140015F, -310.436005F), new Vector2(-619.348022F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-618.55603F, -307.747986F), new Vector2(-617.481995F, -306.686005F), new Vector2(-616.125977F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-614.77002F, -305.126007F), new Vector2(-613.228027F, -304.735992F), new Vector2(-611.5F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-610.156006F, -304.735992F), new Vector2(-608.895996F, -304.988007F), new Vector2(-607.719971F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0319()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-628.924011F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-628.156006F, -319.112F), new Vector2(-627.171997F, -319.496002F), new Vector2(-625.971985F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-625.395996F, -319.496002F), new Vector2(-624.892029F, -319.411987F), new Vector2(-624.460022F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-624.028015F, -319.075989F), new Vector2(-623.632019F, -318.799988F), new Vector2(-623.271973F, -318.415985F));
+ builder.AddLine(new Vector2(-621.14801F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-621.747986F, -321.308014F), new Vector2(-622.395996F, -321.806F), new Vector2(-623.09198F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-623.788025F, -322.406006F), new Vector2(-624.567993F, -322.556F), new Vector2(-625.432007F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-627.328003F, -322.556F), new Vector2(-628.780029F, -321.90799F), new Vector2(-629.788025F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-630.796021F, -319.31601F), new Vector2(-631.299988F, -317.575989F), new Vector2(-631.299988F, -315.391998F));
+ builder.AddLine(new Vector2(-630.075989F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-630.075989F, -316.399994F), new Vector2(-629.692017F, -317.575989F), new Vector2(-628.924011F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-630.075989F, -305.096008F));
+ builder.AddLine(new Vector2(-630.075989F, -322.196014F));
+ builder.AddLine(new Vector2(-633.315979F, -322.196014F));
+ builder.AddLine(new Vector2(-633.315979F, -305.096008F));
+ builder.AddLine(new Vector2(-630.075989F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0320()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-657.255981F, -305.096008F));
+ builder.AddLine(new Vector2(-657.255981F, -322.196014F));
+ builder.AddLine(new Vector2(-660.495972F, -322.196014F));
+ builder.AddLine(new Vector2(-660.495972F, -305.096008F));
+ builder.AddLine(new Vector2(-657.255981F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-645.159973F, -305.096008F));
+ builder.AddLine(new Vector2(-645.159973F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-645.159973F, -316.891998F), new Vector2(-645.447998F, -318.002014F), new Vector2(-646.023987F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-646.599976F, -320.089996F), new Vector2(-647.385986F, -320.936005F), new Vector2(-648.382019F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-649.377991F, -322.231995F), new Vector2(-650.523987F, -322.556F), new Vector2(-651.820007F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-653.116028F, -322.556F), new Vector2(-654.280029F, -322.261993F), new Vector2(-655.312012F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-656.343994F, -321.085999F), new Vector2(-657.14801F, -320.287994F), new Vector2(-657.723999F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-658.299988F, -318.272003F), new Vector2(-658.588013F, -317.119995F), new Vector2(-658.588013F, -315.824005F));
+ builder.AddLine(new Vector2(-657.255981F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-657.255981F, -315.932007F), new Vector2(-657.064026F, -316.700012F), new Vector2(-656.679993F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-656.296021F, -318.044006F), new Vector2(-655.768005F, -318.571991F), new Vector2(-655.096008F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-654.424011F, -319.339996F), new Vector2(-653.656006F, -319.532013F), new Vector2(-652.791992F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-651.495972F, -319.532013F), new Vector2(-650.445984F, -319.112F), new Vector2(-649.642029F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-648.838013F, -317.432007F), new Vector2(-648.435974F, -316.364014F), new Vector2(-648.435974F, -315.067993F));
+ builder.AddLine(new Vector2(-648.435974F, -305.096008F));
+ builder.AddLine(new Vector2(-645.159973F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0321()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-675.903992F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-676.744019F, -309.127991F), new Vector2(-677.403992F, -309.817993F), new Vector2(-677.883972F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-678.364014F, -311.570007F), new Vector2(-678.604004F, -312.571991F), new Vector2(-678.604004F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-678.604004F, -314.803986F), new Vector2(-678.364014F, -315.787994F), new Vector2(-677.883972F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-677.403992F, -317.515991F), new Vector2(-676.744019F, -318.194F), new Vector2(-675.903992F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-675.064026F, -319.178009F), new Vector2(-674.116028F, -319.424011F), new Vector2(-673.059998F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-671.955994F, -319.424011F), new Vector2(-670.98999F, -319.178009F), new Vector2(-670.161987F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-669.333984F, -318.194F), new Vector2(-668.674011F, -317.515991F), new Vector2(-668.182007F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-667.690002F, -315.787994F), new Vector2(-667.44397F, -314.803986F), new Vector2(-667.44397F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-667.44397F, -312.571991F), new Vector2(-667.684021F, -311.570007F), new Vector2(-668.164001F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-668.643982F, -309.817993F), new Vector2(-669.304016F, -309.127991F), new Vector2(-670.143982F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-670.984009F, -308.119995F), new Vector2(-671.955994F, -307.868011F), new Vector2(-673.059998F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-674.116028F, -307.868011F), new Vector2(-675.064026F, -308.119995F), new Vector2(-675.903992F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-668.505981F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-667.150024F, -306.716003F), new Vector2(-666.075989F, -307.790009F), new Vector2(-665.283997F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-664.492004F, -310.502014F), new Vector2(-664.096008F, -312.019989F), new Vector2(-664.096008F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-664.096008F, -315.355988F), new Vector2(-664.492004F, -316.855988F), new Vector2(-665.283997F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-666.075989F, -319.544006F), new Vector2(-667.150024F, -320.605988F), new Vector2(-668.505981F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-669.862F, -322.165985F), new Vector2(-671.380005F, -322.556F), new Vector2(-673.059998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-674.716003F, -322.556F), new Vector2(-676.216003F, -322.160004F), new Vector2(-677.559998F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-678.903992F, -320.575989F), new Vector2(-679.971985F, -319.514008F), new Vector2(-680.763977F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-681.55603F, -316.850006F), new Vector2(-681.952026F, -315.355988F), new Vector2(-681.952026F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-681.952026F, -312.019989F), new Vector2(-681.55603F, -310.502014F), new Vector2(-680.763977F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-679.971985F, -307.790009F), new Vector2(-678.903992F, -306.716003F), new Vector2(-677.559998F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-676.216003F, -305.131989F), new Vector2(-674.716003F, -304.735992F), new Vector2(-673.059998F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-671.380005F, -304.735992F), new Vector2(-669.862F, -305.131989F), new Vector2(-668.505981F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0322()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-685.768005F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-685.383972F, -326.605988F), new Vector2(-685.192017F, -327.104004F), new Vector2(-685.192017F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-685.192017F, -328.279999F), new Vector2(-685.383972F, -328.765991F), new Vector2(-685.768005F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-686.151978F, -329.558014F), new Vector2(-686.643982F, -329.756012F), new Vector2(-687.244019F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-687.843994F, -329.756012F), new Vector2(-688.335999F, -329.558014F), new Vector2(-688.719971F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-689.104004F, -328.765991F), new Vector2(-689.296021F, -328.279999F), new Vector2(-689.296021F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-689.296021F, -327.104004F), new Vector2(-689.104004F, -326.605988F), new Vector2(-688.719971F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-688.335999F, -325.813995F), new Vector2(-687.843994F, -325.615997F), new Vector2(-687.244019F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-686.643982F, -325.615997F), new Vector2(-686.151978F, -325.813995F), new Vector2(-685.768005F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-685.624023F, -305.096008F));
+ builder.AddLine(new Vector2(-685.624023F, -322.196014F));
+ builder.AddLine(new Vector2(-688.900024F, -322.196014F));
+ builder.AddLine(new Vector2(-688.900024F, -305.096008F));
+ builder.AddLine(new Vector2(-685.624023F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0323()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-692.067993F, -319.243988F));
+ builder.AddLine(new Vector2(-692.067993F, -322.196014F));
+ builder.AddLine(new Vector2(-703.731995F, -322.196014F));
+ builder.AddLine(new Vector2(-703.731995F, -319.243988F));
+ builder.AddLine(new Vector2(-692.067993F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-696.280029F, -305.096008F));
+ builder.AddLine(new Vector2(-696.280029F, -329.359985F));
+ builder.AddLine(new Vector2(-699.52002F, -329.359985F));
+ builder.AddLine(new Vector2(-699.52002F, -305.096008F));
+ builder.AddLine(new Vector2(-696.280029F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0324()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-706.791992F, -305.096008F));
+ builder.AddLine(new Vector2(-706.791992F, -322.196014F));
+ builder.AddLine(new Vector2(-710.067993F, -322.196014F));
+ builder.AddLine(new Vector2(-710.067993F, -318.019989F));
+ builder.AddLine(new Vector2(-709.455994F, -313.880005F));
+ builder.AddLine(new Vector2(-710.067993F, -309.70401F));
+ builder.AddLine(new Vector2(-710.067993F, -305.096008F));
+ builder.AddLine(new Vector2(-706.791992F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-718.096008F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-718.935974F, -309.056F), new Vector2(-719.590027F, -309.746002F), new Vector2(-720.057983F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-720.526001F, -311.497986F), new Vector2(-720.76001F, -312.511993F), new Vector2(-720.76001F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-720.76001F, -314.791992F), new Vector2(-720.526001F, -315.794006F), new Vector2(-720.057983F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-719.590027F, -317.54599F), new Vector2(-718.942017F, -318.235992F), new Vector2(-718.114014F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-717.286011F, -319.243988F), new Vector2(-716.33197F, -319.496002F), new Vector2(-715.252014F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-714.171997F, -319.496002F), new Vector2(-713.22998F, -319.25F), new Vector2(-712.426025F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(-711.622009F, -318.265991F), new Vector2(-710.992004F, -317.575989F), new Vector2(-710.536011F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(-710.080017F, -315.799988F), new Vector2(-709.85199F, -314.779999F), new Vector2(-709.85199F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-709.85199F, -311.924011F), new Vector2(-710.343994F, -310.526001F), new Vector2(-711.328003F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(-712.312012F, -308.34201F), new Vector2(-713.607971F, -307.79599F), new Vector2(-715.216003F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-716.296021F, -307.79599F), new Vector2(-717.255981F, -308.048004F), new Vector2(-718.096008F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-712.263977F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-711.231995F, -306.085999F), new Vector2(-710.409973F, -306.835999F), new Vector2(-709.797974F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-709.185974F, -308.756012F), new Vector2(-708.843994F, -309.847992F), new Vector2(-708.771973F, -311.071991F));
+ builder.AddLine(new Vector2(-708.771973F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-708.843994F, -317.467987F), new Vector2(-709.192017F, -318.56601F), new Vector2(-709.815979F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-710.440002F, -320.462006F), new Vector2(-711.262024F, -321.205994F), new Vector2(-712.281982F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-713.302002F, -322.286011F), new Vector2(-714.460022F, -322.556F), new Vector2(-715.755981F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-717.340027F, -322.556F), new Vector2(-718.762024F, -322.160004F), new Vector2(-720.021973F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-721.281982F, -320.575989F), new Vector2(-722.278015F, -319.507996F), new Vector2(-723.01001F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-723.742004F, -316.820007F), new Vector2(-724.107971F, -315.308014F), new Vector2(-724.107971F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-724.107971F, -311.947998F), new Vector2(-723.742004F, -310.436005F), new Vector2(-723.01001F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-722.278015F, -307.747986F), new Vector2(-721.281982F, -306.686005F), new Vector2(-720.021973F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-718.762024F, -305.126007F), new Vector2(-717.340027F, -304.735992F), new Vector2(-715.755981F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-714.460022F, -304.735992F), new Vector2(-713.296021F, -305.006012F), new Vector2(-712.263977F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0325()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-727.419983F, -305.096008F));
+ builder.AddLine(new Vector2(-727.419983F, -316.075989F));
+ builder.AddCubicBezier(new Vector2(-727.419983F, -317.420013F), new Vector2(-727.713989F, -318.571991F), new Vector2(-728.302002F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-728.890015F, -320.492004F), new Vector2(-729.676025F, -321.235992F), new Vector2(-730.659973F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(-731.643982F, -322.291992F), new Vector2(-732.76001F, -322.556F), new Vector2(-734.007996F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-735.208008F, -322.556F), new Vector2(-736.312012F, -322.286011F), new Vector2(-737.320007F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-738.328003F, -321.205994F), new Vector2(-739.150024F, -320.462006F), new Vector2(-739.786011F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-740.421997F, -318.56601F), new Vector2(-740.776001F, -317.432007F), new Vector2(-740.848022F, -316.112F));
+ builder.AddLine(new Vector2(-739.012024F, -315.428009F));
+ builder.AddCubicBezier(new Vector2(-739.012024F, -316.291992F), new Vector2(-738.820007F, -317.023987F), new Vector2(-738.435974F, -317.623993F));
+ builder.AddCubicBezier(new Vector2(-738.052002F, -318.223999F), new Vector2(-737.541992F, -318.691986F), new Vector2(-736.906006F, -319.028015F));
+ builder.AddCubicBezier(new Vector2(-736.27002F, -319.364014F), new Vector2(-735.55603F, -319.532013F), new Vector2(-734.763977F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-733.612F, -319.532013F), new Vector2(-732.645996F, -319.165985F), new Vector2(-731.866028F, -318.43399F));
+ builder.AddCubicBezier(new Vector2(-731.085999F, -317.701996F), new Vector2(-730.695984F, -316.700012F), new Vector2(-730.695984F, -315.428009F));
+ builder.AddLine(new Vector2(-730.695984F, -305.096008F));
+ builder.AddLine(new Vector2(-727.419983F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-739.012024F, -305.096008F));
+ builder.AddLine(new Vector2(-739.012024F, -316.112F));
+ builder.AddCubicBezier(new Vector2(-739.012024F, -317.432007F), new Vector2(-739.294006F, -318.571991F), new Vector2(-739.857971F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-740.421997F, -320.492004F), new Vector2(-741.190002F, -321.235992F), new Vector2(-742.161987F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(-743.133972F, -322.291992F), new Vector2(-744.219971F, -322.556F), new Vector2(-745.419983F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-746.643982F, -322.556F), new Vector2(-747.747986F, -322.286011F), new Vector2(-748.731995F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-749.716003F, -321.205994F), new Vector2(-750.48999F, -320.455994F), new Vector2(-751.054016F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-751.617981F, -318.536011F), new Vector2(-751.900024F, -317.40799F), new Vector2(-751.900024F, -316.112F));
+ builder.AddLine(new Vector2(-750.567993F, -315.428009F));
+ builder.AddCubicBezier(new Vector2(-750.567993F, -316.291992F), new Vector2(-750.375977F, -317.023987F), new Vector2(-749.992004F, -317.623993F));
+ builder.AddCubicBezier(new Vector2(-749.607971F, -318.223999F), new Vector2(-749.104004F, -318.691986F), new Vector2(-748.47998F, -319.028015F));
+ builder.AddCubicBezier(new Vector2(-747.856018F, -319.364014F), new Vector2(-747.14801F, -319.532013F), new Vector2(-746.356018F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-745.179993F, -319.532013F), new Vector2(-744.202026F, -319.165985F), new Vector2(-743.421997F, -318.43399F));
+ builder.AddCubicBezier(new Vector2(-742.642029F, -317.701996F), new Vector2(-742.252014F, -316.700012F), new Vector2(-742.252014F, -315.428009F));
+ builder.AddLine(new Vector2(-742.252014F, -305.096008F));
+ builder.AddLine(new Vector2(-739.012024F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-750.567993F, -305.096008F));
+ builder.AddLine(new Vector2(-750.567993F, -322.196014F));
+ builder.AddLine(new Vector2(-753.807983F, -322.196014F));
+ builder.AddLine(new Vector2(-753.807983F, -305.096008F));
+ builder.AddLine(new Vector2(-750.567993F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0326()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-763.924011F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-763.156006F, -319.112F), new Vector2(-762.171997F, -319.496002F), new Vector2(-760.971985F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-760.395996F, -319.496002F), new Vector2(-759.892029F, -319.411987F), new Vector2(-759.460022F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-759.028015F, -319.075989F), new Vector2(-758.632019F, -318.799988F), new Vector2(-758.271973F, -318.415985F));
+ builder.AddLine(new Vector2(-756.14801F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-756.747986F, -321.308014F), new Vector2(-757.395996F, -321.806F), new Vector2(-758.09198F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-758.788025F, -322.406006F), new Vector2(-759.567993F, -322.556F), new Vector2(-760.432007F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-762.328003F, -322.556F), new Vector2(-763.780029F, -321.90799F), new Vector2(-764.788025F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-765.796021F, -319.31601F), new Vector2(-766.299988F, -317.575989F), new Vector2(-766.299988F, -315.391998F));
+ builder.AddLine(new Vector2(-765.075989F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-765.075989F, -316.399994F), new Vector2(-764.692017F, -317.575989F), new Vector2(-763.924011F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-765.075989F, -305.096008F));
+ builder.AddLine(new Vector2(-765.075989F, -322.196014F));
+ builder.AddLine(new Vector2(-768.315979F, -322.196014F));
+ builder.AddLine(new Vector2(-768.315979F, -305.096008F));
+ builder.AddLine(new Vector2(-765.075989F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0327()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-783.723999F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-784.564026F, -309.127991F), new Vector2(-785.223999F, -309.817993F), new Vector2(-785.703979F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-786.184021F, -311.570007F), new Vector2(-786.424011F, -312.571991F), new Vector2(-786.424011F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-786.424011F, -314.803986F), new Vector2(-786.184021F, -315.787994F), new Vector2(-785.703979F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-785.223999F, -317.515991F), new Vector2(-784.564026F, -318.194F), new Vector2(-783.723999F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-782.883972F, -319.178009F), new Vector2(-781.935974F, -319.424011F), new Vector2(-780.880005F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-779.776001F, -319.424011F), new Vector2(-778.809998F, -319.178009F), new Vector2(-777.981995F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-777.153992F, -318.194F), new Vector2(-776.494019F, -317.515991F), new Vector2(-776.002014F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-775.51001F, -315.787994F), new Vector2(-775.263977F, -314.803986F), new Vector2(-775.263977F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-775.263977F, -312.571991F), new Vector2(-775.504028F, -311.570007F), new Vector2(-775.984009F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-776.463989F, -309.817993F), new Vector2(-777.124023F, -309.127991F), new Vector2(-777.963989F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-778.804016F, -308.119995F), new Vector2(-779.776001F, -307.868011F), new Vector2(-780.880005F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-781.935974F, -307.868011F), new Vector2(-782.883972F, -308.119995F), new Vector2(-783.723999F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-776.325989F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-774.969971F, -306.716003F), new Vector2(-773.895996F, -307.790009F), new Vector2(-773.104004F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-772.312012F, -310.502014F), new Vector2(-771.916016F, -312.019989F), new Vector2(-771.916016F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-771.916016F, -315.355988F), new Vector2(-772.312012F, -316.855988F), new Vector2(-773.104004F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-773.895996F, -319.544006F), new Vector2(-774.969971F, -320.605988F), new Vector2(-776.325989F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-777.682007F, -322.165985F), new Vector2(-779.200012F, -322.556F), new Vector2(-780.880005F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-782.536011F, -322.556F), new Vector2(-784.036011F, -322.160004F), new Vector2(-785.380005F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-786.723999F, -320.575989F), new Vector2(-787.791992F, -319.514008F), new Vector2(-788.583984F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-789.375977F, -316.850006F), new Vector2(-789.771973F, -315.355988F), new Vector2(-789.771973F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-789.771973F, -312.019989F), new Vector2(-789.375977F, -310.502014F), new Vector2(-788.583984F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-787.791992F, -307.790009F), new Vector2(-786.723999F, -306.716003F), new Vector2(-785.380005F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-784.036011F, -305.131989F), new Vector2(-782.536011F, -304.735992F), new Vector2(-780.880005F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-779.200012F, -304.735992F), new Vector2(-777.682007F, -305.131989F), new Vector2(-776.325989F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0328()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-790.924011F, -319.243988F));
+ builder.AddLine(new Vector2(-790.924011F, -322.196014F));
+ builder.AddLine(new Vector2(-803.812012F, -322.196014F));
+ builder.AddLine(new Vector2(-803.812012F, -319.243988F));
+ builder.AddLine(new Vector2(-790.924011F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-796.359985F, -305.096008F));
+ builder.AddLine(new Vector2(-796.359985F, -324.752014F));
+ builder.AddCubicBezier(new Vector2(-796.359985F, -325.808014F), new Vector2(-796.078003F, -326.630005F), new Vector2(-795.513977F, -327.217987F));
+ builder.AddCubicBezier(new Vector2(-794.950012F, -327.806F), new Vector2(-794.151978F, -328.100006F), new Vector2(-793.119995F, -328.100006F));
+ builder.AddCubicBezier(new Vector2(-792.567993F, -328.100006F), new Vector2(-792.099976F, -328.015991F), new Vector2(-791.716003F, -327.847992F));
+ builder.AddCubicBezier(new Vector2(-791.33197F, -327.679993F), new Vector2(-790.984009F, -327.428009F), new Vector2(-790.671997F, -327.09201F));
+ builder.AddLine(new Vector2(-788.547974F, -329.179993F));
+ builder.AddCubicBezier(new Vector2(-789.14801F, -329.828003F), new Vector2(-789.807983F, -330.320007F), new Vector2(-790.528015F, -330.656006F));
+ builder.AddCubicBezier(new Vector2(-791.247986F, -330.992004F), new Vector2(-792.099976F, -331.160004F), new Vector2(-793.083984F, -331.160004F));
+ builder.AddCubicBezier(new Vector2(-794.380005F, -331.160004F), new Vector2(-795.52002F, -330.884003F), new Vector2(-796.504028F, -330.332001F));
+ builder.AddCubicBezier(new Vector2(-797.487976F, -329.779999F), new Vector2(-798.255981F, -329.023987F), new Vector2(-798.807983F, -328.063995F));
+ builder.AddCubicBezier(new Vector2(-799.359985F, -327.104004F), new Vector2(-799.635986F, -326F), new Vector2(-799.635986F, -324.752014F));
+ builder.AddLine(new Vector2(-799.635986F, -305.096008F));
+ builder.AddLine(new Vector2(-796.359985F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0329()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-818.320007F, -305.096008F));
+ builder.AddLine(new Vector2(-818.320007F, -322.196014F));
+ builder.AddLine(new Vector2(-821.559998F, -322.196014F));
+ builder.AddLine(new Vector2(-821.559998F, -305.096008F));
+ builder.AddLine(new Vector2(-818.320007F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-806.223999F, -305.096008F));
+ builder.AddLine(new Vector2(-806.223999F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-806.223999F, -316.891998F), new Vector2(-806.512024F, -318.002014F), new Vector2(-807.088013F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-807.664001F, -320.089996F), new Vector2(-808.450012F, -320.936005F), new Vector2(-809.445984F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-810.442017F, -322.231995F), new Vector2(-811.588013F, -322.556F), new Vector2(-812.883972F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-814.179993F, -322.556F), new Vector2(-815.343994F, -322.261993F), new Vector2(-816.375977F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-817.40802F, -321.085999F), new Vector2(-818.211975F, -320.287994F), new Vector2(-818.788025F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-819.364014F, -318.272003F), new Vector2(-819.651978F, -317.119995F), new Vector2(-819.651978F, -315.824005F));
+ builder.AddLine(new Vector2(-818.320007F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-818.320007F, -315.932007F), new Vector2(-818.127991F, -316.700012F), new Vector2(-817.744019F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-817.359985F, -318.044006F), new Vector2(-816.83197F, -318.571991F), new Vector2(-816.159973F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-815.487976F, -319.339996F), new Vector2(-814.719971F, -319.532013F), new Vector2(-813.856018F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-812.559998F, -319.532013F), new Vector2(-811.51001F, -319.112F), new Vector2(-810.705994F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-809.901978F, -317.432007F), new Vector2(-809.5F, -316.364014F), new Vector2(-809.5F, -315.067993F));
+ builder.AddLine(new Vector2(-809.5F, -305.096008F));
+ builder.AddLine(new Vector2(-806.223999F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0330()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-826.492004F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-826.107971F, -326.605988F), new Vector2(-825.916016F, -327.104004F), new Vector2(-825.916016F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-825.916016F, -328.279999F), new Vector2(-826.107971F, -328.765991F), new Vector2(-826.492004F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-826.875977F, -329.558014F), new Vector2(-827.367981F, -329.756012F), new Vector2(-827.968018F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-828.567993F, -329.756012F), new Vector2(-829.059998F, -329.558014F), new Vector2(-829.44397F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-829.828003F, -328.765991F), new Vector2(-830.02002F, -328.279999F), new Vector2(-830.02002F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-830.02002F, -327.104004F), new Vector2(-829.828003F, -326.605988F), new Vector2(-829.44397F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-829.059998F, -325.813995F), new Vector2(-828.567993F, -325.615997F), new Vector2(-827.968018F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-827.367981F, -325.615997F), new Vector2(-826.875977F, -325.813995F), new Vector2(-826.492004F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-826.348022F, -305.096008F));
+ builder.AddLine(new Vector2(-826.348022F, -322.196014F));
+ builder.AddLine(new Vector2(-829.624023F, -322.196014F));
+ builder.AddLine(new Vector2(-829.624023F, -305.096008F));
+ builder.AddLine(new Vector2(-826.348022F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0331()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(673.340027F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(674.515991F, -349.196014F), new Vector2(675.523987F, -349.928009F), new Vector2(676.364014F, -350.888F));
+ builder.AddLine(new Vector2(674.276001F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(673.700012F, -352.339996F), new Vector2(673.01001F, -351.835999F), new Vector2(672.205994F, -351.5F));
+ builder.AddCubicBezier(new Vector2(671.401978F, -351.164001F), new Vector2(670.52002F, -350.996002F), new Vector2(669.559998F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(668.40802F, -350.996002F), new Vector2(667.388F, -351.242004F), new Vector2(666.5F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(665.612F, -352.226013F), new Vector2(664.927979F, -352.921997F), new Vector2(664.447998F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(663.968018F, -354.721985F), new Vector2(663.728027F, -355.772003F), new Vector2(663.728027F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(663.728027F, -358.14801F), new Vector2(663.955994F, -359.167999F), new Vector2(664.411987F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(664.867981F, -360.895996F), new Vector2(665.515991F, -361.567993F), new Vector2(666.356018F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(667.195984F, -362.528015F), new Vector2(668.16803F, -362.768005F), new Vector2(669.271973F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(670.328003F, -362.768005F), new Vector2(671.228027F, -362.54599F), new Vector2(671.971985F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(672.716003F, -361.65799F), new Vector2(673.291992F, -361.033997F), new Vector2(673.700012F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(674.107971F, -359.425995F), new Vector2(674.312012F, -358.447998F), new Vector2(674.312012F, -357.29599F));
+ builder.AddLine(new Vector2(675.5F, -358.339996F));
+ builder.AddLine(new Vector2(662.791992F, -358.339996F));
+ builder.AddLine(new Vector2(662.791992F, -355.640015F));
+ builder.AddLine(new Vector2(677.228027F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(677.299988F, -355.976013F), new Vector2(677.348022F, -356.282013F), new Vector2(677.372009F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(677.395996F, -356.834015F), new Vector2(677.40802F, -357.09201F), new Vector2(677.40802F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(677.40802F, -358.963989F), new Vector2(677.065979F, -360.415985F), new Vector2(676.382019F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(675.697998F, -362.959991F), new Vector2(674.744019F, -363.955994F), new Vector2(673.52002F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(672.296021F, -365.395996F), new Vector2(670.903992F, -365.756012F), new Vector2(669.343994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(667.687988F, -365.756012F), new Vector2(666.19397F, -365.365997F), new Vector2(664.862F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(663.530029F, -363.806F), new Vector2(662.473999F, -362.743988F), new Vector2(661.69397F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(660.914001F, -360.056F), new Vector2(660.523987F, -358.544006F), new Vector2(660.523987F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(660.523987F, -355.160004F), new Vector2(660.919983F, -353.635986F), new Vector2(661.711975F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(662.504028F, -350.947998F), new Vector2(663.578003F, -349.885986F), new Vector2(664.934021F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(666.289978F, -348.325989F), new Vector2(667.83197F, -347.936005F), new Vector2(669.559998F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(670.903992F, -347.936005F), new Vector2(672.164001F, -348.187988F), new Vector2(673.340027F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0332()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(657.247986F, -348.29599F));
+ builder.AddLine(new Vector2(657.247986F, -359.276001F));
+ builder.AddCubicBezier(new Vector2(657.247986F, -360.619995F), new Vector2(656.953979F, -361.772003F), new Vector2(656.366028F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(655.778015F, -363.691986F), new Vector2(654.992004F, -364.436005F), new Vector2(654.007996F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(653.023987F, -365.492004F), new Vector2(651.90802F, -365.756012F), new Vector2(650.659973F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(649.460022F, -365.756012F), new Vector2(648.356018F, -365.485992F), new Vector2(647.348022F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(646.340027F, -364.406006F), new Vector2(645.518005F, -363.661987F), new Vector2(644.882019F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(644.245972F, -361.765991F), new Vector2(643.892029F, -360.631989F), new Vector2(643.820007F, -359.312012F));
+ builder.AddLine(new Vector2(645.656006F, -358.627991F));
+ builder.AddCubicBezier(new Vector2(645.656006F, -359.492004F), new Vector2(645.848022F, -360.223999F), new Vector2(646.231995F, -360.824005F));
+ builder.AddCubicBezier(new Vector2(646.616028F, -361.424011F), new Vector2(647.125977F, -361.891998F), new Vector2(647.762024F, -362.227997F));
+ builder.AddCubicBezier(new Vector2(648.39801F, -362.563995F), new Vector2(649.112F, -362.731995F), new Vector2(649.903992F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(651.05603F, -362.731995F), new Vector2(652.021973F, -362.365997F), new Vector2(652.802002F, -361.634003F));
+ builder.AddCubicBezier(new Vector2(653.58197F, -360.902008F), new Vector2(653.971985F, -359.899994F), new Vector2(653.971985F, -358.627991F));
+ builder.AddLine(new Vector2(653.971985F, -348.29599F));
+ builder.AddLine(new Vector2(657.247986F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(645.656006F, -348.29599F));
+ builder.AddLine(new Vector2(645.656006F, -359.312012F));
+ builder.AddCubicBezier(new Vector2(645.656006F, -360.631989F), new Vector2(645.374023F, -361.772003F), new Vector2(644.809998F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(644.245972F, -363.691986F), new Vector2(643.478027F, -364.436005F), new Vector2(642.505981F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(641.533997F, -365.492004F), new Vector2(640.447998F, -365.756012F), new Vector2(639.247986F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(638.023987F, -365.756012F), new Vector2(636.919983F, -365.485992F), new Vector2(635.935974F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(634.952026F, -364.406006F), new Vector2(634.177979F, -363.656006F), new Vector2(633.614014F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(633.049988F, -361.735992F), new Vector2(632.768005F, -360.608002F), new Vector2(632.768005F, -359.312012F));
+ builder.AddLine(new Vector2(634.099976F, -358.627991F));
+ builder.AddCubicBezier(new Vector2(634.099976F, -359.492004F), new Vector2(634.291992F, -360.223999F), new Vector2(634.676025F, -360.824005F));
+ builder.AddCubicBezier(new Vector2(635.059998F, -361.424011F), new Vector2(635.564026F, -361.891998F), new Vector2(636.187988F, -362.227997F));
+ builder.AddCubicBezier(new Vector2(636.812012F, -362.563995F), new Vector2(637.52002F, -362.731995F), new Vector2(638.312012F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(639.487976F, -362.731995F), new Vector2(640.466003F, -362.365997F), new Vector2(641.245972F, -361.634003F));
+ builder.AddCubicBezier(new Vector2(642.026001F, -360.902008F), new Vector2(642.416016F, -359.899994F), new Vector2(642.416016F, -358.627991F));
+ builder.AddLine(new Vector2(642.416016F, -348.29599F));
+ builder.AddLine(new Vector2(645.656006F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(634.099976F, -348.29599F));
+ builder.AddLine(new Vector2(634.099976F, -365.395996F));
+ builder.AddLine(new Vector2(630.859985F, -365.395996F));
+ builder.AddLine(new Vector2(630.859985F, -348.29599F));
+ builder.AddLine(new Vector2(634.099976F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0333()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(615.452026F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(614.612F, -352.328003F), new Vector2(613.952026F, -353.018005F), new Vector2(613.471985F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(612.992004F, -354.769989F), new Vector2(612.752014F, -355.772003F), new Vector2(612.752014F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(612.752014F, -358.003998F), new Vector2(612.992004F, -358.988007F), new Vector2(613.471985F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(613.952026F, -360.716003F), new Vector2(614.612F, -361.394012F), new Vector2(615.452026F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(616.291992F, -362.377991F), new Vector2(617.23999F, -362.623993F), new Vector2(618.296021F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(619.400024F, -362.623993F), new Vector2(620.366028F, -362.377991F), new Vector2(621.19397F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(622.021973F, -361.394012F), new Vector2(622.682007F, -360.716003F), new Vector2(623.174011F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(623.666016F, -358.988007F), new Vector2(623.911987F, -358.003998F), new Vector2(623.911987F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(623.911987F, -355.772003F), new Vector2(623.671997F, -354.769989F), new Vector2(623.192017F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(622.711975F, -353.018005F), new Vector2(622.052002F, -352.328003F), new Vector2(621.211975F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(620.372009F, -351.320007F), new Vector2(619.400024F, -351.067993F), new Vector2(618.296021F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(617.23999F, -351.067993F), new Vector2(616.291992F, -351.320007F), new Vector2(615.452026F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(622.849976F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(624.205994F, -349.915985F), new Vector2(625.280029F, -350.98999F), new Vector2(626.072021F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(626.864014F, -353.701996F), new Vector2(627.26001F, -355.220001F), new Vector2(627.26001F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(627.26001F, -358.556F), new Vector2(626.864014F, -360.056F), new Vector2(626.072021F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(625.280029F, -362.743988F), new Vector2(624.205994F, -363.806F), new Vector2(622.849976F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(621.494019F, -365.365997F), new Vector2(619.976013F, -365.756012F), new Vector2(618.296021F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(616.640015F, -365.756012F), new Vector2(615.140015F, -365.359985F), new Vector2(613.796021F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(612.452026F, -363.776001F), new Vector2(611.383972F, -362.713989F), new Vector2(610.59198F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(609.799988F, -360.049988F), new Vector2(609.403992F, -358.556F), new Vector2(609.403992F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(609.403992F, -355.220001F), new Vector2(609.799988F, -353.701996F), new Vector2(610.59198F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(611.383972F, -350.98999F), new Vector2(612.452026F, -349.915985F), new Vector2(613.796021F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(615.140015F, -348.332001F), new Vector2(616.640015F, -347.936005F), new Vector2(618.296021F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(619.976013F, -347.936005F), new Vector2(621.494019F, -348.332001F), new Vector2(622.849976F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0334()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(605.174011F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(606.314026F, -350.276001F), new Vector2(606.883972F, -351.548004F), new Vector2(606.883972F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(606.883972F, -354.212006F), new Vector2(606.661987F, -355.063995F), new Vector2(606.218018F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(605.773987F, -356.359985F), new Vector2(605.203979F, -356.876007F), new Vector2(604.507996F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(603.812012F, -357.644012F), new Vector2(603.080017F, -357.950012F), new Vector2(602.312012F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(601.544006F, -358.406006F), new Vector2(600.80603F, -358.627991F), new Vector2(600.098022F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(599.390015F, -359.059998F), new Vector2(598.820007F, -359.324005F), new Vector2(598.388F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(597.955994F, -359.947998F), new Vector2(597.73999F, -360.391998F), new Vector2(597.73999F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(597.73999F, -361.519989F), new Vector2(597.986023F, -361.963989F), new Vector2(598.478027F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(598.969971F, -362.635986F), new Vector2(599.684021F, -362.803986F), new Vector2(600.619995F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(601.507996F, -362.803986F), new Vector2(602.299988F, -362.635986F), new Vector2(602.995972F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(603.692017F, -361.963989F), new Vector2(604.291992F, -361.484009F), new Vector2(604.796021F, -360.859985F));
+ builder.AddLine(new Vector2(606.883972F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(606.211975F, -363.884003F), new Vector2(605.354004F, -364.585999F), new Vector2(604.309998F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(603.265991F, -365.522003F), new Vector2(602.072021F, -365.756012F), new Vector2(600.728027F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(599.455994F, -365.756012F), new Vector2(598.364014F, -365.552002F), new Vector2(597.452026F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(596.539978F, -364.735992F), new Vector2(595.838013F, -364.153992F), new Vector2(595.346008F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(594.854004F, -362.641998F), new Vector2(594.607971F, -361.747986F), new Vector2(594.607971F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(594.607971F, -359.68399F), new Vector2(594.830017F, -358.850006F), new Vector2(595.273987F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(595.718018F, -357.578003F), new Vector2(596.288025F, -357.079987F), new Vector2(596.984009F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(597.679993F, -356.359985F), new Vector2(598.41803F, -356.071991F), new Vector2(599.197998F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(599.978027F, -355.640015F), new Vector2(600.716003F, -355.417999F), new Vector2(601.411987F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(602.107971F, -354.962006F), new Vector2(602.677979F, -354.674011F), new Vector2(603.122009F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(603.565979F, -353.977997F), new Vector2(603.788025F, -353.492004F), new Vector2(603.788025F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(603.788025F, -352.243988F), new Vector2(603.512024F, -351.757996F), new Vector2(602.960022F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(602.40802F, -351.062012F), new Vector2(601.627991F, -350.888F), new Vector2(600.619995F, -350.888F));
+ builder.AddCubicBezier(new Vector2(599.612F, -350.888F), new Vector2(598.700012F, -351.074005F), new Vector2(597.883972F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(597.067993F, -351.817993F), new Vector2(596.348022F, -352.388F), new Vector2(595.723999F, -353.156006F));
+ builder.AddLine(new Vector2(593.635986F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(594.164001F, -350.420013F), new Vector2(594.781982F, -349.862F), new Vector2(595.48999F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(596.197998F, -348.925995F), new Vector2(596.984009F, -348.56601F), new Vector2(597.848022F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(598.711975F, -348.062012F), new Vector2(599.624023F, -347.936005F), new Vector2(600.583984F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(602.504028F, -347.936005F), new Vector2(604.033997F, -348.403992F), new Vector2(605.174011F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0335()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(579.812012F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(580.916016F, -349.537994F), new Vector2(581.780029F, -350.40799F), new Vector2(582.403992F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(583.028015F, -352.664001F), new Vector2(583.340027F, -353.971985F), new Vector2(583.340027F, -355.459991F));
+ builder.AddLine(new Vector2(583.340027F, -365.395996F));
+ builder.AddLine(new Vector2(580.099976F, -365.395996F));
+ builder.AddLine(new Vector2(580.099976F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(580.099976F, -354.187988F), new Vector2(579.73999F, -353.078003F), new Vector2(579.02002F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(578.299988F, -351.470001F), new Vector2(577.304016F, -351.067993F), new Vector2(576.031982F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(575.192017F, -351.067993F), new Vector2(574.460022F, -351.247986F), new Vector2(573.835999F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(573.211975F, -351.967987F), new Vector2(572.737976F, -352.48999F), new Vector2(572.414001F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(572.090027F, -353.858002F), new Vector2(571.927979F, -354.667999F), new Vector2(571.927979F, -355.604004F));
+ builder.AddLine(new Vector2(571.927979F, -365.395996F));
+ builder.AddLine(new Vector2(568.687988F, -365.395996F));
+ builder.AddLine(new Vector2(568.687988F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(568.687988F, -353.971985F), new Vector2(569F, -352.664001F), new Vector2(569.624023F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(570.247986F, -350.40799F), new Vector2(571.117981F, -349.537994F), new Vector2(572.234009F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(573.349976F, -348.313995F), new Vector2(574.616028F, -348.007996F), new Vector2(576.031982F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(577.447998F, -348.007996F), new Vector2(578.708008F, -348.313995F), new Vector2(579.812012F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0336()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(553.711975F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(552.872009F, -352.328003F), new Vector2(552.211975F, -353.018005F), new Vector2(551.731995F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(551.252014F, -354.769989F), new Vector2(551.012024F, -355.772003F), new Vector2(551.012024F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(551.012024F, -358.003998F), new Vector2(551.252014F, -358.988007F), new Vector2(551.731995F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(552.211975F, -360.716003F), new Vector2(552.872009F, -361.394012F), new Vector2(553.711975F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(554.552002F, -362.377991F), new Vector2(555.5F, -362.623993F), new Vector2(556.55603F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(557.659973F, -362.623993F), new Vector2(558.625977F, -362.377991F), new Vector2(559.453979F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(560.281982F, -361.394012F), new Vector2(560.942017F, -360.716003F), new Vector2(561.434021F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(561.926025F, -358.988007F), new Vector2(562.171997F, -358.003998F), new Vector2(562.171997F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(562.171997F, -355.772003F), new Vector2(561.932007F, -354.769989F), new Vector2(561.452026F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(560.971985F, -353.018005F), new Vector2(560.312012F, -352.328003F), new Vector2(559.471985F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(558.632019F, -351.320007F), new Vector2(557.659973F, -351.067993F), new Vector2(556.55603F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(555.5F, -351.067993F), new Vector2(554.552002F, -351.320007F), new Vector2(553.711975F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(561.109985F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(562.466003F, -349.915985F), new Vector2(563.539978F, -350.98999F), new Vector2(564.33197F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(565.124023F, -353.701996F), new Vector2(565.52002F, -355.220001F), new Vector2(565.52002F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(565.52002F, -358.556F), new Vector2(565.124023F, -360.056F), new Vector2(564.33197F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(563.539978F, -362.743988F), new Vector2(562.466003F, -363.806F), new Vector2(561.109985F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(559.754028F, -365.365997F), new Vector2(558.236023F, -365.756012F), new Vector2(556.55603F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(554.900024F, -365.756012F), new Vector2(553.400024F, -365.359985F), new Vector2(552.05603F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(550.711975F, -363.776001F), new Vector2(549.643982F, -362.713989F), new Vector2(548.85199F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(548.059998F, -360.049988F), new Vector2(547.664001F, -358.556F), new Vector2(547.664001F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(547.664001F, -355.220001F), new Vector2(548.059998F, -353.701996F), new Vector2(548.85199F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(549.643982F, -350.98999F), new Vector2(550.711975F, -349.915985F), new Vector2(552.05603F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(553.400024F, -348.332001F), new Vector2(554.900024F, -347.936005F), new Vector2(556.55603F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(558.236023F, -347.936005F), new Vector2(559.754028F, -348.332001F), new Vector2(561.109985F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0337()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(535.531982F, -341.131989F));
+ builder.AddLine(new Vector2(538.771973F, -348.152008F));
+ builder.AddLine(new Vector2(536.935974F, -351.463989F));
+ builder.AddLine(new Vector2(531.932007F, -341.131989F));
+ builder.AddLine(new Vector2(535.531982F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(538.771973F, -348.152008F));
+ builder.AddLine(new Vector2(546.763977F, -365.395996F));
+ builder.AddLine(new Vector2(543.164001F, -365.395996F));
+ builder.AddLine(new Vector2(537.367981F, -351.895996F));
+ builder.AddLine(new Vector2(538.52002F, -351.895996F));
+ builder.AddLine(new Vector2(533.012024F, -365.395996F));
+ builder.AddLine(new Vector2(529.411987F, -365.395996F));
+ builder.AddLine(new Vector2(536.828003F, -348.152008F));
+ builder.AddLine(new Vector2(538.771973F, -348.152008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0338()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(507.829987F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(507.002014F, -352.813995F), new Vector2(506.354004F, -353.467987F), new Vector2(505.885986F, -354.308014F));
+ builder.AddCubicBezier(new Vector2(505.417999F, -355.14801F), new Vector2(505.18399F, -356.108002F), new Vector2(505.18399F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(505.18399F, -358.268005F), new Vector2(505.417999F, -359.221985F), new Vector2(505.885986F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(506.354004F, -360.877991F), new Vector2(506.996002F, -361.526001F), new Vector2(507.812012F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(508.627991F, -362.462006F), new Vector2(509.575989F, -362.696014F), new Vector2(510.656006F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(511.712006F, -362.696014F), new Vector2(512.642029F, -362.462006F), new Vector2(513.445984F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(514.25F, -361.526001F), new Vector2(514.874023F, -360.877991F), new Vector2(515.317993F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(515.762024F, -359.221985F), new Vector2(515.984009F, -358.256012F), new Vector2(515.984009F, -357.152008F));
+ builder.AddCubicBezier(new Vector2(515.984009F, -356.048004F), new Vector2(515.762024F, -355.082001F), new Vector2(515.317993F, -354.253998F));
+ builder.AddCubicBezier(new Vector2(514.874023F, -353.425995F), new Vector2(514.255981F, -352.783997F), new Vector2(513.463989F, -352.328003F));
+ builder.AddCubicBezier(new Vector2(512.671997F, -351.872009F), new Vector2(511.735992F, -351.644012F), new Vector2(510.656006F, -351.644012F));
+ builder.AddCubicBezier(new Vector2(509.600006F, -351.644012F), new Vector2(508.65799F, -351.877991F), new Vector2(507.829987F, -352.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(513.572021F, -349.376007F));
+ builder.AddCubicBezier(new Vector2(514.604004F, -349.903992F), new Vector2(515.426025F, -350.641998F), new Vector2(516.038025F, -351.589996F));
+ builder.AddCubicBezier(new Vector2(516.650024F, -352.537994F), new Vector2(516.992004F, -353.635986F), new Vector2(517.064026F, -354.884003F));
+ builder.AddLine(new Vector2(517.064026F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(516.992004F, -360.691986F), new Vector2(516.656006F, -361.802002F), new Vector2(516.05603F, -362.75F));
+ builder.AddCubicBezier(new Vector2(515.455994F, -363.697998F), new Vector2(514.633972F, -364.436005F), new Vector2(513.590027F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(512.546021F, -365.492004F), new Vector2(511.35199F, -365.756012F), new Vector2(510.007996F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(508.471985F, -365.756012F), new Vector2(507.079987F, -365.377991F), new Vector2(505.832001F, -364.622009F));
+ builder.AddCubicBezier(new Vector2(504.584015F, -363.865997F), new Vector2(503.605988F, -362.846008F), new Vector2(502.89801F, -361.562012F));
+ builder.AddCubicBezier(new Vector2(502.190002F, -360.278015F), new Vector2(501.835999F, -358.820007F), new Vector2(501.835999F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(501.835999F, -355.556F), new Vector2(502.196014F, -354.085999F), new Vector2(502.915985F, -352.778015F));
+ builder.AddCubicBezier(new Vector2(503.635986F, -351.470001F), new Vector2(504.614014F, -350.444F), new Vector2(505.850006F, -349.700012F));
+ builder.AddCubicBezier(new Vector2(507.085999F, -348.955994F), new Vector2(508.484009F, -348.584015F), new Vector2(510.044006F, -348.584015F));
+ builder.AddCubicBezier(new Vector2(511.364014F, -348.584015F), new Vector2(512.539978F, -348.847992F), new Vector2(513.572021F, -349.376007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(514.742004F, -341.798004F));
+ builder.AddCubicBezier(new Vector2(516.098022F, -342.481995F), new Vector2(517.153992F, -343.441986F), new Vector2(517.909973F, -344.678009F));
+ builder.AddCubicBezier(new Vector2(518.666016F, -345.914001F), new Vector2(519.044006F, -347.347992F), new Vector2(519.044006F, -348.980011F));
+ builder.AddLine(new Vector2(519.044006F, -365.395996F));
+ builder.AddLine(new Vector2(515.804016F, -365.395996F));
+ builder.AddLine(new Vector2(515.804016F, -360.895996F));
+ builder.AddLine(new Vector2(516.380005F, -357.079987F));
+ builder.AddLine(new Vector2(515.804016F, -353.227997F));
+ builder.AddLine(new Vector2(515.804016F, -348.980011F));
+ builder.AddCubicBezier(new Vector2(515.804016F, -347.420013F), new Vector2(515.288025F, -346.178009F), new Vector2(514.255981F, -345.253998F));
+ builder.AddCubicBezier(new Vector2(513.223999F, -344.329987F), new Vector2(511.843994F, -343.868011F), new Vector2(510.115997F, -343.868011F));
+ builder.AddCubicBezier(new Vector2(508.79599F, -343.868011F), new Vector2(507.656006F, -344.10199F), new Vector2(506.696014F, -344.570007F));
+ builder.AddCubicBezier(new Vector2(505.735992F, -345.037994F), new Vector2(504.90799F, -345.716003F), new Vector2(504.212006F, -346.604004F));
+ builder.AddLine(new Vector2(502.088013F, -344.480011F));
+ builder.AddCubicBezier(new Vector2(502.928009F, -343.303986F), new Vector2(504.019989F, -342.391998F), new Vector2(505.364014F, -341.743988F));
+ builder.AddCubicBezier(new Vector2(506.708008F, -341.096008F), new Vector2(508.268005F, -340.772003F), new Vector2(510.044006F, -340.772003F));
+ builder.AddCubicBezier(new Vector2(511.820007F, -340.772003F), new Vector2(513.385986F, -341.114014F), new Vector2(514.742004F, -341.798004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0339()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(486.463989F, -348.29599F));
+ builder.AddLine(new Vector2(486.463989F, -365.395996F));
+ builder.AddLine(new Vector2(483.223999F, -365.395996F));
+ builder.AddLine(new Vector2(483.223999F, -348.29599F));
+ builder.AddLine(new Vector2(486.463989F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(498.559998F, -348.29599F));
+ builder.AddLine(new Vector2(498.559998F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(498.559998F, -360.09201F), new Vector2(498.272003F, -361.201996F), new Vector2(497.696014F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(497.119995F, -363.290009F), new Vector2(496.334015F, -364.135986F), new Vector2(495.338013F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(494.34201F, -365.432007F), new Vector2(493.196014F, -365.756012F), new Vector2(491.899994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(490.604004F, -365.756012F), new Vector2(489.440002F, -365.462006F), new Vector2(488.40799F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(487.376007F, -364.286011F), new Vector2(486.571991F, -363.488007F), new Vector2(485.996002F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(485.420013F, -361.471985F), new Vector2(485.131989F, -360.320007F), new Vector2(485.131989F, -359.023987F));
+ builder.AddLine(new Vector2(486.463989F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(486.463989F, -359.131989F), new Vector2(486.656006F, -359.899994F), new Vector2(487.040009F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(487.424011F, -361.243988F), new Vector2(487.951996F, -361.772003F), new Vector2(488.623993F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(489.29599F, -362.540009F), new Vector2(490.063995F, -362.731995F), new Vector2(490.928009F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(492.223999F, -362.731995F), new Vector2(493.273987F, -362.312012F), new Vector2(494.078003F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(494.881989F, -360.631989F), new Vector2(495.283997F, -359.563995F), new Vector2(495.283997F, -358.268005F));
+ builder.AddLine(new Vector2(495.283997F, -348.29599F));
+ builder.AddLine(new Vector2(498.559998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0340()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(478.291992F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(478.675995F, -369.806F), new Vector2(478.868011F, -370.303986F), new Vector2(478.868011F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(478.868011F, -371.480011F), new Vector2(478.675995F, -371.966003F), new Vector2(478.291992F, -372.362F));
+ builder.AddCubicBezier(new Vector2(477.90799F, -372.757996F), new Vector2(477.415985F, -372.955994F), new Vector2(476.81601F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(476.216003F, -372.955994F), new Vector2(475.723999F, -372.757996F), new Vector2(475.339996F, -372.362F));
+ builder.AddCubicBezier(new Vector2(474.955994F, -371.966003F), new Vector2(474.764008F, -371.480011F), new Vector2(474.764008F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(474.764008F, -370.303986F), new Vector2(474.955994F, -369.806F), new Vector2(475.339996F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(475.723999F, -369.014008F), new Vector2(476.216003F, -368.81601F), new Vector2(476.81601F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(477.415985F, -368.81601F), new Vector2(477.90799F, -369.014008F), new Vector2(478.291992F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(478.436005F, -348.29599F));
+ builder.AddLine(new Vector2(478.436005F, -365.395996F));
+ builder.AddLine(new Vector2(475.160004F, -365.395996F));
+ builder.AddLine(new Vector2(475.160004F, -348.29599F));
+ builder.AddLine(new Vector2(478.436005F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0341()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(465.115997F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(465.884003F, -362.312012F), new Vector2(466.868011F, -362.696014F), new Vector2(468.067993F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(468.644012F, -362.696014F), new Vector2(469.14801F, -362.612F), new Vector2(469.579987F, -362.444F));
+ builder.AddCubicBezier(new Vector2(470.011993F, -362.276001F), new Vector2(470.40799F, -362F), new Vector2(470.768005F, -361.615997F));
+ builder.AddLine(new Vector2(472.891998F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(472.291992F, -364.507996F), new Vector2(471.644012F, -365.006012F), new Vector2(470.947998F, -365.306F));
+ builder.AddCubicBezier(new Vector2(470.252014F, -365.605988F), new Vector2(469.471985F, -365.756012F), new Vector2(468.608002F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(466.712006F, -365.756012F), new Vector2(465.26001F, -365.108002F), new Vector2(464.252014F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(463.243988F, -362.515991F), new Vector2(462.73999F, -360.776001F), new Vector2(462.73999F, -358.59201F));
+ builder.AddLine(new Vector2(463.963989F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(463.963989F, -359.600006F), new Vector2(464.347992F, -360.776001F), new Vector2(465.115997F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(463.963989F, -348.29599F));
+ builder.AddLine(new Vector2(463.963989F, -365.395996F));
+ builder.AddLine(new Vector2(460.723999F, -365.395996F));
+ builder.AddLine(new Vector2(460.723999F, -348.29599F));
+ builder.AddLine(new Vector2(463.963989F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0342()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(445.406006F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(444.578003F, -352.256012F), new Vector2(443.941986F, -352.946014F), new Vector2(443.497986F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(443.053986F, -354.697998F), new Vector2(442.832001F, -355.700012F), new Vector2(442.832001F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(442.832001F, -357.980011F), new Vector2(443.059998F, -358.993988F), new Vector2(443.515991F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(443.971985F, -360.746002F), new Vector2(444.608002F, -361.436005F), new Vector2(445.424011F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(446.23999F, -362.444F), new Vector2(447.175995F, -362.696014F), new Vector2(448.231995F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(449.312012F, -362.696014F), new Vector2(450.26001F, -362.444F), new Vector2(451.075989F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(451.891998F, -361.436005F), new Vector2(452.533997F, -360.746002F), new Vector2(453.002014F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(453.470001F, -358.993988F), new Vector2(453.70401F, -357.992004F), new Vector2(453.70401F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(453.70401F, -355.712006F), new Vector2(453.470001F, -354.697998F), new Vector2(453.002014F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(452.533997F, -352.946014F), new Vector2(451.891998F, -352.256012F), new Vector2(451.075989F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(450.26001F, -351.247986F), new Vector2(449.312012F, -350.996002F), new Vector2(448.231995F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(447.175995F, -350.996002F), new Vector2(446.234009F, -351.247986F), new Vector2(445.406006F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(443.011993F, -348.29599F));
+ builder.AddLine(new Vector2(443.011993F, -352.903992F));
+ builder.AddLine(new Vector2(442.399994F, -357.079987F));
+ builder.AddLine(new Vector2(443.011993F, -361.220001F));
+ builder.AddLine(new Vector2(443.011993F, -374F));
+ builder.AddLine(new Vector2(439.772003F, -374F));
+ builder.AddLine(new Vector2(439.772003F, -348.29599F));
+ builder.AddLine(new Vector2(443.011993F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(453.002014F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(454.261993F, -349.885986F), new Vector2(455.252014F, -350.947998F), new Vector2(455.971985F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(456.691986F, -353.635986F), new Vector2(457.052002F, -355.14801F), new Vector2(457.052002F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(457.052002F, -358.507996F), new Vector2(456.691986F, -360.019989F), new Vector2(455.971985F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(455.252014F, -362.708008F), new Vector2(454.261993F, -363.776001F), new Vector2(453.002014F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(451.742004F, -365.359985F), new Vector2(450.332001F, -365.756012F), new Vector2(448.772003F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(447.5F, -365.756012F), new Vector2(446.34201F, -365.485992F), new Vector2(445.298004F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(444.253998F, -364.406006F), new Vector2(443.414001F, -363.661987F), new Vector2(442.778015F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(442.141998F, -361.765991F), new Vector2(441.787994F, -360.667999F), new Vector2(441.716003F, -359.420013F));
+ builder.AddLine(new Vector2(441.716003F, -354.272003F));
+ builder.AddCubicBezier(new Vector2(441.787994F, -353.048004F), new Vector2(442.135986F, -351.955994F), new Vector2(442.76001F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(443.384003F, -350.036011F), new Vector2(444.217987F, -349.286011F), new Vector2(445.261993F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(446.306F, -348.205994F), new Vector2(447.476013F, -347.936005F), new Vector2(448.772003F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(450.332001F, -347.936005F), new Vector2(451.742004F, -348.325989F), new Vector2(453.002014F, -349.105988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0343()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(416.911987F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(416.071991F, -352.328003F), new Vector2(415.411987F, -353.018005F), new Vector2(414.932007F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(414.451996F, -354.769989F), new Vector2(414.212006F, -355.772003F), new Vector2(414.212006F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(414.212006F, -358.003998F), new Vector2(414.451996F, -358.988007F), new Vector2(414.932007F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(415.411987F, -360.716003F), new Vector2(416.071991F, -361.394012F), new Vector2(416.911987F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(417.752014F, -362.377991F), new Vector2(418.700012F, -362.623993F), new Vector2(419.756012F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(420.859985F, -362.623993F), new Vector2(421.825989F, -362.377991F), new Vector2(422.653992F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(423.481995F, -361.394012F), new Vector2(424.141998F, -360.716003F), new Vector2(424.634003F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(425.126007F, -358.988007F), new Vector2(425.372009F, -358.003998F), new Vector2(425.372009F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(425.372009F, -355.772003F), new Vector2(425.131989F, -354.769989F), new Vector2(424.652008F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(424.171997F, -353.018005F), new Vector2(423.511993F, -352.328003F), new Vector2(422.671997F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(421.832001F, -351.320007F), new Vector2(420.859985F, -351.067993F), new Vector2(419.756012F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(418.700012F, -351.067993F), new Vector2(417.752014F, -351.320007F), new Vector2(416.911987F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(424.309998F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(425.665985F, -349.915985F), new Vector2(426.73999F, -350.98999F), new Vector2(427.532013F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(428.324005F, -353.701996F), new Vector2(428.720001F, -355.220001F), new Vector2(428.720001F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(428.720001F, -358.556F), new Vector2(428.324005F, -360.056F), new Vector2(427.532013F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(426.73999F, -362.743988F), new Vector2(425.665985F, -363.806F), new Vector2(424.309998F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(422.95401F, -365.365997F), new Vector2(421.436005F, -365.756012F), new Vector2(419.756012F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(418.100006F, -365.756012F), new Vector2(416.600006F, -365.359985F), new Vector2(415.256012F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(413.911987F, -363.776001F), new Vector2(412.843994F, -362.713989F), new Vector2(412.052002F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(411.26001F, -360.049988F), new Vector2(410.864014F, -358.556F), new Vector2(410.864014F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(410.864014F, -355.220001F), new Vector2(411.26001F, -353.701996F), new Vector2(412.052002F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(412.843994F, -350.98999F), new Vector2(413.911987F, -349.915985F), new Vector2(415.256012F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(416.600006F, -348.332001F), new Vector2(418.100006F, -347.936005F), new Vector2(419.756012F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(421.436005F, -347.936005F), new Vector2(422.95401F, -348.332001F), new Vector2(424.309998F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0344()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(409.35199F, -362.444F));
+ builder.AddLine(new Vector2(409.35199F, -365.395996F));
+ builder.AddLine(new Vector2(397.687988F, -365.395996F));
+ builder.AddLine(new Vector2(397.687988F, -362.444F));
+ builder.AddLine(new Vector2(409.35199F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(405.140015F, -348.29599F));
+ builder.AddLine(new Vector2(405.140015F, -372.559998F));
+ builder.AddLine(new Vector2(401.899994F, -372.559998F));
+ builder.AddLine(new Vector2(401.899994F, -348.29599F));
+ builder.AddLine(new Vector2(405.140015F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0345()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(384.223999F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(385.399994F, -349.196014F), new Vector2(386.40799F, -349.928009F), new Vector2(387.247986F, -350.888F));
+ builder.AddLine(new Vector2(385.160004F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(384.584015F, -352.339996F), new Vector2(383.894012F, -351.835999F), new Vector2(383.089996F, -351.5F));
+ builder.AddCubicBezier(new Vector2(382.286011F, -351.164001F), new Vector2(381.403992F, -350.996002F), new Vector2(380.444F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(379.291992F, -350.996002F), new Vector2(378.272003F, -351.242004F), new Vector2(377.384003F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(376.496002F, -352.226013F), new Vector2(375.812012F, -352.921997F), new Vector2(375.332001F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(374.85199F, -354.721985F), new Vector2(374.612F, -355.772003F), new Vector2(374.612F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(374.612F, -358.14801F), new Vector2(374.839996F, -359.167999F), new Vector2(375.29599F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(375.752014F, -360.895996F), new Vector2(376.399994F, -361.567993F), new Vector2(377.23999F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(378.079987F, -362.528015F), new Vector2(379.052002F, -362.768005F), new Vector2(380.156006F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(381.212006F, -362.768005F), new Vector2(382.112F, -362.54599F), new Vector2(382.855988F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(383.600006F, -361.65799F), new Vector2(384.175995F, -361.033997F), new Vector2(384.584015F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(384.992004F, -359.425995F), new Vector2(385.196014F, -358.447998F), new Vector2(385.196014F, -357.29599F));
+ builder.AddLine(new Vector2(386.384003F, -358.339996F));
+ builder.AddLine(new Vector2(373.675995F, -358.339996F));
+ builder.AddLine(new Vector2(373.675995F, -355.640015F));
+ builder.AddLine(new Vector2(388.112F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(388.18399F, -355.976013F), new Vector2(388.231995F, -356.282013F), new Vector2(388.256012F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(388.279999F, -356.834015F), new Vector2(388.291992F, -357.09201F), new Vector2(388.291992F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(388.291992F, -358.963989F), new Vector2(387.950012F, -360.415985F), new Vector2(387.265991F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(386.582001F, -362.959991F), new Vector2(385.627991F, -363.955994F), new Vector2(384.403992F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(383.179993F, -365.395996F), new Vector2(381.787994F, -365.756012F), new Vector2(380.227997F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(378.571991F, -365.756012F), new Vector2(377.078003F, -365.365997F), new Vector2(375.746002F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(374.414001F, -363.806F), new Vector2(373.358002F, -362.743988F), new Vector2(372.578003F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(371.798004F, -360.056F), new Vector2(371.40799F, -358.544006F), new Vector2(371.40799F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(371.40799F, -355.160004F), new Vector2(371.803986F, -353.635986F), new Vector2(372.596008F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(373.388F, -350.947998F), new Vector2(374.462006F, -349.885986F), new Vector2(375.817993F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(377.174011F, -348.325989F), new Vector2(378.716003F, -347.936005F), new Vector2(380.444F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(381.787994F, -347.936005F), new Vector2(383.048004F, -348.187988F), new Vector2(384.223999F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0346()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(358.808014F, -348.29599F));
+ builder.AddLine(new Vector2(358.808014F, -374F));
+ builder.AddLine(new Vector2(355.567993F, -374F));
+ builder.AddLine(new Vector2(355.567993F, -348.29599F));
+ builder.AddLine(new Vector2(358.808014F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(370.687988F, -348.29599F));
+ builder.AddLine(new Vector2(361.687988F, -358.052002F));
+ builder.AddLine(new Vector2(361.544006F, -356.179993F));
+ builder.AddLine(new Vector2(370.364014F, -365.395996F));
+ builder.AddLine(new Vector2(366.403992F, -365.395996F));
+ builder.AddLine(new Vector2(358.519989F, -357.044006F));
+ builder.AddLine(new Vector2(366.511993F, -348.29599F));
+ builder.AddLine(new Vector2(370.687988F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0347()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(350.635986F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(351.019989F, -369.806F), new Vector2(351.212006F, -370.303986F), new Vector2(351.212006F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(351.212006F, -371.480011F), new Vector2(351.019989F, -371.966003F), new Vector2(350.635986F, -372.362F));
+ builder.AddCubicBezier(new Vector2(350.252014F, -372.757996F), new Vector2(349.76001F, -372.955994F), new Vector2(349.160004F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(348.559998F, -372.955994F), new Vector2(348.067993F, -372.757996F), new Vector2(347.68399F, -372.362F));
+ builder.AddCubicBezier(new Vector2(347.299988F, -371.966003F), new Vector2(347.108002F, -371.480011F), new Vector2(347.108002F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(347.108002F, -370.303986F), new Vector2(347.299988F, -369.806F), new Vector2(347.68399F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(348.067993F, -369.014008F), new Vector2(348.559998F, -368.81601F), new Vector2(349.160004F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(349.76001F, -368.81601F), new Vector2(350.252014F, -369.014008F), new Vector2(350.635986F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(350.779999F, -348.29599F));
+ builder.AddLine(new Vector2(350.779999F, -365.395996F));
+ builder.AddLine(new Vector2(347.503998F, -365.395996F));
+ builder.AddLine(new Vector2(347.503998F, -348.29599F));
+ builder.AddLine(new Vector2(350.779999F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0348()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(342.752014F, -348.29599F));
+ builder.AddLine(new Vector2(342.752014F, -374F));
+ builder.AddLine(new Vector2(339.511993F, -374F));
+ builder.AddLine(new Vector2(339.511993F, -348.29599F));
+ builder.AddLine(new Vector2(342.752014F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0349()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(327.343994F, -374F));
+ builder.AddLine(new Vector2(324.067993F, -374F));
+ builder.AddLine(new Vector2(324.067993F, -361.220001F));
+ builder.AddLine(new Vector2(324.679993F, -357.079987F));
+ builder.AddLine(new Vector2(324.067993F, -352.903992F));
+ builder.AddLine(new Vector2(324.067993F, -348.29599F));
+ builder.AddLine(new Vector2(327.343994F, -348.29599F));
+ builder.AddLine(new Vector2(327.343994F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(316.022003F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(315.194F, -352.226013F), new Vector2(314.54599F, -352.915985F), new Vector2(314.078003F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(313.609985F, -354.691986F), new Vector2(313.376007F, -355.712006F), new Vector2(313.376007F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(313.376007F, -358.015991F), new Vector2(313.609985F, -359.029999F), new Vector2(314.078003F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(314.54599F, -360.782013F), new Vector2(315.187988F, -361.466003F), new Vector2(316.003998F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(316.820007F, -362.450012F), new Vector2(317.768005F, -362.696014F), new Vector2(318.847992F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(319.928009F, -362.696014F), new Vector2(320.876007F, -362.444F), new Vector2(321.691986F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(322.507996F, -361.436005F), new Vector2(323.144012F, -360.746002F), new Vector2(323.600006F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(324.056F, -358.993988F), new Vector2(324.283997F, -357.980011F), new Vector2(324.283997F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(324.283997F, -355.700012F), new Vector2(324.056F, -354.697998F), new Vector2(323.600006F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(323.144012F, -352.946014F), new Vector2(322.507996F, -352.256012F), new Vector2(321.691986F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(320.876007F, -351.247986F), new Vector2(319.928009F, -350.996002F), new Vector2(318.847992F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(317.791992F, -350.996002F), new Vector2(316.850006F, -351.242004F), new Vector2(316.022003F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(321.835999F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(322.868011F, -349.286011F), new Vector2(323.696014F, -350.036011F), new Vector2(324.320007F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(324.944F, -351.955994F), new Vector2(325.291992F, -353.048004F), new Vector2(325.364014F, -354.272003F));
+ builder.AddLine(new Vector2(325.364014F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(325.291992F, -360.667999F), new Vector2(324.937988F, -361.765991F), new Vector2(324.302002F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(323.665985F, -363.661987F), new Vector2(322.832001F, -364.406006F), new Vector2(321.799988F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(320.768005F, -365.485992F), new Vector2(319.604004F, -365.756012F), new Vector2(318.308014F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(316.747986F, -365.756012F), new Vector2(315.343994F, -365.359985F), new Vector2(314.096008F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(312.847992F, -363.776001F), new Vector2(311.858002F, -362.708008F), new Vector2(311.126007F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(310.394012F, -360.019989F), new Vector2(310.028015F, -358.507996F), new Vector2(310.028015F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(310.028015F, -355.14801F), new Vector2(310.394012F, -353.635986F), new Vector2(311.126007F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(311.858002F, -350.947998F), new Vector2(312.847992F, -349.885986F), new Vector2(314.096008F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(315.343994F, -348.325989F), new Vector2(316.747986F, -347.936005F), new Vector2(318.308014F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(319.627991F, -347.936005F), new Vector2(320.803986F, -348.205994F), new Vector2(321.835999F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0350()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(306.355988F, -348.29599F));
+ builder.AddLine(new Vector2(306.355988F, -374F));
+ builder.AddLine(new Vector2(303.115997F, -374F));
+ builder.AddLine(new Vector2(303.115997F, -348.29599F));
+ builder.AddLine(new Vector2(306.355988F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0351()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(295.231995F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(296.335999F, -349.537994F), new Vector2(297.200012F, -350.40799F), new Vector2(297.824005F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(298.447998F, -352.664001F), new Vector2(298.76001F, -353.971985F), new Vector2(298.76001F, -355.459991F));
+ builder.AddLine(new Vector2(298.76001F, -365.395996F));
+ builder.AddLine(new Vector2(295.519989F, -365.395996F));
+ builder.AddLine(new Vector2(295.519989F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(295.519989F, -354.187988F), new Vector2(295.160004F, -353.078003F), new Vector2(294.440002F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(293.720001F, -351.470001F), new Vector2(292.723999F, -351.067993F), new Vector2(291.451996F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(290.612F, -351.067993F), new Vector2(289.880005F, -351.247986F), new Vector2(289.256012F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(288.631989F, -351.967987F), new Vector2(288.15799F, -352.48999F), new Vector2(287.834015F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(287.51001F, -353.858002F), new Vector2(287.347992F, -354.667999F), new Vector2(287.347992F, -355.604004F));
+ builder.AddLine(new Vector2(287.347992F, -365.395996F));
+ builder.AddLine(new Vector2(284.108002F, -365.395996F));
+ builder.AddLine(new Vector2(284.108002F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(284.108002F, -353.971985F), new Vector2(284.420013F, -352.664001F), new Vector2(285.044006F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(285.667999F, -350.40799F), new Vector2(286.537994F, -349.537994F), new Vector2(287.653992F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(288.769989F, -348.313995F), new Vector2(290.036011F, -348.007996F), new Vector2(291.451996F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(292.868011F, -348.007996F), new Vector2(294.127991F, -348.313995F), new Vector2(295.231995F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0352()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(269.131989F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(268.291992F, -352.328003F), new Vector2(267.631989F, -353.018005F), new Vector2(267.152008F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(266.671997F, -354.769989F), new Vector2(266.432007F, -355.772003F), new Vector2(266.432007F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(266.432007F, -358.003998F), new Vector2(266.671997F, -358.988007F), new Vector2(267.152008F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(267.631989F, -360.716003F), new Vector2(268.291992F, -361.394012F), new Vector2(269.131989F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(269.971985F, -362.377991F), new Vector2(270.920013F, -362.623993F), new Vector2(271.976013F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(273.079987F, -362.623993F), new Vector2(274.04599F, -362.377991F), new Vector2(274.873993F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(275.701996F, -361.394012F), new Vector2(276.362F, -360.716003F), new Vector2(276.854004F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(277.346008F, -358.988007F), new Vector2(277.59201F, -358.003998F), new Vector2(277.59201F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(277.59201F, -355.772003F), new Vector2(277.35199F, -354.769989F), new Vector2(276.872009F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(276.391998F, -353.018005F), new Vector2(275.731995F, -352.328003F), new Vector2(274.891998F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(274.052002F, -351.320007F), new Vector2(273.079987F, -351.067993F), new Vector2(271.976013F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(270.920013F, -351.067993F), new Vector2(269.971985F, -351.320007F), new Vector2(269.131989F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(276.529999F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(277.885986F, -349.915985F), new Vector2(278.959991F, -350.98999F), new Vector2(279.752014F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(280.544006F, -353.701996F), new Vector2(280.940002F, -355.220001F), new Vector2(280.940002F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(280.940002F, -358.556F), new Vector2(280.544006F, -360.056F), new Vector2(279.752014F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(278.959991F, -362.743988F), new Vector2(277.885986F, -363.806F), new Vector2(276.529999F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(275.174011F, -365.365997F), new Vector2(273.656006F, -365.756012F), new Vector2(271.976013F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(270.320007F, -365.756012F), new Vector2(268.820007F, -365.359985F), new Vector2(267.476013F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(266.131989F, -363.776001F), new Vector2(265.063995F, -362.713989F), new Vector2(264.272003F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(263.480011F, -360.049988F), new Vector2(263.084015F, -358.556F), new Vector2(263.084015F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(263.084015F, -355.220001F), new Vector2(263.480011F, -353.701996F), new Vector2(264.272003F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(265.063995F, -350.98999F), new Vector2(266.131989F, -349.915985F), new Vector2(267.476013F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(268.820007F, -348.332001F), new Vector2(270.320007F, -347.936005F), new Vector2(271.976013F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(273.656006F, -347.936005F), new Vector2(275.174011F, -348.332001F), new Vector2(276.529999F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0353()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(244.472F, -348.29599F));
+ builder.AddLine(new Vector2(249.440002F, -361.18399F));
+ builder.AddLine(new Vector2(248.251999F, -361.18399F));
+ builder.AddLine(new Vector2(253.184006F, -348.29599F));
+ builder.AddLine(new Vector2(255.091995F, -348.29599F));
+ builder.AddLine(new Vector2(261.824005F, -365.395996F));
+ builder.AddLine(new Vector2(258.440002F, -365.395996F));
+ builder.AddLine(new Vector2(253.544006F, -352.075989F));
+ builder.AddLine(new Vector2(254.623993F, -352.075989F));
+ builder.AddLine(new Vector2(249.764008F, -365.395996F));
+ builder.AddLine(new Vector2(247.891998F, -365.395996F));
+ builder.AddLine(new Vector2(243.031998F, -352.075989F));
+ builder.AddLine(new Vector2(244.112F, -352.075989F));
+ builder.AddLine(new Vector2(239.216003F, -365.395996F));
+ builder.AddLine(new Vector2(235.832001F, -365.395996F));
+ builder.AddLine(new Vector2(242.563995F, -348.29599F));
+ builder.AddLine(new Vector2(244.472F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0354()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(224.923996F, -348.29599F));
+ builder.AddLine(new Vector2(224.923996F, -373.279999F));
+ builder.AddLine(new Vector2(221.539993F, -373.279999F));
+ builder.AddLine(new Vector2(221.539993F, -348.29599F));
+ builder.AddLine(new Vector2(224.923996F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0355()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(205.628006F, -343.328003F));
+ builder.AddLine(new Vector2(208.039993F, -347.791992F));
+ builder.AddCubicBezier(new Vector2(208.352005F, -348.391998F), new Vector2(208.561996F, -348.877991F), new Vector2(208.669998F, -349.25F));
+ builder.AddCubicBezier(new Vector2(208.778F, -349.622009F), new Vector2(208.832001F, -349.940002F), new Vector2(208.832001F, -350.20401F));
+ builder.AddCubicBezier(new Vector2(208.832001F, -350.899994F), new Vector2(208.591995F, -351.481995F), new Vector2(208.112F, -351.950012F));
+ builder.AddCubicBezier(new Vector2(207.632004F, -352.417999F), new Vector2(207.080002F, -352.652008F), new Vector2(206.455994F, -352.652008F));
+ builder.AddCubicBezier(new Vector2(205.759995F, -352.652008F), new Vector2(205.184006F, -352.417999F), new Vector2(204.727997F, -351.950012F));
+ builder.AddCubicBezier(new Vector2(204.272003F, -351.481995F), new Vector2(204.044006F, -350.899994F), new Vector2(204.044006F, -350.20401F));
+ builder.AddCubicBezier(new Vector2(204.044006F, -349.579987F), new Vector2(204.253998F, -349.058014F), new Vector2(204.673996F, -348.638F));
+ builder.AddCubicBezier(new Vector2(205.093994F, -348.217987F), new Vector2(205.556F, -348.007996F), new Vector2(206.059998F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(206.300003F, -348.007996F), new Vector2(206.516006F, -348.09201F), new Vector2(206.707993F, -348.26001F));
+ builder.AddCubicBezier(new Vector2(206.899994F, -348.428009F), new Vector2(207.056F, -348.644012F), new Vector2(207.175995F, -348.90799F));
+ builder.AddLine(new Vector2(206.024002F, -348.619995F));
+ builder.AddLine(new Vector2(203.792007F, -344.335999F));
+ builder.AddLine(new Vector2(205.628006F, -343.328003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0356()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(201.667999F, -362.444F));
+ builder.AddLine(new Vector2(201.667999F, -365.395996F));
+ builder.AddLine(new Vector2(190.003998F, -365.395996F));
+ builder.AddLine(new Vector2(190.003998F, -362.444F));
+ builder.AddLine(new Vector2(201.667999F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(197.455994F, -348.29599F));
+ builder.AddLine(new Vector2(197.455994F, -372.559998F));
+ builder.AddLine(new Vector2(194.216003F, -372.559998F));
+ builder.AddLine(new Vector2(194.216003F, -348.29599F));
+ builder.AddLine(new Vector2(197.455994F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0357()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(183.703995F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(184.807999F, -349.537994F), new Vector2(185.671997F, -350.40799F), new Vector2(186.296005F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(186.919998F, -352.664001F), new Vector2(187.231995F, -353.971985F), new Vector2(187.231995F, -355.459991F));
+ builder.AddLine(new Vector2(187.231995F, -365.395996F));
+ builder.AddLine(new Vector2(183.992004F, -365.395996F));
+ builder.AddLine(new Vector2(183.992004F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(183.992004F, -354.187988F), new Vector2(183.632004F, -353.078003F), new Vector2(182.912003F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(182.192001F, -351.470001F), new Vector2(181.195999F, -351.067993F), new Vector2(179.923996F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(179.084F, -351.067993F), new Vector2(178.352005F, -351.247986F), new Vector2(177.727997F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(177.104004F, -351.967987F), new Vector2(176.630005F, -352.48999F), new Vector2(176.306F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(175.981995F, -353.858002F), new Vector2(175.820007F, -354.667999F), new Vector2(175.820007F, -355.604004F));
+ builder.AddLine(new Vector2(175.820007F, -365.395996F));
+ builder.AddLine(new Vector2(172.580002F, -365.395996F));
+ builder.AddLine(new Vector2(172.580002F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(172.580002F, -353.971985F), new Vector2(172.891998F, -352.664001F), new Vector2(173.516006F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(174.139999F, -350.40799F), new Vector2(175.009995F, -349.537994F), new Vector2(176.126007F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(177.242004F, -348.313995F), new Vector2(178.507996F, -348.007996F), new Vector2(179.923996F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(181.339996F, -348.007996F), new Vector2(182.600006F, -348.313995F), new Vector2(183.703995F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0358()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(157.694F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(156.865997F, -352.256012F), new Vector2(156.229996F, -352.946014F), new Vector2(155.785995F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(155.341995F, -354.697998F), new Vector2(155.119995F, -355.700012F), new Vector2(155.119995F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(155.119995F, -357.980011F), new Vector2(155.348007F, -358.993988F), new Vector2(155.804001F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(156.259995F, -360.746002F), new Vector2(156.895996F, -361.436005F), new Vector2(157.712006F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(158.528F, -362.444F), new Vector2(159.464005F, -362.696014F), new Vector2(160.520004F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(161.600006F, -362.696014F), new Vector2(162.548004F, -362.444F), new Vector2(163.363998F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(164.179993F, -361.436005F), new Vector2(164.822006F, -360.746002F), new Vector2(165.289993F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(165.757996F, -358.993988F), new Vector2(165.992004F, -357.992004F), new Vector2(165.992004F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(165.992004F, -355.712006F), new Vector2(165.757996F, -354.697998F), new Vector2(165.289993F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(164.822006F, -352.946014F), new Vector2(164.179993F, -352.256012F), new Vector2(163.363998F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(162.548004F, -351.247986F), new Vector2(161.600006F, -350.996002F), new Vector2(160.520004F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(159.464005F, -350.996002F), new Vector2(158.522003F, -351.247986F), new Vector2(157.694F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(155.300003F, -348.29599F));
+ builder.AddLine(new Vector2(155.300003F, -352.903992F));
+ builder.AddLine(new Vector2(154.688004F, -357.079987F));
+ builder.AddLine(new Vector2(155.300003F, -361.220001F));
+ builder.AddLine(new Vector2(155.300003F, -374F));
+ builder.AddLine(new Vector2(152.059998F, -374F));
+ builder.AddLine(new Vector2(152.059998F, -348.29599F));
+ builder.AddLine(new Vector2(155.300003F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(165.289993F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(166.550003F, -349.885986F), new Vector2(167.539993F, -350.947998F), new Vector2(168.259995F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(168.979996F, -353.635986F), new Vector2(169.339996F, -355.14801F), new Vector2(169.339996F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(169.339996F, -358.507996F), new Vector2(168.979996F, -360.019989F), new Vector2(168.259995F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(167.539993F, -362.708008F), new Vector2(166.550003F, -363.776001F), new Vector2(165.289993F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(164.029999F, -365.359985F), new Vector2(162.619995F, -365.756012F), new Vector2(161.059998F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(159.787994F, -365.756012F), new Vector2(158.630005F, -365.485992F), new Vector2(157.585999F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(156.542007F, -364.406006F), new Vector2(155.701996F, -363.661987F), new Vector2(155.065994F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(154.429993F, -361.765991F), new Vector2(154.076004F, -360.667999F), new Vector2(154.003998F, -359.420013F));
+ builder.AddLine(new Vector2(154.003998F, -354.272003F));
+ builder.AddCubicBezier(new Vector2(154.076004F, -353.048004F), new Vector2(154.423996F, -351.955994F), new Vector2(155.048004F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(155.671997F, -350.036011F), new Vector2(156.505997F, -349.286011F), new Vector2(157.550003F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(158.593994F, -348.205994F), new Vector2(159.764008F, -347.936005F), new Vector2(161.059998F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(162.619995F, -347.936005F), new Vector2(164.029999F, -348.325989F), new Vector2(165.289993F, -349.105988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0359()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(141.440002F, -362.444F));
+ builder.AddLine(new Vector2(141.440002F, -365.395996F));
+ builder.AddLine(new Vector2(129.776001F, -365.395996F));
+ builder.AddLine(new Vector2(129.776001F, -362.444F));
+ builder.AddLine(new Vector2(141.440002F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(137.227997F, -348.29599F));
+ builder.AddLine(new Vector2(137.227997F, -372.559998F));
+ builder.AddLine(new Vector2(133.988007F, -372.559998F));
+ builder.AddLine(new Vector2(133.988007F, -348.29599F));
+ builder.AddLine(new Vector2(137.227997F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0360()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(115.087997F, -348.29599F));
+ builder.AddLine(new Vector2(115.087997F, -365.395996F));
+ builder.AddLine(new Vector2(111.848F, -365.395996F));
+ builder.AddLine(new Vector2(111.848F, -348.29599F));
+ builder.AddLine(new Vector2(115.087997F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(127.183998F, -348.29599F));
+ builder.AddLine(new Vector2(127.183998F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(127.183998F, -360.09201F), new Vector2(126.896004F, -361.201996F), new Vector2(126.32F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(125.744003F, -363.290009F), new Vector2(124.958F, -364.135986F), new Vector2(123.961998F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(122.966003F, -365.432007F), new Vector2(121.82F, -365.756012F), new Vector2(120.524002F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(119.227997F, -365.756012F), new Vector2(118.064003F, -365.462006F), new Vector2(117.031998F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(116F, -364.286011F), new Vector2(115.195999F, -363.488007F), new Vector2(114.620003F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(114.043999F, -361.471985F), new Vector2(113.755997F, -360.320007F), new Vector2(113.755997F, -359.023987F));
+ builder.AddLine(new Vector2(115.087997F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(115.087997F, -359.131989F), new Vector2(115.279999F, -359.899994F), new Vector2(115.664001F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(116.047997F, -361.243988F), new Vector2(116.575996F, -361.772003F), new Vector2(117.248001F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(117.919998F, -362.540009F), new Vector2(118.688004F, -362.731995F), new Vector2(119.552002F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(120.848F, -362.731995F), new Vector2(121.898003F, -362.312012F), new Vector2(122.702003F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(123.505997F, -360.631989F), new Vector2(123.907997F, -359.563995F), new Vector2(123.907997F, -358.268005F));
+ builder.AddLine(new Vector2(123.907997F, -348.29599F));
+ builder.AddLine(new Vector2(127.183998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0361()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(104.251999F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(105.428001F, -349.196014F), new Vector2(106.435997F, -349.928009F), new Vector2(107.276001F, -350.888F));
+ builder.AddLine(new Vector2(105.188004F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(104.612F, -352.339996F), new Vector2(103.921997F, -351.835999F), new Vector2(103.117996F, -351.5F));
+ builder.AddCubicBezier(new Vector2(102.314003F, -351.164001F), new Vector2(101.431999F, -350.996002F), new Vector2(100.472F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(99.3199997F, -350.996002F), new Vector2(98.3000031F, -351.242004F), new Vector2(97.4120026F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(96.5240021F, -352.226013F), new Vector2(95.8399963F, -352.921997F), new Vector2(95.3600006F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(94.8799973F, -354.721985F), new Vector2(94.6399994F, -355.772003F), new Vector2(94.6399994F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(94.6399994F, -358.14801F), new Vector2(94.8679962F, -359.167999F), new Vector2(95.3239975F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(95.7799988F, -360.895996F), new Vector2(96.4280014F, -361.567993F), new Vector2(97.2679977F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(98.1080017F, -362.528015F), new Vector2(99.0800018F, -362.768005F), new Vector2(100.183998F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(101.239998F, -362.768005F), new Vector2(102.139999F, -362.54599F), new Vector2(102.884003F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(103.627998F, -361.65799F), new Vector2(104.204002F, -361.033997F), new Vector2(104.612F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(105.019997F, -359.425995F), new Vector2(105.223999F, -358.447998F), new Vector2(105.223999F, -357.29599F));
+ builder.AddLine(new Vector2(106.412003F, -358.339996F));
+ builder.AddLine(new Vector2(93.7040024F, -358.339996F));
+ builder.AddLine(new Vector2(93.7040024F, -355.640015F));
+ builder.AddLine(new Vector2(108.139999F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(108.211998F, -355.976013F), new Vector2(108.260002F, -356.282013F), new Vector2(108.283997F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(108.307999F, -356.834015F), new Vector2(108.32F, -357.09201F), new Vector2(108.32F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(108.32F, -358.963989F), new Vector2(107.977997F, -360.415985F), new Vector2(107.293999F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(106.610001F, -362.959991F), new Vector2(105.655998F, -363.955994F), new Vector2(104.431999F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(103.208F, -365.395996F), new Vector2(101.816002F, -365.756012F), new Vector2(100.255997F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(98.5999985F, -365.756012F), new Vector2(97.1060028F, -365.365997F), new Vector2(95.7740021F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(94.4420013F, -363.806F), new Vector2(93.3860016F, -362.743988F), new Vector2(92.6060028F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(91.8259964F, -360.056F), new Vector2(91.435997F, -358.544006F), new Vector2(91.435997F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(91.435997F, -355.160004F), new Vector2(91.8320007F, -353.635986F), new Vector2(92.6240005F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(93.4160004F, -350.947998F), new Vector2(94.4899979F, -349.885986F), new Vector2(95.8460007F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(97.2020035F, -348.325989F), new Vector2(98.7440033F, -347.936005F), new Vector2(100.472F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(101.816002F, -347.936005F), new Vector2(103.075996F, -348.187988F), new Vector2(104.251999F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0362()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(88.1600037F, -348.29599F));
+ builder.AddLine(new Vector2(88.1600037F, -359.276001F));
+ builder.AddCubicBezier(new Vector2(88.1600037F, -360.619995F), new Vector2(87.8659973F, -361.772003F), new Vector2(87.2779999F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(86.6900024F, -363.691986F), new Vector2(85.9039993F, -364.436005F), new Vector2(84.9199982F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(83.935997F, -365.492004F), new Vector2(82.8199997F, -365.756012F), new Vector2(81.5719986F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(80.3720016F, -365.756012F), new Vector2(79.2679977F, -365.485992F), new Vector2(78.2600021F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(77.2519989F, -364.406006F), new Vector2(76.4300003F, -363.661987F), new Vector2(75.7939987F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(75.1579971F, -361.765991F), new Vector2(74.8040009F, -360.631989F), new Vector2(74.7320023F, -359.312012F));
+ builder.AddLine(new Vector2(76.5680008F, -358.627991F));
+ builder.AddCubicBezier(new Vector2(76.5680008F, -359.492004F), new Vector2(76.7600021F, -360.223999F), new Vector2(77.1439972F, -360.824005F));
+ builder.AddCubicBezier(new Vector2(77.5279999F, -361.424011F), new Vector2(78.038002F, -361.891998F), new Vector2(78.6740036F, -362.227997F));
+ builder.AddCubicBezier(new Vector2(79.3099976F, -362.563995F), new Vector2(80.0240021F, -362.731995F), new Vector2(80.8160019F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(81.9680023F, -362.731995F), new Vector2(82.9339981F, -362.365997F), new Vector2(83.7139969F, -361.634003F));
+ builder.AddCubicBezier(new Vector2(84.4940033F, -360.902008F), new Vector2(84.8840027F, -359.899994F), new Vector2(84.8840027F, -358.627991F));
+ builder.AddLine(new Vector2(84.8840027F, -348.29599F));
+ builder.AddLine(new Vector2(88.1600037F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(76.5680008F, -348.29599F));
+ builder.AddLine(new Vector2(76.5680008F, -359.312012F));
+ builder.AddCubicBezier(new Vector2(76.5680008F, -360.631989F), new Vector2(76.2860031F, -361.772003F), new Vector2(75.7220001F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(75.1579971F, -363.691986F), new Vector2(74.3899994F, -364.436005F), new Vector2(73.4179993F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(72.4459991F, -365.492004F), new Vector2(71.3600006F, -365.756012F), new Vector2(70.1600037F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(68.935997F, -365.756012F), new Vector2(67.8320007F, -365.485992F), new Vector2(66.8479996F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(65.8639984F, -364.406006F), new Vector2(65.0899963F, -363.656006F), new Vector2(64.526001F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(63.9620018F, -361.735992F), new Vector2(63.6800003F, -360.608002F), new Vector2(63.6800003F, -359.312012F));
+ builder.AddLine(new Vector2(65.012001F, -358.627991F));
+ builder.AddCubicBezier(new Vector2(65.012001F, -359.492004F), new Vector2(65.2040024F, -360.223999F), new Vector2(65.5879974F, -360.824005F));
+ builder.AddCubicBezier(new Vector2(65.9720001F, -361.424011F), new Vector2(66.4759979F, -361.891998F), new Vector2(67.0999985F, -362.227997F));
+ builder.AddCubicBezier(new Vector2(67.723999F, -362.563995F), new Vector2(68.4319992F, -362.731995F), new Vector2(69.223999F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(70.4000015F, -362.731995F), new Vector2(71.3779984F, -362.365997F), new Vector2(72.1579971F, -361.634003F));
+ builder.AddCubicBezier(new Vector2(72.9380035F, -360.902008F), new Vector2(73.3280029F, -359.899994F), new Vector2(73.3280029F, -358.627991F));
+ builder.AddLine(new Vector2(73.3280029F, -348.29599F));
+ builder.AddLine(new Vector2(76.5680008F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(65.012001F, -348.29599F));
+ builder.AddLine(new Vector2(65.012001F, -365.395996F));
+ builder.AddLine(new Vector2(61.7719994F, -365.395996F));
+ builder.AddLine(new Vector2(61.7719994F, -348.29599F));
+ builder.AddLine(new Vector2(65.012001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0363()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(54.1759987F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(55.3520012F, -349.196014F), new Vector2(56.3600006F, -349.928009F), new Vector2(57.2000008F, -350.888F));
+ builder.AddLine(new Vector2(55.1119995F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(54.5359993F, -352.339996F), new Vector2(53.8460007F, -351.835999F), new Vector2(53.0419998F, -351.5F));
+ builder.AddCubicBezier(new Vector2(52.237999F, -351.164001F), new Vector2(51.355999F, -350.996002F), new Vector2(50.3959999F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(49.2439995F, -350.996002F), new Vector2(48.223999F, -351.242004F), new Vector2(47.3359985F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(46.4480019F, -352.226013F), new Vector2(45.7639999F, -352.921997F), new Vector2(45.2840004F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(44.8040009F, -354.721985F), new Vector2(44.5639992F, -355.772003F), new Vector2(44.5639992F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(44.5639992F, -358.14801F), new Vector2(44.7919998F, -359.167999F), new Vector2(45.2480011F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(45.7039986F, -360.895996F), new Vector2(46.3520012F, -361.567993F), new Vector2(47.1920013F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(48.0320015F, -362.528015F), new Vector2(49.0040016F, -362.768005F), new Vector2(50.1080017F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(51.1640015F, -362.768005F), new Vector2(52.0639992F, -362.54599F), new Vector2(52.8079987F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(53.5519981F, -361.65799F), new Vector2(54.1279984F, -361.033997F), new Vector2(54.5359993F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(54.9440002F, -359.425995F), new Vector2(55.1479988F, -358.447998F), new Vector2(55.1479988F, -357.29599F));
+ builder.AddLine(new Vector2(56.3359985F, -358.339996F));
+ builder.AddLine(new Vector2(43.6279984F, -358.339996F));
+ builder.AddLine(new Vector2(43.6279984F, -355.640015F));
+ builder.AddLine(new Vector2(58.0639992F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(58.1360016F, -355.976013F), new Vector2(58.1839981F, -356.282013F), new Vector2(58.2080002F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(58.2319984F, -356.834015F), new Vector2(58.2439995F, -357.09201F), new Vector2(58.2439995F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(58.2439995F, -358.963989F), new Vector2(57.9020004F, -360.415985F), new Vector2(57.2179985F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(56.5340004F, -362.959991F), new Vector2(55.5800018F, -363.955994F), new Vector2(54.355999F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(53.132F, -365.395996F), new Vector2(51.7400017F, -365.756012F), new Vector2(50.1800003F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(48.5239983F, -365.756012F), new Vector2(47.0299988F, -365.365997F), new Vector2(45.6980019F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(44.3660011F, -363.806F), new Vector2(43.3100014F, -362.743988F), new Vector2(42.5299988F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(41.75F, -360.056F), new Vector2(41.3600006F, -358.544006F), new Vector2(41.3600006F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(41.3600006F, -355.160004F), new Vector2(41.7560005F, -353.635986F), new Vector2(42.5480003F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(43.3400002F, -350.947998F), new Vector2(44.4140015F, -349.885986F), new Vector2(45.7700005F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(47.1259995F, -348.325989F), new Vector2(48.6679993F, -347.936005F), new Vector2(50.3959999F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(51.7400017F, -347.936005F), new Vector2(53F, -348.187988F), new Vector2(54.1759987F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0364()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(36.6980019F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(37.8380013F, -349.196014F), new Vector2(38.8040009F, -349.903992F), new Vector2(39.5960007F, -350.81601F));
+ builder.AddLine(new Vector2(37.4720001F, -352.976013F));
+ builder.AddCubicBezier(new Vector2(36.9199982F, -352.35199F), new Vector2(36.2659988F, -351.877991F), new Vector2(35.5099983F, -351.553986F));
+ builder.AddCubicBezier(new Vector2(34.7540016F, -351.230011F), new Vector2(33.9199982F, -351.067993F), new Vector2(33.0079994F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(31.9279995F, -351.067993F), new Vector2(30.9680004F, -351.320007F), new Vector2(30.1280003F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(29.2880001F, -352.328003F), new Vector2(28.6280003F, -353.011993F), new Vector2(28.1480007F, -353.876007F));
+ builder.AddCubicBezier(new Vector2(27.6679993F, -354.73999F), new Vector2(27.4279995F, -355.735992F), new Vector2(27.4279995F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(27.4279995F, -357.992004F), new Vector2(27.6679993F, -358.988007F), new Vector2(28.1480007F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(28.6280003F, -360.716003F), new Vector2(29.2880001F, -361.394012F), new Vector2(30.1280003F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(30.9680004F, -362.377991F), new Vector2(31.9279995F, -362.623993F), new Vector2(33.0079994F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(33.8959999F, -362.623993F), new Vector2(34.723999F, -362.462006F), new Vector2(35.4920006F, -362.138F));
+ builder.AddCubicBezier(new Vector2(36.2599983F, -361.813995F), new Vector2(36.9080009F, -361.339996F), new Vector2(37.4360008F, -360.716003F));
+ builder.AddLine(new Vector2(39.5960007F, -362.876007F));
+ builder.AddCubicBezier(new Vector2(38.7799988F, -363.812012F), new Vector2(37.8079987F, -364.526001F), new Vector2(36.6800003F, -365.018005F));
+ builder.AddCubicBezier(new Vector2(35.5519981F, -365.51001F), new Vector2(34.3279991F, -365.756012F), new Vector2(33.0079994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(31.3279991F, -365.756012F), new Vector2(29.8099995F, -365.365997F), new Vector2(28.4540005F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(27.0979996F, -363.806F), new Vector2(26.0300007F, -362.743988F), new Vector2(25.25F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(24.4699993F, -360.056F), new Vector2(24.0799999F, -358.544006F), new Vector2(24.0799999F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(24.0799999F, -355.208008F), new Vector2(24.4699993F, -353.701996F), new Vector2(25.25F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(26.0300007F, -350.98999F), new Vector2(27.0979996F, -349.915985F), new Vector2(28.4540005F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(29.8099995F, -348.332001F), new Vector2(31.3279991F, -347.936005F), new Vector2(33.0079994F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(34.3279991F, -347.936005F), new Vector2(35.5579987F, -348.187988F), new Vector2(36.6980019F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0365()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(8.70800018F, -348.29599F));
+ builder.AddLine(new Vector2(8.70800018F, -365.395996F));
+ builder.AddLine(new Vector2(5.46799994F, -365.395996F));
+ builder.AddLine(new Vector2(5.46799994F, -348.29599F));
+ builder.AddLine(new Vector2(8.70800018F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(20.8040009F, -348.29599F));
+ builder.AddLine(new Vector2(20.8040009F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(20.8040009F, -360.09201F), new Vector2(20.5160007F, -361.201996F), new Vector2(19.9400005F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(19.3640003F, -363.290009F), new Vector2(18.5779991F, -364.135986F), new Vector2(17.5820007F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(16.5860004F, -365.432007F), new Vector2(15.4399996F, -365.756012F), new Vector2(14.1440001F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(12.8479996F, -365.756012F), new Vector2(11.684F, -365.462006F), new Vector2(10.6520004F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(9.61999989F, -364.286011F), new Vector2(8.81599998F, -363.488007F), new Vector2(8.23999977F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(7.66400003F, -361.471985F), new Vector2(7.37599993F, -360.320007F), new Vector2(7.37599993F, -359.023987F));
+ builder.AddLine(new Vector2(8.70800018F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(8.70800018F, -359.131989F), new Vector2(8.89999962F, -359.899994F), new Vector2(9.2840004F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(9.66800022F, -361.243988F), new Vector2(10.1960001F, -361.772003F), new Vector2(10.868F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(11.54F, -362.540009F), new Vector2(12.3079996F, -362.731995F), new Vector2(13.1719999F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(14.4680004F, -362.731995F), new Vector2(15.5179996F, -362.312012F), new Vector2(16.3220005F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(17.1259995F, -360.631989F), new Vector2(17.5279999F, -359.563995F), new Vector2(17.5279999F, -358.268005F));
+ builder.AddLine(new Vector2(17.5279999F, -348.29599F));
+ builder.AddLine(new Vector2(20.8040009F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0366()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-2.41599989F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-1.31200004F, -349.537994F), new Vector2(-0.448000014F, -350.40799F), new Vector2(0.175999999F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(0.800000012F, -352.664001F), new Vector2(1.11199999F, -353.971985F), new Vector2(1.11199999F, -355.459991F));
+ builder.AddLine(new Vector2(1.11199999F, -365.395996F));
+ builder.AddLine(new Vector2(-2.12800002F, -365.395996F));
+ builder.AddLine(new Vector2(-2.12800002F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(-2.12800002F, -354.187988F), new Vector2(-2.48799992F, -353.078003F), new Vector2(-3.20799994F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(-3.92799997F, -351.470001F), new Vector2(-4.92399979F, -351.067993F), new Vector2(-6.1960001F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-7.03599977F, -351.067993F), new Vector2(-7.76800013F, -351.247986F), new Vector2(-8.3920002F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(-9.01599979F, -351.967987F), new Vector2(-9.48999977F, -352.48999F), new Vector2(-9.81400013F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(-10.1379995F, -353.858002F), new Vector2(-10.3000002F, -354.667999F), new Vector2(-10.3000002F, -355.604004F));
+ builder.AddLine(new Vector2(-10.3000002F, -365.395996F));
+ builder.AddLine(new Vector2(-13.54F, -365.395996F));
+ builder.AddLine(new Vector2(-13.54F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(-13.54F, -353.971985F), new Vector2(-13.2279997F, -352.664001F), new Vector2(-12.6040001F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(-11.9799995F, -350.40799F), new Vector2(-11.1099997F, -349.537994F), new Vector2(-9.99400043F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-8.87800026F, -348.313995F), new Vector2(-7.61199999F, -348.007996F), new Vector2(-6.1960001F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(-4.78000021F, -348.007996F), new Vector2(-3.51999998F, -348.313995F), new Vector2(-2.41599989F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0367()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-28.5160007F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-29.3560009F, -352.328003F), new Vector2(-30.0160007F, -353.018005F), new Vector2(-30.4960003F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-30.9759998F, -354.769989F), new Vector2(-31.2159996F, -355.772003F), new Vector2(-31.2159996F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-31.2159996F, -358.003998F), new Vector2(-30.9759998F, -358.988007F), new Vector2(-30.4960003F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-30.0160007F, -360.716003F), new Vector2(-29.3560009F, -361.394012F), new Vector2(-28.5160007F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-27.6760006F, -362.377991F), new Vector2(-26.7280006F, -362.623993F), new Vector2(-25.6720009F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-24.5680008F, -362.623993F), new Vector2(-23.6019993F, -362.377991F), new Vector2(-22.7740002F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-21.9459991F, -361.394012F), new Vector2(-21.2859993F, -360.716003F), new Vector2(-20.7940006F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-20.302F, -358.988007F), new Vector2(-20.0559998F, -358.003998F), new Vector2(-20.0559998F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-20.0559998F, -355.772003F), new Vector2(-20.2959995F, -354.769989F), new Vector2(-20.7759991F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-21.2560005F, -353.018005F), new Vector2(-21.9160004F, -352.328003F), new Vector2(-22.7560005F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-23.5960007F, -351.320007F), new Vector2(-24.5680008F, -351.067993F), new Vector2(-25.6720009F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-26.7280006F, -351.067993F), new Vector2(-27.6760006F, -351.320007F), new Vector2(-28.5160007F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-21.118F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-19.7619991F, -349.915985F), new Vector2(-18.6879997F, -350.98999F), new Vector2(-17.8959999F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-17.1040001F, -353.701996F), new Vector2(-16.7080002F, -355.220001F), new Vector2(-16.7080002F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-16.7080002F, -358.556F), new Vector2(-17.1040001F, -360.056F), new Vector2(-17.8959999F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-18.6879997F, -362.743988F), new Vector2(-19.7619991F, -363.806F), new Vector2(-21.118F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-22.4740009F, -365.365997F), new Vector2(-23.9920006F, -365.756012F), new Vector2(-25.6720009F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-27.3279991F, -365.756012F), new Vector2(-28.8279991F, -365.359985F), new Vector2(-30.1720009F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-31.5160007F, -363.776001F), new Vector2(-32.5839996F, -362.713989F), new Vector2(-33.3759995F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-34.1679993F, -360.049988F), new Vector2(-34.5639992F, -358.556F), new Vector2(-34.5639992F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-34.5639992F, -355.220001F), new Vector2(-34.1679993F, -353.701996F), new Vector2(-33.3759995F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-32.5839996F, -350.98999F), new Vector2(-31.5160007F, -349.915985F), new Vector2(-30.1720009F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-28.8279991F, -348.332001F), new Vector2(-27.3279991F, -347.936005F), new Vector2(-25.6720009F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-23.9920006F, -347.936005F), new Vector2(-22.4740009F, -348.332001F), new Vector2(-21.118F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0368()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-49.9360008F, -348.29599F));
+ builder.AddLine(new Vector2(-49.9360008F, -365.395996F));
+ builder.AddLine(new Vector2(-53.1759987F, -365.395996F));
+ builder.AddLine(new Vector2(-53.1759987F, -348.29599F));
+ builder.AddLine(new Vector2(-49.9360008F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-37.8400002F, -348.29599F));
+ builder.AddLine(new Vector2(-37.8400002F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-37.8400002F, -360.09201F), new Vector2(-38.1279984F, -361.201996F), new Vector2(-38.7039986F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-39.2799988F, -363.290009F), new Vector2(-40.0660019F, -364.135986F), new Vector2(-41.0620003F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-42.0579987F, -365.432007F), new Vector2(-43.2039986F, -365.756012F), new Vector2(-44.5F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-45.7960014F, -365.756012F), new Vector2(-46.9599991F, -365.462006F), new Vector2(-47.9920006F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-49.0239983F, -364.286011F), new Vector2(-49.8279991F, -363.488007F), new Vector2(-50.4039993F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-50.9799995F, -361.471985F), new Vector2(-51.2680016F, -360.320007F), new Vector2(-51.2680016F, -359.023987F));
+ builder.AddLine(new Vector2(-49.9360008F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-49.9360008F, -359.131989F), new Vector2(-49.7439995F, -359.899994F), new Vector2(-49.3600006F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-48.9760017F, -361.243988F), new Vector2(-48.4480019F, -361.772003F), new Vector2(-47.776001F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-47.1040001F, -362.540009F), new Vector2(-46.3359985F, -362.731995F), new Vector2(-45.4720001F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-44.1759987F, -362.731995F), new Vector2(-43.1259995F, -362.312012F), new Vector2(-42.3219986F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-41.5180016F, -360.631989F), new Vector2(-41.1160011F, -359.563995F), new Vector2(-41.1160011F, -358.268005F));
+ builder.AddLine(new Vector2(-41.1160011F, -348.29599F));
+ builder.AddLine(new Vector2(-37.8400002F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0369()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-69.6640015F, -348.29599F));
+ builder.AddLine(new Vector2(-69.6640015F, -365.395996F));
+ builder.AddLine(new Vector2(-72.9039993F, -365.395996F));
+ builder.AddLine(new Vector2(-72.9039993F, -348.29599F));
+ builder.AddLine(new Vector2(-69.6640015F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-57.5680008F, -348.29599F));
+ builder.AddLine(new Vector2(-57.5680008F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-57.5680008F, -360.09201F), new Vector2(-57.855999F, -361.201996F), new Vector2(-58.4319992F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-59.0079994F, -363.290009F), new Vector2(-59.7939987F, -364.135986F), new Vector2(-60.7900009F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-61.7859993F, -365.432007F), new Vector2(-62.9319992F, -365.756012F), new Vector2(-64.2279968F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-65.5240021F, -365.756012F), new Vector2(-66.6880035F, -365.462006F), new Vector2(-67.7200012F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-68.7519989F, -364.286011F), new Vector2(-69.5559998F, -363.488007F), new Vector2(-70.1320038F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-70.7080002F, -361.471985F), new Vector2(-70.9960022F, -360.320007F), new Vector2(-70.9960022F, -359.023987F));
+ builder.AddLine(new Vector2(-69.6640015F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-69.6640015F, -359.131989F), new Vector2(-69.4720001F, -359.899994F), new Vector2(-69.0879974F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-68.7040024F, -361.243988F), new Vector2(-68.1760025F, -361.772003F), new Vector2(-67.5039978F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-66.8320007F, -362.540009F), new Vector2(-66.064003F, -362.731995F), new Vector2(-65.1999969F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-63.9039993F, -362.731995F), new Vector2(-62.8540001F, -362.312012F), new Vector2(-62.0499992F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-61.2459984F, -360.631989F), new Vector2(-60.8440018F, -359.563995F), new Vector2(-60.8440018F, -358.268005F));
+ builder.AddLine(new Vector2(-60.8440018F, -348.29599F));
+ builder.AddLine(new Vector2(-57.5680008F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0370()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-77.6200027F, -348.29599F));
+ builder.AddLine(new Vector2(-77.6200027F, -365.395996F));
+ builder.AddLine(new Vector2(-80.8960037F, -365.395996F));
+ builder.AddLine(new Vector2(-80.8960037F, -361.220001F));
+ builder.AddLine(new Vector2(-80.2839966F, -357.079987F));
+ builder.AddLine(new Vector2(-80.8960037F, -352.903992F));
+ builder.AddLine(new Vector2(-80.8960037F, -348.29599F));
+ builder.AddLine(new Vector2(-77.6200027F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-88.9240036F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-89.7639999F, -352.256012F), new Vector2(-90.4179993F, -352.946014F), new Vector2(-90.8860016F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-91.3539963F, -354.697998F), new Vector2(-91.5879974F, -355.712006F), new Vector2(-91.5879974F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-91.5879974F, -357.992004F), new Vector2(-91.3539963F, -358.993988F), new Vector2(-90.8860016F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-90.4179993F, -360.746002F), new Vector2(-89.7699966F, -361.436005F), new Vector2(-88.9420013F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-88.1139984F, -362.444F), new Vector2(-87.1600037F, -362.696014F), new Vector2(-86.0800018F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-85F, -362.696014F), new Vector2(-84.0579987F, -362.450012F), new Vector2(-83.2539978F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-82.4499969F, -361.466003F), new Vector2(-81.8199997F, -360.776001F), new Vector2(-81.3639984F, -359.888F));
+ builder.AddCubicBezier(new Vector2(-80.9079971F, -359F), new Vector2(-80.6800003F, -357.980011F), new Vector2(-80.6800003F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-80.6800003F, -355.123993F), new Vector2(-81.1719971F, -353.726013F), new Vector2(-82.1559982F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(-83.1399994F, -351.541992F), new Vector2(-84.435997F, -350.996002F), new Vector2(-86.0439987F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-87.1240005F, -350.996002F), new Vector2(-88.0839996F, -351.247986F), new Vector2(-88.9240036F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-83.0920029F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-82.0599976F, -349.286011F), new Vector2(-81.237999F, -350.036011F), new Vector2(-80.6259995F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-80.0139999F, -351.955994F), new Vector2(-79.6719971F, -353.048004F), new Vector2(-79.5999985F, -354.272003F));
+ builder.AddLine(new Vector2(-79.5999985F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-79.6719971F, -360.667999F), new Vector2(-80.0199966F, -361.765991F), new Vector2(-80.6439972F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-81.2679977F, -363.661987F), new Vector2(-82.0899963F, -364.406006F), new Vector2(-83.1100006F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-84.1299973F, -365.485992F), new Vector2(-85.288002F, -365.756012F), new Vector2(-86.5839996F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-88.1679993F, -365.756012F), new Vector2(-89.5899963F, -365.359985F), new Vector2(-90.8499985F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-92.1100006F, -363.776001F), new Vector2(-93.1060028F, -362.708008F), new Vector2(-93.8379974F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-94.5699997F, -360.019989F), new Vector2(-94.935997F, -358.507996F), new Vector2(-94.935997F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-94.935997F, -355.14801F), new Vector2(-94.5699997F, -353.635986F), new Vector2(-93.8379974F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-93.1060028F, -350.947998F), new Vector2(-92.1100006F, -349.885986F), new Vector2(-90.8499985F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-89.5899963F, -348.325989F), new Vector2(-88.1679993F, -347.936005F), new Vector2(-86.5839996F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-85.288002F, -347.936005F), new Vector2(-84.1240005F, -348.205994F), new Vector2(-83.0920029F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0371()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-117.795998F, -348.29599F));
+ builder.AddLine(new Vector2(-117.795998F, -365.395996F));
+ builder.AddLine(new Vector2(-121.036003F, -365.395996F));
+ builder.AddLine(new Vector2(-121.036003F, -348.29599F));
+ builder.AddLine(new Vector2(-117.795998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-105.699997F, -348.29599F));
+ builder.AddLine(new Vector2(-105.699997F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-105.699997F, -360.09201F), new Vector2(-105.987999F, -361.201996F), new Vector2(-106.564003F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-107.139999F, -363.290009F), new Vector2(-107.926003F, -364.135986F), new Vector2(-108.921997F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-109.917999F, -365.432007F), new Vector2(-111.064003F, -365.756012F), new Vector2(-112.360001F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-113.655998F, -365.756012F), new Vector2(-114.82F, -365.462006F), new Vector2(-115.851997F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-116.884003F, -364.286011F), new Vector2(-117.688004F, -363.488007F), new Vector2(-118.264F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-118.839996F, -361.471985F), new Vector2(-119.127998F, -360.320007F), new Vector2(-119.127998F, -359.023987F));
+ builder.AddLine(new Vector2(-117.795998F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-117.795998F, -359.131989F), new Vector2(-117.603996F, -359.899994F), new Vector2(-117.220001F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-116.835999F, -361.243988F), new Vector2(-116.307999F, -361.772003F), new Vector2(-115.636002F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-114.963997F, -362.540009F), new Vector2(-114.195999F, -362.731995F), new Vector2(-113.332001F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-112.036003F, -362.731995F), new Vector2(-110.986F, -362.312012F), new Vector2(-110.181999F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-109.377998F, -360.631989F), new Vector2(-108.975998F, -359.563995F), new Vector2(-108.975998F, -358.268005F));
+ builder.AddLine(new Vector2(-108.975998F, -348.29599F));
+ builder.AddLine(new Vector2(-105.699997F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0372()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-128.632004F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-127.456001F, -349.196014F), new Vector2(-126.447998F, -349.928009F), new Vector2(-125.608002F, -350.888F));
+ builder.AddLine(new Vector2(-127.695999F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-128.272003F, -352.339996F), new Vector2(-128.962006F, -351.835999F), new Vector2(-129.766006F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-130.570007F, -351.164001F), new Vector2(-131.451996F, -350.996002F), new Vector2(-132.412003F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-133.563995F, -350.996002F), new Vector2(-134.584F, -351.242004F), new Vector2(-135.472F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-136.360001F, -352.226013F), new Vector2(-137.044006F, -352.921997F), new Vector2(-137.524002F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-138.003998F, -354.721985F), new Vector2(-138.244003F, -355.772003F), new Vector2(-138.244003F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-138.244003F, -358.14801F), new Vector2(-138.016006F, -359.167999F), new Vector2(-137.559998F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-137.104004F, -360.895996F), new Vector2(-136.455994F, -361.567993F), new Vector2(-135.615997F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-134.776001F, -362.528015F), new Vector2(-133.804001F, -362.768005F), new Vector2(-132.699997F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-131.643997F, -362.768005F), new Vector2(-130.744003F, -362.54599F), new Vector2(-130F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-129.255997F, -361.65799F), new Vector2(-128.679993F, -361.033997F), new Vector2(-128.272003F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-127.863998F, -359.425995F), new Vector2(-127.660004F, -358.447998F), new Vector2(-127.660004F, -357.29599F));
+ builder.AddLine(new Vector2(-126.472F, -358.339996F));
+ builder.AddLine(new Vector2(-139.179993F, -358.339996F));
+ builder.AddLine(new Vector2(-139.179993F, -355.640015F));
+ builder.AddLine(new Vector2(-124.744003F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-124.671997F, -355.976013F), new Vector2(-124.624001F, -356.282013F), new Vector2(-124.599998F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-124.575996F, -356.834015F), new Vector2(-124.564003F, -357.09201F), new Vector2(-124.564003F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-124.564003F, -358.963989F), new Vector2(-124.905998F, -360.415985F), new Vector2(-125.589996F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-126.274002F, -362.959991F), new Vector2(-127.227997F, -363.955994F), new Vector2(-128.451996F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-129.675995F, -365.395996F), new Vector2(-131.067993F, -365.756012F), new Vector2(-132.628006F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-134.283997F, -365.756012F), new Vector2(-135.778F, -365.365997F), new Vector2(-137.110001F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-138.442001F, -363.806F), new Vector2(-139.498001F, -362.743988F), new Vector2(-140.278F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-141.057999F, -360.056F), new Vector2(-141.447998F, -358.544006F), new Vector2(-141.447998F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-141.447998F, -355.160004F), new Vector2(-141.052002F, -353.635986F), new Vector2(-140.259995F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-139.468002F, -350.947998F), new Vector2(-138.393997F, -349.885986F), new Vector2(-137.037994F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-135.682007F, -348.325989F), new Vector2(-134.139999F, -347.936005F), new Vector2(-132.412003F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-131.067993F, -347.936005F), new Vector2(-129.807999F, -348.187988F), new Vector2(-128.632004F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0373()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-145.048004F, -374F));
+ builder.AddLine(new Vector2(-148.324005F, -374F));
+ builder.AddLine(new Vector2(-148.324005F, -361.220001F));
+ builder.AddLine(new Vector2(-147.712006F, -357.079987F));
+ builder.AddLine(new Vector2(-148.324005F, -352.903992F));
+ builder.AddLine(new Vector2(-148.324005F, -348.29599F));
+ builder.AddLine(new Vector2(-145.048004F, -348.29599F));
+ builder.AddLine(new Vector2(-145.048004F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-156.369995F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-157.197998F, -352.226013F), new Vector2(-157.845993F, -352.915985F), new Vector2(-158.313995F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(-158.781998F, -354.691986F), new Vector2(-159.016006F, -355.712006F), new Vector2(-159.016006F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-159.016006F, -358.015991F), new Vector2(-158.781998F, -359.029999F), new Vector2(-158.313995F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(-157.845993F, -360.782013F), new Vector2(-157.203995F, -361.466003F), new Vector2(-156.388F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-155.572006F, -362.450012F), new Vector2(-154.623993F, -362.696014F), new Vector2(-153.544006F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-152.464005F, -362.696014F), new Vector2(-151.516006F, -362.444F), new Vector2(-150.699997F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-149.884003F, -361.436005F), new Vector2(-149.248001F, -360.746002F), new Vector2(-148.792007F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-148.335999F, -358.993988F), new Vector2(-148.108002F, -357.980011F), new Vector2(-148.108002F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-148.108002F, -355.700012F), new Vector2(-148.335999F, -354.697998F), new Vector2(-148.792007F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-149.248001F, -352.946014F), new Vector2(-149.884003F, -352.256012F), new Vector2(-150.699997F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-151.516006F, -351.247986F), new Vector2(-152.464005F, -350.996002F), new Vector2(-153.544006F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-154.600006F, -350.996002F), new Vector2(-155.542007F, -351.242004F), new Vector2(-156.369995F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-150.556F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-149.524002F, -349.286011F), new Vector2(-148.695999F, -350.036011F), new Vector2(-148.072006F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-147.447998F, -351.955994F), new Vector2(-147.100006F, -353.048004F), new Vector2(-147.028F, -354.272003F));
+ builder.AddLine(new Vector2(-147.028F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-147.100006F, -360.667999F), new Vector2(-147.453995F, -361.765991F), new Vector2(-148.089996F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-148.725998F, -363.661987F), new Vector2(-149.559998F, -364.406006F), new Vector2(-150.591995F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-151.623993F, -365.485992F), new Vector2(-152.787994F, -365.756012F), new Vector2(-154.084F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-155.643997F, -365.756012F), new Vector2(-157.048004F, -365.359985F), new Vector2(-158.296005F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-159.544006F, -363.776001F), new Vector2(-160.533997F, -362.708008F), new Vector2(-161.266006F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-161.998001F, -360.019989F), new Vector2(-162.363998F, -358.507996F), new Vector2(-162.363998F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-162.363998F, -355.14801F), new Vector2(-161.998001F, -353.635986F), new Vector2(-161.266006F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-160.533997F, -350.947998F), new Vector2(-159.544006F, -349.885986F), new Vector2(-158.296005F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-157.048004F, -348.325989F), new Vector2(-155.643997F, -347.936005F), new Vector2(-154.084F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-152.764008F, -347.936005F), new Vector2(-151.587997F, -348.205994F), new Vector2(-150.556F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0374()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-166F, -374F));
+ builder.AddLine(new Vector2(-169.276001F, -374F));
+ builder.AddLine(new Vector2(-169.276001F, -361.220001F));
+ builder.AddLine(new Vector2(-168.664001F, -357.079987F));
+ builder.AddLine(new Vector2(-169.276001F, -352.903992F));
+ builder.AddLine(new Vector2(-169.276001F, -348.29599F));
+ builder.AddLine(new Vector2(-166F, -348.29599F));
+ builder.AddLine(new Vector2(-166F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-177.322006F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-178.149994F, -352.226013F), new Vector2(-178.798004F, -352.915985F), new Vector2(-179.266006F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(-179.733994F, -354.691986F), new Vector2(-179.968002F, -355.712006F), new Vector2(-179.968002F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-179.968002F, -358.015991F), new Vector2(-179.733994F, -359.029999F), new Vector2(-179.266006F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(-178.798004F, -360.782013F), new Vector2(-178.156006F, -361.466003F), new Vector2(-177.339996F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-176.524002F, -362.450012F), new Vector2(-175.576004F, -362.696014F), new Vector2(-174.496002F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-173.416F, -362.696014F), new Vector2(-172.468002F, -362.444F), new Vector2(-171.651993F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-170.835999F, -361.436005F), new Vector2(-170.199997F, -360.746002F), new Vector2(-169.744003F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-169.287994F, -358.993988F), new Vector2(-169.059998F, -357.980011F), new Vector2(-169.059998F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-169.059998F, -355.700012F), new Vector2(-169.287994F, -354.697998F), new Vector2(-169.744003F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-170.199997F, -352.946014F), new Vector2(-170.835999F, -352.256012F), new Vector2(-171.651993F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-172.468002F, -351.247986F), new Vector2(-173.416F, -350.996002F), new Vector2(-174.496002F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-175.552002F, -350.996002F), new Vector2(-176.494003F, -351.242004F), new Vector2(-177.322006F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-171.507996F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-170.475998F, -349.286011F), new Vector2(-169.647995F, -350.036011F), new Vector2(-169.024002F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-168.399994F, -351.955994F), new Vector2(-168.052002F, -353.048004F), new Vector2(-167.979996F, -354.272003F));
+ builder.AddLine(new Vector2(-167.979996F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-168.052002F, -360.667999F), new Vector2(-168.406006F, -361.765991F), new Vector2(-169.042007F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-169.677994F, -363.661987F), new Vector2(-170.511993F, -364.406006F), new Vector2(-171.544006F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-172.576004F, -365.485992F), new Vector2(-173.740005F, -365.756012F), new Vector2(-175.035995F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-176.595993F, -365.756012F), new Vector2(-178F, -365.359985F), new Vector2(-179.248001F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-180.496002F, -363.776001F), new Vector2(-181.485992F, -362.708008F), new Vector2(-182.218002F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-182.949997F, -360.019989F), new Vector2(-183.315994F, -358.507996F), new Vector2(-183.315994F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-183.315994F, -355.14801F), new Vector2(-182.949997F, -353.635986F), new Vector2(-182.218002F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-181.485992F, -350.947998F), new Vector2(-180.496002F, -349.885986F), new Vector2(-179.248001F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-178F, -348.325989F), new Vector2(-176.595993F, -347.936005F), new Vector2(-175.035995F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-173.716003F, -347.936005F), new Vector2(-172.539993F, -348.205994F), new Vector2(-171.507996F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0375()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-190.119995F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-189.016006F, -349.537994F), new Vector2(-188.151993F, -350.40799F), new Vector2(-187.528F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(-186.904007F, -352.664001F), new Vector2(-186.591995F, -353.971985F), new Vector2(-186.591995F, -355.459991F));
+ builder.AddLine(new Vector2(-186.591995F, -365.395996F));
+ builder.AddLine(new Vector2(-189.832001F, -365.395996F));
+ builder.AddLine(new Vector2(-189.832001F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(-189.832001F, -354.187988F), new Vector2(-190.192001F, -353.078003F), new Vector2(-190.912003F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(-191.632004F, -351.470001F), new Vector2(-192.628006F, -351.067993F), new Vector2(-193.899994F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-194.740005F, -351.067993F), new Vector2(-195.472F, -351.247986F), new Vector2(-196.095993F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(-196.720001F, -351.967987F), new Vector2(-197.194F, -352.48999F), new Vector2(-197.518005F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(-197.841995F, -353.858002F), new Vector2(-198.003998F, -354.667999F), new Vector2(-198.003998F, -355.604004F));
+ builder.AddLine(new Vector2(-198.003998F, -365.395996F));
+ builder.AddLine(new Vector2(-201.244003F, -365.395996F));
+ builder.AddLine(new Vector2(-201.244003F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(-201.244003F, -353.971985F), new Vector2(-200.932007F, -352.664001F), new Vector2(-200.307999F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(-199.684006F, -350.40799F), new Vector2(-198.813995F, -349.537994F), new Vector2(-197.697998F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-196.582001F, -348.313995F), new Vector2(-195.315994F, -348.007996F), new Vector2(-193.899994F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(-192.483994F, -348.007996F), new Vector2(-191.223999F, -348.313995F), new Vector2(-190.119995F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0376()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-206.158005F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(-205.018005F, -350.276001F), new Vector2(-204.447998F, -351.548004F), new Vector2(-204.447998F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(-204.447998F, -354.212006F), new Vector2(-204.669998F, -355.063995F), new Vector2(-205.113998F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(-205.557999F, -356.359985F), new Vector2(-206.128006F, -356.876007F), new Vector2(-206.824005F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(-207.520004F, -357.644012F), new Vector2(-208.251999F, -357.950012F), new Vector2(-209.020004F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(-209.787994F, -358.406006F), new Vector2(-210.526001F, -358.627991F), new Vector2(-211.233994F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(-211.942001F, -359.059998F), new Vector2(-212.511993F, -359.324005F), new Vector2(-212.944F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(-213.376007F, -359.947998F), new Vector2(-213.591995F, -360.391998F), new Vector2(-213.591995F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(-213.591995F, -361.519989F), new Vector2(-213.345993F, -361.963989F), new Vector2(-212.854004F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-212.362F, -362.635986F), new Vector2(-211.647995F, -362.803986F), new Vector2(-210.712006F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(-209.824005F, -362.803986F), new Vector2(-209.031998F, -362.635986F), new Vector2(-208.335999F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-207.639999F, -361.963989F), new Vector2(-207.039993F, -361.484009F), new Vector2(-206.535995F, -360.859985F));
+ builder.AddLine(new Vector2(-204.447998F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(-205.119995F, -363.884003F), new Vector2(-205.977997F, -364.585999F), new Vector2(-207.022003F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(-208.065994F, -365.522003F), new Vector2(-209.259995F, -365.756012F), new Vector2(-210.604004F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-211.876007F, -365.756012F), new Vector2(-212.968002F, -365.552002F), new Vector2(-213.880005F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(-214.792007F, -364.735992F), new Vector2(-215.494003F, -364.153992F), new Vector2(-215.985992F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(-216.477997F, -362.641998F), new Vector2(-216.723999F, -361.747986F), new Vector2(-216.723999F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(-216.723999F, -359.68399F), new Vector2(-216.501999F, -358.850006F), new Vector2(-216.057999F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(-215.613998F, -357.578003F), new Vector2(-215.044006F, -357.079987F), new Vector2(-214.348007F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(-213.651993F, -356.359985F), new Vector2(-212.914001F, -356.071991F), new Vector2(-212.134003F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(-211.354004F, -355.640015F), new Vector2(-210.615997F, -355.417999F), new Vector2(-209.919998F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(-209.223999F, -354.962006F), new Vector2(-208.654007F, -354.674011F), new Vector2(-208.210007F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(-207.766006F, -353.977997F), new Vector2(-207.544006F, -353.492004F), new Vector2(-207.544006F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(-207.544006F, -352.243988F), new Vector2(-207.820007F, -351.757996F), new Vector2(-208.371994F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(-208.923996F, -351.062012F), new Vector2(-209.703995F, -350.888F), new Vector2(-210.712006F, -350.888F));
+ builder.AddCubicBezier(new Vector2(-211.720001F, -350.888F), new Vector2(-212.632004F, -351.074005F), new Vector2(-213.447998F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(-214.264008F, -351.817993F), new Vector2(-214.983994F, -352.388F), new Vector2(-215.608002F, -353.156006F));
+ builder.AddLine(new Vector2(-217.695999F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-217.167999F, -350.420013F), new Vector2(-216.550003F, -349.862F), new Vector2(-215.841995F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(-215.134003F, -348.925995F), new Vector2(-214.348007F, -348.56601F), new Vector2(-213.483994F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(-212.619995F, -348.062012F), new Vector2(-211.707993F, -347.936005F), new Vector2(-210.748001F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-208.828003F, -347.936005F), new Vector2(-207.298004F, -348.403992F), new Vector2(-206.158005F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0377()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-228.981995F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(-227.841995F, -350.276001F), new Vector2(-227.272003F, -351.548004F), new Vector2(-227.272003F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(-227.272003F, -354.212006F), new Vector2(-227.494003F, -355.063995F), new Vector2(-227.938004F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(-228.382004F, -356.359985F), new Vector2(-228.951996F, -356.876007F), new Vector2(-229.647995F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(-230.343994F, -357.644012F), new Vector2(-231.076004F, -357.950012F), new Vector2(-231.843994F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(-232.612F, -358.406006F), new Vector2(-233.350006F, -358.627991F), new Vector2(-234.057999F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(-234.766006F, -359.059998F), new Vector2(-235.335999F, -359.324005F), new Vector2(-235.768005F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(-236.199997F, -359.947998F), new Vector2(-236.416F, -360.391998F), new Vector2(-236.416F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(-236.416F, -361.519989F), new Vector2(-236.169998F, -361.963989F), new Vector2(-235.677994F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-235.186005F, -362.635986F), new Vector2(-234.472F, -362.803986F), new Vector2(-233.535995F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(-232.647995F, -362.803986F), new Vector2(-231.856003F, -362.635986F), new Vector2(-231.160004F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-230.464005F, -361.963989F), new Vector2(-229.863998F, -361.484009F), new Vector2(-229.360001F, -360.859985F));
+ builder.AddLine(new Vector2(-227.272003F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(-227.944F, -363.884003F), new Vector2(-228.802002F, -364.585999F), new Vector2(-229.845993F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(-230.889999F, -365.522003F), new Vector2(-232.084F, -365.756012F), new Vector2(-233.427994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-234.699997F, -365.756012F), new Vector2(-235.792007F, -365.552002F), new Vector2(-236.703995F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(-237.615997F, -364.735992F), new Vector2(-238.317993F, -364.153992F), new Vector2(-238.809998F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(-239.302002F, -362.641998F), new Vector2(-239.548004F, -361.747986F), new Vector2(-239.548004F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(-239.548004F, -359.68399F), new Vector2(-239.326004F, -358.850006F), new Vector2(-238.882004F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(-238.438004F, -357.578003F), new Vector2(-237.867996F, -357.079987F), new Vector2(-237.171997F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(-236.475998F, -356.359985F), new Vector2(-235.738007F, -356.071991F), new Vector2(-234.957993F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(-234.177994F, -355.640015F), new Vector2(-233.440002F, -355.417999F), new Vector2(-232.744003F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(-232.048004F, -354.962006F), new Vector2(-231.477997F, -354.674011F), new Vector2(-231.033997F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(-230.589996F, -353.977997F), new Vector2(-230.367996F, -353.492004F), new Vector2(-230.367996F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(-230.367996F, -352.243988F), new Vector2(-230.643997F, -351.757996F), new Vector2(-231.195999F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(-231.748001F, -351.062012F), new Vector2(-232.528F, -350.888F), new Vector2(-233.535995F, -350.888F));
+ builder.AddCubicBezier(new Vector2(-234.544006F, -350.888F), new Vector2(-235.455994F, -351.074005F), new Vector2(-236.272003F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(-237.087997F, -351.817993F), new Vector2(-237.807999F, -352.388F), new Vector2(-238.432007F, -353.156006F));
+ builder.AddLine(new Vector2(-240.520004F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-239.992004F, -350.420013F), new Vector2(-239.373993F, -349.862F), new Vector2(-238.666F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(-237.957993F, -348.925995F), new Vector2(-237.171997F, -348.56601F), new Vector2(-236.307999F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(-235.444F, -348.062012F), new Vector2(-234.531998F, -347.936005F), new Vector2(-233.572006F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-231.651993F, -347.936005F), new Vector2(-230.121994F, -348.403992F), new Vector2(-228.981995F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0378()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-243.940002F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-243.556F, -369.806F), new Vector2(-243.363998F, -370.303986F), new Vector2(-243.363998F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-243.363998F, -371.480011F), new Vector2(-243.556F, -371.966003F), new Vector2(-243.940002F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-244.324005F, -372.757996F), new Vector2(-244.815994F, -372.955994F), new Vector2(-245.416F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(-246.016006F, -372.955994F), new Vector2(-246.507996F, -372.757996F), new Vector2(-246.891998F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-247.276001F, -371.966003F), new Vector2(-247.468002F, -371.480011F), new Vector2(-247.468002F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-247.468002F, -370.303986F), new Vector2(-247.276001F, -369.806F), new Vector2(-246.891998F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-246.507996F, -369.014008F), new Vector2(-246.016006F, -368.81601F), new Vector2(-245.416F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(-244.815994F, -368.81601F), new Vector2(-244.324005F, -369.014008F), new Vector2(-243.940002F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-243.796005F, -348.29599F));
+ builder.AddLine(new Vector2(-243.796005F, -365.395996F));
+ builder.AddLine(new Vector2(-247.072006F, -365.395996F));
+ builder.AddLine(new Vector2(-247.072006F, -348.29599F));
+ builder.AddLine(new Vector2(-243.796005F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0379()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-263.559998F, -348.29599F));
+ builder.AddLine(new Vector2(-263.559998F, -374F));
+ builder.AddLine(new Vector2(-266.799988F, -374F));
+ builder.AddLine(new Vector2(-266.799988F, -348.29599F));
+ builder.AddLine(new Vector2(-263.559998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-251.464005F, -348.29599F));
+ builder.AddLine(new Vector2(-251.464005F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-251.464005F, -360.26001F), new Vector2(-251.751999F, -361.447998F), new Vector2(-252.328003F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-252.904007F, -363.511993F), new Vector2(-253.690002F, -364.31601F), new Vector2(-254.686005F, -364.891998F));
+ builder.AddCubicBezier(new Vector2(-255.682007F, -365.467987F), new Vector2(-256.828003F, -365.756012F), new Vector2(-258.123993F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-259.420013F, -365.756012F), new Vector2(-260.584015F, -365.462006F), new Vector2(-261.615997F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-262.64801F, -364.286011F), new Vector2(-263.451996F, -363.488007F), new Vector2(-264.028015F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-264.604004F, -361.471985F), new Vector2(-264.891998F, -360.320007F), new Vector2(-264.891998F, -359.023987F));
+ builder.AddLine(new Vector2(-263.559998F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-263.559998F, -359.131989F), new Vector2(-263.368011F, -359.899994F), new Vector2(-262.984009F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-262.600006F, -361.243988F), new Vector2(-262.071991F, -361.772003F), new Vector2(-261.399994F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-260.727997F, -362.540009F), new Vector2(-259.959991F, -362.731995F), new Vector2(-259.096008F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-257.799988F, -362.731995F), new Vector2(-256.75F, -362.312012F), new Vector2(-255.945999F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-255.141998F, -360.631989F), new Vector2(-254.740005F, -359.563995F), new Vector2(-254.740005F, -358.268005F));
+ builder.AddLine(new Vector2(-254.740005F, -348.29599F));
+ builder.AddLine(new Vector2(-251.464005F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0380()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-269.967987F, -362.444F));
+ builder.AddLine(new Vector2(-269.967987F, -365.395996F));
+ builder.AddLine(new Vector2(-281.631989F, -365.395996F));
+ builder.AddLine(new Vector2(-281.631989F, -362.444F));
+ builder.AddLine(new Vector2(-269.967987F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-274.179993F, -348.29599F));
+ builder.AddLine(new Vector2(-274.179993F, -372.559998F));
+ builder.AddLine(new Vector2(-277.420013F, -372.559998F));
+ builder.AddLine(new Vector2(-277.420013F, -348.29599F));
+ builder.AddLine(new Vector2(-274.179993F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0381()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-298.191986F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(-297.424011F, -362.312012F), new Vector2(-296.440002F, -362.696014F), new Vector2(-295.23999F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-294.664001F, -362.696014F), new Vector2(-294.160004F, -362.612F), new Vector2(-293.727997F, -362.444F));
+ builder.AddCubicBezier(new Vector2(-293.29599F, -362.276001F), new Vector2(-292.899994F, -362F), new Vector2(-292.540009F, -361.615997F));
+ builder.AddLine(new Vector2(-290.415985F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-291.015991F, -364.507996F), new Vector2(-291.664001F, -365.006012F), new Vector2(-292.359985F, -365.306F));
+ builder.AddCubicBezier(new Vector2(-293.056F, -365.605988F), new Vector2(-293.835999F, -365.756012F), new Vector2(-294.700012F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-296.596008F, -365.756012F), new Vector2(-298.048004F, -365.108002F), new Vector2(-299.056F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-300.063995F, -362.515991F), new Vector2(-300.567993F, -360.776001F), new Vector2(-300.567993F, -358.59201F));
+ builder.AddLine(new Vector2(-299.343994F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(-299.343994F, -359.600006F), new Vector2(-298.959991F, -360.776001F), new Vector2(-298.191986F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-299.343994F, -348.29599F));
+ builder.AddLine(new Vector2(-299.343994F, -365.395996F));
+ builder.AddLine(new Vector2(-302.584015F, -365.395996F));
+ builder.AddLine(new Vector2(-302.584015F, -348.29599F));
+ builder.AddLine(new Vector2(-299.343994F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0382()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-317.992004F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-318.832001F, -352.328003F), new Vector2(-319.492004F, -353.018005F), new Vector2(-319.971985F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-320.451996F, -354.769989F), new Vector2(-320.691986F, -355.772003F), new Vector2(-320.691986F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-320.691986F, -358.003998F), new Vector2(-320.451996F, -358.988007F), new Vector2(-319.971985F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-319.492004F, -360.716003F), new Vector2(-318.832001F, -361.394012F), new Vector2(-317.992004F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-317.152008F, -362.377991F), new Vector2(-316.20401F, -362.623993F), new Vector2(-315.14801F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-314.044006F, -362.623993F), new Vector2(-313.078003F, -362.377991F), new Vector2(-312.25F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-311.421997F, -361.394012F), new Vector2(-310.761993F, -360.716003F), new Vector2(-310.269989F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-309.778015F, -358.988007F), new Vector2(-309.532013F, -358.003998F), new Vector2(-309.532013F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-309.532013F, -355.772003F), new Vector2(-309.772003F, -354.769989F), new Vector2(-310.252014F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-310.731995F, -353.018005F), new Vector2(-311.391998F, -352.328003F), new Vector2(-312.231995F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-313.071991F, -351.320007F), new Vector2(-314.044006F, -351.067993F), new Vector2(-315.14801F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-316.20401F, -351.067993F), new Vector2(-317.152008F, -351.320007F), new Vector2(-317.992004F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-310.593994F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-309.238007F, -349.915985F), new Vector2(-308.164001F, -350.98999F), new Vector2(-307.372009F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-306.579987F, -353.701996F), new Vector2(-306.18399F, -355.220001F), new Vector2(-306.18399F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-306.18399F, -358.556F), new Vector2(-306.579987F, -360.056F), new Vector2(-307.372009F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-308.164001F, -362.743988F), new Vector2(-309.238007F, -363.806F), new Vector2(-310.593994F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-311.950012F, -365.365997F), new Vector2(-313.467987F, -365.756012F), new Vector2(-315.14801F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-316.803986F, -365.756012F), new Vector2(-318.303986F, -365.359985F), new Vector2(-319.64801F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-320.992004F, -363.776001F), new Vector2(-322.059998F, -362.713989F), new Vector2(-322.85199F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-323.644012F, -360.049988F), new Vector2(-324.040009F, -358.556F), new Vector2(-324.040009F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-324.040009F, -355.220001F), new Vector2(-323.644012F, -353.701996F), new Vector2(-322.85199F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-322.059998F, -350.98999F), new Vector2(-320.992004F, -349.915985F), new Vector2(-319.64801F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-318.303986F, -348.332001F), new Vector2(-316.803986F, -347.936005F), new Vector2(-315.14801F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-313.467987F, -347.936005F), new Vector2(-311.950012F, -348.332001F), new Vector2(-310.593994F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0383()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-325.191986F, -362.444F));
+ builder.AddLine(new Vector2(-325.191986F, -365.395996F));
+ builder.AddLine(new Vector2(-338.079987F, -365.395996F));
+ builder.AddLine(new Vector2(-338.079987F, -362.444F));
+ builder.AddLine(new Vector2(-325.191986F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-330.627991F, -348.29599F));
+ builder.AddLine(new Vector2(-330.627991F, -367.951996F));
+ builder.AddCubicBezier(new Vector2(-330.627991F, -369.007996F), new Vector2(-330.346008F, -369.829987F), new Vector2(-329.782013F, -370.417999F));
+ builder.AddCubicBezier(new Vector2(-329.217987F, -371.006012F), new Vector2(-328.420013F, -371.299988F), new Vector2(-327.388F, -371.299988F));
+ builder.AddCubicBezier(new Vector2(-326.835999F, -371.299988F), new Vector2(-326.368011F, -371.216003F), new Vector2(-325.984009F, -371.048004F));
+ builder.AddCubicBezier(new Vector2(-325.600006F, -370.880005F), new Vector2(-325.252014F, -370.627991F), new Vector2(-324.940002F, -370.291992F));
+ builder.AddLine(new Vector2(-322.81601F, -372.380005F));
+ builder.AddCubicBezier(new Vector2(-323.415985F, -373.028015F), new Vector2(-324.075989F, -373.519989F), new Vector2(-324.79599F, -373.855988F));
+ builder.AddCubicBezier(new Vector2(-325.515991F, -374.191986F), new Vector2(-326.368011F, -374.359985F), new Vector2(-327.35199F, -374.359985F));
+ builder.AddCubicBezier(new Vector2(-328.64801F, -374.359985F), new Vector2(-329.787994F, -374.084015F), new Vector2(-330.772003F, -373.532013F));
+ builder.AddCubicBezier(new Vector2(-331.756012F, -372.980011F), new Vector2(-332.523987F, -372.223999F), new Vector2(-333.075989F, -371.264008F));
+ builder.AddCubicBezier(new Vector2(-333.627991F, -370.303986F), new Vector2(-333.903992F, -369.200012F), new Vector2(-333.903992F, -367.951996F));
+ builder.AddLine(new Vector2(-333.903992F, -348.29599F));
+ builder.AddLine(new Vector2(-330.627991F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0384()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-351.364014F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-350.187988F, -349.196014F), new Vector2(-349.179993F, -349.928009F), new Vector2(-348.339996F, -350.888F));
+ builder.AddLine(new Vector2(-350.428009F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-351.003998F, -352.339996F), new Vector2(-351.694F, -351.835999F), new Vector2(-352.497986F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-353.302002F, -351.164001F), new Vector2(-354.18399F, -350.996002F), new Vector2(-355.144012F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-356.29599F, -350.996002F), new Vector2(-357.31601F, -351.242004F), new Vector2(-358.20401F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-359.09201F, -352.226013F), new Vector2(-359.776001F, -352.921997F), new Vector2(-360.256012F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-360.735992F, -354.721985F), new Vector2(-360.976013F, -355.772003F), new Vector2(-360.976013F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-360.976013F, -358.14801F), new Vector2(-360.747986F, -359.167999F), new Vector2(-360.291992F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-359.835999F, -360.895996F), new Vector2(-359.187988F, -361.567993F), new Vector2(-358.347992F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-357.507996F, -362.528015F), new Vector2(-356.536011F, -362.768005F), new Vector2(-355.432007F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-354.376007F, -362.768005F), new Vector2(-353.476013F, -362.54599F), new Vector2(-352.731995F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-351.988007F, -361.65799F), new Vector2(-351.411987F, -361.033997F), new Vector2(-351.003998F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-350.596008F, -359.425995F), new Vector2(-350.391998F, -358.447998F), new Vector2(-350.391998F, -357.29599F));
+ builder.AddLine(new Vector2(-349.20401F, -358.339996F));
+ builder.AddLine(new Vector2(-361.911987F, -358.339996F));
+ builder.AddLine(new Vector2(-361.911987F, -355.640015F));
+ builder.AddLine(new Vector2(-347.476013F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-347.403992F, -355.976013F), new Vector2(-347.355988F, -356.282013F), new Vector2(-347.332001F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-347.308014F, -356.834015F), new Vector2(-347.29599F, -357.09201F), new Vector2(-347.29599F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-347.29599F, -358.963989F), new Vector2(-347.638F, -360.415985F), new Vector2(-348.321991F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-349.006012F, -362.959991F), new Vector2(-349.959991F, -363.955994F), new Vector2(-351.18399F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-352.40799F, -365.395996F), new Vector2(-353.799988F, -365.756012F), new Vector2(-355.359985F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-357.015991F, -365.756012F), new Vector2(-358.51001F, -365.365997F), new Vector2(-359.84201F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-361.174011F, -363.806F), new Vector2(-362.230011F, -362.743988F), new Vector2(-363.01001F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-363.790009F, -360.056F), new Vector2(-364.179993F, -358.544006F), new Vector2(-364.179993F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-364.179993F, -355.160004F), new Vector2(-363.783997F, -353.635986F), new Vector2(-362.992004F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-362.200012F, -350.947998F), new Vector2(-361.126007F, -349.885986F), new Vector2(-359.769989F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-358.414001F, -348.325989F), new Vector2(-356.872009F, -347.936005F), new Vector2(-355.144012F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-353.799988F, -347.936005F), new Vector2(-352.540009F, -348.187988F), new Vector2(-351.364014F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0385()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-369.220001F, -362.444F));
+ builder.AddLine(new Vector2(-366.231995F, -363.631989F));
+ builder.AddLine(new Vector2(-366.231995F, -365.395996F));
+ builder.AddLine(new Vector2(-379.588013F, -365.395996F));
+ builder.AddLine(new Vector2(-379.588013F, -362.444F));
+ builder.AddLine(new Vector2(-369.220001F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-366.447998F, -348.29599F));
+ builder.AddLine(new Vector2(-366.447998F, -351.247986F));
+ builder.AddLine(new Vector2(-377.320007F, -351.247986F));
+ builder.AddLine(new Vector2(-380.235992F, -350.059998F));
+ builder.AddLine(new Vector2(-380.235992F, -348.29599F));
+ builder.AddLine(new Vector2(-366.447998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-376.384003F, -350.059998F));
+ builder.AddLine(new Vector2(-366.231995F, -363.631989F));
+ builder.AddLine(new Vector2(-370.048004F, -363.631989F));
+ builder.AddLine(new Vector2(-380.235992F, -350.059998F));
+ builder.AddLine(new Vector2(-376.384003F, -350.059998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0386()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-383.764008F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-383.380005F, -369.806F), new Vector2(-383.187988F, -370.303986F), new Vector2(-383.187988F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-383.187988F, -371.480011F), new Vector2(-383.380005F, -371.966003F), new Vector2(-383.764008F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-384.14801F, -372.757996F), new Vector2(-384.640015F, -372.955994F), new Vector2(-385.23999F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(-385.839996F, -372.955994F), new Vector2(-386.332001F, -372.757996F), new Vector2(-386.716003F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-387.100006F, -371.966003F), new Vector2(-387.291992F, -371.480011F), new Vector2(-387.291992F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-387.291992F, -370.303986F), new Vector2(-387.100006F, -369.806F), new Vector2(-386.716003F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-386.332001F, -369.014008F), new Vector2(-385.839996F, -368.81601F), new Vector2(-385.23999F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(-384.640015F, -368.81601F), new Vector2(-384.14801F, -369.014008F), new Vector2(-383.764008F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-383.619995F, -348.29599F));
+ builder.AddLine(new Vector2(-383.619995F, -365.395996F));
+ builder.AddLine(new Vector2(-386.895996F, -365.395996F));
+ builder.AddLine(new Vector2(-386.895996F, -348.29599F));
+ builder.AddLine(new Vector2(-383.619995F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0387()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-402.825989F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-403.653992F, -352.813995F), new Vector2(-404.302002F, -353.467987F), new Vector2(-404.769989F, -354.308014F));
+ builder.AddCubicBezier(new Vector2(-405.238007F, -355.14801F), new Vector2(-405.471985F, -356.108002F), new Vector2(-405.471985F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(-405.471985F, -358.268005F), new Vector2(-405.238007F, -359.221985F), new Vector2(-404.769989F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(-404.302002F, -360.877991F), new Vector2(-403.660004F, -361.526001F), new Vector2(-402.843994F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(-402.028015F, -362.462006F), new Vector2(-401.079987F, -362.696014F), new Vector2(-400F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-398.944F, -362.696014F), new Vector2(-398.014008F, -362.462006F), new Vector2(-397.209991F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(-396.406006F, -361.526001F), new Vector2(-395.782013F, -360.877991F), new Vector2(-395.338013F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(-394.894012F, -359.221985F), new Vector2(-394.671997F, -358.256012F), new Vector2(-394.671997F, -357.152008F));
+ builder.AddCubicBezier(new Vector2(-394.671997F, -356.048004F), new Vector2(-394.894012F, -355.082001F), new Vector2(-395.338013F, -354.253998F));
+ builder.AddCubicBezier(new Vector2(-395.782013F, -353.425995F), new Vector2(-396.399994F, -352.783997F), new Vector2(-397.191986F, -352.328003F));
+ builder.AddCubicBezier(new Vector2(-397.984009F, -351.872009F), new Vector2(-398.920013F, -351.644012F), new Vector2(-400F, -351.644012F));
+ builder.AddCubicBezier(new Vector2(-401.056F, -351.644012F), new Vector2(-401.997986F, -351.877991F), new Vector2(-402.825989F, -352.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-397.084015F, -349.376007F));
+ builder.AddCubicBezier(new Vector2(-396.052002F, -349.903992F), new Vector2(-395.230011F, -350.641998F), new Vector2(-394.618011F, -351.589996F));
+ builder.AddCubicBezier(new Vector2(-394.006012F, -352.537994F), new Vector2(-393.664001F, -353.635986F), new Vector2(-393.59201F, -354.884003F));
+ builder.AddLine(new Vector2(-393.59201F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-393.664001F, -360.691986F), new Vector2(-394F, -361.802002F), new Vector2(-394.600006F, -362.75F));
+ builder.AddCubicBezier(new Vector2(-395.200012F, -363.697998F), new Vector2(-396.022003F, -364.436005F), new Vector2(-397.06601F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(-398.109985F, -365.492004F), new Vector2(-399.303986F, -365.756012F), new Vector2(-400.64801F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-402.18399F, -365.756012F), new Vector2(-403.575989F, -365.377991F), new Vector2(-404.824005F, -364.622009F));
+ builder.AddCubicBezier(new Vector2(-406.071991F, -363.865997F), new Vector2(-407.049988F, -362.846008F), new Vector2(-407.757996F, -361.562012F));
+ builder.AddCubicBezier(new Vector2(-408.466003F, -360.278015F), new Vector2(-408.820007F, -358.820007F), new Vector2(-408.820007F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(-408.820007F, -355.556F), new Vector2(-408.459991F, -354.085999F), new Vector2(-407.73999F, -352.778015F));
+ builder.AddCubicBezier(new Vector2(-407.019989F, -351.470001F), new Vector2(-406.041992F, -350.444F), new Vector2(-404.806F, -349.700012F));
+ builder.AddCubicBezier(new Vector2(-403.570007F, -348.955994F), new Vector2(-402.171997F, -348.584015F), new Vector2(-400.612F, -348.584015F));
+ builder.AddCubicBezier(new Vector2(-399.291992F, -348.584015F), new Vector2(-398.115997F, -348.847992F), new Vector2(-397.084015F, -349.376007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-395.914001F, -341.798004F));
+ builder.AddCubicBezier(new Vector2(-394.558014F, -342.481995F), new Vector2(-393.502014F, -343.441986F), new Vector2(-392.746002F, -344.678009F));
+ builder.AddCubicBezier(new Vector2(-391.98999F, -345.914001F), new Vector2(-391.612F, -347.347992F), new Vector2(-391.612F, -348.980011F));
+ builder.AddLine(new Vector2(-391.612F, -365.395996F));
+ builder.AddLine(new Vector2(-394.85199F, -365.395996F));
+ builder.AddLine(new Vector2(-394.85199F, -360.895996F));
+ builder.AddLine(new Vector2(-394.276001F, -357.079987F));
+ builder.AddLine(new Vector2(-394.85199F, -353.227997F));
+ builder.AddLine(new Vector2(-394.85199F, -348.980011F));
+ builder.AddCubicBezier(new Vector2(-394.85199F, -347.420013F), new Vector2(-395.368011F, -346.178009F), new Vector2(-396.399994F, -345.253998F));
+ builder.AddCubicBezier(new Vector2(-397.432007F, -344.329987F), new Vector2(-398.812012F, -343.868011F), new Vector2(-400.540009F, -343.868011F));
+ builder.AddCubicBezier(new Vector2(-401.859985F, -343.868011F), new Vector2(-403F, -344.10199F), new Vector2(-403.959991F, -344.570007F));
+ builder.AddCubicBezier(new Vector2(-404.920013F, -345.037994F), new Vector2(-405.747986F, -345.716003F), new Vector2(-406.444F, -346.604004F));
+ builder.AddLine(new Vector2(-408.567993F, -344.480011F));
+ builder.AddCubicBezier(new Vector2(-407.727997F, -343.303986F), new Vector2(-406.635986F, -342.391998F), new Vector2(-405.291992F, -341.743988F));
+ builder.AddCubicBezier(new Vector2(-403.947998F, -341.096008F), new Vector2(-402.388F, -340.772003F), new Vector2(-400.612F, -340.772003F));
+ builder.AddCubicBezier(new Vector2(-398.835999F, -340.772003F), new Vector2(-397.269989F, -341.114014F), new Vector2(-395.914001F, -341.798004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0388()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-423.112F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-423.951996F, -352.328003F), new Vector2(-424.612F, -353.018005F), new Vector2(-425.09201F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-425.571991F, -354.769989F), new Vector2(-425.812012F, -355.772003F), new Vector2(-425.812012F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-425.812012F, -358.003998F), new Vector2(-425.571991F, -358.988007F), new Vector2(-425.09201F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-424.612F, -360.716003F), new Vector2(-423.951996F, -361.394012F), new Vector2(-423.112F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-422.272003F, -362.377991F), new Vector2(-421.324005F, -362.623993F), new Vector2(-420.268005F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-419.164001F, -362.623993F), new Vector2(-418.197998F, -362.377991F), new Vector2(-417.369995F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-416.541992F, -361.394012F), new Vector2(-415.881989F, -360.716003F), new Vector2(-415.390015F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-414.89801F, -358.988007F), new Vector2(-414.652008F, -358.003998F), new Vector2(-414.652008F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-414.652008F, -355.772003F), new Vector2(-414.891998F, -354.769989F), new Vector2(-415.372009F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-415.85199F, -353.018005F), new Vector2(-416.511993F, -352.328003F), new Vector2(-417.35199F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-418.191986F, -351.320007F), new Vector2(-419.164001F, -351.067993F), new Vector2(-420.268005F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-421.324005F, -351.067993F), new Vector2(-422.272003F, -351.320007F), new Vector2(-423.112F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-415.713989F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-414.358002F, -349.915985F), new Vector2(-413.283997F, -350.98999F), new Vector2(-412.492004F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-411.700012F, -353.701996F), new Vector2(-411.303986F, -355.220001F), new Vector2(-411.303986F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-411.303986F, -358.556F), new Vector2(-411.700012F, -360.056F), new Vector2(-412.492004F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-413.283997F, -362.743988F), new Vector2(-414.358002F, -363.806F), new Vector2(-415.713989F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-417.070007F, -365.365997F), new Vector2(-418.588013F, -365.756012F), new Vector2(-420.268005F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-421.924011F, -365.756012F), new Vector2(-423.424011F, -365.359985F), new Vector2(-424.768005F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-426.112F, -363.776001F), new Vector2(-427.179993F, -362.713989F), new Vector2(-427.971985F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-428.764008F, -360.049988F), new Vector2(-429.160004F, -358.556F), new Vector2(-429.160004F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-429.160004F, -355.220001F), new Vector2(-428.764008F, -353.701996F), new Vector2(-427.971985F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-427.179993F, -350.98999F), new Vector2(-426.112F, -349.915985F), new Vector2(-424.768005F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-423.424011F, -348.332001F), new Vector2(-421.924011F, -347.936005F), new Vector2(-420.268005F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-418.588013F, -347.936005F), new Vector2(-417.070007F, -348.332001F), new Vector2(-415.713989F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0389()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-432.79599F, -348.29599F));
+ builder.AddLine(new Vector2(-432.79599F, -374F));
+ builder.AddLine(new Vector2(-436.036011F, -374F));
+ builder.AddLine(new Vector2(-436.036011F, -348.29599F));
+ builder.AddLine(new Vector2(-432.79599F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0390()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-451.444F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-452.283997F, -352.328003F), new Vector2(-452.944F, -353.018005F), new Vector2(-453.424011F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-453.903992F, -354.769989F), new Vector2(-454.144012F, -355.772003F), new Vector2(-454.144012F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-454.144012F, -358.003998F), new Vector2(-453.903992F, -358.988007F), new Vector2(-453.424011F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-452.944F, -360.716003F), new Vector2(-452.283997F, -361.394012F), new Vector2(-451.444F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-450.604004F, -362.377991F), new Vector2(-449.656006F, -362.623993F), new Vector2(-448.600006F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-447.496002F, -362.623993F), new Vector2(-446.529999F, -362.377991F), new Vector2(-445.701996F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-444.873993F, -361.394012F), new Vector2(-444.213989F, -360.716003F), new Vector2(-443.721985F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-443.230011F, -358.988007F), new Vector2(-442.984009F, -358.003998F), new Vector2(-442.984009F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-442.984009F, -355.772003F), new Vector2(-443.223999F, -354.769989F), new Vector2(-443.70401F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-444.18399F, -353.018005F), new Vector2(-444.843994F, -352.328003F), new Vector2(-445.68399F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-446.523987F, -351.320007F), new Vector2(-447.496002F, -351.067993F), new Vector2(-448.600006F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-449.656006F, -351.067993F), new Vector2(-450.604004F, -351.320007F), new Vector2(-451.444F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-444.04599F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-442.690002F, -349.915985F), new Vector2(-441.615997F, -350.98999F), new Vector2(-440.824005F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-440.032013F, -353.701996F), new Vector2(-439.635986F, -355.220001F), new Vector2(-439.635986F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-439.635986F, -358.556F), new Vector2(-440.032013F, -360.056F), new Vector2(-440.824005F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-441.615997F, -362.743988F), new Vector2(-442.690002F, -363.806F), new Vector2(-444.04599F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-445.402008F, -365.365997F), new Vector2(-446.920013F, -365.756012F), new Vector2(-448.600006F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-450.256012F, -365.756012F), new Vector2(-451.756012F, -365.359985F), new Vector2(-453.100006F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-454.444F, -363.776001F), new Vector2(-455.511993F, -362.713989F), new Vector2(-456.303986F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-457.096008F, -360.049988F), new Vector2(-457.492004F, -358.556F), new Vector2(-457.492004F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-457.492004F, -355.220001F), new Vector2(-457.096008F, -353.701996F), new Vector2(-456.303986F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-455.511993F, -350.98999F), new Vector2(-454.444F, -349.915985F), new Vector2(-453.100006F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-451.756012F, -348.332001F), new Vector2(-450.256012F, -347.936005F), new Vector2(-448.600006F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-446.920013F, -347.936005F), new Vector2(-445.402008F, -348.332001F), new Vector2(-444.04599F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0391()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-471.694F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-472.522003F, -352.256012F), new Vector2(-473.15799F, -352.946014F), new Vector2(-473.60199F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-474.04599F, -354.697998F), new Vector2(-474.268005F, -355.700012F), new Vector2(-474.268005F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-474.268005F, -357.980011F), new Vector2(-474.040009F, -358.993988F), new Vector2(-473.584015F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-473.127991F, -360.746002F), new Vector2(-472.492004F, -361.436005F), new Vector2(-471.675995F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-470.859985F, -362.444F), new Vector2(-469.924011F, -362.696014F), new Vector2(-468.868011F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-467.787994F, -362.696014F), new Vector2(-466.839996F, -362.444F), new Vector2(-466.023987F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-465.208008F, -361.436005F), new Vector2(-464.56601F, -360.746002F), new Vector2(-464.097992F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-463.630005F, -358.993988F), new Vector2(-463.395996F, -357.992004F), new Vector2(-463.395996F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-463.395996F, -355.712006F), new Vector2(-463.630005F, -354.697998F), new Vector2(-464.097992F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-464.56601F, -352.946014F), new Vector2(-465.208008F, -352.256012F), new Vector2(-466.023987F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-466.839996F, -351.247986F), new Vector2(-467.787994F, -350.996002F), new Vector2(-468.868011F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-469.924011F, -350.996002F), new Vector2(-470.865997F, -351.247986F), new Vector2(-471.694F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-474.088013F, -341.131989F));
+ builder.AddLine(new Vector2(-474.088013F, -352.579987F));
+ builder.AddLine(new Vector2(-474.700012F, -356.756012F));
+ builder.AddLine(new Vector2(-474.088013F, -360.895996F));
+ builder.AddLine(new Vector2(-474.088013F, -365.395996F));
+ builder.AddLine(new Vector2(-477.328003F, -365.395996F));
+ builder.AddLine(new Vector2(-477.328003F, -341.131989F));
+ builder.AddLine(new Vector2(-474.088013F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-464.097992F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-462.838013F, -349.885986F), new Vector2(-461.847992F, -350.947998F), new Vector2(-461.127991F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-460.40799F, -353.635986F), new Vector2(-460.048004F, -355.14801F), new Vector2(-460.048004F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-460.048004F, -358.507996F), new Vector2(-460.40799F, -360.019989F), new Vector2(-461.127991F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-461.847992F, -362.708008F), new Vector2(-462.838013F, -363.776001F), new Vector2(-464.097992F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-465.358002F, -365.359985F), new Vector2(-466.768005F, -365.756012F), new Vector2(-468.328003F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-469.600006F, -365.756012F), new Vector2(-470.757996F, -365.485992F), new Vector2(-471.802002F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-472.846008F, -364.406006F), new Vector2(-473.686005F, -363.661987F), new Vector2(-474.321991F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-474.958008F, -361.765991F), new Vector2(-475.312012F, -360.667999F), new Vector2(-475.384003F, -359.420013F));
+ builder.AddLine(new Vector2(-475.384003F, -354.272003F));
+ builder.AddCubicBezier(new Vector2(-475.312012F, -353.048004F), new Vector2(-474.963989F, -351.955994F), new Vector2(-474.339996F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-473.716003F, -350.036011F), new Vector2(-472.881989F, -349.286011F), new Vector2(-471.838013F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-470.794006F, -348.205994F), new Vector2(-469.623993F, -347.936005F), new Vector2(-468.328003F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-466.768005F, -347.936005F), new Vector2(-465.358002F, -348.325989F), new Vector2(-464.097992F, -349.105988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0392()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-482.044006F, -348.29599F));
+ builder.AddLine(new Vector2(-482.044006F, -365.395996F));
+ builder.AddLine(new Vector2(-485.320007F, -365.395996F));
+ builder.AddLine(new Vector2(-485.320007F, -361.220001F));
+ builder.AddLine(new Vector2(-484.708008F, -357.079987F));
+ builder.AddLine(new Vector2(-485.320007F, -352.903992F));
+ builder.AddLine(new Vector2(-485.320007F, -348.29599F));
+ builder.AddLine(new Vector2(-482.044006F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-493.347992F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-494.187988F, -352.256012F), new Vector2(-494.84201F, -352.946014F), new Vector2(-495.309998F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-495.778015F, -354.697998F), new Vector2(-496.011993F, -355.712006F), new Vector2(-496.011993F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-496.011993F, -357.992004F), new Vector2(-495.778015F, -358.993988F), new Vector2(-495.309998F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-494.84201F, -360.746002F), new Vector2(-494.194F, -361.436005F), new Vector2(-493.365997F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-492.537994F, -362.444F), new Vector2(-491.584015F, -362.696014F), new Vector2(-490.503998F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-489.424011F, -362.696014F), new Vector2(-488.481995F, -362.450012F), new Vector2(-487.678009F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-486.873993F, -361.466003F), new Vector2(-486.243988F, -360.776001F), new Vector2(-485.787994F, -359.888F));
+ builder.AddCubicBezier(new Vector2(-485.332001F, -359F), new Vector2(-485.104004F, -357.980011F), new Vector2(-485.104004F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-485.104004F, -355.123993F), new Vector2(-485.596008F, -353.726013F), new Vector2(-486.579987F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(-487.563995F, -351.541992F), new Vector2(-488.859985F, -350.996002F), new Vector2(-490.467987F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-491.548004F, -350.996002F), new Vector2(-492.507996F, -351.247986F), new Vector2(-493.347992F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-487.515991F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-486.484009F, -349.286011F), new Vector2(-485.661987F, -350.036011F), new Vector2(-485.049988F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-484.437988F, -351.955994F), new Vector2(-484.096008F, -353.048004F), new Vector2(-484.023987F, -354.272003F));
+ builder.AddLine(new Vector2(-484.023987F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-484.096008F, -360.667999F), new Vector2(-484.444F, -361.765991F), new Vector2(-485.067993F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-485.691986F, -363.661987F), new Vector2(-486.514008F, -364.406006F), new Vector2(-487.533997F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-488.553986F, -365.485992F), new Vector2(-489.712006F, -365.756012F), new Vector2(-491.007996F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-492.59201F, -365.756012F), new Vector2(-494.014008F, -365.359985F), new Vector2(-495.273987F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-496.533997F, -363.776001F), new Vector2(-497.529999F, -362.708008F), new Vector2(-498.261993F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-498.993988F, -360.019989F), new Vector2(-499.359985F, -358.507996F), new Vector2(-499.359985F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-499.359985F, -355.14801F), new Vector2(-498.993988F, -353.635986F), new Vector2(-498.261993F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-497.529999F, -350.947998F), new Vector2(-496.533997F, -349.885986F), new Vector2(-495.273987F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-494.014008F, -348.325989F), new Vector2(-492.59201F, -347.936005F), new Vector2(-491.007996F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-489.712006F, -347.936005F), new Vector2(-488.548004F, -348.205994F), new Vector2(-487.515991F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0393()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-521.140015F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-521.97998F, -352.328003F), new Vector2(-522.640015F, -353.018005F), new Vector2(-523.119995F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-523.599976F, -354.769989F), new Vector2(-523.840027F, -355.772003F), new Vector2(-523.840027F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-523.840027F, -358.003998F), new Vector2(-523.599976F, -358.988007F), new Vector2(-523.119995F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-522.640015F, -360.716003F), new Vector2(-521.97998F, -361.394012F), new Vector2(-521.140015F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-520.299988F, -362.377991F), new Vector2(-519.35199F, -362.623993F), new Vector2(-518.296021F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-517.192017F, -362.623993F), new Vector2(-516.226013F, -362.377991F), new Vector2(-515.39801F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-514.570007F, -361.394012F), new Vector2(-513.909973F, -360.716003F), new Vector2(-513.41803F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-512.926025F, -358.988007F), new Vector2(-512.679993F, -358.003998F), new Vector2(-512.679993F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-512.679993F, -355.772003F), new Vector2(-512.919983F, -354.769989F), new Vector2(-513.400024F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-513.880005F, -353.018005F), new Vector2(-514.539978F, -352.328003F), new Vector2(-515.380005F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-516.219971F, -351.320007F), new Vector2(-517.192017F, -351.067993F), new Vector2(-518.296021F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-519.35199F, -351.067993F), new Vector2(-520.299988F, -351.320007F), new Vector2(-521.140015F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-513.742004F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-512.385986F, -349.915985F), new Vector2(-511.312012F, -350.98999F), new Vector2(-510.519989F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-509.727997F, -353.701996F), new Vector2(-509.332001F, -355.220001F), new Vector2(-509.332001F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-509.332001F, -358.556F), new Vector2(-509.727997F, -360.056F), new Vector2(-510.519989F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-511.312012F, -362.743988F), new Vector2(-512.385986F, -363.806F), new Vector2(-513.742004F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-515.098022F, -365.365997F), new Vector2(-516.616028F, -365.756012F), new Vector2(-518.296021F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-519.952026F, -365.756012F), new Vector2(-521.452026F, -365.359985F), new Vector2(-522.796021F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-524.140015F, -363.776001F), new Vector2(-525.208008F, -362.713989F), new Vector2(-526F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-526.791992F, -360.049988F), new Vector2(-527.187988F, -358.556F), new Vector2(-527.187988F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-527.187988F, -355.220001F), new Vector2(-526.791992F, -353.701996F), new Vector2(-526F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-525.208008F, -350.98999F), new Vector2(-524.140015F, -349.915985F), new Vector2(-522.796021F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-521.452026F, -348.332001F), new Vector2(-519.952026F, -347.936005F), new Vector2(-518.296021F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-516.616028F, -347.936005F), new Vector2(-515.098022F, -348.332001F), new Vector2(-513.742004F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0394()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-528.700012F, -362.444F));
+ builder.AddLine(new Vector2(-528.700012F, -365.395996F));
+ builder.AddLine(new Vector2(-540.364014F, -365.395996F));
+ builder.AddLine(new Vector2(-540.364014F, -362.444F));
+ builder.AddLine(new Vector2(-528.700012F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-532.911987F, -348.29599F));
+ builder.AddLine(new Vector2(-532.911987F, -372.559998F));
+ builder.AddLine(new Vector2(-536.151978F, -372.559998F));
+ builder.AddLine(new Vector2(-536.151978F, -348.29599F));
+ builder.AddLine(new Vector2(-532.911987F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0395()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-553.828003F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-552.651978F, -349.196014F), new Vector2(-551.643982F, -349.928009F), new Vector2(-550.804016F, -350.888F));
+ builder.AddLine(new Vector2(-552.892029F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-553.468018F, -352.339996F), new Vector2(-554.15802F, -351.835999F), new Vector2(-554.961975F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-555.765991F, -351.164001F), new Vector2(-556.64801F, -350.996002F), new Vector2(-557.607971F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-558.76001F, -350.996002F), new Vector2(-559.780029F, -351.242004F), new Vector2(-560.66803F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-561.55603F, -352.226013F), new Vector2(-562.23999F, -352.921997F), new Vector2(-562.719971F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-563.200012F, -354.721985F), new Vector2(-563.440002F, -355.772003F), new Vector2(-563.440002F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-563.440002F, -358.14801F), new Vector2(-563.211975F, -359.167999F), new Vector2(-562.755981F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-562.299988F, -360.895996F), new Vector2(-561.651978F, -361.567993F), new Vector2(-560.812012F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-559.971985F, -362.528015F), new Vector2(-559F, -362.768005F), new Vector2(-557.895996F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-556.840027F, -362.768005F), new Vector2(-555.940002F, -362.54599F), new Vector2(-555.195984F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-554.452026F, -361.65799F), new Vector2(-553.875977F, -361.033997F), new Vector2(-553.468018F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-553.059998F, -359.425995F), new Vector2(-552.856018F, -358.447998F), new Vector2(-552.856018F, -357.29599F));
+ builder.AddLine(new Vector2(-551.66803F, -358.339996F));
+ builder.AddLine(new Vector2(-564.375977F, -358.339996F));
+ builder.AddLine(new Vector2(-564.375977F, -355.640015F));
+ builder.AddLine(new Vector2(-549.940002F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-549.867981F, -355.976013F), new Vector2(-549.820007F, -356.282013F), new Vector2(-549.796021F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-549.771973F, -356.834015F), new Vector2(-549.76001F, -357.09201F), new Vector2(-549.76001F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-549.76001F, -358.963989F), new Vector2(-550.10199F, -360.415985F), new Vector2(-550.786011F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-551.469971F, -362.959991F), new Vector2(-552.424011F, -363.955994F), new Vector2(-553.64801F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-554.872009F, -365.395996F), new Vector2(-556.263977F, -365.756012F), new Vector2(-557.823975F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-559.47998F, -365.756012F), new Vector2(-560.973999F, -365.365997F), new Vector2(-562.30603F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-563.638F, -363.806F), new Vector2(-564.69397F, -362.743988F), new Vector2(-565.473999F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-566.254028F, -360.056F), new Vector2(-566.643982F, -358.544006F), new Vector2(-566.643982F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-566.643982F, -355.160004F), new Vector2(-566.247986F, -353.635986F), new Vector2(-565.455994F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-564.664001F, -350.947998F), new Vector2(-563.590027F, -349.885986F), new Vector2(-562.234009F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-560.877991F, -348.325989F), new Vector2(-559.335999F, -347.936005F), new Vector2(-557.607971F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-556.263977F, -347.936005F), new Vector2(-555.004028F, -348.187988F), new Vector2(-553.828003F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0396()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-579.244019F, -348.29599F));
+ builder.AddLine(new Vector2(-579.244019F, -374F));
+ builder.AddLine(new Vector2(-582.484009F, -374F));
+ builder.AddLine(new Vector2(-582.484009F, -348.29599F));
+ builder.AddLine(new Vector2(-579.244019F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-567.364014F, -348.29599F));
+ builder.AddLine(new Vector2(-576.364014F, -358.052002F));
+ builder.AddLine(new Vector2(-576.507996F, -356.179993F));
+ builder.AddLine(new Vector2(-567.687988F, -365.395996F));
+ builder.AddLine(new Vector2(-571.64801F, -365.395996F));
+ builder.AddLine(new Vector2(-579.531982F, -357.044006F));
+ builder.AddLine(new Vector2(-571.539978F, -348.29599F));
+ builder.AddLine(new Vector2(-567.364014F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0397()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-587.416016F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-587.031982F, -369.806F), new Vector2(-586.840027F, -370.303986F), new Vector2(-586.840027F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-586.840027F, -371.480011F), new Vector2(-587.031982F, -371.966003F), new Vector2(-587.416016F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-587.799988F, -372.757996F), new Vector2(-588.291992F, -372.955994F), new Vector2(-588.892029F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(-589.492004F, -372.955994F), new Vector2(-589.984009F, -372.757996F), new Vector2(-590.367981F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-590.752014F, -371.966003F), new Vector2(-590.94397F, -371.480011F), new Vector2(-590.94397F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-590.94397F, -370.303986F), new Vector2(-590.752014F, -369.806F), new Vector2(-590.367981F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-589.984009F, -369.014008F), new Vector2(-589.492004F, -368.81601F), new Vector2(-588.892029F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(-588.291992F, -368.81601F), new Vector2(-587.799988F, -369.014008F), new Vector2(-587.416016F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-587.271973F, -348.29599F));
+ builder.AddLine(new Vector2(-587.271973F, -365.395996F));
+ builder.AddLine(new Vector2(-590.547974F, -365.395996F));
+ builder.AddLine(new Vector2(-590.547974F, -348.29599F));
+ builder.AddLine(new Vector2(-587.271973F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0398()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-595.299988F, -348.29599F));
+ builder.AddLine(new Vector2(-595.299988F, -374F));
+ builder.AddLine(new Vector2(-598.539978F, -374F));
+ builder.AddLine(new Vector2(-598.539978F, -348.29599F));
+ builder.AddLine(new Vector2(-595.299988F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0399()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-610.708008F, -374F));
+ builder.AddLine(new Vector2(-613.984009F, -374F));
+ builder.AddLine(new Vector2(-613.984009F, -361.220001F));
+ builder.AddLine(new Vector2(-613.372009F, -357.079987F));
+ builder.AddLine(new Vector2(-613.984009F, -352.903992F));
+ builder.AddLine(new Vector2(-613.984009F, -348.29599F));
+ builder.AddLine(new Vector2(-610.708008F, -348.29599F));
+ builder.AddLine(new Vector2(-610.708008F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-622.030029F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-622.857971F, -352.226013F), new Vector2(-623.505981F, -352.915985F), new Vector2(-623.973999F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(-624.442017F, -354.691986F), new Vector2(-624.676025F, -355.712006F), new Vector2(-624.676025F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-624.676025F, -358.015991F), new Vector2(-624.442017F, -359.029999F), new Vector2(-623.973999F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(-623.505981F, -360.782013F), new Vector2(-622.864014F, -361.466003F), new Vector2(-622.047974F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-621.231995F, -362.450012F), new Vector2(-620.283997F, -362.696014F), new Vector2(-619.203979F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-618.124023F, -362.696014F), new Vector2(-617.176025F, -362.444F), new Vector2(-616.359985F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-615.544006F, -361.436005F), new Vector2(-614.90802F, -360.746002F), new Vector2(-614.452026F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-613.995972F, -358.993988F), new Vector2(-613.768005F, -357.980011F), new Vector2(-613.768005F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-613.768005F, -355.700012F), new Vector2(-613.995972F, -354.697998F), new Vector2(-614.452026F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-614.90802F, -352.946014F), new Vector2(-615.544006F, -352.256012F), new Vector2(-616.359985F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-617.176025F, -351.247986F), new Vector2(-618.124023F, -350.996002F), new Vector2(-619.203979F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-620.26001F, -350.996002F), new Vector2(-621.202026F, -351.242004F), new Vector2(-622.030029F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-616.216003F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-615.184021F, -349.286011F), new Vector2(-614.356018F, -350.036011F), new Vector2(-613.731995F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-613.107971F, -351.955994F), new Vector2(-612.76001F, -353.048004F), new Vector2(-612.687988F, -354.272003F));
+ builder.AddLine(new Vector2(-612.687988F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-612.76001F, -360.667999F), new Vector2(-613.114014F, -361.765991F), new Vector2(-613.75F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-614.385986F, -363.661987F), new Vector2(-615.219971F, -364.406006F), new Vector2(-616.252014F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-617.283997F, -365.485992F), new Vector2(-618.447998F, -365.756012F), new Vector2(-619.744019F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-621.304016F, -365.756012F), new Vector2(-622.708008F, -365.359985F), new Vector2(-623.955994F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-625.203979F, -363.776001F), new Vector2(-626.19397F, -362.708008F), new Vector2(-626.926025F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-627.65802F, -360.019989F), new Vector2(-628.023987F, -358.507996F), new Vector2(-628.023987F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-628.023987F, -355.14801F), new Vector2(-627.65802F, -353.635986F), new Vector2(-626.926025F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-626.19397F, -350.947998F), new Vector2(-625.203979F, -349.885986F), new Vector2(-623.955994F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-622.708008F, -348.325989F), new Vector2(-621.304016F, -347.936005F), new Vector2(-619.744019F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-618.424011F, -347.936005F), new Vector2(-617.247986F, -348.205994F), new Vector2(-616.216003F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0400()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-631.695984F, -348.29599F));
+ builder.AddLine(new Vector2(-631.695984F, -374F));
+ builder.AddLine(new Vector2(-634.935974F, -374F));
+ builder.AddLine(new Vector2(-634.935974F, -348.29599F));
+ builder.AddLine(new Vector2(-631.695984F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0401()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-642.820007F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-641.716003F, -349.537994F), new Vector2(-640.85199F, -350.40799F), new Vector2(-640.228027F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(-639.604004F, -352.664001F), new Vector2(-639.291992F, -353.971985F), new Vector2(-639.291992F, -355.459991F));
+ builder.AddLine(new Vector2(-639.291992F, -365.395996F));
+ builder.AddLine(new Vector2(-642.531982F, -365.395996F));
+ builder.AddLine(new Vector2(-642.531982F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(-642.531982F, -354.187988F), new Vector2(-642.892029F, -353.078003F), new Vector2(-643.612F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(-644.33197F, -351.470001F), new Vector2(-645.328003F, -351.067993F), new Vector2(-646.599976F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-647.440002F, -351.067993F), new Vector2(-648.171997F, -351.247986F), new Vector2(-648.796021F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(-649.419983F, -351.967987F), new Vector2(-649.893982F, -352.48999F), new Vector2(-650.218018F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(-650.541992F, -353.858002F), new Vector2(-650.703979F, -354.667999F), new Vector2(-650.703979F, -355.604004F));
+ builder.AddLine(new Vector2(-650.703979F, -365.395996F));
+ builder.AddLine(new Vector2(-653.94397F, -365.395996F));
+ builder.AddLine(new Vector2(-653.94397F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(-653.94397F, -353.971985F), new Vector2(-653.632019F, -352.664001F), new Vector2(-653.007996F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(-652.383972F, -350.40799F), new Vector2(-651.513977F, -349.537994F), new Vector2(-650.39801F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-649.281982F, -348.313995F), new Vector2(-648.015991F, -348.007996F), new Vector2(-646.599976F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(-645.184021F, -348.007996F), new Vector2(-643.924011F, -348.313995F), new Vector2(-642.820007F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0402()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-668.919983F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-669.76001F, -352.328003F), new Vector2(-670.419983F, -353.018005F), new Vector2(-670.900024F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-671.380005F, -354.769989F), new Vector2(-671.619995F, -355.772003F), new Vector2(-671.619995F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-671.619995F, -358.003998F), new Vector2(-671.380005F, -358.988007F), new Vector2(-670.900024F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-670.419983F, -360.716003F), new Vector2(-669.76001F, -361.394012F), new Vector2(-668.919983F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-668.080017F, -362.377991F), new Vector2(-667.132019F, -362.623993F), new Vector2(-666.075989F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-664.971985F, -362.623993F), new Vector2(-664.005981F, -362.377991F), new Vector2(-663.177979F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-662.349976F, -361.394012F), new Vector2(-661.690002F, -360.716003F), new Vector2(-661.197998F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-660.705994F, -358.988007F), new Vector2(-660.460022F, -358.003998F), new Vector2(-660.460022F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-660.460022F, -355.772003F), new Vector2(-660.700012F, -354.769989F), new Vector2(-661.179993F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-661.659973F, -353.018005F), new Vector2(-662.320007F, -352.328003F), new Vector2(-663.159973F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-664F, -351.320007F), new Vector2(-664.971985F, -351.067993F), new Vector2(-666.075989F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-667.132019F, -351.067993F), new Vector2(-668.080017F, -351.320007F), new Vector2(-668.919983F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-661.521973F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-660.166016F, -349.915985F), new Vector2(-659.09198F, -350.98999F), new Vector2(-658.299988F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-657.507996F, -353.701996F), new Vector2(-657.112F, -355.220001F), new Vector2(-657.112F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-657.112F, -358.556F), new Vector2(-657.507996F, -360.056F), new Vector2(-658.299988F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-659.09198F, -362.743988F), new Vector2(-660.166016F, -363.806F), new Vector2(-661.521973F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-662.877991F, -365.365997F), new Vector2(-664.395996F, -365.756012F), new Vector2(-666.075989F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-667.731995F, -365.756012F), new Vector2(-669.231995F, -365.359985F), new Vector2(-670.575989F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-671.919983F, -363.776001F), new Vector2(-672.987976F, -362.713989F), new Vector2(-673.780029F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-674.572021F, -360.049988F), new Vector2(-674.968018F, -358.556F), new Vector2(-674.968018F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-674.968018F, -355.220001F), new Vector2(-674.572021F, -353.701996F), new Vector2(-673.780029F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-672.987976F, -350.98999F), new Vector2(-671.919983F, -349.915985F), new Vector2(-670.575989F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-669.231995F, -348.332001F), new Vector2(-667.731995F, -347.936005F), new Vector2(-666.075989F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-664.395996F, -347.936005F), new Vector2(-662.877991F, -348.332001F), new Vector2(-661.521973F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0403()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-693.580017F, -348.29599F));
+ builder.AddLine(new Vector2(-688.612F, -361.18399F));
+ builder.AddLine(new Vector2(-689.799988F, -361.18399F));
+ builder.AddLine(new Vector2(-684.867981F, -348.29599F));
+ builder.AddLine(new Vector2(-682.960022F, -348.29599F));
+ builder.AddLine(new Vector2(-676.228027F, -365.395996F));
+ builder.AddLine(new Vector2(-679.612F, -365.395996F));
+ builder.AddLine(new Vector2(-684.507996F, -352.075989F));
+ builder.AddLine(new Vector2(-683.427979F, -352.075989F));
+ builder.AddLine(new Vector2(-688.288025F, -365.395996F));
+ builder.AddLine(new Vector2(-690.159973F, -365.395996F));
+ builder.AddLine(new Vector2(-695.02002F, -352.075989F));
+ builder.AddLine(new Vector2(-693.940002F, -352.075989F));
+ builder.AddLine(new Vector2(-698.835999F, -365.395996F));
+ builder.AddLine(new Vector2(-702.219971F, -365.395996F));
+ builder.AddLine(new Vector2(-695.487976F, -348.29599F));
+ builder.AddLine(new Vector2(-693.580017F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0404()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-713.127991F, -348.29599F));
+ builder.AddLine(new Vector2(-713.127991F, -373.279999F));
+ builder.AddLine(new Vector2(-716.512024F, -373.279999F));
+ builder.AddLine(new Vector2(-716.512024F, -348.29599F));
+ builder.AddLine(new Vector2(-713.127991F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0405()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-732.424011F, -343.328003F));
+ builder.AddLine(new Vector2(-730.012024F, -347.791992F));
+ builder.AddCubicBezier(new Vector2(-729.700012F, -348.391998F), new Vector2(-729.48999F, -348.877991F), new Vector2(-729.382019F, -349.25F));
+ builder.AddCubicBezier(new Vector2(-729.273987F, -349.622009F), new Vector2(-729.219971F, -349.940002F), new Vector2(-729.219971F, -350.20401F));
+ builder.AddCubicBezier(new Vector2(-729.219971F, -350.899994F), new Vector2(-729.460022F, -351.481995F), new Vector2(-729.940002F, -351.950012F));
+ builder.AddCubicBezier(new Vector2(-730.419983F, -352.417999F), new Vector2(-730.971985F, -352.652008F), new Vector2(-731.596008F, -352.652008F));
+ builder.AddCubicBezier(new Vector2(-732.291992F, -352.652008F), new Vector2(-732.867981F, -352.417999F), new Vector2(-733.323975F, -351.950012F));
+ builder.AddCubicBezier(new Vector2(-733.780029F, -351.481995F), new Vector2(-734.007996F, -350.899994F), new Vector2(-734.007996F, -350.20401F));
+ builder.AddCubicBezier(new Vector2(-734.007996F, -349.579987F), new Vector2(-733.797974F, -349.058014F), new Vector2(-733.377991F, -348.638F));
+ builder.AddCubicBezier(new Vector2(-732.958008F, -348.217987F), new Vector2(-732.495972F, -348.007996F), new Vector2(-731.992004F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(-731.752014F, -348.007996F), new Vector2(-731.536011F, -348.09201F), new Vector2(-731.343994F, -348.26001F));
+ builder.AddCubicBezier(new Vector2(-731.151978F, -348.428009F), new Vector2(-730.995972F, -348.644012F), new Vector2(-730.875977F, -348.90799F));
+ builder.AddLine(new Vector2(-732.028015F, -348.619995F));
+ builder.AddLine(new Vector2(-734.26001F, -344.335999F));
+ builder.AddLine(new Vector2(-732.424011F, -343.328003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0406()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-746.176025F, -341.131989F));
+ builder.AddLine(new Vector2(-742.935974F, -348.152008F));
+ builder.AddLine(new Vector2(-744.771973F, -351.463989F));
+ builder.AddLine(new Vector2(-749.776001F, -341.131989F));
+ builder.AddLine(new Vector2(-746.176025F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-742.935974F, -348.152008F));
+ builder.AddLine(new Vector2(-734.94397F, -365.395996F));
+ builder.AddLine(new Vector2(-738.544006F, -365.395996F));
+ builder.AddLine(new Vector2(-744.340027F, -351.895996F));
+ builder.AddLine(new Vector2(-743.187988F, -351.895996F));
+ builder.AddLine(new Vector2(-748.695984F, -365.395996F));
+ builder.AddLine(new Vector2(-752.296021F, -365.395996F));
+ builder.AddLine(new Vector2(-744.880005F, -348.152008F));
+ builder.AddLine(new Vector2(-742.935974F, -348.152008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0407()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-755.247986F, -348.29599F));
+ builder.AddLine(new Vector2(-755.247986F, -374F));
+ builder.AddLine(new Vector2(-758.487976F, -374F));
+ builder.AddLine(new Vector2(-758.487976F, -348.29599F));
+ builder.AddLine(new Vector2(-755.247986F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0408()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-761.656006F, -362.444F));
+ builder.AddLine(new Vector2(-761.656006F, -365.395996F));
+ builder.AddLine(new Vector2(-773.320007F, -365.395996F));
+ builder.AddLine(new Vector2(-773.320007F, -362.444F));
+ builder.AddLine(new Vector2(-761.656006F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-765.867981F, -348.29599F));
+ builder.AddLine(new Vector2(-765.867981F, -372.559998F));
+ builder.AddLine(new Vector2(-769.107971F, -372.559998F));
+ builder.AddLine(new Vector2(-769.107971F, -348.29599F));
+ builder.AddLine(new Vector2(-765.867981F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0409()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-777.08197F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(-775.942017F, -350.276001F), new Vector2(-775.372009F, -351.548004F), new Vector2(-775.372009F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(-775.372009F, -354.212006F), new Vector2(-775.593994F, -355.063995F), new Vector2(-776.038025F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(-776.481995F, -356.359985F), new Vector2(-777.052002F, -356.876007F), new Vector2(-777.747986F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(-778.44397F, -357.644012F), new Vector2(-779.176025F, -357.950012F), new Vector2(-779.94397F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(-780.711975F, -358.406006F), new Vector2(-781.450012F, -358.627991F), new Vector2(-782.15802F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(-782.866028F, -359.059998F), new Vector2(-783.435974F, -359.324005F), new Vector2(-783.867981F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(-784.299988F, -359.947998F), new Vector2(-784.515991F, -360.391998F), new Vector2(-784.515991F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(-784.515991F, -361.519989F), new Vector2(-784.27002F, -361.963989F), new Vector2(-783.778015F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-783.286011F, -362.635986F), new Vector2(-782.572021F, -362.803986F), new Vector2(-781.635986F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(-780.747986F, -362.803986F), new Vector2(-779.955994F, -362.635986F), new Vector2(-779.26001F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-778.564026F, -361.963989F), new Vector2(-777.963989F, -361.484009F), new Vector2(-777.460022F, -360.859985F));
+ builder.AddLine(new Vector2(-775.372009F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(-776.044006F, -363.884003F), new Vector2(-776.901978F, -364.585999F), new Vector2(-777.945984F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(-778.98999F, -365.522003F), new Vector2(-780.184021F, -365.756012F), new Vector2(-781.528015F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-782.799988F, -365.756012F), new Vector2(-783.892029F, -365.552002F), new Vector2(-784.804016F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(-785.716003F, -364.735992F), new Vector2(-786.41803F, -364.153992F), new Vector2(-786.909973F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(-787.401978F, -362.641998F), new Vector2(-787.64801F, -361.747986F), new Vector2(-787.64801F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(-787.64801F, -359.68399F), new Vector2(-787.426025F, -358.850006F), new Vector2(-786.981995F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(-786.538025F, -357.578003F), new Vector2(-785.968018F, -357.079987F), new Vector2(-785.271973F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(-784.575989F, -356.359985F), new Vector2(-783.838013F, -356.071991F), new Vector2(-783.057983F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(-782.278015F, -355.640015F), new Vector2(-781.539978F, -355.417999F), new Vector2(-780.843994F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(-780.14801F, -354.962006F), new Vector2(-779.578003F, -354.674011F), new Vector2(-779.133972F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(-778.690002F, -353.977997F), new Vector2(-778.468018F, -353.492004F), new Vector2(-778.468018F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(-778.468018F, -352.243988F), new Vector2(-778.744019F, -351.757996F), new Vector2(-779.296021F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(-779.848022F, -351.062012F), new Vector2(-780.627991F, -350.888F), new Vector2(-781.635986F, -350.888F));
+ builder.AddCubicBezier(new Vector2(-782.643982F, -350.888F), new Vector2(-783.55603F, -351.074005F), new Vector2(-784.372009F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(-785.187988F, -351.817993F), new Vector2(-785.90802F, -352.388F), new Vector2(-786.531982F, -353.156006F));
+ builder.AddLine(new Vector2(-788.619995F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-788.09198F, -350.420013F), new Vector2(-787.473999F, -349.862F), new Vector2(-786.765991F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(-786.057983F, -348.925995F), new Vector2(-785.271973F, -348.56601F), new Vector2(-784.40802F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(-783.544006F, -348.062012F), new Vector2(-782.632019F, -347.936005F), new Vector2(-781.671997F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-779.752014F, -347.936005F), new Vector2(-778.221985F, -348.403992F), new Vector2(-777.08197F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0410()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-796.791992F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(-796.023987F, -362.312012F), new Vector2(-795.039978F, -362.696014F), new Vector2(-793.840027F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-793.263977F, -362.696014F), new Vector2(-792.76001F, -362.612F), new Vector2(-792.328003F, -362.444F));
+ builder.AddCubicBezier(new Vector2(-791.895996F, -362.276001F), new Vector2(-791.5F, -362F), new Vector2(-791.140015F, -361.615997F));
+ builder.AddLine(new Vector2(-789.015991F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-789.616028F, -364.507996F), new Vector2(-790.263977F, -365.006012F), new Vector2(-790.960022F, -365.306F));
+ builder.AddCubicBezier(new Vector2(-791.656006F, -365.605988F), new Vector2(-792.435974F, -365.756012F), new Vector2(-793.299988F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-795.195984F, -365.756012F), new Vector2(-796.64801F, -365.108002F), new Vector2(-797.656006F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-798.664001F, -362.515991F), new Vector2(-799.16803F, -360.776001F), new Vector2(-799.16803F, -358.59201F));
+ builder.AddLine(new Vector2(-797.94397F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(-797.94397F, -359.600006F), new Vector2(-797.559998F, -360.776001F), new Vector2(-796.791992F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-797.94397F, -348.29599F));
+ builder.AddLine(new Vector2(-797.94397F, -365.395996F));
+ builder.AddLine(new Vector2(-801.184021F, -365.395996F));
+ builder.AddLine(new Vector2(-801.184021F, -348.29599F));
+ builder.AddLine(new Vector2(-797.94397F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // - - Offset:<964, 609>
+ CanvasGeometry Geometry_0411()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-806.116028F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-805.731995F, -369.806F), new Vector2(-805.539978F, -370.303986F), new Vector2(-805.539978F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-805.539978F, -371.480011F), new Vector2(-805.731995F, -371.966003F), new Vector2(-806.116028F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-806.5F, -372.757996F), new Vector2(-806.992004F, -372.955994F), new Vector2(-807.59198F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(-808.192017F, -372.955994F), new Vector2(-808.684021F, -372.757996F), new Vector2(-809.067993F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-809.452026F, -371.966003F), new Vector2(-809.643982F, -371.480011F), new Vector2(-809.643982F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-809.643982F, -370.303986F), new Vector2(-809.452026F, -369.806F), new Vector2(-809.067993F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-808.684021F, -369.014008F), new Vector2(-808.192017F, -368.81601F), new Vector2(-807.59198F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(-806.992004F, -368.81601F), new Vector2(-806.5F, -369.014008F), new Vector2(-806.116028F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-805.971985F, -348.29599F));
+ builder.AddLine(new Vector2(-805.971985F, -365.395996F));
+ builder.AddLine(new Vector2(-809.247986F, -365.395996F));
+ builder.AddLine(new Vector2(-809.247986F, -348.29599F));
+ builder.AddLine(new Vector2(-805.971985F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CanvasGeometry Geometry_0412()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-813.099976F, -370.18399F));
+ builder.AddLine(new Vector2(-813.099976F, -373.279999F));
+ builder.AddLine(new Vector2(-826.744019F, -373.279999F));
+ builder.AddLine(new Vector2(-826.744019F, -370.18399F));
+ builder.AddLine(new Vector2(-813.099976F, -370.18399F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-813.711975F, -359.276001F));
+ builder.AddLine(new Vector2(-813.711975F, -362.372009F));
+ builder.AddLine(new Vector2(-826.744019F, -362.372009F));
+ builder.AddLine(new Vector2(-826.744019F, -359.276001F));
+ builder.AddLine(new Vector2(-813.711975F, -359.276001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-825.664001F, -348.29599F));
+ builder.AddLine(new Vector2(-825.664001F, -373.279999F));
+ builder.AddLine(new Vector2(-829.047974F, -373.279999F));
+ builder.AddLine(new Vector2(-829.047974F, -348.29599F));
+ builder.AddLine(new Vector2(-825.664001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0413()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(71.9779968F, -132.638F));
+ builder.AddCubicBezier(new Vector2(72.4219971F, -133.106003F), new Vector2(72.6439972F, -133.664001F), new Vector2(72.6439972F, -134.311996F));
+ builder.AddCubicBezier(new Vector2(72.6439972F, -134.983994F), new Vector2(72.4219971F, -135.542007F), new Vector2(71.9779968F, -135.985992F));
+ builder.AddCubicBezier(new Vector2(71.5339966F, -136.429993F), new Vector2(70.9759979F, -136.651993F), new Vector2(70.3040009F, -136.651993F));
+ builder.AddCubicBezier(new Vector2(69.6080017F, -136.651993F), new Vector2(69.0439987F, -136.429993F), new Vector2(68.6119995F, -135.985992F));
+ builder.AddCubicBezier(new Vector2(68.1800003F, -135.542007F), new Vector2(67.9639969F, -134.983994F), new Vector2(67.9639969F, -134.311996F));
+ builder.AddCubicBezier(new Vector2(67.9639969F, -133.664001F), new Vector2(68.1800003F, -133.106003F), new Vector2(68.6119995F, -132.638F));
+ builder.AddCubicBezier(new Vector2(69.0439987F, -132.169998F), new Vector2(69.6080017F, -131.936005F), new Vector2(70.3040009F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(70.9759979F, -131.936005F), new Vector2(71.5339966F, -132.169998F), new Vector2(71.9779968F, -132.638F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0414()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(62.7080002F, -132.296005F));
+ builder.AddLine(new Vector2(62.7080002F, -158F));
+ builder.AddLine(new Vector2(59.4679985F, -158F));
+ builder.AddLine(new Vector2(59.4679985F, -132.296005F));
+ builder.AddLine(new Vector2(62.7080002F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0415()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(54.7519989F, -132.296005F));
+ builder.AddLine(new Vector2(54.7519989F, -149.395996F));
+ builder.AddLine(new Vector2(51.4760017F, -149.395996F));
+ builder.AddLine(new Vector2(51.4760017F, -145.220001F));
+ builder.AddLine(new Vector2(52.0880013F, -141.080002F));
+ builder.AddLine(new Vector2(51.4760017F, -136.904007F));
+ builder.AddLine(new Vector2(51.4760017F, -132.296005F));
+ builder.AddLine(new Vector2(54.7519989F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(43.4480019F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(42.6080017F, -136.255997F), new Vector2(41.9539986F, -136.945999F), new Vector2(41.4860001F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(41.0180016F, -138.697998F), new Vector2(40.7840004F, -139.712006F), new Vector2(40.7840004F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(40.7840004F, -141.992004F), new Vector2(41.0180016F, -142.994003F), new Vector2(41.4860001F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(41.9539986F, -144.746002F), new Vector2(42.6020012F, -145.436005F), new Vector2(43.4300003F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(44.2579994F, -146.444F), new Vector2(45.2120018F, -146.695999F), new Vector2(46.2919998F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(47.3720016F, -146.695999F), new Vector2(48.3139992F, -146.449997F), new Vector2(49.118F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(49.9220009F, -145.466003F), new Vector2(50.5519981F, -144.776001F), new Vector2(51.0079994F, -143.888F));
+ builder.AddCubicBezier(new Vector2(51.4640007F, -143F), new Vector2(51.6920013F, -141.979996F), new Vector2(51.6920013F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(51.6920013F, -139.123993F), new Vector2(51.2000008F, -137.725998F), new Vector2(50.2159996F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(49.2319984F, -135.542007F), new Vector2(47.9360008F, -134.996002F), new Vector2(46.3279991F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(45.2480011F, -134.996002F), new Vector2(44.2879982F, -135.248001F), new Vector2(43.4480019F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(49.2799988F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(50.3120003F, -133.285995F), new Vector2(51.1339989F, -134.035995F), new Vector2(51.7459984F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(52.3580017F, -135.955994F), new Vector2(52.7000008F, -137.048004F), new Vector2(52.7719994F, -138.272003F));
+ builder.AddLine(new Vector2(52.7719994F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(52.7000008F, -144.667999F), new Vector2(52.3520012F, -145.766006F), new Vector2(51.7280006F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(51.1040001F, -147.662003F), new Vector2(50.2820015F, -148.406006F), new Vector2(49.262001F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(48.2420006F, -149.485992F), new Vector2(47.0839996F, -149.755997F), new Vector2(45.7879982F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(44.2039986F, -149.755997F), new Vector2(42.7820015F, -149.360001F), new Vector2(41.5219994F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(40.262001F, -147.776001F), new Vector2(39.2659988F, -146.707993F), new Vector2(38.5340004F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(37.8019981F, -144.020004F), new Vector2(37.4360008F, -142.507996F), new Vector2(37.4360008F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(37.4360008F, -139.147995F), new Vector2(37.8019981F, -137.636002F), new Vector2(38.5340004F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(39.2659988F, -134.947998F), new Vector2(40.262001F, -133.886002F), new Vector2(41.5219994F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(42.7820015F, -132.326004F), new Vector2(44.2039986F, -131.936005F), new Vector2(45.7879982F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(47.0839996F, -131.936005F), new Vector2(48.2480011F, -132.205994F), new Vector2(49.2799988F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0416()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(35.8880005F, -146.444F));
+ builder.AddLine(new Vector2(35.8880005F, -149.395996F));
+ builder.AddLine(new Vector2(24.2240009F, -149.395996F));
+ builder.AddLine(new Vector2(24.2240009F, -146.444F));
+ builder.AddLine(new Vector2(35.8880005F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(31.6760006F, -132.296005F));
+ builder.AddLine(new Vector2(31.6760006F, -156.559998F));
+ builder.AddLine(new Vector2(28.4360008F, -156.559998F));
+ builder.AddLine(new Vector2(28.4360008F, -132.296005F));
+ builder.AddLine(new Vector2(31.6760006F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0417()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(20.8759995F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(21.2600002F, -153.806F), new Vector2(21.4519997F, -154.304001F), new Vector2(21.4519997F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(21.4519997F, -155.479996F), new Vector2(21.2600002F, -155.966003F), new Vector2(20.8759995F, -156.362F));
+ builder.AddCubicBezier(new Vector2(20.4920006F, -156.757996F), new Vector2(20F, -156.955994F), new Vector2(19.3999996F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(18.7999992F, -156.955994F), new Vector2(18.3080006F, -156.757996F), new Vector2(17.9239998F, -156.362F));
+ builder.AddCubicBezier(new Vector2(17.5400009F, -155.966003F), new Vector2(17.3479996F, -155.479996F), new Vector2(17.3479996F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(17.3479996F, -154.304001F), new Vector2(17.5400009F, -153.806F), new Vector2(17.9239998F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(18.3080006F, -153.014008F), new Vector2(18.7999992F, -152.815994F), new Vector2(19.3999996F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(20F, -152.815994F), new Vector2(20.4920006F, -153.014008F), new Vector2(20.8759995F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(21.0200005F, -132.296005F));
+ builder.AddLine(new Vector2(21.0200005F, -149.395996F));
+ builder.AddLine(new Vector2(17.7439995F, -149.395996F));
+ builder.AddLine(new Vector2(17.7439995F, -132.296005F));
+ builder.AddLine(new Vector2(21.0200005F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0418()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(2.42600012F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(1.59800005F, -136.255997F), new Vector2(0.962000012F, -136.945999F), new Vector2(0.518000007F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(0.074000001F, -138.697998F), new Vector2(-0.148000002F, -139.699997F), new Vector2(-0.148000002F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-0.148000002F, -141.979996F), new Vector2(0.0799999982F, -142.994003F), new Vector2(0.536000013F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(0.991999984F, -144.746002F), new Vector2(1.62800002F, -145.436005F), new Vector2(2.44400001F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(3.25999999F, -146.444F), new Vector2(4.1960001F, -146.695999F), new Vector2(5.25199986F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(6.33199978F, -146.695999F), new Vector2(7.28000021F, -146.444F), new Vector2(8.09599972F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(8.9119997F, -145.436005F), new Vector2(9.5539999F, -144.746002F), new Vector2(10.0220003F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(10.4899998F, -142.994003F), new Vector2(10.724F, -141.992004F), new Vector2(10.724F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(10.724F, -139.712006F), new Vector2(10.4899998F, -138.697998F), new Vector2(10.0220003F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(9.5539999F, -136.945999F), new Vector2(8.9119997F, -136.255997F), new Vector2(8.09599972F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(7.28000021F, -135.248001F), new Vector2(6.33199978F, -134.996002F), new Vector2(5.25199986F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(4.1960001F, -134.996002F), new Vector2(3.25399995F, -135.248001F), new Vector2(2.42600012F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(0.0320000015F, -125.132004F));
+ builder.AddLine(new Vector2(0.0320000015F, -136.580002F));
+ builder.AddLine(new Vector2(-0.579999983F, -140.755997F));
+ builder.AddLine(new Vector2(0.0320000015F, -144.895996F));
+ builder.AddLine(new Vector2(0.0320000015F, -149.395996F));
+ builder.AddLine(new Vector2(-3.20799994F, -149.395996F));
+ builder.AddLine(new Vector2(-3.20799994F, -125.132004F));
+ builder.AddLine(new Vector2(0.0320000015F, -125.132004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10.0220003F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(11.2819996F, -133.886002F), new Vector2(12.2720003F, -134.947998F), new Vector2(12.9919996F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(13.7119999F, -137.636002F), new Vector2(14.0719995F, -139.147995F), new Vector2(14.0719995F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(14.0719995F, -142.507996F), new Vector2(13.7119999F, -144.020004F), new Vector2(12.9919996F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(12.2720003F, -146.707993F), new Vector2(11.2819996F, -147.776001F), new Vector2(10.0220003F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(8.76200008F, -149.360001F), new Vector2(7.35200024F, -149.755997F), new Vector2(5.79199982F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(4.51999998F, -149.755997F), new Vector2(3.36199999F, -149.485992F), new Vector2(2.31800008F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(1.27400005F, -148.406006F), new Vector2(0.433999985F, -147.662003F), new Vector2(-0.202000007F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-0.838F, -145.766006F), new Vector2(-1.19200003F, -144.667999F), new Vector2(-1.26400006F, -143.419998F));
+ builder.AddLine(new Vector2(-1.26400006F, -138.272003F));
+ builder.AddCubicBezier(new Vector2(-1.19200003F, -137.048004F), new Vector2(-0.843999982F, -135.955994F), new Vector2(-0.219999999F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(0.404000014F, -134.035995F), new Vector2(1.23800004F, -133.285995F), new Vector2(2.28200006F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(3.32599998F, -132.205994F), new Vector2(4.49599981F, -131.936005F), new Vector2(5.79199982F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(7.35200024F, -131.936005F), new Vector2(8.76200008F, -132.326004F), new Vector2(10.0220003F, -133.106003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0419()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-8.5539999F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(-7.41400003F, -134.276001F), new Vector2(-6.84399986F, -135.548004F), new Vector2(-6.84399986F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(-6.84399986F, -138.212006F), new Vector2(-7.06599998F, -139.063995F), new Vector2(-7.51000023F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(-7.954F, -140.360001F), new Vector2(-8.52400017F, -140.876007F), new Vector2(-9.22000027F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(-9.91600037F, -141.643997F), new Vector2(-10.6479998F, -141.949997F), new Vector2(-11.4160004F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(-12.184F, -142.406006F), new Vector2(-12.9219999F, -142.628006F), new Vector2(-13.6300001F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(-14.3380003F, -143.059998F), new Vector2(-14.908F, -143.324005F), new Vector2(-15.3400002F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(-15.7720003F, -143.947998F), new Vector2(-15.9879999F, -144.391998F), new Vector2(-15.9879999F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(-15.9879999F, -145.520004F), new Vector2(-15.7419996F, -145.964005F), new Vector2(-15.25F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-14.7580004F, -146.636002F), new Vector2(-14.0439997F, -146.804001F), new Vector2(-13.1079998F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(-12.2200003F, -146.804001F), new Vector2(-11.4280005F, -146.636002F), new Vector2(-10.7320004F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-10.0360003F, -145.964005F), new Vector2(-9.43599987F, -145.483994F), new Vector2(-8.93200016F, -144.860001F));
+ builder.AddLine(new Vector2(-6.84399986F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(-7.51599979F, -147.884003F), new Vector2(-8.3739996F, -148.585999F), new Vector2(-9.41800022F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(-10.4619999F, -149.522003F), new Vector2(-11.6560001F, -149.755997F), new Vector2(-13F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-14.2720003F, -149.755997F), new Vector2(-15.3640003F, -149.552002F), new Vector2(-16.2759991F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(-17.1879997F, -148.735992F), new Vector2(-17.8899994F, -148.154007F), new Vector2(-18.382F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(-18.8740005F, -146.641998F), new Vector2(-19.1200008F, -145.748001F), new Vector2(-19.1200008F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(-19.1200008F, -143.684006F), new Vector2(-18.8980007F, -142.850006F), new Vector2(-18.4540005F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(-18.0100002F, -141.578003F), new Vector2(-17.4400005F, -141.080002F), new Vector2(-16.7439995F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(-16.0480003F, -140.360001F), new Vector2(-15.3100004F, -140.072006F), new Vector2(-14.5299997F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(-13.75F, -139.639999F), new Vector2(-13.0120001F, -139.417999F), new Vector2(-12.316F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(-11.6199999F, -138.962006F), new Vector2(-11.0500002F, -138.673996F), new Vector2(-10.6059999F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(-10.1619997F, -137.977997F), new Vector2(-9.93999958F, -137.492004F), new Vector2(-9.93999958F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(-9.93999958F, -136.244003F), new Vector2(-10.2159996F, -135.757996F), new Vector2(-10.7679996F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(-11.3199997F, -135.061996F), new Vector2(-12.1000004F, -134.888F), new Vector2(-13.1079998F, -134.888F));
+ builder.AddCubicBezier(new Vector2(-14.1160002F, -134.888F), new Vector2(-15.0279999F, -135.074005F), new Vector2(-15.8439999F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(-16.6599998F, -135.817993F), new Vector2(-17.3799992F, -136.388F), new Vector2(-18.0039997F, -137.156006F));
+ builder.AddLine(new Vector2(-20.0919991F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-19.5639992F, -134.419998F), new Vector2(-18.9459991F, -133.862F), new Vector2(-18.2380009F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(-17.5300007F, -132.925995F), new Vector2(-16.7439995F, -132.565994F), new Vector2(-15.8800001F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(-15.0159998F, -132.061996F), new Vector2(-14.1040001F, -131.936005F), new Vector2(-13.1440001F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-11.224F, -131.936005F), new Vector2(-9.69400024F, -132.404007F), new Vector2(-8.5539999F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0420()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-33.987999F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-34.8279991F, -136.328003F), new Vector2(-35.487999F, -137.018005F), new Vector2(-35.9679985F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-36.4480019F, -138.770004F), new Vector2(-36.6879997F, -139.772003F), new Vector2(-36.6879997F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-36.6879997F, -142.003998F), new Vector2(-36.4480019F, -142.988007F), new Vector2(-35.9679985F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-35.487999F, -144.716003F), new Vector2(-34.8279991F, -145.393997F), new Vector2(-33.987999F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-33.1479988F, -146.378006F), new Vector2(-32.2000008F, -146.623993F), new Vector2(-31.1439991F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-30.0400009F, -146.623993F), new Vector2(-29.0739994F, -146.378006F), new Vector2(-28.2460003F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-27.4179993F, -145.393997F), new Vector2(-26.7579994F, -144.716003F), new Vector2(-26.2660007F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-25.7740002F, -142.988007F), new Vector2(-25.5279999F, -142.003998F), new Vector2(-25.5279999F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-25.5279999F, -139.772003F), new Vector2(-25.7679996F, -138.770004F), new Vector2(-26.2479992F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-26.7280006F, -137.018005F), new Vector2(-27.3880005F, -136.328003F), new Vector2(-28.2280006F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-29.0680008F, -135.320007F), new Vector2(-30.0400009F, -135.067993F), new Vector2(-31.1439991F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-32.2000008F, -135.067993F), new Vector2(-33.1479988F, -135.320007F), new Vector2(-33.987999F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-26.5900002F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-25.2339993F, -133.916F), new Vector2(-24.1599998F, -134.990005F), new Vector2(-23.368F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-22.5760002F, -137.701996F), new Vector2(-22.1800003F, -139.220001F), new Vector2(-22.1800003F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-22.1800003F, -142.556F), new Vector2(-22.5760002F, -144.056F), new Vector2(-23.368F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-24.1599998F, -146.744003F), new Vector2(-25.2339993F, -147.806F), new Vector2(-26.5900002F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-27.9459991F, -149.365997F), new Vector2(-29.4640007F, -149.755997F), new Vector2(-31.1439991F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-32.7999992F, -149.755997F), new Vector2(-34.2999992F, -149.360001F), new Vector2(-35.644001F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-36.987999F, -147.776001F), new Vector2(-38.0559998F, -146.714005F), new Vector2(-38.8479996F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(-39.6399994F, -144.050003F), new Vector2(-40.0359993F, -142.556F), new Vector2(-40.0359993F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-40.0359993F, -139.220001F), new Vector2(-39.6399994F, -137.701996F), new Vector2(-38.8479996F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-38.0559998F, -134.990005F), new Vector2(-36.987999F, -133.916F), new Vector2(-35.644001F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-34.2999992F, -132.332001F), new Vector2(-32.7999992F, -131.936005F), new Vector2(-31.1439991F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-29.4640007F, -131.936005F), new Vector2(-27.9459991F, -132.332001F), new Vector2(-26.5900002F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0421()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-55.4080009F, -132.296005F));
+ builder.AddLine(new Vector2(-55.4080009F, -158F));
+ builder.AddLine(new Vector2(-58.6479988F, -158F));
+ builder.AddLine(new Vector2(-58.6479988F, -132.296005F));
+ builder.AddLine(new Vector2(-55.4080009F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-43.3120003F, -132.296005F));
+ builder.AddLine(new Vector2(-43.3120003F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-43.3120003F, -144.259995F), new Vector2(-43.5999985F, -145.447998F), new Vector2(-44.1759987F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-44.7519989F, -147.511993F), new Vector2(-45.5379982F, -148.315994F), new Vector2(-46.5340004F, -148.891998F));
+ builder.AddCubicBezier(new Vector2(-47.5299988F, -149.468002F), new Vector2(-48.6759987F, -149.755997F), new Vector2(-49.9720001F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-51.2680016F, -149.755997F), new Vector2(-52.4319992F, -149.462006F), new Vector2(-53.4640007F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-54.4959984F, -148.285995F), new Vector2(-55.2999992F, -147.488007F), new Vector2(-55.8759995F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-56.4519997F, -145.472F), new Vector2(-56.7400017F, -144.320007F), new Vector2(-56.7400017F, -143.024002F));
+ builder.AddLine(new Vector2(-55.4080009F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-55.4080009F, -143.132004F), new Vector2(-55.2159996F, -143.899994F), new Vector2(-54.8320007F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-54.4480019F, -145.244003F), new Vector2(-53.9199982F, -145.772003F), new Vector2(-53.2480011F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-52.5760002F, -146.539993F), new Vector2(-51.8079987F, -146.731995F), new Vector2(-50.9440002F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-49.6479988F, -146.731995F), new Vector2(-48.5979996F, -146.311996F), new Vector2(-47.7939987F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-46.9900017F, -144.632004F), new Vector2(-46.5880013F, -143.563995F), new Vector2(-46.5880013F, -142.268005F));
+ builder.AddLine(new Vector2(-46.5880013F, -132.296005F));
+ builder.AddLine(new Vector2(-43.3120003F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0422()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-73.6959991F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-72.5199966F, -133.195999F), new Vector2(-71.512001F, -133.927994F), new Vector2(-70.6719971F, -134.888F));
+ builder.AddLine(new Vector2(-72.7600021F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(-73.3359985F, -136.339996F), new Vector2(-74.026001F, -135.835999F), new Vector2(-74.8300018F, -135.5F));
+ builder.AddCubicBezier(new Vector2(-75.6340027F, -135.164001F), new Vector2(-76.5159988F, -134.996002F), new Vector2(-77.4759979F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-78.6279984F, -134.996002F), new Vector2(-79.6480026F, -135.242004F), new Vector2(-80.5360031F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-81.4240036F, -136.225998F), new Vector2(-82.1080017F, -136.921997F), new Vector2(-82.5879974F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-83.0680008F, -138.722F), new Vector2(-83.3079987F, -139.772003F), new Vector2(-83.3079987F, -140.972F));
+ builder.AddCubicBezier(new Vector2(-83.3079987F, -142.147995F), new Vector2(-83.0800018F, -143.167999F), new Vector2(-82.6240005F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(-82.1679993F, -144.895996F), new Vector2(-81.5199966F, -145.567993F), new Vector2(-80.6800003F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(-79.8399963F, -146.528F), new Vector2(-78.8679962F, -146.768005F), new Vector2(-77.7639999F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(-76.7080002F, -146.768005F), new Vector2(-75.8079987F, -146.546005F), new Vector2(-75.064003F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(-74.3199997F, -145.658005F), new Vector2(-73.7440033F, -145.033997F), new Vector2(-73.3359985F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(-72.9280014F, -143.425995F), new Vector2(-72.723999F, -142.447998F), new Vector2(-72.723999F, -141.296005F));
+ builder.AddLine(new Vector2(-71.5360031F, -142.339996F));
+ builder.AddLine(new Vector2(-84.2440033F, -142.339996F));
+ builder.AddLine(new Vector2(-84.2440033F, -139.639999F));
+ builder.AddLine(new Vector2(-69.8079987F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(-69.7360001F, -139.975998F), new Vector2(-69.6880035F, -140.281998F), new Vector2(-69.6640015F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(-69.6399994F, -140.834F), new Vector2(-69.6279984F, -141.091995F), new Vector2(-69.6279984F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(-69.6279984F, -142.964005F), new Vector2(-69.9700012F, -144.416F), new Vector2(-70.6539993F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(-71.3379974F, -146.960007F), new Vector2(-72.2919998F, -147.955994F), new Vector2(-73.5159988F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(-74.7399979F, -149.395996F), new Vector2(-76.1320038F, -149.755997F), new Vector2(-77.6920013F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-79.3479996F, -149.755997F), new Vector2(-80.8420029F, -149.365997F), new Vector2(-82.1740036F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-83.5059967F, -147.806F), new Vector2(-84.5619965F, -146.744003F), new Vector2(-85.3420029F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-86.1220016F, -144.056F), new Vector2(-86.512001F, -142.544006F), new Vector2(-86.512001F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-86.512001F, -139.160004F), new Vector2(-86.1159973F, -137.636002F), new Vector2(-85.3239975F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-84.5319977F, -134.947998F), new Vector2(-83.4580002F, -133.886002F), new Vector2(-82.1019974F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-80.7460022F, -132.326004F), new Vector2(-79.2040024F, -131.936005F), new Vector2(-77.4759979F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-76.1320038F, -131.936005F), new Vector2(-74.8720016F, -132.188004F), new Vector2(-73.6959991F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0423()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-101.884003F, -132.296005F));
+ builder.AddLine(new Vector2(-101.884003F, -158F));
+ builder.AddLine(new Vector2(-105.124001F, -158F));
+ builder.AddLine(new Vector2(-105.124001F, -132.296005F));
+ builder.AddLine(new Vector2(-101.884003F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-89.788002F, -132.296005F));
+ builder.AddLine(new Vector2(-89.788002F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-89.788002F, -144.259995F), new Vector2(-90.0759964F, -145.447998F), new Vector2(-90.6520004F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-91.2279968F, -147.511993F), new Vector2(-92.0139999F, -148.315994F), new Vector2(-93.0100021F, -148.891998F));
+ builder.AddCubicBezier(new Vector2(-94.0059967F, -149.468002F), new Vector2(-95.1520004F, -149.755997F), new Vector2(-96.447998F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-97.7440033F, -149.755997F), new Vector2(-98.9079971F, -149.462006F), new Vector2(-99.9400024F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-100.972F, -148.285995F), new Vector2(-101.776001F, -147.488007F), new Vector2(-102.351997F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-102.928001F, -145.472F), new Vector2(-103.216003F, -144.320007F), new Vector2(-103.216003F, -143.024002F));
+ builder.AddLine(new Vector2(-101.884003F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-101.884003F, -143.132004F), new Vector2(-101.692001F, -143.899994F), new Vector2(-101.307999F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-100.924004F, -145.244003F), new Vector2(-100.396004F, -145.772003F), new Vector2(-99.723999F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-99.052002F, -146.539993F), new Vector2(-98.2839966F, -146.731995F), new Vector2(-97.4199982F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-96.1240005F, -146.731995F), new Vector2(-95.0739975F, -146.311996F), new Vector2(-94.2699966F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-93.4660034F, -144.632004F), new Vector2(-93.064003F, -143.563995F), new Vector2(-93.064003F, -142.268005F));
+ builder.AddLine(new Vector2(-93.064003F, -132.296005F));
+ builder.AddLine(new Vector2(-89.788002F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0424()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-108.292F, -146.444F));
+ builder.AddLine(new Vector2(-108.292F, -149.395996F));
+ builder.AddLine(new Vector2(-119.956001F, -149.395996F));
+ builder.AddLine(new Vector2(-119.956001F, -146.444F));
+ builder.AddLine(new Vector2(-108.292F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-112.503998F, -132.296005F));
+ builder.AddLine(new Vector2(-112.503998F, -156.559998F));
+ builder.AddLine(new Vector2(-115.744003F, -156.559998F));
+ builder.AddLine(new Vector2(-115.744003F, -132.296005F));
+ builder.AddLine(new Vector2(-112.503998F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0425()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-142.311996F, -132.296005F));
+ builder.AddLine(new Vector2(-142.311996F, -149.395996F));
+ builder.AddLine(new Vector2(-145.552002F, -149.395996F));
+ builder.AddLine(new Vector2(-145.552002F, -132.296005F));
+ builder.AddLine(new Vector2(-142.311996F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-130.216003F, -132.296005F));
+ builder.AddLine(new Vector2(-130.216003F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-130.216003F, -144.091995F), new Vector2(-130.503998F, -145.201996F), new Vector2(-131.080002F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(-131.656006F, -147.289993F), new Vector2(-132.442001F, -148.136002F), new Vector2(-133.438004F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(-134.434006F, -149.432007F), new Vector2(-135.580002F, -149.755997F), new Vector2(-136.876007F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-138.171997F, -149.755997F), new Vector2(-139.335999F, -149.462006F), new Vector2(-140.367996F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-141.399994F, -148.285995F), new Vector2(-142.203995F, -147.488007F), new Vector2(-142.779999F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-143.356003F, -145.472F), new Vector2(-143.643997F, -144.320007F), new Vector2(-143.643997F, -143.024002F));
+ builder.AddLine(new Vector2(-142.311996F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-142.311996F, -143.132004F), new Vector2(-142.119995F, -143.899994F), new Vector2(-141.735992F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-141.352005F, -145.244003F), new Vector2(-140.824005F, -145.772003F), new Vector2(-140.151993F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-139.479996F, -146.539993F), new Vector2(-138.712006F, -146.731995F), new Vector2(-137.848007F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-136.552002F, -146.731995F), new Vector2(-135.501999F, -146.311996F), new Vector2(-134.697998F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-133.893997F, -144.632004F), new Vector2(-133.492004F, -143.563995F), new Vector2(-133.492004F, -142.268005F));
+ builder.AddLine(new Vector2(-133.492004F, -132.296005F));
+ builder.AddLine(new Vector2(-130.216003F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0426()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-150.483994F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-150.100006F, -153.806F), new Vector2(-149.908005F, -154.304001F), new Vector2(-149.908005F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-149.908005F, -155.479996F), new Vector2(-150.100006F, -155.966003F), new Vector2(-150.483994F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-150.867996F, -156.757996F), new Vector2(-151.360001F, -156.955994F), new Vector2(-151.960007F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(-152.559998F, -156.955994F), new Vector2(-153.052002F, -156.757996F), new Vector2(-153.436005F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-153.820007F, -155.966003F), new Vector2(-154.011993F, -155.479996F), new Vector2(-154.011993F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-154.011993F, -154.304001F), new Vector2(-153.820007F, -153.806F), new Vector2(-153.436005F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-153.052002F, -153.014008F), new Vector2(-152.559998F, -152.815994F), new Vector2(-151.960007F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(-151.360001F, -152.815994F), new Vector2(-150.867996F, -153.014008F), new Vector2(-150.483994F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-150.339996F, -132.296005F));
+ builder.AddLine(new Vector2(-150.339996F, -149.395996F));
+ builder.AddLine(new Vector2(-153.615997F, -149.395996F));
+ builder.AddLine(new Vector2(-153.615997F, -132.296005F));
+ builder.AddLine(new Vector2(-150.339996F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0427()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-175.251999F, -125.132004F));
+ builder.AddLine(new Vector2(-172.011993F, -132.151993F));
+ builder.AddLine(new Vector2(-173.848007F, -135.464005F));
+ builder.AddLine(new Vector2(-178.852005F, -125.132004F));
+ builder.AddLine(new Vector2(-175.251999F, -125.132004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-172.011993F, -132.151993F));
+ builder.AddLine(new Vector2(-164.020004F, -149.395996F));
+ builder.AddLine(new Vector2(-167.619995F, -149.395996F));
+ builder.AddLine(new Vector2(-173.416F, -135.895996F));
+ builder.AddLine(new Vector2(-172.264008F, -135.895996F));
+ builder.AddLine(new Vector2(-177.772003F, -149.395996F));
+ builder.AddLine(new Vector2(-181.371994F, -149.395996F));
+ builder.AddLine(new Vector2(-173.955994F, -132.151993F));
+ builder.AddLine(new Vector2(-172.011993F, -132.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0428()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-184.287994F, -132.296005F));
+ builder.AddLine(new Vector2(-184.287994F, -149.395996F));
+ builder.AddLine(new Vector2(-187.563995F, -149.395996F));
+ builder.AddLine(new Vector2(-187.563995F, -145.220001F));
+ builder.AddLine(new Vector2(-186.951996F, -141.080002F));
+ builder.AddLine(new Vector2(-187.563995F, -136.904007F));
+ builder.AddLine(new Vector2(-187.563995F, -132.296005F));
+ builder.AddLine(new Vector2(-184.287994F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-195.591995F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-196.432007F, -136.255997F), new Vector2(-197.085999F, -136.945999F), new Vector2(-197.554001F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-198.022003F, -138.697998F), new Vector2(-198.255997F, -139.712006F), new Vector2(-198.255997F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-198.255997F, -141.992004F), new Vector2(-198.022003F, -142.994003F), new Vector2(-197.554001F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-197.085999F, -144.746002F), new Vector2(-196.438004F, -145.436005F), new Vector2(-195.610001F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-194.781998F, -146.444F), new Vector2(-193.828003F, -146.695999F), new Vector2(-192.748001F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-191.667999F, -146.695999F), new Vector2(-190.725998F, -146.449997F), new Vector2(-189.921997F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-189.117996F, -145.466003F), new Vector2(-188.488007F, -144.776001F), new Vector2(-188.031998F, -143.888F));
+ builder.AddCubicBezier(new Vector2(-187.576004F, -143F), new Vector2(-187.348007F, -141.979996F), new Vector2(-187.348007F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-187.348007F, -139.123993F), new Vector2(-187.839996F, -137.725998F), new Vector2(-188.824005F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(-189.807999F, -135.542007F), new Vector2(-191.104004F, -134.996002F), new Vector2(-192.712006F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-193.792007F, -134.996002F), new Vector2(-194.751999F, -135.248001F), new Vector2(-195.591995F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-189.759995F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-188.727997F, -133.285995F), new Vector2(-187.906006F, -134.035995F), new Vector2(-187.294006F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-186.682007F, -135.955994F), new Vector2(-186.339996F, -137.048004F), new Vector2(-186.268005F, -138.272003F));
+ builder.AddLine(new Vector2(-186.268005F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-186.339996F, -144.667999F), new Vector2(-186.688004F, -145.766006F), new Vector2(-187.311996F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-187.936005F, -147.662003F), new Vector2(-188.757996F, -148.406006F), new Vector2(-189.778F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-190.798004F, -149.485992F), new Vector2(-191.955994F, -149.755997F), new Vector2(-193.251999F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-194.835999F, -149.755997F), new Vector2(-196.257996F, -149.360001F), new Vector2(-197.518005F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-198.778F, -147.776001F), new Vector2(-199.774002F, -146.707993F), new Vector2(-200.505997F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-201.238007F, -144.020004F), new Vector2(-201.604004F, -142.507996F), new Vector2(-201.604004F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-201.604004F, -139.147995F), new Vector2(-201.238007F, -137.636002F), new Vector2(-200.505997F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-199.774002F, -134.947998F), new Vector2(-198.778F, -133.886002F), new Vector2(-197.518005F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-196.257996F, -132.326004F), new Vector2(-194.835999F, -131.936005F), new Vector2(-193.251999F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-191.955994F, -131.936005F), new Vector2(-190.792007F, -132.205994F), new Vector2(-189.759995F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0429()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-220.251999F, -132.296005F));
+ builder.AddLine(new Vector2(-215.283997F, -145.184006F));
+ builder.AddLine(new Vector2(-216.472F, -145.184006F));
+ builder.AddLine(new Vector2(-211.539993F, -132.296005F));
+ builder.AddLine(new Vector2(-209.632004F, -132.296005F));
+ builder.AddLine(new Vector2(-202.899994F, -149.395996F));
+ builder.AddLine(new Vector2(-206.283997F, -149.395996F));
+ builder.AddLine(new Vector2(-211.179993F, -136.076004F));
+ builder.AddLine(new Vector2(-210.100006F, -136.076004F));
+ builder.AddLine(new Vector2(-214.960007F, -149.395996F));
+ builder.AddLine(new Vector2(-216.832001F, -149.395996F));
+ builder.AddLine(new Vector2(-221.692001F, -136.076004F));
+ builder.AddLine(new Vector2(-220.612F, -136.076004F));
+ builder.AddLine(new Vector2(-225.507996F, -149.395996F));
+ builder.AddLine(new Vector2(-228.891998F, -149.395996F));
+ builder.AddLine(new Vector2(-222.160004F, -132.296005F));
+ builder.AddLine(new Vector2(-220.251999F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0430()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-231.664001F, -132.296005F));
+ builder.AddLine(new Vector2(-231.664001F, -149.395996F));
+ builder.AddLine(new Vector2(-234.940002F, -149.395996F));
+ builder.AddLine(new Vector2(-234.940002F, -145.220001F));
+ builder.AddLine(new Vector2(-234.328003F, -141.080002F));
+ builder.AddLine(new Vector2(-234.940002F, -136.904007F));
+ builder.AddLine(new Vector2(-234.940002F, -132.296005F));
+ builder.AddLine(new Vector2(-231.664001F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-242.968002F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-243.807999F, -136.255997F), new Vector2(-244.462006F, -136.945999F), new Vector2(-244.929993F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-245.397995F, -138.697998F), new Vector2(-245.632004F, -139.712006F), new Vector2(-245.632004F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-245.632004F, -141.992004F), new Vector2(-245.397995F, -142.994003F), new Vector2(-244.929993F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-244.462006F, -144.746002F), new Vector2(-243.813995F, -145.436005F), new Vector2(-242.985992F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-242.158005F, -146.444F), new Vector2(-241.203995F, -146.695999F), new Vector2(-240.123993F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-239.044006F, -146.695999F), new Vector2(-238.102005F, -146.449997F), new Vector2(-237.298004F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-236.494003F, -145.466003F), new Vector2(-235.863998F, -144.776001F), new Vector2(-235.408005F, -143.888F));
+ builder.AddCubicBezier(new Vector2(-234.951996F, -143F), new Vector2(-234.723999F, -141.979996F), new Vector2(-234.723999F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-234.723999F, -139.123993F), new Vector2(-235.216003F, -137.725998F), new Vector2(-236.199997F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(-237.184006F, -135.542007F), new Vector2(-238.479996F, -134.996002F), new Vector2(-240.087997F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-241.167999F, -134.996002F), new Vector2(-242.128006F, -135.248001F), new Vector2(-242.968002F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-237.136002F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-236.104004F, -133.285995F), new Vector2(-235.281998F, -134.035995F), new Vector2(-234.669998F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-234.057999F, -135.955994F), new Vector2(-233.716003F, -137.048004F), new Vector2(-233.643997F, -138.272003F));
+ builder.AddLine(new Vector2(-233.643997F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-233.716003F, -144.667999F), new Vector2(-234.063995F, -145.766006F), new Vector2(-234.688004F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-235.311996F, -147.662003F), new Vector2(-236.134003F, -148.406006F), new Vector2(-237.154007F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-238.173996F, -149.485992F), new Vector2(-239.332001F, -149.755997F), new Vector2(-240.628006F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-242.212006F, -149.755997F), new Vector2(-243.634003F, -149.360001F), new Vector2(-244.893997F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-246.154007F, -147.776001F), new Vector2(-247.149994F, -146.707993F), new Vector2(-247.882004F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-248.613998F, -144.020004F), new Vector2(-248.979996F, -142.507996F), new Vector2(-248.979996F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-248.979996F, -139.147995F), new Vector2(-248.613998F, -137.636002F), new Vector2(-247.882004F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-247.149994F, -134.947998F), new Vector2(-246.154007F, -133.886002F), new Vector2(-244.893997F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-243.634003F, -132.326004F), new Vector2(-242.212006F, -131.936005F), new Vector2(-240.628006F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-239.332001F, -131.936005F), new Vector2(-238.167999F, -132.205994F), new Vector2(-237.136002F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0431()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-260.067993F, -158F));
+ builder.AddLine(new Vector2(-263.343994F, -158F));
+ builder.AddLine(new Vector2(-263.343994F, -145.220001F));
+ builder.AddLine(new Vector2(-262.731995F, -141.080002F));
+ builder.AddLine(new Vector2(-263.343994F, -136.904007F));
+ builder.AddLine(new Vector2(-263.343994F, -132.296005F));
+ builder.AddLine(new Vector2(-260.067993F, -132.296005F));
+ builder.AddLine(new Vector2(-260.067993F, -158F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-271.390015F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-272.217987F, -136.225998F), new Vector2(-272.865997F, -136.916F), new Vector2(-273.334015F, -137.804001F));
+ builder.AddCubicBezier(new Vector2(-273.802002F, -138.692001F), new Vector2(-274.036011F, -139.712006F), new Vector2(-274.036011F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-274.036011F, -142.016006F), new Vector2(-273.802002F, -143.029999F), new Vector2(-273.334015F, -143.906006F));
+ builder.AddCubicBezier(new Vector2(-272.865997F, -144.781998F), new Vector2(-272.223999F, -145.466003F), new Vector2(-271.40799F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-270.59201F, -146.449997F), new Vector2(-269.644012F, -146.695999F), new Vector2(-268.563995F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-267.484009F, -146.695999F), new Vector2(-266.536011F, -146.444F), new Vector2(-265.720001F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-264.903992F, -145.436005F), new Vector2(-264.268005F, -144.746002F), new Vector2(-263.812012F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-263.355988F, -142.994003F), new Vector2(-263.127991F, -141.979996F), new Vector2(-263.127991F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-263.127991F, -139.699997F), new Vector2(-263.355988F, -138.697998F), new Vector2(-263.812012F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-264.268005F, -136.945999F), new Vector2(-264.903992F, -136.255997F), new Vector2(-265.720001F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-266.536011F, -135.248001F), new Vector2(-267.484009F, -134.996002F), new Vector2(-268.563995F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-269.619995F, -134.996002F), new Vector2(-270.562012F, -135.242004F), new Vector2(-271.390015F, -135.733994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-265.575989F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-264.544006F, -133.285995F), new Vector2(-263.716003F, -134.035995F), new Vector2(-263.09201F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-262.467987F, -135.955994F), new Vector2(-262.119995F, -137.048004F), new Vector2(-262.048004F, -138.272003F));
+ builder.AddLine(new Vector2(-262.048004F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-262.119995F, -144.667999F), new Vector2(-262.473999F, -145.766006F), new Vector2(-263.109985F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-263.746002F, -147.662003F), new Vector2(-264.579987F, -148.406006F), new Vector2(-265.612F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-266.644012F, -149.485992F), new Vector2(-267.808014F, -149.755997F), new Vector2(-269.104004F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-270.664001F, -149.755997F), new Vector2(-272.067993F, -149.360001F), new Vector2(-273.31601F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-274.563995F, -147.776001F), new Vector2(-275.553986F, -146.707993F), new Vector2(-276.286011F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-277.018005F, -144.020004F), new Vector2(-277.384003F, -142.507996F), new Vector2(-277.384003F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-277.384003F, -139.147995F), new Vector2(-277.018005F, -137.636002F), new Vector2(-276.286011F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-275.553986F, -134.947998F), new Vector2(-274.563995F, -133.886002F), new Vector2(-273.31601F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-272.067993F, -132.326004F), new Vector2(-270.664001F, -131.936005F), new Vector2(-269.104004F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-267.783997F, -131.936005F), new Vector2(-266.608002F, -132.205994F), new Vector2(-265.575989F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0432()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-283.899994F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-282.723999F, -133.195999F), new Vector2(-281.716003F, -133.927994F), new Vector2(-280.876007F, -134.888F));
+ builder.AddLine(new Vector2(-282.963989F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(-283.540009F, -136.339996F), new Vector2(-284.230011F, -135.835999F), new Vector2(-285.033997F, -135.5F));
+ builder.AddCubicBezier(new Vector2(-285.838013F, -135.164001F), new Vector2(-286.720001F, -134.996002F), new Vector2(-287.679993F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-288.832001F, -134.996002F), new Vector2(-289.85199F, -135.242004F), new Vector2(-290.73999F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-291.627991F, -136.225998F), new Vector2(-292.312012F, -136.921997F), new Vector2(-292.791992F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-293.272003F, -138.722F), new Vector2(-293.511993F, -139.772003F), new Vector2(-293.511993F, -140.972F));
+ builder.AddCubicBezier(new Vector2(-293.511993F, -142.147995F), new Vector2(-293.283997F, -143.167999F), new Vector2(-292.828003F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(-292.372009F, -144.895996F), new Vector2(-291.723999F, -145.567993F), new Vector2(-290.884003F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(-290.044006F, -146.528F), new Vector2(-289.071991F, -146.768005F), new Vector2(-287.967987F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(-286.911987F, -146.768005F), new Vector2(-286.011993F, -146.546005F), new Vector2(-285.268005F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(-284.523987F, -145.658005F), new Vector2(-283.947998F, -145.033997F), new Vector2(-283.540009F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(-283.131989F, -143.425995F), new Vector2(-282.928009F, -142.447998F), new Vector2(-282.928009F, -141.296005F));
+ builder.AddLine(new Vector2(-281.73999F, -142.339996F));
+ builder.AddLine(new Vector2(-294.447998F, -142.339996F));
+ builder.AddLine(new Vector2(-294.447998F, -139.639999F));
+ builder.AddLine(new Vector2(-280.011993F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(-279.940002F, -139.975998F), new Vector2(-279.891998F, -140.281998F), new Vector2(-279.868011F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(-279.843994F, -140.834F), new Vector2(-279.832001F, -141.091995F), new Vector2(-279.832001F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(-279.832001F, -142.964005F), new Vector2(-280.174011F, -144.416F), new Vector2(-280.858002F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(-281.541992F, -146.960007F), new Vector2(-282.496002F, -147.955994F), new Vector2(-283.720001F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(-284.944F, -149.395996F), new Vector2(-286.335999F, -149.755997F), new Vector2(-287.895996F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-289.552002F, -149.755997F), new Vector2(-291.04599F, -149.365997F), new Vector2(-292.377991F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-293.709991F, -147.806F), new Vector2(-294.765991F, -146.744003F), new Vector2(-295.54599F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-296.325989F, -144.056F), new Vector2(-296.716003F, -142.544006F), new Vector2(-296.716003F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-296.716003F, -139.160004F), new Vector2(-296.320007F, -137.636002F), new Vector2(-295.528015F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-294.735992F, -134.947998F), new Vector2(-293.661987F, -133.886002F), new Vector2(-292.306F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-290.950012F, -132.326004F), new Vector2(-289.40799F, -131.936005F), new Vector2(-287.679993F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-286.335999F, -131.936005F), new Vector2(-285.075989F, -132.188004F), new Vector2(-283.899994F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0433()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-300.946014F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(-299.806F, -134.276001F), new Vector2(-299.235992F, -135.548004F), new Vector2(-299.235992F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(-299.235992F, -138.212006F), new Vector2(-299.458008F, -139.063995F), new Vector2(-299.902008F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(-300.346008F, -140.360001F), new Vector2(-300.915985F, -140.876007F), new Vector2(-301.612F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(-302.308014F, -141.643997F), new Vector2(-303.040009F, -141.949997F), new Vector2(-303.808014F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(-304.575989F, -142.406006F), new Vector2(-305.313995F, -142.628006F), new Vector2(-306.022003F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(-306.730011F, -143.059998F), new Vector2(-307.299988F, -143.324005F), new Vector2(-307.731995F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(-308.164001F, -143.947998F), new Vector2(-308.380005F, -144.391998F), new Vector2(-308.380005F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(-308.380005F, -145.520004F), new Vector2(-308.134003F, -145.964005F), new Vector2(-307.641998F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-307.149994F, -146.636002F), new Vector2(-306.436005F, -146.804001F), new Vector2(-305.5F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(-304.612F, -146.804001F), new Vector2(-303.820007F, -146.636002F), new Vector2(-303.123993F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-302.428009F, -145.964005F), new Vector2(-301.828003F, -145.483994F), new Vector2(-301.324005F, -144.860001F));
+ builder.AddLine(new Vector2(-299.235992F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(-299.90799F, -147.884003F), new Vector2(-300.765991F, -148.585999F), new Vector2(-301.809998F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(-302.854004F, -149.522003F), new Vector2(-304.048004F, -149.755997F), new Vector2(-305.391998F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-306.664001F, -149.755997F), new Vector2(-307.756012F, -149.552002F), new Vector2(-308.667999F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(-309.579987F, -148.735992F), new Vector2(-310.282013F, -148.154007F), new Vector2(-310.773987F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(-311.265991F, -146.641998F), new Vector2(-311.511993F, -145.748001F), new Vector2(-311.511993F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(-311.511993F, -143.684006F), new Vector2(-311.290009F, -142.850006F), new Vector2(-310.846008F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(-310.402008F, -141.578003F), new Vector2(-309.832001F, -141.080002F), new Vector2(-309.135986F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(-308.440002F, -140.360001F), new Vector2(-307.701996F, -140.072006F), new Vector2(-306.921997F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(-306.141998F, -139.639999F), new Vector2(-305.403992F, -139.417999F), new Vector2(-304.708008F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(-304.011993F, -138.962006F), new Vector2(-303.441986F, -138.673996F), new Vector2(-302.997986F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(-302.553986F, -137.977997F), new Vector2(-302.332001F, -137.492004F), new Vector2(-302.332001F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(-302.332001F, -136.244003F), new Vector2(-302.608002F, -135.757996F), new Vector2(-303.160004F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(-303.712006F, -135.061996F), new Vector2(-304.492004F, -134.888F), new Vector2(-305.5F, -134.888F));
+ builder.AddCubicBezier(new Vector2(-306.507996F, -134.888F), new Vector2(-307.420013F, -135.074005F), new Vector2(-308.235992F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(-309.052002F, -135.817993F), new Vector2(-309.772003F, -136.388F), new Vector2(-310.395996F, -137.156006F));
+ builder.AddLine(new Vector2(-312.484009F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-311.955994F, -134.419998F), new Vector2(-311.338013F, -133.862F), new Vector2(-310.630005F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(-309.921997F, -132.925995F), new Vector2(-309.135986F, -132.565994F), new Vector2(-308.272003F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(-307.40799F, -132.061996F), new Vector2(-306.496002F, -131.936005F), new Vector2(-305.536011F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-303.615997F, -131.936005F), new Vector2(-302.085999F, -132.404007F), new Vector2(-300.946014F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0434()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-316.317993F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(-315.178009F, -134.276001F), new Vector2(-314.608002F, -135.548004F), new Vector2(-314.608002F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(-314.608002F, -138.212006F), new Vector2(-314.829987F, -139.063995F), new Vector2(-315.273987F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(-315.717987F, -140.360001F), new Vector2(-316.287994F, -140.876007F), new Vector2(-316.984009F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(-317.679993F, -141.643997F), new Vector2(-318.411987F, -141.949997F), new Vector2(-319.179993F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(-319.947998F, -142.406006F), new Vector2(-320.686005F, -142.628006F), new Vector2(-321.394012F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(-322.10199F, -143.059998F), new Vector2(-322.671997F, -143.324005F), new Vector2(-323.104004F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(-323.536011F, -143.947998F), new Vector2(-323.752014F, -144.391998F), new Vector2(-323.752014F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(-323.752014F, -145.520004F), new Vector2(-323.506012F, -145.964005F), new Vector2(-323.014008F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-322.522003F, -146.636002F), new Vector2(-321.808014F, -146.804001F), new Vector2(-320.872009F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(-319.984009F, -146.804001F), new Vector2(-319.191986F, -146.636002F), new Vector2(-318.496002F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-317.799988F, -145.964005F), new Vector2(-317.200012F, -145.483994F), new Vector2(-316.696014F, -144.860001F));
+ builder.AddLine(new Vector2(-314.608002F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(-315.279999F, -147.884003F), new Vector2(-316.138F, -148.585999F), new Vector2(-317.182007F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(-318.226013F, -149.522003F), new Vector2(-319.420013F, -149.755997F), new Vector2(-320.764008F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-322.036011F, -149.755997F), new Vector2(-323.127991F, -149.552002F), new Vector2(-324.040009F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(-324.951996F, -148.735992F), new Vector2(-325.653992F, -148.154007F), new Vector2(-326.145996F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(-326.638F, -146.641998F), new Vector2(-326.884003F, -145.748001F), new Vector2(-326.884003F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(-326.884003F, -143.684006F), new Vector2(-326.661987F, -142.850006F), new Vector2(-326.217987F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(-325.773987F, -141.578003F), new Vector2(-325.20401F, -141.080002F), new Vector2(-324.507996F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(-323.812012F, -140.360001F), new Vector2(-323.074005F, -140.072006F), new Vector2(-322.294006F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(-321.514008F, -139.639999F), new Vector2(-320.776001F, -139.417999F), new Vector2(-320.079987F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(-319.384003F, -138.962006F), new Vector2(-318.813995F, -138.673996F), new Vector2(-318.369995F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(-317.925995F, -137.977997F), new Vector2(-317.70401F, -137.492004F), new Vector2(-317.70401F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(-317.70401F, -136.244003F), new Vector2(-317.980011F, -135.757996F), new Vector2(-318.532013F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(-319.084015F, -135.061996F), new Vector2(-319.864014F, -134.888F), new Vector2(-320.872009F, -134.888F));
+ builder.AddCubicBezier(new Vector2(-321.880005F, -134.888F), new Vector2(-322.791992F, -135.074005F), new Vector2(-323.608002F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(-324.424011F, -135.817993F), new Vector2(-325.144012F, -136.388F), new Vector2(-325.768005F, -137.156006F));
+ builder.AddLine(new Vector2(-327.855988F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-327.328003F, -134.419998F), new Vector2(-326.709991F, -133.862F), new Vector2(-326.002014F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(-325.294006F, -132.925995F), new Vector2(-324.507996F, -132.565994F), new Vector2(-323.644012F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(-322.779999F, -132.061996F), new Vector2(-321.868011F, -131.936005F), new Vector2(-320.90799F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-318.988007F, -131.936005F), new Vector2(-317.458008F, -132.404007F), new Vector2(-316.317993F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0435()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-331.059998F, -132.296005F));
+ builder.AddLine(new Vector2(-331.059998F, -149.395996F));
+ builder.AddLine(new Vector2(-334.335999F, -149.395996F));
+ builder.AddLine(new Vector2(-334.335999F, -145.220001F));
+ builder.AddLine(new Vector2(-333.723999F, -141.080002F));
+ builder.AddLine(new Vector2(-334.335999F, -136.904007F));
+ builder.AddLine(new Vector2(-334.335999F, -132.296005F));
+ builder.AddLine(new Vector2(-331.059998F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-342.364014F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-343.20401F, -136.255997F), new Vector2(-343.858002F, -136.945999F), new Vector2(-344.325989F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-344.794006F, -138.697998F), new Vector2(-345.028015F, -139.712006F), new Vector2(-345.028015F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-345.028015F, -141.992004F), new Vector2(-344.794006F, -142.994003F), new Vector2(-344.325989F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-343.858002F, -144.746002F), new Vector2(-343.209991F, -145.436005F), new Vector2(-342.381989F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-341.553986F, -146.444F), new Vector2(-340.600006F, -146.695999F), new Vector2(-339.519989F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-338.440002F, -146.695999F), new Vector2(-337.497986F, -146.449997F), new Vector2(-336.694F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-335.890015F, -145.466003F), new Vector2(-335.26001F, -144.776001F), new Vector2(-334.803986F, -143.888F));
+ builder.AddCubicBezier(new Vector2(-334.347992F, -143F), new Vector2(-334.119995F, -141.979996F), new Vector2(-334.119995F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-334.119995F, -139.123993F), new Vector2(-334.612F, -137.725998F), new Vector2(-335.596008F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(-336.579987F, -135.542007F), new Vector2(-337.876007F, -134.996002F), new Vector2(-339.484009F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-340.563995F, -134.996002F), new Vector2(-341.523987F, -135.248001F), new Vector2(-342.364014F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-336.532013F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-335.5F, -133.285995F), new Vector2(-334.678009F, -134.035995F), new Vector2(-334.06601F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-333.45401F, -135.955994F), new Vector2(-333.112F, -137.048004F), new Vector2(-333.040009F, -138.272003F));
+ builder.AddLine(new Vector2(-333.040009F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-333.112F, -144.667999F), new Vector2(-333.459991F, -145.766006F), new Vector2(-334.084015F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-334.708008F, -147.662003F), new Vector2(-335.529999F, -148.406006F), new Vector2(-336.549988F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-337.570007F, -149.485992F), new Vector2(-338.727997F, -149.755997F), new Vector2(-340.023987F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-341.608002F, -149.755997F), new Vector2(-343.029999F, -149.360001F), new Vector2(-344.290009F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-345.549988F, -147.776001F), new Vector2(-346.54599F, -146.707993F), new Vector2(-347.278015F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-348.01001F, -144.020004F), new Vector2(-348.376007F, -142.507996F), new Vector2(-348.376007F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-348.376007F, -139.147995F), new Vector2(-348.01001F, -137.636002F), new Vector2(-347.278015F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-346.54599F, -134.947998F), new Vector2(-345.549988F, -133.886002F), new Vector2(-344.290009F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-343.029999F, -132.326004F), new Vector2(-341.608002F, -131.936005F), new Vector2(-340.023987F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-338.727997F, -131.936005F), new Vector2(-337.563995F, -132.205994F), new Vector2(-336.532013F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0436()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-362.614014F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-363.441986F, -136.255997F), new Vector2(-364.078003F, -136.945999F), new Vector2(-364.522003F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-364.966003F, -138.697998F), new Vector2(-365.187988F, -139.699997F), new Vector2(-365.187988F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-365.187988F, -141.979996F), new Vector2(-364.959991F, -142.994003F), new Vector2(-364.503998F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-364.048004F, -144.746002F), new Vector2(-363.411987F, -145.436005F), new Vector2(-362.596008F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-361.779999F, -146.444F), new Vector2(-360.843994F, -146.695999F), new Vector2(-359.787994F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-358.708008F, -146.695999F), new Vector2(-357.76001F, -146.444F), new Vector2(-356.944F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-356.127991F, -145.436005F), new Vector2(-355.485992F, -144.746002F), new Vector2(-355.018005F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-354.549988F, -142.994003F), new Vector2(-354.31601F, -141.992004F), new Vector2(-354.31601F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-354.31601F, -139.712006F), new Vector2(-354.549988F, -138.697998F), new Vector2(-355.018005F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-355.485992F, -136.945999F), new Vector2(-356.127991F, -136.255997F), new Vector2(-356.944F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-357.76001F, -135.248001F), new Vector2(-358.708008F, -134.996002F), new Vector2(-359.787994F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-360.843994F, -134.996002F), new Vector2(-361.786011F, -135.248001F), new Vector2(-362.614014F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-365.007996F, -125.132004F));
+ builder.AddLine(new Vector2(-365.007996F, -136.580002F));
+ builder.AddLine(new Vector2(-365.619995F, -140.755997F));
+ builder.AddLine(new Vector2(-365.007996F, -144.895996F));
+ builder.AddLine(new Vector2(-365.007996F, -149.395996F));
+ builder.AddLine(new Vector2(-368.247986F, -149.395996F));
+ builder.AddLine(new Vector2(-368.247986F, -125.132004F));
+ builder.AddLine(new Vector2(-365.007996F, -125.132004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-355.018005F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-353.757996F, -133.886002F), new Vector2(-352.768005F, -134.947998F), new Vector2(-352.048004F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-351.328003F, -137.636002F), new Vector2(-350.967987F, -139.147995F), new Vector2(-350.967987F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-350.967987F, -142.507996F), new Vector2(-351.328003F, -144.020004F), new Vector2(-352.048004F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-352.768005F, -146.707993F), new Vector2(-353.757996F, -147.776001F), new Vector2(-355.018005F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-356.278015F, -149.360001F), new Vector2(-357.687988F, -149.755997F), new Vector2(-359.247986F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-360.519989F, -149.755997F), new Vector2(-361.678009F, -149.485992F), new Vector2(-362.721985F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-363.765991F, -148.406006F), new Vector2(-364.605988F, -147.662003F), new Vector2(-365.242004F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-365.877991F, -145.766006F), new Vector2(-366.231995F, -144.667999F), new Vector2(-366.303986F, -143.419998F));
+ builder.AddLine(new Vector2(-366.303986F, -138.272003F));
+ builder.AddCubicBezier(new Vector2(-366.231995F, -137.048004F), new Vector2(-365.884003F, -135.955994F), new Vector2(-365.26001F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-364.635986F, -134.035995F), new Vector2(-363.802002F, -133.285995F), new Vector2(-362.757996F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-361.713989F, -132.205994F), new Vector2(-360.544006F, -131.936005F), new Vector2(-359.247986F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-357.687988F, -131.936005F), new Vector2(-356.278015F, -132.326004F), new Vector2(-355.018005F, -133.106003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0437()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-391.108002F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-391.947998F, -136.328003F), new Vector2(-392.608002F, -137.018005F), new Vector2(-393.088013F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-393.567993F, -138.770004F), new Vector2(-393.808014F, -139.772003F), new Vector2(-393.808014F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-393.808014F, -142.003998F), new Vector2(-393.567993F, -142.988007F), new Vector2(-393.088013F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-392.608002F, -144.716003F), new Vector2(-391.947998F, -145.393997F), new Vector2(-391.108002F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-390.268005F, -146.378006F), new Vector2(-389.320007F, -146.623993F), new Vector2(-388.264008F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-387.160004F, -146.623993F), new Vector2(-386.194F, -146.378006F), new Vector2(-385.365997F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-384.537994F, -145.393997F), new Vector2(-383.877991F, -144.716003F), new Vector2(-383.385986F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-382.894012F, -142.988007F), new Vector2(-382.64801F, -142.003998F), new Vector2(-382.64801F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-382.64801F, -139.772003F), new Vector2(-382.888F, -138.770004F), new Vector2(-383.368011F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-383.847992F, -137.018005F), new Vector2(-384.507996F, -136.328003F), new Vector2(-385.347992F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-386.187988F, -135.320007F), new Vector2(-387.160004F, -135.067993F), new Vector2(-388.264008F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-389.320007F, -135.067993F), new Vector2(-390.268005F, -135.320007F), new Vector2(-391.108002F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-383.709991F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-382.354004F, -133.916F), new Vector2(-381.279999F, -134.990005F), new Vector2(-380.488007F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-379.696014F, -137.701996F), new Vector2(-379.299988F, -139.220001F), new Vector2(-379.299988F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-379.299988F, -142.556F), new Vector2(-379.696014F, -144.056F), new Vector2(-380.488007F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-381.279999F, -146.744003F), new Vector2(-382.354004F, -147.806F), new Vector2(-383.709991F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-385.06601F, -149.365997F), new Vector2(-386.584015F, -149.755997F), new Vector2(-388.264008F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-389.920013F, -149.755997F), new Vector2(-391.420013F, -149.360001F), new Vector2(-392.764008F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-394.108002F, -147.776001F), new Vector2(-395.175995F, -146.714005F), new Vector2(-395.967987F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(-396.76001F, -144.050003F), new Vector2(-397.156006F, -142.556F), new Vector2(-397.156006F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-397.156006F, -139.220001F), new Vector2(-396.76001F, -137.701996F), new Vector2(-395.967987F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-395.175995F, -134.990005F), new Vector2(-394.108002F, -133.916F), new Vector2(-392.764008F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-391.420013F, -132.332001F), new Vector2(-389.920013F, -131.936005F), new Vector2(-388.264008F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-386.584015F, -131.936005F), new Vector2(-385.06601F, -132.332001F), new Vector2(-383.709991F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0438()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-412.528015F, -132.296005F));
+ builder.AddLine(new Vector2(-412.528015F, -158F));
+ builder.AddLine(new Vector2(-415.768005F, -158F));
+ builder.AddLine(new Vector2(-415.768005F, -132.296005F));
+ builder.AddLine(new Vector2(-412.528015F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-400.432007F, -132.296005F));
+ builder.AddLine(new Vector2(-400.432007F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-400.432007F, -144.259995F), new Vector2(-400.720001F, -145.447998F), new Vector2(-401.29599F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-401.872009F, -147.511993F), new Vector2(-402.65799F, -148.315994F), new Vector2(-403.653992F, -148.891998F));
+ builder.AddCubicBezier(new Vector2(-404.649994F, -149.468002F), new Vector2(-405.79599F, -149.755997F), new Vector2(-407.09201F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-408.388F, -149.755997F), new Vector2(-409.552002F, -149.462006F), new Vector2(-410.584015F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-411.615997F, -148.285995F), new Vector2(-412.420013F, -147.488007F), new Vector2(-412.996002F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-413.571991F, -145.472F), new Vector2(-413.859985F, -144.320007F), new Vector2(-413.859985F, -143.024002F));
+ builder.AddLine(new Vector2(-412.528015F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-412.528015F, -143.132004F), new Vector2(-412.335999F, -143.899994F), new Vector2(-411.951996F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-411.567993F, -145.244003F), new Vector2(-411.040009F, -145.772003F), new Vector2(-410.368011F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-409.696014F, -146.539993F), new Vector2(-408.928009F, -146.731995F), new Vector2(-408.063995F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-406.768005F, -146.731995F), new Vector2(-405.717987F, -146.311996F), new Vector2(-404.914001F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-404.109985F, -144.632004F), new Vector2(-403.708008F, -143.563995F), new Vector2(-403.708008F, -142.268005F));
+ builder.AddLine(new Vector2(-403.708008F, -132.296005F));
+ builder.AddLine(new Vector2(-400.432007F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0439()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-436F, -132.296005F));
+ builder.AddLine(new Vector2(-431.032013F, -145.184006F));
+ builder.AddLine(new Vector2(-432.220001F, -145.184006F));
+ builder.AddLine(new Vector2(-427.287994F, -132.296005F));
+ builder.AddLine(new Vector2(-425.380005F, -132.296005F));
+ builder.AddLine(new Vector2(-418.64801F, -149.395996F));
+ builder.AddLine(new Vector2(-422.032013F, -149.395996F));
+ builder.AddLine(new Vector2(-426.928009F, -136.076004F));
+ builder.AddLine(new Vector2(-425.847992F, -136.076004F));
+ builder.AddLine(new Vector2(-430.708008F, -149.395996F));
+ builder.AddLine(new Vector2(-432.579987F, -149.395996F));
+ builder.AddLine(new Vector2(-437.440002F, -136.076004F));
+ builder.AddLine(new Vector2(-436.359985F, -136.076004F));
+ builder.AddLine(new Vector2(-441.256012F, -149.395996F));
+ builder.AddLine(new Vector2(-444.640015F, -149.395996F));
+ builder.AddLine(new Vector2(-437.90799F, -132.296005F));
+ builder.AddLine(new Vector2(-436F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0440()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-455.56601F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(-454.425995F, -134.276001F), new Vector2(-453.855988F, -135.548004F), new Vector2(-453.855988F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(-453.855988F, -138.212006F), new Vector2(-454.078003F, -139.063995F), new Vector2(-454.522003F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(-454.966003F, -140.360001F), new Vector2(-455.536011F, -140.876007F), new Vector2(-456.231995F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(-456.928009F, -141.643997F), new Vector2(-457.660004F, -141.949997F), new Vector2(-458.428009F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(-459.196014F, -142.406006F), new Vector2(-459.93399F, -142.628006F), new Vector2(-460.641998F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(-461.350006F, -143.059998F), new Vector2(-461.920013F, -143.324005F), new Vector2(-462.35199F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(-462.783997F, -143.947998F), new Vector2(-463F, -144.391998F), new Vector2(-463F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(-463F, -145.520004F), new Vector2(-462.753998F, -145.964005F), new Vector2(-462.261993F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-461.769989F, -146.636002F), new Vector2(-461.056F, -146.804001F), new Vector2(-460.119995F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(-459.231995F, -146.804001F), new Vector2(-458.440002F, -146.636002F), new Vector2(-457.743988F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-457.048004F, -145.964005F), new Vector2(-456.447998F, -145.483994F), new Vector2(-455.944F, -144.860001F));
+ builder.AddLine(new Vector2(-453.855988F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(-454.528015F, -147.884003F), new Vector2(-455.385986F, -148.585999F), new Vector2(-456.429993F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(-457.473999F, -149.522003F), new Vector2(-458.667999F, -149.755997F), new Vector2(-460.011993F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-461.283997F, -149.755997F), new Vector2(-462.376007F, -149.552002F), new Vector2(-463.287994F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(-464.200012F, -148.735992F), new Vector2(-464.902008F, -148.154007F), new Vector2(-465.394012F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(-465.885986F, -146.641998F), new Vector2(-466.131989F, -145.748001F), new Vector2(-466.131989F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(-466.131989F, -143.684006F), new Vector2(-465.910004F, -142.850006F), new Vector2(-465.466003F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(-465.022003F, -141.578003F), new Vector2(-464.451996F, -141.080002F), new Vector2(-463.756012F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(-463.059998F, -140.360001F), new Vector2(-462.321991F, -140.072006F), new Vector2(-461.541992F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(-460.761993F, -139.639999F), new Vector2(-460.023987F, -139.417999F), new Vector2(-459.328003F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(-458.631989F, -138.962006F), new Vector2(-458.062012F, -138.673996F), new Vector2(-457.618011F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(-457.174011F, -137.977997F), new Vector2(-456.951996F, -137.492004F), new Vector2(-456.951996F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(-456.951996F, -136.244003F), new Vector2(-457.227997F, -135.757996F), new Vector2(-457.779999F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(-458.332001F, -135.061996F), new Vector2(-459.112F, -134.888F), new Vector2(-460.119995F, -134.888F));
+ builder.AddCubicBezier(new Vector2(-461.127991F, -134.888F), new Vector2(-462.040009F, -135.074005F), new Vector2(-462.855988F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(-463.671997F, -135.817993F), new Vector2(-464.391998F, -136.388F), new Vector2(-465.015991F, -137.156006F));
+ builder.AddLine(new Vector2(-467.104004F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-466.575989F, -134.419998F), new Vector2(-465.958008F, -133.862F), new Vector2(-465.25F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(-464.541992F, -132.925995F), new Vector2(-463.756012F, -132.565994F), new Vector2(-462.891998F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(-462.028015F, -132.061996F), new Vector2(-461.115997F, -131.936005F), new Vector2(-460.156006F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-458.235992F, -131.936005F), new Vector2(-456.705994F, -132.404007F), new Vector2(-455.56601F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0441()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-469.984009F, -132.296005F));
+ builder.AddLine(new Vector2(-469.984009F, -143.276001F));
+ builder.AddCubicBezier(new Vector2(-469.984009F, -144.619995F), new Vector2(-470.278015F, -145.772003F), new Vector2(-470.865997F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-471.45401F, -147.692001F), new Vector2(-472.23999F, -148.436005F), new Vector2(-473.223999F, -148.964005F));
+ builder.AddCubicBezier(new Vector2(-474.208008F, -149.492004F), new Vector2(-475.324005F, -149.755997F), new Vector2(-476.571991F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-477.772003F, -149.755997F), new Vector2(-478.876007F, -149.485992F), new Vector2(-479.884003F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-480.891998F, -148.406006F), new Vector2(-481.713989F, -147.662003F), new Vector2(-482.350006F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-482.985992F, -145.766006F), new Vector2(-483.339996F, -144.632004F), new Vector2(-483.411987F, -143.311996F));
+ builder.AddLine(new Vector2(-481.575989F, -142.628006F));
+ builder.AddCubicBezier(new Vector2(-481.575989F, -143.492004F), new Vector2(-481.384003F, -144.223999F), new Vector2(-481F, -144.824005F));
+ builder.AddCubicBezier(new Vector2(-480.615997F, -145.423996F), new Vector2(-480.105988F, -145.891998F), new Vector2(-479.470001F, -146.227997F));
+ builder.AddCubicBezier(new Vector2(-478.834015F, -146.563995F), new Vector2(-478.119995F, -146.731995F), new Vector2(-477.328003F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-476.175995F, -146.731995F), new Vector2(-475.209991F, -146.365997F), new Vector2(-474.429993F, -145.634003F));
+ builder.AddCubicBezier(new Vector2(-473.649994F, -144.901993F), new Vector2(-473.26001F, -143.899994F), new Vector2(-473.26001F, -142.628006F));
+ builder.AddLine(new Vector2(-473.26001F, -132.296005F));
+ builder.AddLine(new Vector2(-469.984009F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-481.575989F, -132.296005F));
+ builder.AddLine(new Vector2(-481.575989F, -143.311996F));
+ builder.AddCubicBezier(new Vector2(-481.575989F, -144.632004F), new Vector2(-481.858002F, -145.772003F), new Vector2(-482.421997F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-482.985992F, -147.692001F), new Vector2(-483.753998F, -148.436005F), new Vector2(-484.726013F, -148.964005F));
+ builder.AddCubicBezier(new Vector2(-485.697998F, -149.492004F), new Vector2(-486.783997F, -149.755997F), new Vector2(-487.984009F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-489.208008F, -149.755997F), new Vector2(-490.312012F, -149.485992F), new Vector2(-491.29599F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-492.279999F, -148.406006F), new Vector2(-493.053986F, -147.656006F), new Vector2(-493.618011F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-494.182007F, -145.735992F), new Vector2(-494.463989F, -144.608002F), new Vector2(-494.463989F, -143.311996F));
+ builder.AddLine(new Vector2(-493.131989F, -142.628006F));
+ builder.AddCubicBezier(new Vector2(-493.131989F, -143.492004F), new Vector2(-492.940002F, -144.223999F), new Vector2(-492.556F, -144.824005F));
+ builder.AddCubicBezier(new Vector2(-492.171997F, -145.423996F), new Vector2(-491.667999F, -145.891998F), new Vector2(-491.044006F, -146.227997F));
+ builder.AddCubicBezier(new Vector2(-490.420013F, -146.563995F), new Vector2(-489.712006F, -146.731995F), new Vector2(-488.920013F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-487.743988F, -146.731995F), new Vector2(-486.765991F, -146.365997F), new Vector2(-485.985992F, -145.634003F));
+ builder.AddCubicBezier(new Vector2(-485.205994F, -144.901993F), new Vector2(-484.81601F, -143.899994F), new Vector2(-484.81601F, -142.628006F));
+ builder.AddLine(new Vector2(-484.81601F, -132.296005F));
+ builder.AddLine(new Vector2(-481.575989F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-493.131989F, -132.296005F));
+ builder.AddLine(new Vector2(-493.131989F, -149.395996F));
+ builder.AddLine(new Vector2(-496.372009F, -149.395996F));
+ builder.AddLine(new Vector2(-496.372009F, -132.296005F));
+ builder.AddLine(new Vector2(-493.131989F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0442()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-501.303986F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-500.920013F, -153.806F), new Vector2(-500.727997F, -154.304001F), new Vector2(-500.727997F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-500.727997F, -155.479996F), new Vector2(-500.920013F, -155.966003F), new Vector2(-501.303986F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-501.687988F, -156.757996F), new Vector2(-502.179993F, -156.955994F), new Vector2(-502.779999F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(-503.380005F, -156.955994F), new Vector2(-503.872009F, -156.757996F), new Vector2(-504.256012F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-504.640015F, -155.966003F), new Vector2(-504.832001F, -155.479996F), new Vector2(-504.832001F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-504.832001F, -154.304001F), new Vector2(-504.640015F, -153.806F), new Vector2(-504.256012F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-503.872009F, -153.014008F), new Vector2(-503.380005F, -152.815994F), new Vector2(-502.779999F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(-502.179993F, -152.815994F), new Vector2(-501.687988F, -153.014008F), new Vector2(-501.303986F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-501.160004F, -132.296005F));
+ builder.AddLine(new Vector2(-501.160004F, -149.395996F));
+ builder.AddLine(new Vector2(-504.436005F, -149.395996F));
+ builder.AddLine(new Vector2(-504.436005F, -132.296005F));
+ builder.AddLine(new Vector2(-501.160004F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0443()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-507.604004F, -146.444F));
+ builder.AddLine(new Vector2(-507.604004F, -149.395996F));
+ builder.AddLine(new Vector2(-519.268005F, -149.395996F));
+ builder.AddLine(new Vector2(-519.268005F, -146.444F));
+ builder.AddLine(new Vector2(-507.604004F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-511.81601F, -132.296005F));
+ builder.AddLine(new Vector2(-511.81601F, -156.559998F));
+ builder.AddLine(new Vector2(-515.05603F, -156.559998F));
+ builder.AddLine(new Vector2(-515.05603F, -132.296005F));
+ builder.AddLine(new Vector2(-511.81601F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0444()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-523.570007F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-522.429993F, -133.195999F), new Vector2(-521.463989F, -133.904007F), new Vector2(-520.671997F, -134.815994F));
+ builder.AddLine(new Vector2(-522.796021F, -136.975998F));
+ builder.AddCubicBezier(new Vector2(-523.348022F, -136.352005F), new Vector2(-524.002014F, -135.878006F), new Vector2(-524.757996F, -135.554001F));
+ builder.AddCubicBezier(new Vector2(-525.513977F, -135.229996F), new Vector2(-526.348022F, -135.067993F), new Vector2(-527.26001F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-528.340027F, -135.067993F), new Vector2(-529.299988F, -135.320007F), new Vector2(-530.140015F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-530.97998F, -136.328003F), new Vector2(-531.640015F, -137.011993F), new Vector2(-532.119995F, -137.876007F));
+ builder.AddCubicBezier(new Vector2(-532.599976F, -138.740005F), new Vector2(-532.840027F, -139.735992F), new Vector2(-532.840027F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-532.840027F, -141.992004F), new Vector2(-532.599976F, -142.988007F), new Vector2(-532.119995F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-531.640015F, -144.716003F), new Vector2(-530.97998F, -145.393997F), new Vector2(-530.140015F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-529.299988F, -146.378006F), new Vector2(-528.340027F, -146.623993F), new Vector2(-527.26001F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-526.372009F, -146.623993F), new Vector2(-525.544006F, -146.462006F), new Vector2(-524.776001F, -146.138F));
+ builder.AddCubicBezier(new Vector2(-524.007996F, -145.813995F), new Vector2(-523.359985F, -145.339996F), new Vector2(-522.83197F, -144.716003F));
+ builder.AddLine(new Vector2(-520.671997F, -146.876007F));
+ builder.AddCubicBezier(new Vector2(-521.487976F, -147.811996F), new Vector2(-522.460022F, -148.526001F), new Vector2(-523.588013F, -149.018005F));
+ builder.AddCubicBezier(new Vector2(-524.716003F, -149.509995F), new Vector2(-525.940002F, -149.755997F), new Vector2(-527.26001F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-528.940002F, -149.755997F), new Vector2(-530.458008F, -149.365997F), new Vector2(-531.814026F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-533.169983F, -147.806F), new Vector2(-534.237976F, -146.744003F), new Vector2(-535.018005F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-535.797974F, -144.056F), new Vector2(-536.187988F, -142.544006F), new Vector2(-536.187988F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-536.187988F, -139.207993F), new Vector2(-535.797974F, -137.701996F), new Vector2(-535.018005F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-534.237976F, -134.990005F), new Vector2(-533.169983F, -133.916F), new Vector2(-531.814026F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-530.458008F, -132.332001F), new Vector2(-528.940002F, -131.936005F), new Vector2(-527.26001F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-525.940002F, -131.936005F), new Vector2(-524.710022F, -132.188004F), new Vector2(-523.570007F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0445()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-540.004028F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-539.619995F, -153.806F), new Vector2(-539.427979F, -154.304001F), new Vector2(-539.427979F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-539.427979F, -155.479996F), new Vector2(-539.619995F, -155.966003F), new Vector2(-540.004028F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-540.388F, -156.757996F), new Vector2(-540.880005F, -156.955994F), new Vector2(-541.47998F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(-542.080017F, -156.955994F), new Vector2(-542.572021F, -156.757996F), new Vector2(-542.955994F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-543.340027F, -155.966003F), new Vector2(-543.531982F, -155.479996F), new Vector2(-543.531982F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-543.531982F, -154.304001F), new Vector2(-543.340027F, -153.806F), new Vector2(-542.955994F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-542.572021F, -153.014008F), new Vector2(-542.080017F, -152.815994F), new Vector2(-541.47998F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(-540.880005F, -152.815994F), new Vector2(-540.388F, -153.014008F), new Vector2(-540.004028F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-539.859985F, -132.296005F));
+ builder.AddLine(new Vector2(-539.859985F, -149.395996F));
+ builder.AddLine(new Vector2(-543.135986F, -149.395996F));
+ builder.AddLine(new Vector2(-543.135986F, -132.296005F));
+ builder.AddLine(new Vector2(-539.859985F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0446()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-553.755981F, -132.296005F));
+ builder.AddLine(new Vector2(-545.90802F, -149.395996F));
+ builder.AddLine(new Vector2(-549.364014F, -149.395996F));
+ builder.AddLine(new Vector2(-555.700012F, -134.960007F));
+ builder.AddLine(new Vector2(-553.612F, -134.960007F));
+ builder.AddLine(new Vector2(-559.911987F, -149.395996F));
+ builder.AddLine(new Vector2(-563.512024F, -149.395996F));
+ builder.AddLine(new Vector2(-555.664001F, -132.296005F));
+ builder.AddLine(new Vector2(-553.755981F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0447()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-579.676025F, -145.544006F));
+ builder.AddCubicBezier(new Vector2(-578.90802F, -146.311996F), new Vector2(-577.924011F, -146.695999F), new Vector2(-576.723999F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-576.14801F, -146.695999F), new Vector2(-575.643982F, -146.612F), new Vector2(-575.211975F, -146.444F));
+ builder.AddCubicBezier(new Vector2(-574.780029F, -146.276001F), new Vector2(-574.383972F, -146F), new Vector2(-574.023987F, -145.615997F));
+ builder.AddLine(new Vector2(-571.900024F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(-572.5F, -148.507996F), new Vector2(-573.14801F, -149.005997F), new Vector2(-573.843994F, -149.306F));
+ builder.AddCubicBezier(new Vector2(-574.539978F, -149.606003F), new Vector2(-575.320007F, -149.755997F), new Vector2(-576.184021F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-578.080017F, -149.755997F), new Vector2(-579.531982F, -149.108002F), new Vector2(-580.539978F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(-581.547974F, -146.516006F), new Vector2(-582.052002F, -144.776001F), new Vector2(-582.052002F, -142.591995F));
+ builder.AddLine(new Vector2(-580.828003F, -142.016006F));
+ builder.AddCubicBezier(new Vector2(-580.828003F, -143.600006F), new Vector2(-580.44397F, -144.776001F), new Vector2(-579.676025F, -145.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-580.828003F, -132.296005F));
+ builder.AddLine(new Vector2(-580.828003F, -149.395996F));
+ builder.AddLine(new Vector2(-584.067993F, -149.395996F));
+ builder.AddLine(new Vector2(-584.067993F, -132.296005F));
+ builder.AddLine(new Vector2(-580.828003F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0448()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-591.664001F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-590.487976F, -133.195999F), new Vector2(-589.47998F, -133.927994F), new Vector2(-588.640015F, -134.888F));
+ builder.AddLine(new Vector2(-590.728027F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(-591.304016F, -136.339996F), new Vector2(-591.994019F, -135.835999F), new Vector2(-592.797974F, -135.5F));
+ builder.AddCubicBezier(new Vector2(-593.60199F, -135.164001F), new Vector2(-594.484009F, -134.996002F), new Vector2(-595.44397F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-596.596008F, -134.996002F), new Vector2(-597.616028F, -135.242004F), new Vector2(-598.504028F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-599.392029F, -136.225998F), new Vector2(-600.075989F, -136.921997F), new Vector2(-600.55603F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-601.036011F, -138.722F), new Vector2(-601.276001F, -139.772003F), new Vector2(-601.276001F, -140.972F));
+ builder.AddCubicBezier(new Vector2(-601.276001F, -142.147995F), new Vector2(-601.047974F, -143.167999F), new Vector2(-600.59198F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(-600.135986F, -144.895996F), new Vector2(-599.487976F, -145.567993F), new Vector2(-598.64801F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(-597.807983F, -146.528F), new Vector2(-596.835999F, -146.768005F), new Vector2(-595.731995F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(-594.676025F, -146.768005F), new Vector2(-593.776001F, -146.546005F), new Vector2(-593.031982F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(-592.288025F, -145.658005F), new Vector2(-591.711975F, -145.033997F), new Vector2(-591.304016F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(-590.895996F, -143.425995F), new Vector2(-590.692017F, -142.447998F), new Vector2(-590.692017F, -141.296005F));
+ builder.AddLine(new Vector2(-589.504028F, -142.339996F));
+ builder.AddLine(new Vector2(-602.211975F, -142.339996F));
+ builder.AddLine(new Vector2(-602.211975F, -139.639999F));
+ builder.AddLine(new Vector2(-587.776001F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(-587.703979F, -139.975998F), new Vector2(-587.656006F, -140.281998F), new Vector2(-587.632019F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(-587.607971F, -140.834F), new Vector2(-587.596008F, -141.091995F), new Vector2(-587.596008F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(-587.596008F, -142.964005F), new Vector2(-587.937988F, -144.416F), new Vector2(-588.622009F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(-589.30603F, -146.960007F), new Vector2(-590.26001F, -147.955994F), new Vector2(-591.484009F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(-592.708008F, -149.395996F), new Vector2(-594.099976F, -149.755997F), new Vector2(-595.659973F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-597.315979F, -149.755997F), new Vector2(-598.809998F, -149.365997F), new Vector2(-600.142029F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-601.473999F, -147.806F), new Vector2(-602.530029F, -146.744003F), new Vector2(-603.309998F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-604.090027F, -144.056F), new Vector2(-604.47998F, -142.544006F), new Vector2(-604.47998F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-604.47998F, -139.160004F), new Vector2(-604.083984F, -137.636002F), new Vector2(-603.291992F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-602.5F, -134.947998F), new Vector2(-601.426025F, -133.886002F), new Vector2(-600.070007F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-598.713989F, -132.326004F), new Vector2(-597.171997F, -131.936005F), new Vector2(-595.44397F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-594.099976F, -131.936005F), new Vector2(-592.840027F, -132.188004F), new Vector2(-591.664001F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0449()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-619.85199F, -132.296005F));
+ builder.AddLine(new Vector2(-619.85199F, -158F));
+ builder.AddLine(new Vector2(-623.09198F, -158F));
+ builder.AddLine(new Vector2(-623.09198F, -132.296005F));
+ builder.AddLine(new Vector2(-619.85199F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-607.755981F, -132.296005F));
+ builder.AddLine(new Vector2(-607.755981F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-607.755981F, -144.259995F), new Vector2(-608.044006F, -145.447998F), new Vector2(-608.619995F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-609.195984F, -147.511993F), new Vector2(-609.981995F, -148.315994F), new Vector2(-610.978027F, -148.891998F));
+ builder.AddCubicBezier(new Vector2(-611.973999F, -149.468002F), new Vector2(-613.119995F, -149.755997F), new Vector2(-614.416016F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-615.711975F, -149.755997F), new Vector2(-616.875977F, -149.462006F), new Vector2(-617.90802F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-618.940002F, -148.285995F), new Vector2(-619.744019F, -147.488007F), new Vector2(-620.320007F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-620.895996F, -145.472F), new Vector2(-621.184021F, -144.320007F), new Vector2(-621.184021F, -143.024002F));
+ builder.AddLine(new Vector2(-619.85199F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-619.85199F, -143.132004F), new Vector2(-619.659973F, -143.899994F), new Vector2(-619.276001F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-618.892029F, -145.244003F), new Vector2(-618.364014F, -145.772003F), new Vector2(-617.692017F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-617.02002F, -146.539993F), new Vector2(-616.252014F, -146.731995F), new Vector2(-615.388F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-614.09198F, -146.731995F), new Vector2(-613.041992F, -146.311996F), new Vector2(-612.237976F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-611.434021F, -144.632004F), new Vector2(-611.031982F, -143.563995F), new Vector2(-611.031982F, -142.268005F));
+ builder.AddLine(new Vector2(-611.031982F, -132.296005F));
+ builder.AddLine(new Vector2(-607.755981F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0450()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-626.26001F, -146.444F));
+ builder.AddLine(new Vector2(-626.26001F, -149.395996F));
+ builder.AddLine(new Vector2(-637.924011F, -149.395996F));
+ builder.AddLine(new Vector2(-637.924011F, -146.444F));
+ builder.AddLine(new Vector2(-626.26001F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-630.471985F, -132.296005F));
+ builder.AddLine(new Vector2(-630.471985F, -156.559998F));
+ builder.AddLine(new Vector2(-633.711975F, -156.559998F));
+ builder.AddLine(new Vector2(-633.711975F, -132.296005F));
+ builder.AddLine(new Vector2(-630.471985F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0451()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-651.208008F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-652.047974F, -136.328003F), new Vector2(-652.708008F, -137.018005F), new Vector2(-653.187988F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-653.66803F, -138.770004F), new Vector2(-653.90802F, -139.772003F), new Vector2(-653.90802F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-653.90802F, -142.003998F), new Vector2(-653.66803F, -142.988007F), new Vector2(-653.187988F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-652.708008F, -144.716003F), new Vector2(-652.047974F, -145.393997F), new Vector2(-651.208008F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-650.367981F, -146.378006F), new Vector2(-649.419983F, -146.623993F), new Vector2(-648.364014F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-647.26001F, -146.623993F), new Vector2(-646.294006F, -146.378006F), new Vector2(-645.466003F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-644.638F, -145.393997F), new Vector2(-643.978027F, -144.716003F), new Vector2(-643.486023F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-642.994019F, -142.988007F), new Vector2(-642.747986F, -142.003998F), new Vector2(-642.747986F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-642.747986F, -139.772003F), new Vector2(-642.987976F, -138.770004F), new Vector2(-643.468018F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-643.947998F, -137.018005F), new Vector2(-644.607971F, -136.328003F), new Vector2(-645.447998F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-646.288025F, -135.320007F), new Vector2(-647.26001F, -135.067993F), new Vector2(-648.364014F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-649.419983F, -135.067993F), new Vector2(-650.367981F, -135.320007F), new Vector2(-651.208008F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-643.809998F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-642.453979F, -133.916F), new Vector2(-641.380005F, -134.990005F), new Vector2(-640.588013F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-639.796021F, -137.701996F), new Vector2(-639.400024F, -139.220001F), new Vector2(-639.400024F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-639.400024F, -142.556F), new Vector2(-639.796021F, -144.056F), new Vector2(-640.588013F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-641.380005F, -146.744003F), new Vector2(-642.453979F, -147.806F), new Vector2(-643.809998F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-645.166016F, -149.365997F), new Vector2(-646.684021F, -149.755997F), new Vector2(-648.364014F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-650.02002F, -149.755997F), new Vector2(-651.52002F, -149.360001F), new Vector2(-652.864014F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-654.208008F, -147.776001F), new Vector2(-655.276001F, -146.714005F), new Vector2(-656.067993F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(-656.859985F, -144.050003F), new Vector2(-657.255981F, -142.556F), new Vector2(-657.255981F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-657.255981F, -139.220001F), new Vector2(-656.859985F, -137.701996F), new Vector2(-656.067993F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-655.276001F, -134.990005F), new Vector2(-654.208008F, -133.916F), new Vector2(-652.864014F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-651.52002F, -132.332001F), new Vector2(-650.02002F, -131.936005F), new Vector2(-648.364014F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-646.684021F, -131.936005F), new Vector2(-645.166016F, -132.332001F), new Vector2(-643.809998F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0452()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-666.83197F, -146.444F));
+ builder.AddLine(new Vector2(-666.83197F, -149.395996F));
+ builder.AddLine(new Vector2(-679.719971F, -149.395996F));
+ builder.AddLine(new Vector2(-679.719971F, -146.444F));
+ builder.AddLine(new Vector2(-666.83197F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-672.268005F, -132.296005F));
+ builder.AddLine(new Vector2(-672.268005F, -151.951996F));
+ builder.AddCubicBezier(new Vector2(-672.268005F, -153.007996F), new Vector2(-671.986023F, -153.830002F), new Vector2(-671.421997F, -154.417999F));
+ builder.AddCubicBezier(new Vector2(-670.857971F, -155.005997F), new Vector2(-670.059998F, -155.300003F), new Vector2(-669.028015F, -155.300003F));
+ builder.AddCubicBezier(new Vector2(-668.476013F, -155.300003F), new Vector2(-668.007996F, -155.216003F), new Vector2(-667.624023F, -155.048004F));
+ builder.AddCubicBezier(new Vector2(-667.23999F, -154.880005F), new Vector2(-666.892029F, -154.628006F), new Vector2(-666.580017F, -154.292007F));
+ builder.AddLine(new Vector2(-664.455994F, -156.380005F));
+ builder.AddCubicBezier(new Vector2(-665.05603F, -157.028F), new Vector2(-665.716003F, -157.520004F), new Vector2(-666.435974F, -157.856003F));
+ builder.AddCubicBezier(new Vector2(-667.156006F, -158.192001F), new Vector2(-668.007996F, -158.360001F), new Vector2(-668.992004F, -158.360001F));
+ builder.AddCubicBezier(new Vector2(-670.288025F, -158.360001F), new Vector2(-671.427979F, -158.084F), new Vector2(-672.411987F, -157.531998F));
+ builder.AddCubicBezier(new Vector2(-673.395996F, -156.979996F), new Vector2(-674.164001F, -156.223999F), new Vector2(-674.716003F, -155.264008F));
+ builder.AddCubicBezier(new Vector2(-675.268005F, -154.304001F), new Vector2(-675.544006F, -153.199997F), new Vector2(-675.544006F, -151.951996F));
+ builder.AddLine(new Vector2(-675.544006F, -132.296005F));
+ builder.AddLine(new Vector2(-672.268005F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0453()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-692.823975F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-693.664001F, -136.328003F), new Vector2(-694.323975F, -137.018005F), new Vector2(-694.804016F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-695.283997F, -138.770004F), new Vector2(-695.523987F, -139.772003F), new Vector2(-695.523987F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-695.523987F, -142.003998F), new Vector2(-695.283997F, -142.988007F), new Vector2(-694.804016F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-694.323975F, -144.716003F), new Vector2(-693.664001F, -145.393997F), new Vector2(-692.823975F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-691.984009F, -146.378006F), new Vector2(-691.036011F, -146.623993F), new Vector2(-689.97998F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-688.875977F, -146.623993F), new Vector2(-687.909973F, -146.378006F), new Vector2(-687.08197F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-686.254028F, -145.393997F), new Vector2(-685.593994F, -144.716003F), new Vector2(-685.10199F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-684.609985F, -142.988007F), new Vector2(-684.364014F, -142.003998F), new Vector2(-684.364014F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-684.364014F, -139.772003F), new Vector2(-684.604004F, -138.770004F), new Vector2(-685.083984F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-685.564026F, -137.018005F), new Vector2(-686.223999F, -136.328003F), new Vector2(-687.064026F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-687.903992F, -135.320007F), new Vector2(-688.875977F, -135.067993F), new Vector2(-689.97998F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-691.036011F, -135.067993F), new Vector2(-691.984009F, -135.320007F), new Vector2(-692.823975F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-685.426025F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-684.070007F, -133.916F), new Vector2(-682.995972F, -134.990005F), new Vector2(-682.203979F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-681.411987F, -137.701996F), new Vector2(-681.015991F, -139.220001F), new Vector2(-681.015991F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-681.015991F, -142.556F), new Vector2(-681.411987F, -144.056F), new Vector2(-682.203979F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-682.995972F, -146.744003F), new Vector2(-684.070007F, -147.806F), new Vector2(-685.426025F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-686.781982F, -149.365997F), new Vector2(-688.299988F, -149.755997F), new Vector2(-689.97998F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-691.635986F, -149.755997F), new Vector2(-693.135986F, -149.360001F), new Vector2(-694.47998F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-695.823975F, -147.776001F), new Vector2(-696.892029F, -146.714005F), new Vector2(-697.684021F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(-698.476013F, -144.050003F), new Vector2(-698.872009F, -142.556F), new Vector2(-698.872009F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-698.872009F, -139.220001F), new Vector2(-698.476013F, -137.701996F), new Vector2(-697.684021F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-696.892029F, -134.990005F), new Vector2(-695.823975F, -133.916F), new Vector2(-694.47998F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-693.135986F, -132.332001F), new Vector2(-691.635986F, -131.936005F), new Vector2(-689.97998F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-688.299988F, -131.936005F), new Vector2(-686.781982F, -132.332001F), new Vector2(-685.426025F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0454()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-715.900024F, -145.544006F));
+ builder.AddCubicBezier(new Vector2(-715.132019F, -146.311996F), new Vector2(-714.14801F, -146.695999F), new Vector2(-712.947998F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-712.372009F, -146.695999F), new Vector2(-711.867981F, -146.612F), new Vector2(-711.435974F, -146.444F));
+ builder.AddCubicBezier(new Vector2(-711.004028F, -146.276001F), new Vector2(-710.607971F, -146F), new Vector2(-710.247986F, -145.615997F));
+ builder.AddLine(new Vector2(-708.124023F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(-708.723999F, -148.507996F), new Vector2(-709.372009F, -149.005997F), new Vector2(-710.067993F, -149.306F));
+ builder.AddCubicBezier(new Vector2(-710.763977F, -149.606003F), new Vector2(-711.544006F, -149.755997F), new Vector2(-712.40802F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-714.304016F, -149.755997F), new Vector2(-715.755981F, -149.108002F), new Vector2(-716.763977F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(-717.771973F, -146.516006F), new Vector2(-718.276001F, -144.776001F), new Vector2(-718.276001F, -142.591995F));
+ builder.AddLine(new Vector2(-717.052002F, -142.016006F));
+ builder.AddCubicBezier(new Vector2(-717.052002F, -143.600006F), new Vector2(-716.66803F, -144.776001F), new Vector2(-715.900024F, -145.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-717.052002F, -132.296005F));
+ builder.AddLine(new Vector2(-717.052002F, -149.395996F));
+ builder.AddLine(new Vector2(-720.291992F, -149.395996F));
+ builder.AddLine(new Vector2(-720.291992F, -132.296005F));
+ builder.AddLine(new Vector2(-717.052002F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0455()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-727.888F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-726.711975F, -133.195999F), new Vector2(-725.703979F, -133.927994F), new Vector2(-724.864014F, -134.888F));
+ builder.AddLine(new Vector2(-726.952026F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(-727.528015F, -136.339996F), new Vector2(-728.218018F, -135.835999F), new Vector2(-729.021973F, -135.5F));
+ builder.AddCubicBezier(new Vector2(-729.825989F, -135.164001F), new Vector2(-730.708008F, -134.996002F), new Vector2(-731.66803F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-732.820007F, -134.996002F), new Vector2(-733.840027F, -135.242004F), new Vector2(-734.728027F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-735.616028F, -136.225998F), new Vector2(-736.299988F, -136.921997F), new Vector2(-736.780029F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-737.26001F, -138.722F), new Vector2(-737.5F, -139.772003F), new Vector2(-737.5F, -140.972F));
+ builder.AddCubicBezier(new Vector2(-737.5F, -142.147995F), new Vector2(-737.271973F, -143.167999F), new Vector2(-736.815979F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(-736.359985F, -144.895996F), new Vector2(-735.711975F, -145.567993F), new Vector2(-734.872009F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(-734.031982F, -146.528F), new Vector2(-733.059998F, -146.768005F), new Vector2(-731.955994F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(-730.900024F, -146.768005F), new Vector2(-730F, -146.546005F), new Vector2(-729.255981F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(-728.512024F, -145.658005F), new Vector2(-727.935974F, -145.033997F), new Vector2(-727.528015F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(-727.119995F, -143.425995F), new Vector2(-726.916016F, -142.447998F), new Vector2(-726.916016F, -141.296005F));
+ builder.AddLine(new Vector2(-725.728027F, -142.339996F));
+ builder.AddLine(new Vector2(-738.435974F, -142.339996F));
+ builder.AddLine(new Vector2(-738.435974F, -139.639999F));
+ builder.AddLine(new Vector2(-724F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(-723.927979F, -139.975998F), new Vector2(-723.880005F, -140.281998F), new Vector2(-723.856018F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(-723.83197F, -140.834F), new Vector2(-723.820007F, -141.091995F), new Vector2(-723.820007F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(-723.820007F, -142.964005F), new Vector2(-724.161987F, -144.416F), new Vector2(-724.846008F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(-725.530029F, -146.960007F), new Vector2(-726.484009F, -147.955994F), new Vector2(-727.708008F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(-728.932007F, -149.395996F), new Vector2(-730.323975F, -149.755997F), new Vector2(-731.883972F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-733.539978F, -149.755997F), new Vector2(-735.033997F, -149.365997F), new Vector2(-736.366028F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-737.697998F, -147.806F), new Vector2(-738.754028F, -146.744003F), new Vector2(-739.533997F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-740.314026F, -144.056F), new Vector2(-740.703979F, -142.544006F), new Vector2(-740.703979F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-740.703979F, -139.160004F), new Vector2(-740.307983F, -137.636002F), new Vector2(-739.515991F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-738.723999F, -134.947998F), new Vector2(-737.650024F, -133.886002F), new Vector2(-736.294006F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-734.937988F, -132.326004F), new Vector2(-733.395996F, -131.936005F), new Vector2(-731.66803F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-730.323975F, -131.936005F), new Vector2(-729.064026F, -132.188004F), new Vector2(-727.888F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0456()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-754.906006F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-755.734009F, -136.255997F), new Vector2(-756.369995F, -136.945999F), new Vector2(-756.814026F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-757.257996F, -138.697998F), new Vector2(-757.47998F, -139.699997F), new Vector2(-757.47998F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-757.47998F, -141.979996F), new Vector2(-757.252014F, -142.994003F), new Vector2(-756.796021F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-756.340027F, -144.746002F), new Vector2(-755.703979F, -145.436005F), new Vector2(-754.888F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-754.072021F, -146.444F), new Vector2(-753.135986F, -146.695999F), new Vector2(-752.080017F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-751F, -146.695999F), new Vector2(-750.052002F, -146.444F), new Vector2(-749.236023F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-748.419983F, -145.436005F), new Vector2(-747.778015F, -144.746002F), new Vector2(-747.309998F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-746.84198F, -142.994003F), new Vector2(-746.607971F, -141.992004F), new Vector2(-746.607971F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-746.607971F, -139.712006F), new Vector2(-746.84198F, -138.697998F), new Vector2(-747.309998F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-747.778015F, -136.945999F), new Vector2(-748.419983F, -136.255997F), new Vector2(-749.236023F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-750.052002F, -135.248001F), new Vector2(-751F, -134.996002F), new Vector2(-752.080017F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-753.135986F, -134.996002F), new Vector2(-754.078003F, -135.248001F), new Vector2(-754.906006F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-757.299988F, -132.296005F));
+ builder.AddLine(new Vector2(-757.299988F, -136.904007F));
+ builder.AddLine(new Vector2(-757.911987F, -141.080002F));
+ builder.AddLine(new Vector2(-757.299988F, -145.220001F));
+ builder.AddLine(new Vector2(-757.299988F, -158F));
+ builder.AddLine(new Vector2(-760.539978F, -158F));
+ builder.AddLine(new Vector2(-760.539978F, -132.296005F));
+ builder.AddLine(new Vector2(-757.299988F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-747.309998F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-746.049988F, -133.886002F), new Vector2(-745.059998F, -134.947998F), new Vector2(-744.340027F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-743.619995F, -137.636002F), new Vector2(-743.26001F, -139.147995F), new Vector2(-743.26001F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-743.26001F, -142.507996F), new Vector2(-743.619995F, -144.020004F), new Vector2(-744.340027F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-745.059998F, -146.707993F), new Vector2(-746.049988F, -147.776001F), new Vector2(-747.309998F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-748.570007F, -149.360001F), new Vector2(-749.97998F, -149.755997F), new Vector2(-751.539978F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-752.812012F, -149.755997F), new Vector2(-753.969971F, -149.485992F), new Vector2(-755.013977F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-756.057983F, -148.406006F), new Vector2(-756.89801F, -147.662003F), new Vector2(-757.533997F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-758.169983F, -145.766006F), new Vector2(-758.523987F, -144.667999F), new Vector2(-758.596008F, -143.419998F));
+ builder.AddLine(new Vector2(-758.596008F, -138.272003F));
+ builder.AddCubicBezier(new Vector2(-758.523987F, -137.048004F), new Vector2(-758.176025F, -135.955994F), new Vector2(-757.552002F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-756.927979F, -134.035995F), new Vector2(-756.093994F, -133.285995F), new Vector2(-755.049988F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-754.005981F, -132.205994F), new Vector2(-752.835999F, -131.936005F), new Vector2(-751.539978F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-749.97998F, -131.936005F), new Vector2(-748.570007F, -132.326004F), new Vector2(-747.309998F, -133.106003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0457()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-764.932007F, -132.296005F));
+ builder.AddLine(new Vector2(-764.932007F, -143.276001F));
+ builder.AddCubicBezier(new Vector2(-764.932007F, -144.619995F), new Vector2(-765.226013F, -145.772003F), new Vector2(-765.814026F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-766.401978F, -147.692001F), new Vector2(-767.187988F, -148.436005F), new Vector2(-768.171997F, -148.964005F));
+ builder.AddCubicBezier(new Vector2(-769.156006F, -149.492004F), new Vector2(-770.271973F, -149.755997F), new Vector2(-771.52002F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-772.719971F, -149.755997F), new Vector2(-773.823975F, -149.485992F), new Vector2(-774.83197F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-775.840027F, -148.406006F), new Vector2(-776.661987F, -147.662003F), new Vector2(-777.297974F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-777.934021F, -145.766006F), new Vector2(-778.288025F, -144.632004F), new Vector2(-778.359985F, -143.311996F));
+ builder.AddLine(new Vector2(-776.523987F, -142.628006F));
+ builder.AddCubicBezier(new Vector2(-776.523987F, -143.492004F), new Vector2(-776.33197F, -144.223999F), new Vector2(-775.947998F, -144.824005F));
+ builder.AddCubicBezier(new Vector2(-775.564026F, -145.423996F), new Vector2(-775.054016F, -145.891998F), new Vector2(-774.41803F, -146.227997F));
+ builder.AddCubicBezier(new Vector2(-773.781982F, -146.563995F), new Vector2(-773.067993F, -146.731995F), new Vector2(-772.276001F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-771.124023F, -146.731995F), new Vector2(-770.15802F, -146.365997F), new Vector2(-769.377991F, -145.634003F));
+ builder.AddCubicBezier(new Vector2(-768.598022F, -144.901993F), new Vector2(-768.208008F, -143.899994F), new Vector2(-768.208008F, -142.628006F));
+ builder.AddLine(new Vector2(-768.208008F, -132.296005F));
+ builder.AddLine(new Vector2(-764.932007F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-776.523987F, -132.296005F));
+ builder.AddLine(new Vector2(-776.523987F, -143.311996F));
+ builder.AddCubicBezier(new Vector2(-776.523987F, -144.632004F), new Vector2(-776.80603F, -145.772003F), new Vector2(-777.369995F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-777.934021F, -147.692001F), new Vector2(-778.702026F, -148.436005F), new Vector2(-779.674011F, -148.964005F));
+ builder.AddCubicBezier(new Vector2(-780.645996F, -149.492004F), new Vector2(-781.731995F, -149.755997F), new Vector2(-782.932007F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-784.156006F, -149.755997F), new Vector2(-785.26001F, -149.485992F), new Vector2(-786.244019F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-787.228027F, -148.406006F), new Vector2(-788.002014F, -147.656006F), new Vector2(-788.565979F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-789.130005F, -145.735992F), new Vector2(-789.411987F, -144.608002F), new Vector2(-789.411987F, -143.311996F));
+ builder.AddLine(new Vector2(-788.080017F, -142.628006F));
+ builder.AddCubicBezier(new Vector2(-788.080017F, -143.492004F), new Vector2(-787.888F, -144.223999F), new Vector2(-787.504028F, -144.824005F));
+ builder.AddCubicBezier(new Vector2(-787.119995F, -145.423996F), new Vector2(-786.616028F, -145.891998F), new Vector2(-785.992004F, -146.227997F));
+ builder.AddCubicBezier(new Vector2(-785.367981F, -146.563995F), new Vector2(-784.659973F, -146.731995F), new Vector2(-783.867981F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-782.692017F, -146.731995F), new Vector2(-781.713989F, -146.365997F), new Vector2(-780.934021F, -145.634003F));
+ builder.AddCubicBezier(new Vector2(-780.153992F, -144.901993F), new Vector2(-779.763977F, -143.899994F), new Vector2(-779.763977F, -142.628006F));
+ builder.AddLine(new Vector2(-779.763977F, -132.296005F));
+ builder.AddLine(new Vector2(-776.523987F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-788.080017F, -132.296005F));
+ builder.AddLine(new Vector2(-788.080017F, -149.395996F));
+ builder.AddLine(new Vector2(-791.320007F, -149.395996F));
+ builder.AddLine(new Vector2(-791.320007F, -132.296005F));
+ builder.AddLine(new Vector2(-788.080017F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0458()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-799.203979F, -132.925995F));
+ builder.AddCubicBezier(new Vector2(-798.099976F, -133.537994F), new Vector2(-797.236023F, -134.408005F), new Vector2(-796.612F, -135.535995F));
+ builder.AddCubicBezier(new Vector2(-795.987976F, -136.664001F), new Vector2(-795.676025F, -137.972F), new Vector2(-795.676025F, -139.460007F));
+ builder.AddLine(new Vector2(-795.676025F, -149.395996F));
+ builder.AddLine(new Vector2(-798.916016F, -149.395996F));
+ builder.AddLine(new Vector2(-798.916016F, -139.604004F));
+ builder.AddCubicBezier(new Vector2(-798.916016F, -138.188004F), new Vector2(-799.276001F, -137.078003F), new Vector2(-799.995972F, -136.274002F));
+ builder.AddCubicBezier(new Vector2(-800.716003F, -135.470001F), new Vector2(-801.711975F, -135.067993F), new Vector2(-802.984009F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-803.823975F, -135.067993F), new Vector2(-804.55603F, -135.248001F), new Vector2(-805.179993F, -135.608002F));
+ builder.AddCubicBezier(new Vector2(-805.804016F, -135.968002F), new Vector2(-806.278015F, -136.490005F), new Vector2(-806.60199F, -137.173996F));
+ builder.AddCubicBezier(new Vector2(-806.926025F, -137.858002F), new Vector2(-807.088013F, -138.667999F), new Vector2(-807.088013F, -139.604004F));
+ builder.AddLine(new Vector2(-807.088013F, -149.395996F));
+ builder.AddLine(new Vector2(-810.328003F, -149.395996F));
+ builder.AddLine(new Vector2(-810.328003F, -139.460007F));
+ builder.AddCubicBezier(new Vector2(-810.328003F, -137.972F), new Vector2(-810.015991F, -136.664001F), new Vector2(-809.392029F, -135.535995F));
+ builder.AddCubicBezier(new Vector2(-808.768005F, -134.408005F), new Vector2(-807.89801F, -133.537994F), new Vector2(-806.781982F, -132.925995F));
+ builder.AddCubicBezier(new Vector2(-805.666016F, -132.313995F), new Vector2(-804.400024F, -132.007996F), new Vector2(-802.984009F, -132.007996F));
+ builder.AddCubicBezier(new Vector2(-801.567993F, -132.007996F), new Vector2(-800.307983F, -132.313995F), new Vector2(-799.203979F, -132.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0459()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-826.383972F, -132.296005F));
+ builder.AddLine(new Vector2(-826.383972F, -149.395996F));
+ builder.AddLine(new Vector2(-829.624023F, -149.395996F));
+ builder.AddLine(new Vector2(-829.624023F, -132.296005F));
+ builder.AddLine(new Vector2(-826.383972F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-814.288025F, -132.296005F));
+ builder.AddLine(new Vector2(-814.288025F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-814.288025F, -144.091995F), new Vector2(-814.575989F, -145.201996F), new Vector2(-815.151978F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(-815.728027F, -147.289993F), new Vector2(-816.513977F, -148.136002F), new Vector2(-817.51001F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(-818.505981F, -149.432007F), new Vector2(-819.651978F, -149.755997F), new Vector2(-820.947998F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-822.244019F, -149.755997F), new Vector2(-823.40802F, -149.462006F), new Vector2(-824.440002F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-825.471985F, -148.285995F), new Vector2(-826.276001F, -147.488007F), new Vector2(-826.85199F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-827.427979F, -145.472F), new Vector2(-827.716003F, -144.320007F), new Vector2(-827.716003F, -143.024002F));
+ builder.AddLine(new Vector2(-826.383972F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-826.383972F, -143.132004F), new Vector2(-826.192017F, -143.899994F), new Vector2(-825.807983F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-825.424011F, -145.244003F), new Vector2(-824.895996F, -145.772003F), new Vector2(-824.223999F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-823.552002F, -146.539993F), new Vector2(-822.783997F, -146.731995F), new Vector2(-821.919983F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-820.624023F, -146.731995F), new Vector2(-819.573975F, -146.311996F), new Vector2(-818.77002F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-817.966003F, -144.632004F), new Vector2(-817.564026F, -143.563995F), new Vector2(-817.564026F, -142.268005F));
+ builder.AddLine(new Vector2(-817.564026F, -132.296005F));
+ builder.AddLine(new Vector2(-814.288025F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0460()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(701.924011F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(703.099976F, -176.395996F), new Vector2(704.107971F, -177.128006F), new Vector2(704.947998F, -178.087997F));
+ builder.AddLine(new Vector2(702.859985F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(702.283997F, -179.539993F), new Vector2(701.593994F, -179.035995F), new Vector2(700.789978F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(699.986023F, -178.363998F), new Vector2(699.104004F, -178.195999F), new Vector2(698.143982F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(696.992004F, -178.195999F), new Vector2(695.971985F, -178.442001F), new Vector2(695.083984F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(694.195984F, -179.425995F), new Vector2(693.512024F, -180.121994F), new Vector2(693.031982F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(692.552002F, -181.921997F), new Vector2(692.312012F, -182.972F), new Vector2(692.312012F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(692.312012F, -185.348007F), new Vector2(692.539978F, -186.367996F), new Vector2(692.995972F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(693.452026F, -188.095993F), new Vector2(694.099976F, -188.768005F), new Vector2(694.940002F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(695.780029F, -189.727997F), new Vector2(696.752014F, -189.968002F), new Vector2(697.856018F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(698.911987F, -189.968002F), new Vector2(699.812012F, -189.746002F), new Vector2(700.55603F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(701.299988F, -188.858002F), new Vector2(701.875977F, -188.233994F), new Vector2(702.283997F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(702.692017F, -186.626007F), new Vector2(702.895996F, -185.647995F), new Vector2(702.895996F, -184.496002F));
+ builder.AddLine(new Vector2(704.083984F, -185.539993F));
+ builder.AddLine(new Vector2(691.375977F, -185.539993F));
+ builder.AddLine(new Vector2(691.375977F, -182.839996F));
+ builder.AddLine(new Vector2(705.812012F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(705.883972F, -183.175995F), new Vector2(705.932007F, -183.481995F), new Vector2(705.955994F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(705.97998F, -184.033997F), new Vector2(705.992004F, -184.292007F), new Vector2(705.992004F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(705.992004F, -186.164001F), new Vector2(705.650024F, -187.615997F), new Vector2(704.966003F, -188.888F));
+ builder.AddCubicBezier(new Vector2(704.281982F, -190.160004F), new Vector2(703.328003F, -191.156006F), new Vector2(702.104004F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(700.880005F, -192.595993F), new Vector2(699.487976F, -192.955994F), new Vector2(697.927979F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(696.271973F, -192.955994F), new Vector2(694.778015F, -192.565994F), new Vector2(693.445984F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(692.114014F, -191.005997F), new Vector2(691.057983F, -189.944F), new Vector2(690.278015F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(689.497986F, -187.255997F), new Vector2(689.107971F, -185.744003F), new Vector2(689.107971F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(689.107971F, -182.360001F), new Vector2(689.504028F, -180.835999F), new Vector2(690.296021F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(691.088013F, -178.147995F), new Vector2(692.161987F, -177.085999F), new Vector2(693.518005F, -176.306F));
+ builder.AddCubicBezier(new Vector2(694.874023F, -175.526001F), new Vector2(696.416016F, -175.136002F), new Vector2(698.143982F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(699.487976F, -175.136002F), new Vector2(700.747986F, -175.388F), new Vector2(701.924011F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0461()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(680.719971F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(681.487976F, -189.511993F), new Vector2(682.471985F, -189.895996F), new Vector2(683.671997F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(684.247986F, -189.895996F), new Vector2(684.752014F, -189.811996F), new Vector2(685.184021F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(685.616028F, -189.475998F), new Vector2(686.012024F, -189.199997F), new Vector2(686.372009F, -188.815994F));
+ builder.AddLine(new Vector2(688.495972F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(687.895996F, -191.707993F), new Vector2(687.247986F, -192.205994F), new Vector2(686.552002F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(685.856018F, -192.806F), new Vector2(685.075989F, -192.955994F), new Vector2(684.211975F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(682.315979F, -192.955994F), new Vector2(680.864014F, -192.307999F), new Vector2(679.856018F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(678.848022F, -189.716003F), new Vector2(678.343994F, -187.975998F), new Vector2(678.343994F, -185.792007F));
+ builder.AddLine(new Vector2(679.567993F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(679.567993F, -186.800003F), new Vector2(679.952026F, -187.975998F), new Vector2(680.719971F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(679.567993F, -175.496002F));
+ builder.AddLine(new Vector2(679.567993F, -192.595993F));
+ builder.AddLine(new Vector2(676.328003F, -192.595993F));
+ builder.AddLine(new Vector2(676.328003F, -175.496002F));
+ builder.AddLine(new Vector2(679.567993F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0462()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(671.612F, -175.496002F));
+ builder.AddLine(new Vector2(671.612F, -192.595993F));
+ builder.AddLine(new Vector2(668.335999F, -192.595993F));
+ builder.AddLine(new Vector2(668.335999F, -188.419998F));
+ builder.AddLine(new Vector2(668.947998F, -184.279999F));
+ builder.AddLine(new Vector2(668.335999F, -180.104004F));
+ builder.AddLine(new Vector2(668.335999F, -175.496002F));
+ builder.AddLine(new Vector2(671.612F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(660.307983F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(659.468018F, -179.455994F), new Vector2(658.814026F, -180.145996F), new Vector2(658.346008F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(657.877991F, -181.897995F), new Vector2(657.643982F, -182.912003F), new Vector2(657.643982F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(657.643982F, -185.192001F), new Vector2(657.877991F, -186.194F), new Vector2(658.346008F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(658.814026F, -187.945999F), new Vector2(659.461975F, -188.636002F), new Vector2(660.289978F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(661.117981F, -189.643997F), new Vector2(662.072021F, -189.895996F), new Vector2(663.151978F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(664.231995F, -189.895996F), new Vector2(665.174011F, -189.649994F), new Vector2(665.978027F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(666.781982F, -188.666F), new Vector2(667.411987F, -187.975998F), new Vector2(667.867981F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(668.323975F, -186.199997F), new Vector2(668.552002F, -185.179993F), new Vector2(668.552002F, -184.028F));
+ builder.AddCubicBezier(new Vector2(668.552002F, -182.324005F), new Vector2(668.059998F, -180.925995F), new Vector2(667.075989F, -179.834F));
+ builder.AddCubicBezier(new Vector2(666.09198F, -178.742004F), new Vector2(664.796021F, -178.195999F), new Vector2(663.187988F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(662.107971F, -178.195999F), new Vector2(661.14801F, -178.447998F), new Vector2(660.307983F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(666.140015F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(667.171997F, -176.485992F), new Vector2(667.994019F, -177.235992F), new Vector2(668.606018F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(669.218018F, -179.156006F), new Vector2(669.559998F, -180.248001F), new Vector2(669.632019F, -181.472F));
+ builder.AddLine(new Vector2(669.632019F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(669.559998F, -187.867996F), new Vector2(669.211975F, -188.966003F), new Vector2(668.588013F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(667.963989F, -190.862F), new Vector2(667.142029F, -191.606003F), new Vector2(666.122009F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(665.10199F, -192.686005F), new Vector2(663.94397F, -192.955994F), new Vector2(662.64801F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(661.064026F, -192.955994F), new Vector2(659.642029F, -192.559998F), new Vector2(658.382019F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(657.122009F, -190.975998F), new Vector2(656.125977F, -189.908005F), new Vector2(655.393982F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(654.661987F, -187.220001F), new Vector2(654.296021F, -185.707993F), new Vector2(654.296021F, -184.028F));
+ builder.AddCubicBezier(new Vector2(654.296021F, -182.348007F), new Vector2(654.661987F, -180.835999F), new Vector2(655.393982F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(656.125977F, -178.147995F), new Vector2(657.122009F, -177.085999F), new Vector2(658.382019F, -176.306F));
+ builder.AddCubicBezier(new Vector2(659.642029F, -175.526001F), new Vector2(661.064026F, -175.136002F), new Vector2(662.64801F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(663.94397F, -175.136002F), new Vector2(665.107971F, -175.406006F), new Vector2(666.140015F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0463()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(640.328003F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(641.504028F, -176.395996F), new Vector2(642.512024F, -177.128006F), new Vector2(643.35199F, -178.087997F));
+ builder.AddLine(new Vector2(641.263977F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(640.687988F, -179.539993F), new Vector2(639.997986F, -179.035995F), new Vector2(639.19397F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(638.390015F, -178.363998F), new Vector2(637.507996F, -178.195999F), new Vector2(636.547974F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(635.395996F, -178.195999F), new Vector2(634.375977F, -178.442001F), new Vector2(633.487976F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(632.599976F, -179.425995F), new Vector2(631.916016F, -180.121994F), new Vector2(631.435974F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(630.955994F, -181.921997F), new Vector2(630.716003F, -182.972F), new Vector2(630.716003F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(630.716003F, -185.348007F), new Vector2(630.94397F, -186.367996F), new Vector2(631.400024F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(631.856018F, -188.095993F), new Vector2(632.504028F, -188.768005F), new Vector2(633.343994F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(634.184021F, -189.727997F), new Vector2(635.156006F, -189.968002F), new Vector2(636.26001F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(637.315979F, -189.968002F), new Vector2(638.216003F, -189.746002F), new Vector2(638.960022F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(639.703979F, -188.858002F), new Vector2(640.280029F, -188.233994F), new Vector2(640.687988F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(641.096008F, -186.626007F), new Vector2(641.299988F, -185.647995F), new Vector2(641.299988F, -184.496002F));
+ builder.AddLine(new Vector2(642.487976F, -185.539993F));
+ builder.AddLine(new Vector2(629.780029F, -185.539993F));
+ builder.AddLine(new Vector2(629.780029F, -182.839996F));
+ builder.AddLine(new Vector2(644.216003F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(644.288025F, -183.175995F), new Vector2(644.335999F, -183.481995F), new Vector2(644.359985F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(644.383972F, -184.033997F), new Vector2(644.395996F, -184.292007F), new Vector2(644.395996F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(644.395996F, -186.164001F), new Vector2(644.054016F, -187.615997F), new Vector2(643.369995F, -188.888F));
+ builder.AddCubicBezier(new Vector2(642.685974F, -190.160004F), new Vector2(641.731995F, -191.156006F), new Vector2(640.507996F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(639.283997F, -192.595993F), new Vector2(637.892029F, -192.955994F), new Vector2(636.33197F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(634.676025F, -192.955994F), new Vector2(633.182007F, -192.565994F), new Vector2(631.849976F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(630.518005F, -191.005997F), new Vector2(629.461975F, -189.944F), new Vector2(628.682007F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(627.901978F, -187.255997F), new Vector2(627.512024F, -185.744003F), new Vector2(627.512024F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(627.512024F, -182.360001F), new Vector2(627.90802F, -180.835999F), new Vector2(628.700012F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(629.492004F, -178.147995F), new Vector2(630.565979F, -177.085999F), new Vector2(631.921997F, -176.306F));
+ builder.AddCubicBezier(new Vector2(633.278015F, -175.526001F), new Vector2(634.820007F, -175.136002F), new Vector2(636.547974F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(637.892029F, -175.136002F), new Vector2(639.151978F, -175.388F), new Vector2(640.328003F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0464()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(619.124023F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(619.892029F, -189.511993F), new Vector2(620.875977F, -189.895996F), new Vector2(622.075989F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(622.651978F, -189.895996F), new Vector2(623.156006F, -189.811996F), new Vector2(623.588013F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(624.02002F, -189.475998F), new Vector2(624.416016F, -189.199997F), new Vector2(624.776001F, -188.815994F));
+ builder.AddLine(new Vector2(626.900024F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(626.299988F, -191.707993F), new Vector2(625.651978F, -192.205994F), new Vector2(624.955994F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(624.26001F, -192.806F), new Vector2(623.47998F, -192.955994F), new Vector2(622.616028F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(620.719971F, -192.955994F), new Vector2(619.268005F, -192.307999F), new Vector2(618.26001F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(617.252014F, -189.716003F), new Vector2(616.747986F, -187.975998F), new Vector2(616.747986F, -185.792007F));
+ builder.AddLine(new Vector2(617.971985F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(617.971985F, -186.800003F), new Vector2(618.356018F, -187.975998F), new Vector2(619.124023F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(617.971985F, -175.496002F));
+ builder.AddLine(new Vector2(617.971985F, -192.595993F));
+ builder.AddLine(new Vector2(614.731995F, -192.595993F));
+ builder.AddLine(new Vector2(614.731995F, -175.496002F));
+ builder.AddLine(new Vector2(617.971985F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0465()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(607.135986F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(608.312012F, -176.395996F), new Vector2(609.320007F, -177.128006F), new Vector2(610.159973F, -178.087997F));
+ builder.AddLine(new Vector2(608.072021F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(607.495972F, -179.539993F), new Vector2(606.80603F, -179.035995F), new Vector2(606.002014F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(605.197998F, -178.363998F), new Vector2(604.315979F, -178.195999F), new Vector2(603.356018F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(602.203979F, -178.195999F), new Vector2(601.184021F, -178.442001F), new Vector2(600.296021F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(599.40802F, -179.425995F), new Vector2(598.723999F, -180.121994F), new Vector2(598.244019F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(597.763977F, -181.921997F), new Vector2(597.523987F, -182.972F), new Vector2(597.523987F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(597.523987F, -185.348007F), new Vector2(597.752014F, -186.367996F), new Vector2(598.208008F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(598.664001F, -188.095993F), new Vector2(599.312012F, -188.768005F), new Vector2(600.151978F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(600.992004F, -189.727997F), new Vector2(601.963989F, -189.968002F), new Vector2(603.067993F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(604.124023F, -189.968002F), new Vector2(605.023987F, -189.746002F), new Vector2(605.768005F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(606.512024F, -188.858002F), new Vector2(607.088013F, -188.233994F), new Vector2(607.495972F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(607.903992F, -186.626007F), new Vector2(608.107971F, -185.647995F), new Vector2(608.107971F, -184.496002F));
+ builder.AddLine(new Vector2(609.296021F, -185.539993F));
+ builder.AddLine(new Vector2(596.588013F, -185.539993F));
+ builder.AddLine(new Vector2(596.588013F, -182.839996F));
+ builder.AddLine(new Vector2(611.023987F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(611.096008F, -183.175995F), new Vector2(611.143982F, -183.481995F), new Vector2(611.16803F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(611.192017F, -184.033997F), new Vector2(611.203979F, -184.292007F), new Vector2(611.203979F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(611.203979F, -186.164001F), new Vector2(610.862F, -187.615997F), new Vector2(610.177979F, -188.888F));
+ builder.AddCubicBezier(new Vector2(609.494019F, -190.160004F), new Vector2(608.539978F, -191.156006F), new Vector2(607.315979F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(606.09198F, -192.595993F), new Vector2(604.700012F, -192.955994F), new Vector2(603.140015F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(601.484009F, -192.955994F), new Vector2(599.98999F, -192.565994F), new Vector2(598.65802F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(597.325989F, -191.005997F), new Vector2(596.27002F, -189.944F), new Vector2(595.48999F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(594.710022F, -187.255997F), new Vector2(594.320007F, -185.744003F), new Vector2(594.320007F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(594.320007F, -182.360001F), new Vector2(594.716003F, -180.835999F), new Vector2(595.507996F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(596.299988F, -178.147995F), new Vector2(597.374023F, -177.085999F), new Vector2(598.72998F, -176.306F));
+ builder.AddCubicBezier(new Vector2(600.085999F, -175.526001F), new Vector2(601.627991F, -175.136002F), new Vector2(603.356018F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(604.700012F, -175.136002F), new Vector2(605.960022F, -175.388F), new Vector2(607.135986F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0466()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(578.947998F, -175.496002F));
+ builder.AddLine(new Vector2(578.947998F, -201.199997F));
+ builder.AddLine(new Vector2(575.708008F, -201.199997F));
+ builder.AddLine(new Vector2(575.708008F, -175.496002F));
+ builder.AddLine(new Vector2(578.947998F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(591.044006F, -175.496002F));
+ builder.AddLine(new Vector2(591.044006F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(591.044006F, -187.460007F), new Vector2(590.755981F, -188.647995F), new Vector2(590.179993F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(589.604004F, -190.712006F), new Vector2(588.817993F, -191.516006F), new Vector2(587.822021F, -192.091995F));
+ builder.AddCubicBezier(new Vector2(586.825989F, -192.667999F), new Vector2(585.679993F, -192.955994F), new Vector2(584.383972F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(583.088013F, -192.955994F), new Vector2(581.924011F, -192.662003F), new Vector2(580.892029F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(579.859985F, -191.485992F), new Vector2(579.05603F, -190.688004F), new Vector2(578.47998F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(577.903992F, -188.671997F), new Vector2(577.616028F, -187.520004F), new Vector2(577.616028F, -186.223999F));
+ builder.AddLine(new Vector2(578.947998F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(578.947998F, -186.332001F), new Vector2(579.140015F, -187.100006F), new Vector2(579.523987F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(579.90802F, -188.444F), new Vector2(580.435974F, -188.972F), new Vector2(581.107971F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(581.780029F, -189.740005F), new Vector2(582.547974F, -189.932007F), new Vector2(583.411987F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(584.708008F, -189.932007F), new Vector2(585.757996F, -189.511993F), new Vector2(586.562012F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(587.366028F, -187.832001F), new Vector2(587.768005F, -186.764008F), new Vector2(587.768005F, -185.468002F));
+ builder.AddLine(new Vector2(587.768005F, -175.496002F));
+ builder.AddLine(new Vector2(591.044006F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0467()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(572.539978F, -189.643997F));
+ builder.AddLine(new Vector2(572.539978F, -192.595993F));
+ builder.AddLine(new Vector2(560.875977F, -192.595993F));
+ builder.AddLine(new Vector2(560.875977F, -189.643997F));
+ builder.AddLine(new Vector2(572.539978F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(568.328003F, -175.496002F));
+ builder.AddLine(new Vector2(568.328003F, -199.759995F));
+ builder.AddLine(new Vector2(565.088013F, -199.759995F));
+ builder.AddLine(new Vector2(565.088013F, -175.496002F));
+ builder.AddLine(new Vector2(568.328003F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0468()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(547.124023F, -170.528F));
+ builder.AddLine(new Vector2(549.536011F, -174.992004F));
+ builder.AddCubicBezier(new Vector2(549.848022F, -175.591995F), new Vector2(550.057983F, -176.078003F), new Vector2(550.166016F, -176.449997F));
+ builder.AddCubicBezier(new Vector2(550.273987F, -176.822006F), new Vector2(550.328003F, -177.139999F), new Vector2(550.328003F, -177.404007F));
+ builder.AddCubicBezier(new Vector2(550.328003F, -178.100006F), new Vector2(550.088013F, -178.682007F), new Vector2(549.607971F, -179.149994F));
+ builder.AddCubicBezier(new Vector2(549.127991F, -179.617996F), new Vector2(548.575989F, -179.852005F), new Vector2(547.952026F, -179.852005F));
+ builder.AddCubicBezier(new Vector2(547.255981F, -179.852005F), new Vector2(546.679993F, -179.617996F), new Vector2(546.223999F, -179.149994F));
+ builder.AddCubicBezier(new Vector2(545.768005F, -178.682007F), new Vector2(545.539978F, -178.100006F), new Vector2(545.539978F, -177.404007F));
+ builder.AddCubicBezier(new Vector2(545.539978F, -176.779999F), new Vector2(545.75F, -176.257996F), new Vector2(546.169983F, -175.837997F));
+ builder.AddCubicBezier(new Vector2(546.590027F, -175.417999F), new Vector2(547.052002F, -175.207993F), new Vector2(547.55603F, -175.207993F));
+ builder.AddCubicBezier(new Vector2(547.796021F, -175.207993F), new Vector2(548.012024F, -175.292007F), new Vector2(548.203979F, -175.460007F));
+ builder.AddCubicBezier(new Vector2(548.395996F, -175.628006F), new Vector2(548.552002F, -175.843994F), new Vector2(548.671997F, -176.108002F));
+ builder.AddLine(new Vector2(547.52002F, -175.820007F));
+ builder.AddLine(new Vector2(545.288025F, -171.535995F));
+ builder.AddLine(new Vector2(547.124023F, -170.528F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0469()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(543.164001F, -189.643997F));
+ builder.AddLine(new Vector2(543.164001F, -192.595993F));
+ builder.AddLine(new Vector2(531.5F, -192.595993F));
+ builder.AddLine(new Vector2(531.5F, -189.643997F));
+ builder.AddLine(new Vector2(543.164001F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(538.952026F, -175.496002F));
+ builder.AddLine(new Vector2(538.952026F, -199.759995F));
+ builder.AddLine(new Vector2(535.711975F, -199.759995F));
+ builder.AddLine(new Vector2(535.711975F, -175.496002F));
+ builder.AddLine(new Vector2(538.952026F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0470()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(527.737976F, -176.539993F));
+ builder.AddCubicBezier(new Vector2(528.877991F, -177.475998F), new Vector2(529.447998F, -178.748001F), new Vector2(529.447998F, -180.356003F));
+ builder.AddCubicBezier(new Vector2(529.447998F, -181.412003F), new Vector2(529.226013F, -182.264008F), new Vector2(528.781982F, -182.912003F));
+ builder.AddCubicBezier(new Vector2(528.338013F, -183.559998F), new Vector2(527.768005F, -184.076004F), new Vector2(527.072021F, -184.460007F));
+ builder.AddCubicBezier(new Vector2(526.375977F, -184.843994F), new Vector2(525.643982F, -185.149994F), new Vector2(524.875977F, -185.378006F));
+ builder.AddCubicBezier(new Vector2(524.107971F, -185.606003F), new Vector2(523.369995F, -185.828003F), new Vector2(522.661987F, -186.044006F));
+ builder.AddCubicBezier(new Vector2(521.953979F, -186.259995F), new Vector2(521.383972F, -186.524002F), new Vector2(520.952026F, -186.835999F));
+ builder.AddCubicBezier(new Vector2(520.52002F, -187.147995F), new Vector2(520.304016F, -187.591995F), new Vector2(520.304016F, -188.167999F));
+ builder.AddCubicBezier(new Vector2(520.304016F, -188.720001F), new Vector2(520.549988F, -189.164001F), new Vector2(521.041992F, -189.5F));
+ builder.AddCubicBezier(new Vector2(521.533997F, -189.835999F), new Vector2(522.247986F, -190.003998F), new Vector2(523.184021F, -190.003998F));
+ builder.AddCubicBezier(new Vector2(524.072021F, -190.003998F), new Vector2(524.864014F, -189.835999F), new Vector2(525.559998F, -189.5F));
+ builder.AddCubicBezier(new Vector2(526.255981F, -189.164001F), new Vector2(526.856018F, -188.684006F), new Vector2(527.359985F, -188.059998F));
+ builder.AddLine(new Vector2(529.447998F, -190.147995F));
+ builder.AddCubicBezier(new Vector2(528.776001F, -191.084F), new Vector2(527.91803F, -191.785995F), new Vector2(526.874023F, -192.253998F));
+ builder.AddCubicBezier(new Vector2(525.830017F, -192.722F), new Vector2(524.635986F, -192.955994F), new Vector2(523.291992F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(522.02002F, -192.955994F), new Vector2(520.927979F, -192.751999F), new Vector2(520.015991F, -192.343994F));
+ builder.AddCubicBezier(new Vector2(519.104004F, -191.936005F), new Vector2(518.401978F, -191.354004F), new Vector2(517.909973F, -190.598007F));
+ builder.AddCubicBezier(new Vector2(517.41803F, -189.841995F), new Vector2(517.171997F, -188.947998F), new Vector2(517.171997F, -187.916F));
+ builder.AddCubicBezier(new Vector2(517.171997F, -186.884003F), new Vector2(517.393982F, -186.050003F), new Vector2(517.838013F, -185.414001F));
+ builder.AddCubicBezier(new Vector2(518.281982F, -184.778F), new Vector2(518.85199F, -184.279999F), new Vector2(519.547974F, -183.919998F));
+ builder.AddCubicBezier(new Vector2(520.244019F, -183.559998F), new Vector2(520.981995F, -183.272003F), new Vector2(521.762024F, -183.056F));
+ builder.AddCubicBezier(new Vector2(522.541992F, -182.839996F), new Vector2(523.280029F, -182.617996F), new Vector2(523.976013F, -182.389999F));
+ builder.AddCubicBezier(new Vector2(524.671997F, -182.162003F), new Vector2(525.242004F, -181.873993F), new Vector2(525.685974F, -181.526001F));
+ builder.AddCubicBezier(new Vector2(526.130005F, -181.177994F), new Vector2(526.35199F, -180.692001F), new Vector2(526.35199F, -180.067993F));
+ builder.AddCubicBezier(new Vector2(526.35199F, -179.444F), new Vector2(526.075989F, -178.957993F), new Vector2(525.523987F, -178.610001F));
+ builder.AddCubicBezier(new Vector2(524.971985F, -178.261993F), new Vector2(524.192017F, -178.087997F), new Vector2(523.184021F, -178.087997F));
+ builder.AddCubicBezier(new Vector2(522.176025F, -178.087997F), new Vector2(521.263977F, -178.274002F), new Vector2(520.447998F, -178.645996F));
+ builder.AddCubicBezier(new Vector2(519.632019F, -179.018005F), new Vector2(518.911987F, -179.587997F), new Vector2(518.288025F, -180.356003F));
+ builder.AddLine(new Vector2(516.200012F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(516.728027F, -177.619995F), new Vector2(517.346008F, -177.061996F), new Vector2(518.054016F, -176.593994F));
+ builder.AddCubicBezier(new Vector2(518.762024F, -176.126007F), new Vector2(519.547974F, -175.766006F), new Vector2(520.411987F, -175.514008F));
+ builder.AddCubicBezier(new Vector2(521.276001F, -175.261993F), new Vector2(522.187988F, -175.136002F), new Vector2(523.14801F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(525.067993F, -175.136002F), new Vector2(526.598022F, -175.604004F), new Vector2(527.737976F, -176.539993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0471()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(512.059998F, -197.455994F));
+ builder.AddLine(new Vector2(512.059998F, -200.479996F));
+ builder.AddLine(new Vector2(503.959991F, -200.479996F));
+ builder.AddLine(new Vector2(503.959991F, -197.455994F));
+ builder.AddLine(new Vector2(512.059998F, -197.455994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(512.419983F, -175.496002F));
+ builder.AddLine(new Vector2(512.419983F, -200.479996F));
+ builder.AddLine(new Vector2(509.071991F, -200.479996F));
+ builder.AddLine(new Vector2(509.071991F, -175.496002F));
+ builder.AddLine(new Vector2(512.419983F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0472()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(497.984009F, -197.455994F));
+ builder.AddLine(new Vector2(500.936005F, -198.427994F));
+ builder.AddLine(new Vector2(500.936005F, -200.479996F));
+ builder.AddLine(new Vector2(485.708008F, -200.479996F));
+ builder.AddLine(new Vector2(485.708008F, -197.455994F));
+ builder.AddLine(new Vector2(497.984009F, -197.455994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(493.411987F, -189.932007F));
+ builder.AddLine(new Vector2(500.936005F, -198.427994F));
+ builder.AddLine(new Vector2(496.903992F, -198.427994F));
+ builder.AddLine(new Vector2(489.596008F, -190.112F));
+ builder.AddLine(new Vector2(489.596008F, -188.059998F));
+ builder.AddLine(new Vector2(493.411987F, -189.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(496.976013F, -176.162003F));
+ builder.AddCubicBezier(new Vector2(498.29599F, -176.845993F), new Vector2(499.334015F, -177.794006F), new Vector2(500.089996F, -179.005997F));
+ builder.AddCubicBezier(new Vector2(500.846008F, -180.218002F), new Vector2(501.223999F, -181.615997F), new Vector2(501.223999F, -183.199997F));
+ builder.AddCubicBezier(new Vector2(501.223999F, -184.688004F), new Vector2(500.906006F, -185.996002F), new Vector2(500.269989F, -187.123993F));
+ builder.AddCubicBezier(new Vector2(499.634003F, -188.251999F), new Vector2(498.782013F, -189.128006F), new Vector2(497.713989F, -189.751999F));
+ builder.AddCubicBezier(new Vector2(496.645996F, -190.376007F), new Vector2(495.440002F, -190.688004F), new Vector2(494.096008F, -190.688004F));
+ builder.AddCubicBezier(new Vector2(493.567993F, -190.688004F), new Vector2(493.040009F, -190.628006F), new Vector2(492.511993F, -190.507996F));
+ builder.AddCubicBezier(new Vector2(491.984009F, -190.388F), new Vector2(491.492004F, -190.220001F), new Vector2(491.036011F, -190.003998F));
+ builder.AddLine(new Vector2(489.596008F, -188.059998F));
+ builder.AddCubicBezier(new Vector2(489.980011F, -188.179993F), new Vector2(490.394012F, -188.270004F), new Vector2(490.838013F, -188.330002F));
+ builder.AddCubicBezier(new Vector2(491.282013F, -188.389999F), new Vector2(491.708008F, -188.419998F), new Vector2(492.115997F, -188.419998F));
+ builder.AddCubicBezier(new Vector2(493.291992F, -188.419998F), new Vector2(494.299988F, -188.210007F), new Vector2(495.140015F, -187.789993F));
+ builder.AddCubicBezier(new Vector2(495.980011F, -187.369995F), new Vector2(496.627991F, -186.787994F), new Vector2(497.084015F, -186.044006F));
+ builder.AddCubicBezier(new Vector2(497.540009F, -185.300003F), new Vector2(497.768005F, -184.412003F), new Vector2(497.768005F, -183.380005F));
+ builder.AddCubicBezier(new Vector2(497.768005F, -182.371994F), new Vector2(497.540009F, -181.483994F), new Vector2(497.084015F, -180.716003F));
+ builder.AddCubicBezier(new Vector2(496.627991F, -179.947998F), new Vector2(495.997986F, -179.354004F), new Vector2(495.194F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(494.390015F, -178.514008F), new Vector2(493.424011F, -178.304001F), new Vector2(492.29599F, -178.304001F));
+ builder.AddCubicBezier(new Vector2(491.144012F, -178.304001F), new Vector2(490.088013F, -178.550003F), new Vector2(489.127991F, -179.042007F));
+ builder.AddCubicBezier(new Vector2(488.167999F, -179.533997F), new Vector2(487.411987F, -180.199997F), new Vector2(486.859985F, -181.039993F));
+ builder.AddLine(new Vector2(484.556F, -178.735992F));
+ builder.AddCubicBezier(new Vector2(485.467987F, -177.559998F), new Vector2(486.589996F, -176.666F), new Vector2(487.921997F, -176.054001F));
+ builder.AddCubicBezier(new Vector2(489.253998F, -175.442001F), new Vector2(490.735992F, -175.136002F), new Vector2(492.368011F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(494.119995F, -175.136002F), new Vector2(495.656006F, -175.477997F), new Vector2(496.976013F, -176.162003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0473()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(475.231995F, -189.643997F));
+ builder.AddLine(new Vector2(475.231995F, -192.595993F));
+ builder.AddLine(new Vector2(463.567993F, -192.595993F));
+ builder.AddLine(new Vector2(463.567993F, -189.643997F));
+ builder.AddLine(new Vector2(475.231995F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(471.019989F, -175.496002F));
+ builder.AddLine(new Vector2(471.019989F, -199.759995F));
+ builder.AddLine(new Vector2(467.779999F, -199.759995F));
+ builder.AddLine(new Vector2(467.779999F, -175.496002F));
+ builder.AddLine(new Vector2(471.019989F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0474()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(459.806F, -176.539993F));
+ builder.AddCubicBezier(new Vector2(460.946014F, -177.475998F), new Vector2(461.515991F, -178.748001F), new Vector2(461.515991F, -180.356003F));
+ builder.AddCubicBezier(new Vector2(461.515991F, -181.412003F), new Vector2(461.294006F, -182.264008F), new Vector2(460.850006F, -182.912003F));
+ builder.AddCubicBezier(new Vector2(460.406006F, -183.559998F), new Vector2(459.835999F, -184.076004F), new Vector2(459.140015F, -184.460007F));
+ builder.AddCubicBezier(new Vector2(458.444F, -184.843994F), new Vector2(457.712006F, -185.149994F), new Vector2(456.944F, -185.378006F));
+ builder.AddCubicBezier(new Vector2(456.175995F, -185.606003F), new Vector2(455.437988F, -185.828003F), new Vector2(454.730011F, -186.044006F));
+ builder.AddCubicBezier(new Vector2(454.022003F, -186.259995F), new Vector2(453.451996F, -186.524002F), new Vector2(453.019989F, -186.835999F));
+ builder.AddCubicBezier(new Vector2(452.588013F, -187.147995F), new Vector2(452.372009F, -187.591995F), new Vector2(452.372009F, -188.167999F));
+ builder.AddCubicBezier(new Vector2(452.372009F, -188.720001F), new Vector2(452.618011F, -189.164001F), new Vector2(453.109985F, -189.5F));
+ builder.AddCubicBezier(new Vector2(453.60199F, -189.835999F), new Vector2(454.31601F, -190.003998F), new Vector2(455.252014F, -190.003998F));
+ builder.AddCubicBezier(new Vector2(456.140015F, -190.003998F), new Vector2(456.932007F, -189.835999F), new Vector2(457.627991F, -189.5F));
+ builder.AddCubicBezier(new Vector2(458.324005F, -189.164001F), new Vector2(458.924011F, -188.684006F), new Vector2(459.428009F, -188.059998F));
+ builder.AddLine(new Vector2(461.515991F, -190.147995F));
+ builder.AddCubicBezier(new Vector2(460.843994F, -191.084F), new Vector2(459.985992F, -191.785995F), new Vector2(458.941986F, -192.253998F));
+ builder.AddCubicBezier(new Vector2(457.89801F, -192.722F), new Vector2(456.70401F, -192.955994F), new Vector2(455.359985F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(454.088013F, -192.955994F), new Vector2(452.996002F, -192.751999F), new Vector2(452.084015F, -192.343994F));
+ builder.AddCubicBezier(new Vector2(451.171997F, -191.936005F), new Vector2(450.470001F, -191.354004F), new Vector2(449.977997F, -190.598007F));
+ builder.AddCubicBezier(new Vector2(449.485992F, -189.841995F), new Vector2(449.23999F, -188.947998F), new Vector2(449.23999F, -187.916F));
+ builder.AddCubicBezier(new Vector2(449.23999F, -186.884003F), new Vector2(449.462006F, -186.050003F), new Vector2(449.906006F, -185.414001F));
+ builder.AddCubicBezier(new Vector2(450.350006F, -184.778F), new Vector2(450.920013F, -184.279999F), new Vector2(451.615997F, -183.919998F));
+ builder.AddCubicBezier(new Vector2(452.312012F, -183.559998F), new Vector2(453.049988F, -183.272003F), new Vector2(453.829987F, -183.056F));
+ builder.AddCubicBezier(new Vector2(454.609985F, -182.839996F), new Vector2(455.347992F, -182.617996F), new Vector2(456.044006F, -182.389999F));
+ builder.AddCubicBezier(new Vector2(456.73999F, -182.162003F), new Vector2(457.309998F, -181.873993F), new Vector2(457.753998F, -181.526001F));
+ builder.AddCubicBezier(new Vector2(458.197998F, -181.177994F), new Vector2(458.420013F, -180.692001F), new Vector2(458.420013F, -180.067993F));
+ builder.AddCubicBezier(new Vector2(458.420013F, -179.444F), new Vector2(458.144012F, -178.957993F), new Vector2(457.59201F, -178.610001F));
+ builder.AddCubicBezier(new Vector2(457.040009F, -178.261993F), new Vector2(456.26001F, -178.087997F), new Vector2(455.252014F, -178.087997F));
+ builder.AddCubicBezier(new Vector2(454.243988F, -178.087997F), new Vector2(453.332001F, -178.274002F), new Vector2(452.515991F, -178.645996F));
+ builder.AddCubicBezier(new Vector2(451.700012F, -179.018005F), new Vector2(450.980011F, -179.587997F), new Vector2(450.355988F, -180.356003F));
+ builder.AddLine(new Vector2(448.268005F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(448.79599F, -177.619995F), new Vector2(449.414001F, -177.061996F), new Vector2(450.122009F, -176.593994F));
+ builder.AddCubicBezier(new Vector2(450.829987F, -176.126007F), new Vector2(451.615997F, -175.766006F), new Vector2(452.480011F, -175.514008F));
+ builder.AddCubicBezier(new Vector2(453.343994F, -175.261993F), new Vector2(454.256012F, -175.136002F), new Vector2(455.216003F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(457.135986F, -175.136002F), new Vector2(458.665985F, -175.604004F), new Vector2(459.806F, -176.539993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0475()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(441.895996F, -176.126007F));
+ builder.AddCubicBezier(new Vector2(443F, -176.738007F), new Vector2(443.864014F, -177.608002F), new Vector2(444.488007F, -178.735992F));
+ builder.AddCubicBezier(new Vector2(445.112F, -179.863998F), new Vector2(445.424011F, -181.171997F), new Vector2(445.424011F, -182.660004F));
+ builder.AddLine(new Vector2(445.424011F, -192.595993F));
+ builder.AddLine(new Vector2(442.18399F, -192.595993F));
+ builder.AddLine(new Vector2(442.18399F, -182.804001F));
+ builder.AddCubicBezier(new Vector2(442.18399F, -181.388F), new Vector2(441.824005F, -180.278F), new Vector2(441.104004F, -179.473999F));
+ builder.AddCubicBezier(new Vector2(440.384003F, -178.669998F), new Vector2(439.388F, -178.268005F), new Vector2(438.115997F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(437.276001F, -178.268005F), new Vector2(436.544006F, -178.447998F), new Vector2(435.920013F, -178.807999F));
+ builder.AddCubicBezier(new Vector2(435.29599F, -179.167999F), new Vector2(434.821991F, -179.690002F), new Vector2(434.497986F, -180.373993F));
+ builder.AddCubicBezier(new Vector2(434.174011F, -181.057999F), new Vector2(434.011993F, -181.867996F), new Vector2(434.011993F, -182.804001F));
+ builder.AddLine(new Vector2(434.011993F, -192.595993F));
+ builder.AddLine(new Vector2(430.772003F, -192.595993F));
+ builder.AddLine(new Vector2(430.772003F, -182.660004F));
+ builder.AddCubicBezier(new Vector2(430.772003F, -181.171997F), new Vector2(431.084015F, -179.863998F), new Vector2(431.708008F, -178.735992F));
+ builder.AddCubicBezier(new Vector2(432.332001F, -177.608002F), new Vector2(433.201996F, -176.738007F), new Vector2(434.317993F, -176.126007F));
+ builder.AddCubicBezier(new Vector2(435.43399F, -175.514008F), new Vector2(436.700012F, -175.207993F), new Vector2(438.115997F, -175.207993F));
+ builder.AddCubicBezier(new Vector2(439.532013F, -175.207993F), new Vector2(440.791992F, -175.514008F), new Vector2(441.895996F, -176.126007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0476()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(415.273987F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(414.446014F, -180.014008F), new Vector2(413.798004F, -180.667999F), new Vector2(413.329987F, -181.507996F));
+ builder.AddCubicBezier(new Vector2(412.862F, -182.348007F), new Vector2(412.627991F, -183.307999F), new Vector2(412.627991F, -184.388F));
+ builder.AddCubicBezier(new Vector2(412.627991F, -185.468002F), new Vector2(412.862F, -186.421997F), new Vector2(413.329987F, -187.25F));
+ builder.AddCubicBezier(new Vector2(413.798004F, -188.078003F), new Vector2(414.440002F, -188.725998F), new Vector2(415.256012F, -189.194F));
+ builder.AddCubicBezier(new Vector2(416.071991F, -189.662003F), new Vector2(417.019989F, -189.895996F), new Vector2(418.100006F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(419.156006F, -189.895996F), new Vector2(420.085999F, -189.662003F), new Vector2(420.890015F, -189.194F));
+ builder.AddCubicBezier(new Vector2(421.694F, -188.725998F), new Vector2(422.317993F, -188.078003F), new Vector2(422.761993F, -187.25F));
+ builder.AddCubicBezier(new Vector2(423.205994F, -186.421997F), new Vector2(423.428009F, -185.455994F), new Vector2(423.428009F, -184.352005F));
+ builder.AddCubicBezier(new Vector2(423.428009F, -183.248001F), new Vector2(423.205994F, -182.281998F), new Vector2(422.761993F, -181.453995F));
+ builder.AddCubicBezier(new Vector2(422.317993F, -180.626007F), new Vector2(421.700012F, -179.983994F), new Vector2(420.90799F, -179.528F));
+ builder.AddCubicBezier(new Vector2(420.115997F, -179.072006F), new Vector2(419.179993F, -178.843994F), new Vector2(418.100006F, -178.843994F));
+ builder.AddCubicBezier(new Vector2(417.044006F, -178.843994F), new Vector2(416.10199F, -179.078003F), new Vector2(415.273987F, -179.546005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(421.015991F, -176.576004F));
+ builder.AddCubicBezier(new Vector2(422.048004F, -177.104004F), new Vector2(422.869995F, -177.841995F), new Vector2(423.481995F, -178.789993F));
+ builder.AddCubicBezier(new Vector2(424.093994F, -179.738007F), new Vector2(424.436005F, -180.835999F), new Vector2(424.507996F, -182.084F));
+ builder.AddLine(new Vector2(424.507996F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(424.436005F, -187.891998F), new Vector2(424.100006F, -189.001999F), new Vector2(423.5F, -189.949997F));
+ builder.AddCubicBezier(new Vector2(422.899994F, -190.897995F), new Vector2(422.078003F, -191.636002F), new Vector2(421.033997F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(419.98999F, -192.692001F), new Vector2(418.79599F, -192.955994F), new Vector2(417.451996F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(415.915985F, -192.955994F), new Vector2(414.523987F, -192.578003F), new Vector2(413.276001F, -191.822006F));
+ builder.AddCubicBezier(new Vector2(412.028015F, -191.065994F), new Vector2(411.049988F, -190.046005F), new Vector2(410.34201F, -188.761993F));
+ builder.AddCubicBezier(new Vector2(409.634003F, -187.477997F), new Vector2(409.279999F, -186.020004F), new Vector2(409.279999F, -184.388F));
+ builder.AddCubicBezier(new Vector2(409.279999F, -182.755997F), new Vector2(409.640015F, -181.285995F), new Vector2(410.359985F, -179.977997F));
+ builder.AddCubicBezier(new Vector2(411.079987F, -178.669998F), new Vector2(412.058014F, -177.643997F), new Vector2(413.294006F, -176.899994F));
+ builder.AddCubicBezier(new Vector2(414.529999F, -176.156006F), new Vector2(415.928009F, -175.783997F), new Vector2(417.488007F, -175.783997F));
+ builder.AddCubicBezier(new Vector2(418.808014F, -175.783997F), new Vector2(419.984009F, -176.048004F), new Vector2(421.015991F, -176.576004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(422.186005F, -168.998001F));
+ builder.AddCubicBezier(new Vector2(423.541992F, -169.682007F), new Vector2(424.597992F, -170.641998F), new Vector2(425.354004F, -171.878006F));
+ builder.AddCubicBezier(new Vector2(426.109985F, -173.113998F), new Vector2(426.488007F, -174.548004F), new Vector2(426.488007F, -176.179993F));
+ builder.AddLine(new Vector2(426.488007F, -192.595993F));
+ builder.AddLine(new Vector2(423.247986F, -192.595993F));
+ builder.AddLine(new Vector2(423.247986F, -188.095993F));
+ builder.AddLine(new Vector2(423.824005F, -184.279999F));
+ builder.AddLine(new Vector2(423.247986F, -180.427994F));
+ builder.AddLine(new Vector2(423.247986F, -176.179993F));
+ builder.AddCubicBezier(new Vector2(423.247986F, -174.619995F), new Vector2(422.731995F, -173.378006F), new Vector2(421.700012F, -172.453995F));
+ builder.AddCubicBezier(new Vector2(420.667999F, -171.529999F), new Vector2(419.287994F, -171.067993F), new Vector2(417.559998F, -171.067993F));
+ builder.AddCubicBezier(new Vector2(416.23999F, -171.067993F), new Vector2(415.100006F, -171.302002F), new Vector2(414.140015F, -171.770004F));
+ builder.AddCubicBezier(new Vector2(413.179993F, -172.238007F), new Vector2(412.35199F, -172.916F), new Vector2(411.656006F, -173.804001F));
+ builder.AddLine(new Vector2(409.532013F, -171.679993F));
+ builder.AddCubicBezier(new Vector2(410.372009F, -170.503998F), new Vector2(411.463989F, -169.591995F), new Vector2(412.808014F, -168.944F));
+ builder.AddCubicBezier(new Vector2(414.152008F, -168.296005F), new Vector2(415.712006F, -167.972F), new Vector2(417.488007F, -167.972F));
+ builder.AddCubicBezier(new Vector2(419.264008F, -167.972F), new Vector2(420.829987F, -168.313995F), new Vector2(422.186005F, -168.998001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0477()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(402.511993F, -176.126007F));
+ builder.AddCubicBezier(new Vector2(403.615997F, -176.738007F), new Vector2(404.480011F, -177.608002F), new Vector2(405.104004F, -178.735992F));
+ builder.AddCubicBezier(new Vector2(405.727997F, -179.863998F), new Vector2(406.040009F, -181.171997F), new Vector2(406.040009F, -182.660004F));
+ builder.AddLine(new Vector2(406.040009F, -192.595993F));
+ builder.AddLine(new Vector2(402.799988F, -192.595993F));
+ builder.AddLine(new Vector2(402.799988F, -182.804001F));
+ builder.AddCubicBezier(new Vector2(402.799988F, -181.388F), new Vector2(402.440002F, -180.278F), new Vector2(401.720001F, -179.473999F));
+ builder.AddCubicBezier(new Vector2(401F, -178.669998F), new Vector2(400.003998F, -178.268005F), new Vector2(398.731995F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(397.891998F, -178.268005F), new Vector2(397.160004F, -178.447998F), new Vector2(396.536011F, -178.807999F));
+ builder.AddCubicBezier(new Vector2(395.911987F, -179.167999F), new Vector2(395.437988F, -179.690002F), new Vector2(395.114014F, -180.373993F));
+ builder.AddCubicBezier(new Vector2(394.790009F, -181.057999F), new Vector2(394.627991F, -181.867996F), new Vector2(394.627991F, -182.804001F));
+ builder.AddLine(new Vector2(394.627991F, -192.595993F));
+ builder.AddLine(new Vector2(391.388F, -192.595993F));
+ builder.AddLine(new Vector2(391.388F, -182.660004F));
+ builder.AddCubicBezier(new Vector2(391.388F, -181.171997F), new Vector2(391.700012F, -179.863998F), new Vector2(392.324005F, -178.735992F));
+ builder.AddCubicBezier(new Vector2(392.947998F, -177.608002F), new Vector2(393.817993F, -176.738007F), new Vector2(394.93399F, -176.126007F));
+ builder.AddCubicBezier(new Vector2(396.049988F, -175.514008F), new Vector2(397.31601F, -175.207993F), new Vector2(398.731995F, -175.207993F));
+ builder.AddCubicBezier(new Vector2(400.14801F, -175.207993F), new Vector2(401.40799F, -175.514008F), new Vector2(402.511993F, -176.126007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0478()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(384.152008F, -181.147995F));
+ builder.AddLine(new Vector2(384.152008F, -184.100006F));
+ builder.AddLine(new Vector2(371.011993F, -184.100006F));
+ builder.AddLine(new Vector2(371.011993F, -181.147995F));
+ builder.AddLine(new Vector2(384.152008F, -181.147995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(369.752014F, -175.496002F));
+ builder.AddLine(new Vector2(378.212006F, -196.628006F));
+ builder.AddLine(new Vector2(376.915985F, -196.628006F));
+ builder.AddLine(new Vector2(385.339996F, -175.496002F));
+ builder.AddLine(new Vector2(389.011993F, -175.496002F));
+ builder.AddLine(new Vector2(378.824005F, -200.479996F));
+ builder.AddLine(new Vector2(376.376007F, -200.479996F));
+ builder.AddLine(new Vector2(366.115997F, -175.496002F));
+ builder.AddLine(new Vector2(369.752014F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0479()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(357.727997F, -189.643997F));
+ builder.AddLine(new Vector2(357.727997F, -192.595993F));
+ builder.AddLine(new Vector2(344.839996F, -192.595993F));
+ builder.AddLine(new Vector2(344.839996F, -189.643997F));
+ builder.AddLine(new Vector2(357.727997F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(352.291992F, -175.496002F));
+ builder.AddLine(new Vector2(352.291992F, -195.151993F));
+ builder.AddCubicBezier(new Vector2(352.291992F, -196.207993F), new Vector2(352.574005F, -197.029999F), new Vector2(353.138F, -197.617996F));
+ builder.AddCubicBezier(new Vector2(353.701996F, -198.205994F), new Vector2(354.5F, -198.5F), new Vector2(355.532013F, -198.5F));
+ builder.AddCubicBezier(new Vector2(356.084015F, -198.5F), new Vector2(356.552002F, -198.416F), new Vector2(356.936005F, -198.248001F));
+ builder.AddCubicBezier(new Vector2(357.320007F, -198.080002F), new Vector2(357.667999F, -197.828003F), new Vector2(357.980011F, -197.492004F));
+ builder.AddLine(new Vector2(360.104004F, -199.580002F));
+ builder.AddCubicBezier(new Vector2(359.503998F, -200.227997F), new Vector2(358.843994F, -200.720001F), new Vector2(358.123993F, -201.056F));
+ builder.AddCubicBezier(new Vector2(357.403992F, -201.391998F), new Vector2(356.552002F, -201.559998F), new Vector2(355.567993F, -201.559998F));
+ builder.AddCubicBezier(new Vector2(354.272003F, -201.559998F), new Vector2(353.131989F, -201.283997F), new Vector2(352.14801F, -200.731995F));
+ builder.AddCubicBezier(new Vector2(351.164001F, -200.179993F), new Vector2(350.395996F, -199.423996F), new Vector2(349.843994F, -198.464005F));
+ builder.AddCubicBezier(new Vector2(349.291992F, -197.503998F), new Vector2(349.015991F, -196.399994F), new Vector2(349.015991F, -195.151993F));
+ builder.AddLine(new Vector2(349.015991F, -175.496002F));
+ builder.AddLine(new Vector2(352.291992F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0480()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(331.735992F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(330.895996F, -179.528F), new Vector2(330.235992F, -180.218002F), new Vector2(329.756012F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(329.276001F, -181.970001F), new Vector2(329.036011F, -182.972F), new Vector2(329.036011F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(329.036011F, -185.203995F), new Vector2(329.276001F, -186.188004F), new Vector2(329.756012F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(330.235992F, -187.916F), new Vector2(330.895996F, -188.593994F), new Vector2(331.735992F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(332.575989F, -189.578003F), new Vector2(333.523987F, -189.824005F), new Vector2(334.579987F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(335.68399F, -189.824005F), new Vector2(336.649994F, -189.578003F), new Vector2(337.477997F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(338.306F, -188.593994F), new Vector2(338.966003F, -187.916F), new Vector2(339.458008F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(339.950012F, -186.188004F), new Vector2(340.196014F, -185.203995F), new Vector2(340.196014F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(340.196014F, -182.972F), new Vector2(339.955994F, -181.970001F), new Vector2(339.476013F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(338.996002F, -180.218002F), new Vector2(338.335999F, -179.528F), new Vector2(337.496002F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(336.656006F, -178.520004F), new Vector2(335.68399F, -178.268005F), new Vector2(334.579987F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(333.523987F, -178.268005F), new Vector2(332.575989F, -178.520004F), new Vector2(331.735992F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(339.134003F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(340.48999F, -177.115997F), new Vector2(341.563995F, -178.190002F), new Vector2(342.355988F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(343.14801F, -180.901993F), new Vector2(343.544006F, -182.419998F), new Vector2(343.544006F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(343.544006F, -185.755997F), new Vector2(343.14801F, -187.255997F), new Vector2(342.355988F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(341.563995F, -189.944F), new Vector2(340.48999F, -191.005997F), new Vector2(339.134003F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(337.778015F, -192.565994F), new Vector2(336.26001F, -192.955994F), new Vector2(334.579987F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(332.924011F, -192.955994F), new Vector2(331.424011F, -192.559998F), new Vector2(330.079987F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(328.735992F, -190.975998F), new Vector2(327.667999F, -189.914001F), new Vector2(326.876007F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(326.084015F, -187.25F), new Vector2(325.687988F, -185.755997F), new Vector2(325.687988F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(325.687988F, -182.419998F), new Vector2(326.084015F, -180.901993F), new Vector2(326.876007F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(327.667999F, -178.190002F), new Vector2(328.735992F, -177.115997F), new Vector2(330.079987F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(331.424011F, -175.531998F), new Vector2(332.924011F, -175.136002F), new Vector2(334.579987F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(336.26001F, -175.136002F), new Vector2(337.778015F, -175.531998F), new Vector2(339.134003F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0481()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(314.006012F, -176.539993F));
+ builder.AddCubicBezier(new Vector2(315.145996F, -177.475998F), new Vector2(315.716003F, -178.748001F), new Vector2(315.716003F, -180.356003F));
+ builder.AddCubicBezier(new Vector2(315.716003F, -181.412003F), new Vector2(315.493988F, -182.264008F), new Vector2(315.049988F, -182.912003F));
+ builder.AddCubicBezier(new Vector2(314.605988F, -183.559998F), new Vector2(314.036011F, -184.076004F), new Vector2(313.339996F, -184.460007F));
+ builder.AddCubicBezier(new Vector2(312.644012F, -184.843994F), new Vector2(311.911987F, -185.149994F), new Vector2(311.144012F, -185.378006F));
+ builder.AddCubicBezier(new Vector2(310.376007F, -185.606003F), new Vector2(309.638F, -185.828003F), new Vector2(308.929993F, -186.044006F));
+ builder.AddCubicBezier(new Vector2(308.221985F, -186.259995F), new Vector2(307.652008F, -186.524002F), new Vector2(307.220001F, -186.835999F));
+ builder.AddCubicBezier(new Vector2(306.787994F, -187.147995F), new Vector2(306.571991F, -187.591995F), new Vector2(306.571991F, -188.167999F));
+ builder.AddCubicBezier(new Vector2(306.571991F, -188.720001F), new Vector2(306.817993F, -189.164001F), new Vector2(307.309998F, -189.5F));
+ builder.AddCubicBezier(new Vector2(307.802002F, -189.835999F), new Vector2(308.515991F, -190.003998F), new Vector2(309.451996F, -190.003998F));
+ builder.AddCubicBezier(new Vector2(310.339996F, -190.003998F), new Vector2(311.131989F, -189.835999F), new Vector2(311.828003F, -189.5F));
+ builder.AddCubicBezier(new Vector2(312.523987F, -189.164001F), new Vector2(313.123993F, -188.684006F), new Vector2(313.627991F, -188.059998F));
+ builder.AddLine(new Vector2(315.716003F, -190.147995F));
+ builder.AddCubicBezier(new Vector2(315.044006F, -191.084F), new Vector2(314.186005F, -191.785995F), new Vector2(313.141998F, -192.253998F));
+ builder.AddCubicBezier(new Vector2(312.097992F, -192.722F), new Vector2(310.903992F, -192.955994F), new Vector2(309.559998F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(308.287994F, -192.955994F), new Vector2(307.196014F, -192.751999F), new Vector2(306.283997F, -192.343994F));
+ builder.AddCubicBezier(new Vector2(305.372009F, -191.936005F), new Vector2(304.670013F, -191.354004F), new Vector2(304.178009F, -190.598007F));
+ builder.AddCubicBezier(new Vector2(303.686005F, -189.841995F), new Vector2(303.440002F, -188.947998F), new Vector2(303.440002F, -187.916F));
+ builder.AddCubicBezier(new Vector2(303.440002F, -186.884003F), new Vector2(303.661987F, -186.050003F), new Vector2(304.105988F, -185.414001F));
+ builder.AddCubicBezier(new Vector2(304.549988F, -184.778F), new Vector2(305.119995F, -184.279999F), new Vector2(305.81601F, -183.919998F));
+ builder.AddCubicBezier(new Vector2(306.511993F, -183.559998F), new Vector2(307.25F, -183.272003F), new Vector2(308.029999F, -183.056F));
+ builder.AddCubicBezier(new Vector2(308.809998F, -182.839996F), new Vector2(309.548004F, -182.617996F), new Vector2(310.243988F, -182.389999F));
+ builder.AddCubicBezier(new Vector2(310.940002F, -182.162003F), new Vector2(311.51001F, -181.873993F), new Vector2(311.95401F, -181.526001F));
+ builder.AddCubicBezier(new Vector2(312.39801F, -181.177994F), new Vector2(312.619995F, -180.692001F), new Vector2(312.619995F, -180.067993F));
+ builder.AddCubicBezier(new Vector2(312.619995F, -179.444F), new Vector2(312.343994F, -178.957993F), new Vector2(311.791992F, -178.610001F));
+ builder.AddCubicBezier(new Vector2(311.23999F, -178.261993F), new Vector2(310.459991F, -178.087997F), new Vector2(309.451996F, -178.087997F));
+ builder.AddCubicBezier(new Vector2(308.444F, -178.087997F), new Vector2(307.532013F, -178.274002F), new Vector2(306.716003F, -178.645996F));
+ builder.AddCubicBezier(new Vector2(305.899994F, -179.018005F), new Vector2(305.179993F, -179.587997F), new Vector2(304.556F, -180.356003F));
+ builder.AddLine(new Vector2(302.467987F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(302.996002F, -177.619995F), new Vector2(303.614014F, -177.061996F), new Vector2(304.321991F, -176.593994F));
+ builder.AddCubicBezier(new Vector2(305.029999F, -176.126007F), new Vector2(305.81601F, -175.766006F), new Vector2(306.679993F, -175.514008F));
+ builder.AddCubicBezier(new Vector2(307.544006F, -175.261993F), new Vector2(308.455994F, -175.136002F), new Vector2(309.415985F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(311.335999F, -175.136002F), new Vector2(312.865997F, -175.604004F), new Vector2(314.006012F, -176.539993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0482()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(299.264008F, -175.496002F));
+ builder.AddLine(new Vector2(299.264008F, -192.595993F));
+ builder.AddLine(new Vector2(295.988007F, -192.595993F));
+ builder.AddLine(new Vector2(295.988007F, -188.419998F));
+ builder.AddLine(new Vector2(296.600006F, -184.279999F));
+ builder.AddLine(new Vector2(295.988007F, -180.104004F));
+ builder.AddLine(new Vector2(295.988007F, -175.496002F));
+ builder.AddLine(new Vector2(299.264008F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(287.959991F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(287.119995F, -179.455994F), new Vector2(286.466003F, -180.145996F), new Vector2(285.997986F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(285.529999F, -181.897995F), new Vector2(285.29599F, -182.912003F), new Vector2(285.29599F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(285.29599F, -185.192001F), new Vector2(285.529999F, -186.194F), new Vector2(285.997986F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(286.466003F, -187.945999F), new Vector2(287.114014F, -188.636002F), new Vector2(287.941986F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(288.769989F, -189.643997F), new Vector2(289.723999F, -189.895996F), new Vector2(290.803986F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(291.884003F, -189.895996F), new Vector2(292.825989F, -189.649994F), new Vector2(293.630005F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(294.43399F, -188.666F), new Vector2(295.063995F, -187.975998F), new Vector2(295.519989F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(295.976013F, -186.199997F), new Vector2(296.20401F, -185.179993F), new Vector2(296.20401F, -184.028F));
+ builder.AddCubicBezier(new Vector2(296.20401F, -182.324005F), new Vector2(295.712006F, -180.925995F), new Vector2(294.727997F, -179.834F));
+ builder.AddCubicBezier(new Vector2(293.743988F, -178.742004F), new Vector2(292.447998F, -178.195999F), new Vector2(290.839996F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(289.76001F, -178.195999F), new Vector2(288.799988F, -178.447998F), new Vector2(287.959991F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(293.791992F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(294.824005F, -176.485992F), new Vector2(295.645996F, -177.235992F), new Vector2(296.257996F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(296.869995F, -179.156006F), new Vector2(297.212006F, -180.248001F), new Vector2(297.283997F, -181.472F));
+ builder.AddLine(new Vector2(297.283997F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(297.212006F, -187.867996F), new Vector2(296.864014F, -188.966003F), new Vector2(296.23999F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(295.615997F, -190.862F), new Vector2(294.794006F, -191.606003F), new Vector2(293.773987F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(292.753998F, -192.686005F), new Vector2(291.596008F, -192.955994F), new Vector2(290.299988F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(288.716003F, -192.955994F), new Vector2(287.294006F, -192.559998F), new Vector2(286.033997F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(284.773987F, -190.975998F), new Vector2(283.778015F, -189.908005F), new Vector2(283.04599F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(282.313995F, -187.220001F), new Vector2(281.947998F, -185.707993F), new Vector2(281.947998F, -184.028F));
+ builder.AddCubicBezier(new Vector2(281.947998F, -182.348007F), new Vector2(282.313995F, -180.835999F), new Vector2(283.04599F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(283.778015F, -178.147995F), new Vector2(284.773987F, -177.085999F), new Vector2(286.033997F, -176.306F));
+ builder.AddCubicBezier(new Vector2(287.294006F, -175.526001F), new Vector2(288.716003F, -175.136002F), new Vector2(290.299988F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(291.596008F, -175.136002F), new Vector2(292.76001F, -175.406006F), new Vector2(293.791992F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0483()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(261.391998F, -168.332001F));
+ builder.AddLine(new Vector2(264.631989F, -175.352005F));
+ builder.AddLine(new Vector2(262.79599F, -178.664001F));
+ builder.AddLine(new Vector2(257.791992F, -168.332001F));
+ builder.AddLine(new Vector2(261.391998F, -168.332001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(264.631989F, -175.352005F));
+ builder.AddLine(new Vector2(272.623993F, -192.595993F));
+ builder.AddLine(new Vector2(269.023987F, -192.595993F));
+ builder.AddLine(new Vector2(263.227997F, -179.095993F));
+ builder.AddLine(new Vector2(264.380005F, -179.095993F));
+ builder.AddLine(new Vector2(258.872009F, -192.595993F));
+ builder.AddLine(new Vector2(255.272003F, -192.595993F));
+ builder.AddLine(new Vector2(262.687988F, -175.352005F));
+ builder.AddLine(new Vector2(264.631989F, -175.352005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0484()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(252.320007F, -175.496002F));
+ builder.AddLine(new Vector2(252.320007F, -201.199997F));
+ builder.AddLine(new Vector2(249.080002F, -201.199997F));
+ builder.AddLine(new Vector2(249.080002F, -175.496002F));
+ builder.AddLine(new Vector2(252.320007F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0485()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(244.363998F, -201.199997F));
+ builder.AddLine(new Vector2(241.087997F, -201.199997F));
+ builder.AddLine(new Vector2(241.087997F, -188.419998F));
+ builder.AddLine(new Vector2(241.699997F, -184.279999F));
+ builder.AddLine(new Vector2(241.087997F, -180.104004F));
+ builder.AddLine(new Vector2(241.087997F, -175.496002F));
+ builder.AddLine(new Vector2(244.363998F, -175.496002F));
+ builder.AddLine(new Vector2(244.363998F, -201.199997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(233.042007F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(232.214005F, -179.425995F), new Vector2(231.565994F, -180.115997F), new Vector2(231.098007F, -181.003998F));
+ builder.AddCubicBezier(new Vector2(230.630005F, -181.891998F), new Vector2(230.395996F, -182.912003F), new Vector2(230.395996F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(230.395996F, -185.216003F), new Vector2(230.630005F, -186.229996F), new Vector2(231.098007F, -187.106003F));
+ builder.AddCubicBezier(new Vector2(231.565994F, -187.981995F), new Vector2(232.207993F, -188.666F), new Vector2(233.024002F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(233.839996F, -189.649994F), new Vector2(234.787994F, -189.895996F), new Vector2(235.867996F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(236.947998F, -189.895996F), new Vector2(237.895996F, -189.643997F), new Vector2(238.712006F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(239.528F, -188.636002F), new Vector2(240.164001F, -187.945999F), new Vector2(240.619995F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(241.076004F, -186.194F), new Vector2(241.304001F, -185.179993F), new Vector2(241.304001F, -184.028F));
+ builder.AddCubicBezier(new Vector2(241.304001F, -182.899994F), new Vector2(241.076004F, -181.897995F), new Vector2(240.619995F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(240.164001F, -180.145996F), new Vector2(239.528F, -179.455994F), new Vector2(238.712006F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(237.895996F, -178.447998F), new Vector2(236.947998F, -178.195999F), new Vector2(235.867996F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(234.811996F, -178.195999F), new Vector2(233.869995F, -178.442001F), new Vector2(233.042007F, -178.934006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(238.856003F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(239.888F, -176.485992F), new Vector2(240.716003F, -177.235992F), new Vector2(241.339996F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(241.964005F, -179.156006F), new Vector2(242.311996F, -180.248001F), new Vector2(242.384003F, -181.472F));
+ builder.AddLine(new Vector2(242.384003F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(242.311996F, -187.867996F), new Vector2(241.957993F, -188.966003F), new Vector2(241.322006F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(240.686005F, -190.862F), new Vector2(239.852005F, -191.606003F), new Vector2(238.820007F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(237.787994F, -192.686005F), new Vector2(236.623993F, -192.955994F), new Vector2(235.328003F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(233.768005F, -192.955994F), new Vector2(232.363998F, -192.559998F), new Vector2(231.115997F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(229.867996F, -190.975998F), new Vector2(228.878006F, -189.908005F), new Vector2(228.145996F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(227.414001F, -187.220001F), new Vector2(227.048004F, -185.707993F), new Vector2(227.048004F, -184.028F));
+ builder.AddCubicBezier(new Vector2(227.048004F, -182.348007F), new Vector2(227.414001F, -180.835999F), new Vector2(228.145996F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(228.878006F, -178.147995F), new Vector2(229.867996F, -177.085999F), new Vector2(231.115997F, -176.306F));
+ builder.AddCubicBezier(new Vector2(232.363998F, -175.526001F), new Vector2(233.768005F, -175.136002F), new Vector2(235.328003F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(236.647995F, -175.136002F), new Vector2(237.824005F, -175.406006F), new Vector2(238.856003F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0486()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(220.531998F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(221.707993F, -176.395996F), new Vector2(222.716003F, -177.128006F), new Vector2(223.556F, -178.087997F));
+ builder.AddLine(new Vector2(221.468002F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(220.891998F, -179.539993F), new Vector2(220.201996F, -179.035995F), new Vector2(219.397995F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(218.593994F, -178.363998F), new Vector2(217.712006F, -178.195999F), new Vector2(216.751999F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(215.600006F, -178.195999F), new Vector2(214.580002F, -178.442001F), new Vector2(213.692001F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(212.804001F, -179.425995F), new Vector2(212.119995F, -180.121994F), new Vector2(211.639999F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(211.160004F, -181.921997F), new Vector2(210.919998F, -182.972F), new Vector2(210.919998F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(210.919998F, -185.348007F), new Vector2(211.147995F, -186.367996F), new Vector2(211.604004F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(212.059998F, -188.095993F), new Vector2(212.707993F, -188.768005F), new Vector2(213.548004F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(214.388F, -189.727997F), new Vector2(215.360001F, -189.968002F), new Vector2(216.464005F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(217.520004F, -189.968002F), new Vector2(218.419998F, -189.746002F), new Vector2(219.164001F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(219.908005F, -188.858002F), new Vector2(220.483994F, -188.233994F), new Vector2(220.891998F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(221.300003F, -186.626007F), new Vector2(221.503998F, -185.647995F), new Vector2(221.503998F, -184.496002F));
+ builder.AddLine(new Vector2(222.692001F, -185.539993F));
+ builder.AddLine(new Vector2(209.983994F, -185.539993F));
+ builder.AddLine(new Vector2(209.983994F, -182.839996F));
+ builder.AddLine(new Vector2(224.419998F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(224.492004F, -183.175995F), new Vector2(224.539993F, -183.481995F), new Vector2(224.563995F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(224.587997F, -184.033997F), new Vector2(224.600006F, -184.292007F), new Vector2(224.600006F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(224.600006F, -186.164001F), new Vector2(224.257996F, -187.615997F), new Vector2(223.574005F, -188.888F));
+ builder.AddCubicBezier(new Vector2(222.889999F, -190.160004F), new Vector2(221.936005F, -191.156006F), new Vector2(220.712006F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(219.488007F, -192.595993F), new Vector2(218.095993F, -192.955994F), new Vector2(216.535995F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(214.880005F, -192.955994F), new Vector2(213.386002F, -192.565994F), new Vector2(212.054001F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(210.722F, -191.005997F), new Vector2(209.666F, -189.944F), new Vector2(208.886002F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(208.106003F, -187.255997F), new Vector2(207.716003F, -185.744003F), new Vector2(207.716003F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(207.716003F, -182.360001F), new Vector2(208.112F, -180.835999F), new Vector2(208.904007F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(209.695999F, -178.147995F), new Vector2(210.770004F, -177.085999F), new Vector2(212.126007F, -176.306F));
+ builder.AddCubicBezier(new Vector2(213.481995F, -175.526001F), new Vector2(215.024002F, -175.136002F), new Vector2(216.751999F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(218.095993F, -175.136002F), new Vector2(219.356003F, -175.388F), new Vector2(220.531998F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0487()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(206.203995F, -189.643997F));
+ builder.AddLine(new Vector2(206.203995F, -192.595993F));
+ builder.AddLine(new Vector2(194.539993F, -192.595993F));
+ builder.AddLine(new Vector2(194.539993F, -189.643997F));
+ builder.AddLine(new Vector2(206.203995F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(201.992004F, -175.496002F));
+ builder.AddLine(new Vector2(201.992004F, -199.759995F));
+ builder.AddLine(new Vector2(198.751999F, -199.759995F));
+ builder.AddLine(new Vector2(198.751999F, -175.496002F));
+ builder.AddLine(new Vector2(201.992004F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0488()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(186.115997F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(186.884003F, -189.511993F), new Vector2(187.867996F, -189.895996F), new Vector2(189.067993F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(189.643997F, -189.895996F), new Vector2(190.147995F, -189.811996F), new Vector2(190.580002F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(191.011993F, -189.475998F), new Vector2(191.408005F, -189.199997F), new Vector2(191.768005F, -188.815994F));
+ builder.AddLine(new Vector2(193.891998F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(193.292007F, -191.707993F), new Vector2(192.643997F, -192.205994F), new Vector2(191.947998F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(191.251999F, -192.806F), new Vector2(190.472F, -192.955994F), new Vector2(189.608002F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(187.712006F, -192.955994F), new Vector2(186.259995F, -192.307999F), new Vector2(185.251999F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(184.244003F, -189.716003F), new Vector2(183.740005F, -187.975998F), new Vector2(183.740005F, -185.792007F));
+ builder.AddLine(new Vector2(184.964005F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(184.964005F, -186.800003F), new Vector2(185.348007F, -187.975998F), new Vector2(186.115997F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(184.964005F, -175.496002F));
+ builder.AddLine(new Vector2(184.964005F, -192.595993F));
+ builder.AddLine(new Vector2(181.723999F, -192.595993F));
+ builder.AddLine(new Vector2(181.723999F, -175.496002F));
+ builder.AddLine(new Vector2(184.964005F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0489()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(166.315994F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(165.475998F, -179.528F), new Vector2(164.815994F, -180.218002F), new Vector2(164.335999F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(163.856003F, -181.970001F), new Vector2(163.615997F, -182.972F), new Vector2(163.615997F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(163.615997F, -185.203995F), new Vector2(163.856003F, -186.188004F), new Vector2(164.335999F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(164.815994F, -187.916F), new Vector2(165.475998F, -188.593994F), new Vector2(166.315994F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(167.156006F, -189.578003F), new Vector2(168.104004F, -189.824005F), new Vector2(169.160004F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(170.264008F, -189.824005F), new Vector2(171.229996F, -189.578003F), new Vector2(172.057999F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(172.886002F, -188.593994F), new Vector2(173.546005F, -187.916F), new Vector2(174.037994F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(174.529999F, -186.188004F), new Vector2(174.776001F, -185.203995F), new Vector2(174.776001F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(174.776001F, -182.972F), new Vector2(174.535995F, -181.970001F), new Vector2(174.056F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(173.576004F, -180.218002F), new Vector2(172.916F, -179.528F), new Vector2(172.076004F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(171.235992F, -178.520004F), new Vector2(170.264008F, -178.268005F), new Vector2(169.160004F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(168.104004F, -178.268005F), new Vector2(167.156006F, -178.520004F), new Vector2(166.315994F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(173.714005F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(175.070007F, -177.115997F), new Vector2(176.143997F, -178.190002F), new Vector2(176.936005F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(177.727997F, -180.901993F), new Vector2(178.123993F, -182.419998F), new Vector2(178.123993F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(178.123993F, -185.755997F), new Vector2(177.727997F, -187.255997F), new Vector2(176.936005F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(176.143997F, -189.944F), new Vector2(175.070007F, -191.005997F), new Vector2(173.714005F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(172.358002F, -192.565994F), new Vector2(170.839996F, -192.955994F), new Vector2(169.160004F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(167.503998F, -192.955994F), new Vector2(166.003998F, -192.559998F), new Vector2(164.660004F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(163.315994F, -190.975998F), new Vector2(162.248001F, -189.914001F), new Vector2(161.455994F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(160.664001F, -187.25F), new Vector2(160.268005F, -185.755997F), new Vector2(160.268005F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(160.268005F, -182.419998F), new Vector2(160.664001F, -180.901993F), new Vector2(161.455994F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(162.248001F, -178.190002F), new Vector2(163.315994F, -177.115997F), new Vector2(164.660004F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(166.003998F, -175.531998F), new Vector2(167.503998F, -175.136002F), new Vector2(169.160004F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(170.839996F, -175.136002F), new Vector2(172.358002F, -175.531998F), new Vector2(173.714005F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0490()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(146.065994F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(145.238007F, -179.455994F), new Vector2(144.602005F, -180.145996F), new Vector2(144.158005F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(143.714005F, -181.897995F), new Vector2(143.492004F, -182.899994F), new Vector2(143.492004F, -184.028F));
+ builder.AddCubicBezier(new Vector2(143.492004F, -185.179993F), new Vector2(143.720001F, -186.194F), new Vector2(144.175995F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(144.632004F, -187.945999F), new Vector2(145.268005F, -188.636002F), new Vector2(146.084F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(146.899994F, -189.643997F), new Vector2(147.835999F, -189.895996F), new Vector2(148.891998F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(149.972F, -189.895996F), new Vector2(150.919998F, -189.643997F), new Vector2(151.735992F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(152.552002F, -188.636002F), new Vector2(153.194F, -187.945999F), new Vector2(153.662003F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(154.130005F, -186.194F), new Vector2(154.363998F, -185.192001F), new Vector2(154.363998F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(154.363998F, -182.912003F), new Vector2(154.130005F, -181.897995F), new Vector2(153.662003F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(153.194F, -180.145996F), new Vector2(152.552002F, -179.455994F), new Vector2(151.735992F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(150.919998F, -178.447998F), new Vector2(149.972F, -178.195999F), new Vector2(148.891998F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(147.835999F, -178.195999F), new Vector2(146.893997F, -178.447998F), new Vector2(146.065994F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(143.671997F, -168.332001F));
+ builder.AddLine(new Vector2(143.671997F, -179.779999F));
+ builder.AddLine(new Vector2(143.059998F, -183.955994F));
+ builder.AddLine(new Vector2(143.671997F, -188.095993F));
+ builder.AddLine(new Vector2(143.671997F, -192.595993F));
+ builder.AddLine(new Vector2(140.432007F, -192.595993F));
+ builder.AddLine(new Vector2(140.432007F, -168.332001F));
+ builder.AddLine(new Vector2(143.671997F, -168.332001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(153.662003F, -176.306F));
+ builder.AddCubicBezier(new Vector2(154.921997F, -177.085999F), new Vector2(155.912003F, -178.147995F), new Vector2(156.632004F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(157.352005F, -180.835999F), new Vector2(157.712006F, -182.348007F), new Vector2(157.712006F, -184.028F));
+ builder.AddCubicBezier(new Vector2(157.712006F, -185.707993F), new Vector2(157.352005F, -187.220001F), new Vector2(156.632004F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(155.912003F, -189.908005F), new Vector2(154.921997F, -190.975998F), new Vector2(153.662003F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(152.401993F, -192.559998F), new Vector2(150.992004F, -192.955994F), new Vector2(149.432007F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(148.160004F, -192.955994F), new Vector2(147.001999F, -192.686005F), new Vector2(145.957993F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(144.914001F, -191.606003F), new Vector2(144.074005F, -190.862F), new Vector2(143.438004F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(142.802002F, -188.966003F), new Vector2(142.447998F, -187.867996F), new Vector2(142.376007F, -186.619995F));
+ builder.AddLine(new Vector2(142.376007F, -181.472F));
+ builder.AddCubicBezier(new Vector2(142.447998F, -180.248001F), new Vector2(142.796005F, -179.156006F), new Vector2(143.419998F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(144.044006F, -177.235992F), new Vector2(144.878006F, -176.485992F), new Vector2(145.921997F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(146.966003F, -175.406006F), new Vector2(148.136002F, -175.136002F), new Vector2(149.432007F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(150.992004F, -175.136002F), new Vector2(152.401993F, -175.526001F), new Vector2(153.662003F, -176.306F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0491()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(132.835999F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(134.011993F, -176.395996F), new Vector2(135.020004F, -177.128006F), new Vector2(135.860001F, -178.087997F));
+ builder.AddLine(new Vector2(133.772003F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(133.195999F, -179.539993F), new Vector2(132.505997F, -179.035995F), new Vector2(131.701996F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(130.897995F, -178.363998F), new Vector2(130.016006F, -178.195999F), new Vector2(129.056F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(127.903999F, -178.195999F), new Vector2(126.884003F, -178.442001F), new Vector2(125.996002F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(125.108002F, -179.425995F), new Vector2(124.424004F, -180.121994F), new Vector2(123.944F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(123.463997F, -181.921997F), new Vector2(123.223999F, -182.972F), new Vector2(123.223999F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(123.223999F, -185.348007F), new Vector2(123.452003F, -186.367996F), new Vector2(123.907997F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(124.363998F, -188.095993F), new Vector2(125.012001F, -188.768005F), new Vector2(125.851997F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(126.692001F, -189.727997F), new Vector2(127.664001F, -189.968002F), new Vector2(128.768005F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(129.824005F, -189.968002F), new Vector2(130.723999F, -189.746002F), new Vector2(131.468002F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(132.212006F, -188.858002F), new Vector2(132.787994F, -188.233994F), new Vector2(133.195999F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(133.604004F, -186.626007F), new Vector2(133.807999F, -185.647995F), new Vector2(133.807999F, -184.496002F));
+ builder.AddLine(new Vector2(134.996002F, -185.539993F));
+ builder.AddLine(new Vector2(122.288002F, -185.539993F));
+ builder.AddLine(new Vector2(122.288002F, -182.839996F));
+ builder.AddLine(new Vector2(136.723999F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(136.796005F, -183.175995F), new Vector2(136.843994F, -183.481995F), new Vector2(136.867996F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(136.891998F, -184.033997F), new Vector2(136.904007F, -184.292007F), new Vector2(136.904007F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(136.904007F, -186.164001F), new Vector2(136.561996F, -187.615997F), new Vector2(135.878006F, -188.888F));
+ builder.AddCubicBezier(new Vector2(135.194F, -190.160004F), new Vector2(134.240005F, -191.156006F), new Vector2(133.016006F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(131.792007F, -192.595993F), new Vector2(130.399994F, -192.955994F), new Vector2(128.839996F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(127.183998F, -192.955994F), new Vector2(125.690002F, -192.565994F), new Vector2(124.358002F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(123.026001F, -191.005997F), new Vector2(121.970001F, -189.944F), new Vector2(121.190002F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(120.410004F, -187.255997F), new Vector2(120.019997F, -185.744003F), new Vector2(120.019997F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(120.019997F, -182.360001F), new Vector2(120.416F, -180.835999F), new Vector2(121.208F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(122F, -178.147995F), new Vector2(123.073997F, -177.085999F), new Vector2(124.43F, -176.306F));
+ builder.AddCubicBezier(new Vector2(125.786003F, -175.526001F), new Vector2(127.328003F, -175.136002F), new Vector2(129.056F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(130.399994F, -175.136002F), new Vector2(131.660004F, -175.388F), new Vector2(132.835999F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0492()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(118.760002F, -175.496002F));
+ builder.AddLine(new Vector2(108.608002F, -187.807999F));
+ builder.AddLine(new Vector2(105.403999F, -186.692001F));
+ builder.AddLine(new Vector2(114.475998F, -175.496002F));
+ builder.AddLine(new Vector2(118.760002F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(103.459999F, -175.496002F));
+ builder.AddLine(new Vector2(103.459999F, -200.479996F));
+ builder.AddLine(new Vector2(100.075996F, -200.479996F));
+ builder.AddLine(new Vector2(100.075996F, -175.496002F));
+ builder.AddLine(new Vector2(103.459999F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(109.255997F, -186.367996F));
+ builder.AddCubicBezier(new Vector2(110.839996F, -186.367996F), new Vector2(112.220001F, -186.662003F), new Vector2(113.396004F, -187.25F));
+ builder.AddCubicBezier(new Vector2(114.571999F, -187.837997F), new Vector2(115.477997F, -188.660004F), new Vector2(116.113998F, -189.716003F));
+ builder.AddCubicBezier(new Vector2(116.75F, -190.772003F), new Vector2(117.068001F, -192.007996F), new Vector2(117.068001F, -193.423996F));
+ builder.AddCubicBezier(new Vector2(117.068001F, -194.792007F), new Vector2(116.75F, -196.003998F), new Vector2(116.113998F, -197.059998F));
+ builder.AddCubicBezier(new Vector2(115.477997F, -198.115997F), new Vector2(114.571999F, -198.949997F), new Vector2(113.396004F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(112.220001F, -200.173996F), new Vector2(110.839996F, -200.479996F), new Vector2(109.255997F, -200.479996F));
+ builder.AddLine(new Vector2(102.344002F, -200.479996F));
+ builder.AddLine(new Vector2(102.344002F, -197.528F));
+ builder.AddLine(new Vector2(109.148003F, -197.528F));
+ builder.AddCubicBezier(new Vector2(110.587997F, -197.528F), new Vector2(111.697998F, -197.132004F), new Vector2(112.477997F, -196.339996F));
+ builder.AddCubicBezier(new Vector2(113.258003F, -195.548004F), new Vector2(113.648003F, -194.552002F), new Vector2(113.648003F, -193.352005F));
+ builder.AddCubicBezier(new Vector2(113.648003F, -192.080002F), new Vector2(113.258003F, -191.072006F), new Vector2(112.477997F, -190.328003F));
+ builder.AddCubicBezier(new Vector2(111.697998F, -189.584F), new Vector2(110.575996F, -189.212006F), new Vector2(109.112F, -189.212006F));
+ builder.AddLine(new Vector2(102.344002F, -189.212006F));
+ builder.AddLine(new Vector2(102.344002F, -186.367996F));
+ builder.AddLine(new Vector2(109.255997F, -186.367996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0493()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(86.1259995F, -175.837997F));
+ builder.AddCubicBezier(new Vector2(86.5699997F, -176.306F), new Vector2(86.7919998F, -176.863998F), new Vector2(86.7919998F, -177.511993F));
+ builder.AddCubicBezier(new Vector2(86.7919998F, -178.184006F), new Vector2(86.5699997F, -178.742004F), new Vector2(86.1259995F, -179.186005F));
+ builder.AddCubicBezier(new Vector2(85.6819992F, -179.630005F), new Vector2(85.1240005F, -179.852005F), new Vector2(84.4520035F, -179.852005F));
+ builder.AddCubicBezier(new Vector2(83.7559967F, -179.852005F), new Vector2(83.1920013F, -179.630005F), new Vector2(82.7600021F, -179.186005F));
+ builder.AddCubicBezier(new Vector2(82.3280029F, -178.742004F), new Vector2(82.1119995F, -178.184006F), new Vector2(82.1119995F, -177.511993F));
+ builder.AddCubicBezier(new Vector2(82.1119995F, -176.863998F), new Vector2(82.3280029F, -176.306F), new Vector2(82.7600021F, -175.837997F));
+ builder.AddCubicBezier(new Vector2(83.1920013F, -175.369995F), new Vector2(83.7559967F, -175.136002F), new Vector2(84.4520035F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(85.1240005F, -175.136002F), new Vector2(85.6819992F, -175.369995F), new Vector2(86.1259995F, -175.837997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0494()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(65.1200027F, -175.496002F));
+ builder.AddLine(new Vector2(65.1200027F, -192.595993F));
+ builder.AddLine(new Vector2(61.8800011F, -192.595993F));
+ builder.AddLine(new Vector2(61.8800011F, -175.496002F));
+ builder.AddLine(new Vector2(65.1200027F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(77.2160034F, -175.496002F));
+ builder.AddLine(new Vector2(77.2160034F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(77.2160034F, -187.292007F), new Vector2(76.9280014F, -188.401993F), new Vector2(76.3519974F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(75.776001F, -190.490005F), new Vector2(74.9899979F, -191.335999F), new Vector2(73.9940033F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(72.9980011F, -192.632004F), new Vector2(71.8519974F, -192.955994F), new Vector2(70.5559998F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(69.2600021F, -192.955994F), new Vector2(68.0960007F, -192.662003F), new Vector2(67.064003F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(66.0319977F, -191.485992F), new Vector2(65.2279968F, -190.688004F), new Vector2(64.6520004F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(64.0759964F, -188.671997F), new Vector2(63.7879982F, -187.520004F), new Vector2(63.7879982F, -186.223999F));
+ builder.AddLine(new Vector2(65.1200027F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(65.1200027F, -186.332001F), new Vector2(65.3119965F, -187.100006F), new Vector2(65.6959991F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(66.0800018F, -188.444F), new Vector2(66.6080017F, -188.972F), new Vector2(67.2799988F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(67.9520035F, -189.740005F), new Vector2(68.7200012F, -189.932007F), new Vector2(69.5839996F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(70.8799973F, -189.932007F), new Vector2(71.9300003F, -189.511993F), new Vector2(72.7340012F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(73.538002F, -187.832001F), new Vector2(73.9400024F, -186.764008F), new Vector2(73.9400024F, -185.468002F));
+ builder.AddLine(new Vector2(73.9400024F, -175.496002F));
+ builder.AddLine(new Vector2(77.2160034F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0495()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(46.4720001F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(45.632F, -179.528F), new Vector2(44.9720001F, -180.218002F), new Vector2(44.4920006F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(44.012001F, -181.970001F), new Vector2(43.7719994F, -182.972F), new Vector2(43.7719994F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(43.7719994F, -185.203995F), new Vector2(44.012001F, -186.188004F), new Vector2(44.4920006F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(44.9720001F, -187.916F), new Vector2(45.632F, -188.593994F), new Vector2(46.4720001F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(47.3120003F, -189.578003F), new Vector2(48.2599983F, -189.824005F), new Vector2(49.3160019F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(50.4199982F, -189.824005F), new Vector2(51.3860016F, -189.578003F), new Vector2(52.2140007F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(53.0419998F, -188.593994F), new Vector2(53.7019997F, -187.916F), new Vector2(54.1940002F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(54.6860008F, -186.188004F), new Vector2(54.9319992F, -185.203995F), new Vector2(54.9319992F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(54.9319992F, -182.972F), new Vector2(54.6920013F, -181.970001F), new Vector2(54.2120018F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(53.7319984F, -180.218002F), new Vector2(53.0719986F, -179.528F), new Vector2(52.2319984F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(51.3919983F, -178.520004F), new Vector2(50.4199982F, -178.268005F), new Vector2(49.3160019F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(48.2599983F, -178.268005F), new Vector2(47.3120003F, -178.520004F), new Vector2(46.4720001F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(53.8699989F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(55.2260017F, -177.115997F), new Vector2(56.2999992F, -178.190002F), new Vector2(57.0919991F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(57.8839989F, -180.901993F), new Vector2(58.2799988F, -182.419998F), new Vector2(58.2799988F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(58.2799988F, -185.755997F), new Vector2(57.8839989F, -187.255997F), new Vector2(57.0919991F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(56.2999992F, -189.944F), new Vector2(55.2260017F, -191.005997F), new Vector2(53.8699989F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(52.5139999F, -192.565994F), new Vector2(50.9959984F, -192.955994F), new Vector2(49.3160019F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(47.6599998F, -192.955994F), new Vector2(46.1599998F, -192.559998F), new Vector2(44.8160019F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(43.4720001F, -190.975998F), new Vector2(42.4039993F, -189.914001F), new Vector2(41.6119995F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(40.8199997F, -187.25F), new Vector2(40.4239998F, -185.755997F), new Vector2(40.4239998F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(40.4239998F, -182.419998F), new Vector2(40.8199997F, -180.901993F), new Vector2(41.6119995F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(42.4039993F, -178.190002F), new Vector2(43.4720001F, -177.115997F), new Vector2(44.8160019F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(46.1599998F, -175.531998F), new Vector2(47.6599998F, -175.136002F), new Vector2(49.3160019F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(50.9959984F, -175.136002F), new Vector2(52.5139999F, -175.531998F), new Vector2(53.8699989F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0496()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(36.6080017F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(36.9920006F, -197.005997F), new Vector2(37.1839981F, -197.503998F), new Vector2(37.1839981F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(37.1839981F, -198.679993F), new Vector2(36.9920006F, -199.166F), new Vector2(36.6080017F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(36.223999F, -199.957993F), new Vector2(35.7319984F, -200.156006F), new Vector2(35.132F, -200.156006F));
+ builder.AddCubicBezier(new Vector2(34.5320015F, -200.156006F), new Vector2(34.0400009F, -199.957993F), new Vector2(33.6559982F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(33.2719994F, -199.166F), new Vector2(33.0800018F, -198.679993F), new Vector2(33.0800018F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(33.0800018F, -197.503998F), new Vector2(33.2719994F, -197.005997F), new Vector2(33.6559982F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(34.0400009F, -196.214005F), new Vector2(34.5320015F, -196.016006F), new Vector2(35.132F, -196.016006F));
+ builder.AddCubicBezier(new Vector2(35.7319984F, -196.016006F), new Vector2(36.223999F, -196.214005F), new Vector2(36.6080017F, -196.610001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(36.7519989F, -175.496002F));
+ builder.AddLine(new Vector2(36.7519989F, -192.595993F));
+ builder.AddLine(new Vector2(33.4760017F, -192.595993F));
+ builder.AddLine(new Vector2(33.4760017F, -175.496002F));
+ builder.AddLine(new Vector2(36.7519989F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0497()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(30.3080006F, -189.643997F));
+ builder.AddLine(new Vector2(30.3080006F, -192.595993F));
+ builder.AddLine(new Vector2(18.6439991F, -192.595993F));
+ builder.AddLine(new Vector2(18.6439991F, -189.643997F));
+ builder.AddLine(new Vector2(30.3080006F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(26.0960007F, -175.496002F));
+ builder.AddLine(new Vector2(26.0960007F, -199.759995F));
+ builder.AddLine(new Vector2(22.8560009F, -199.759995F));
+ builder.AddLine(new Vector2(22.8560009F, -175.496002F));
+ builder.AddLine(new Vector2(26.0960007F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0498()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(15.5839996F, -175.496002F));
+ builder.AddLine(new Vector2(15.5839996F, -192.595993F));
+ builder.AddLine(new Vector2(12.3079996F, -192.595993F));
+ builder.AddLine(new Vector2(12.3079996F, -188.419998F));
+ builder.AddLine(new Vector2(12.9200001F, -184.279999F));
+ builder.AddLine(new Vector2(12.3079996F, -180.104004F));
+ builder.AddLine(new Vector2(12.3079996F, -175.496002F));
+ builder.AddLine(new Vector2(15.5839996F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(4.28000021F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(3.44000006F, -179.455994F), new Vector2(2.78600001F, -180.145996F), new Vector2(2.31800008F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(1.85000002F, -181.897995F), new Vector2(1.61600006F, -182.912003F), new Vector2(1.61600006F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(1.61600006F, -185.192001F), new Vector2(1.85000002F, -186.194F), new Vector2(2.31800008F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(2.78600001F, -187.945999F), new Vector2(3.43400002F, -188.636002F), new Vector2(4.26200008F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(5.09000015F, -189.643997F), new Vector2(6.04400015F, -189.895996F), new Vector2(7.12400007F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(8.20400047F, -189.895996F), new Vector2(9.14599991F, -189.649994F), new Vector2(9.94999981F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(10.7539997F, -188.666F), new Vector2(11.3839998F, -187.975998F), new Vector2(11.8400002F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(12.2959995F, -186.199997F), new Vector2(12.5240002F, -185.179993F), new Vector2(12.5240002F, -184.028F));
+ builder.AddCubicBezier(new Vector2(12.5240002F, -182.324005F), new Vector2(12.0319996F, -180.925995F), new Vector2(11.0480003F, -179.834F));
+ builder.AddCubicBezier(new Vector2(10.0640001F, -178.742004F), new Vector2(8.76799965F, -178.195999F), new Vector2(7.15999985F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(6.07999992F, -178.195999F), new Vector2(5.11999989F, -178.447998F), new Vector2(4.28000021F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(10.1120005F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(11.1440001F, -176.485992F), new Vector2(11.9659996F, -177.235992F), new Vector2(12.5780001F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(13.1899996F, -179.156006F), new Vector2(13.5319996F, -180.248001F), new Vector2(13.6040001F, -181.472F));
+ builder.AddLine(new Vector2(13.6040001F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(13.5319996F, -187.867996F), new Vector2(13.184F, -188.966003F), new Vector2(12.5600004F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(11.9359999F, -190.862F), new Vector2(11.1140003F, -191.606003F), new Vector2(10.0939999F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(9.07400036F, -192.686005F), new Vector2(7.91599989F, -192.955994F), new Vector2(6.61999989F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(5.03599977F, -192.955994F), new Vector2(3.61400008F, -192.559998F), new Vector2(2.35400009F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(1.09399998F, -190.975998F), new Vector2(0.0979999974F, -189.908005F), new Vector2(-0.634000003F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-1.36600006F, -187.220001F), new Vector2(-1.73199999F, -185.707993F), new Vector2(-1.73199999F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-1.73199999F, -182.348007F), new Vector2(-1.36600006F, -180.835999F), new Vector2(-0.634000003F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(0.0979999974F, -178.147995F), new Vector2(1.09399998F, -177.085999F), new Vector2(2.35400009F, -176.306F));
+ builder.AddCubicBezier(new Vector2(3.61400008F, -175.526001F), new Vector2(5.03599977F, -175.136002F), new Vector2(6.61999989F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(7.91599989F, -175.136002F), new Vector2(9.07999992F, -175.406006F), new Vector2(10.1120005F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0499()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-10.1560001F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(-9.38799953F, -189.511993F), new Vector2(-8.40400028F, -189.895996F), new Vector2(-7.204F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-6.62799978F, -189.895996F), new Vector2(-6.12400007F, -189.811996F), new Vector2(-5.69199991F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(-5.26000023F, -189.475998F), new Vector2(-4.86399984F, -189.199997F), new Vector2(-4.50400019F, -188.815994F));
+ builder.AddLine(new Vector2(-2.38000011F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-2.98000002F, -191.707993F), new Vector2(-3.62800002F, -192.205994F), new Vector2(-4.32399988F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(-5.01999998F, -192.806F), new Vector2(-5.80000019F, -192.955994F), new Vector2(-6.66400003F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-8.56000042F, -192.955994F), new Vector2(-10.0120001F, -192.307999F), new Vector2(-11.0200005F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-12.0279999F, -189.716003F), new Vector2(-12.5319996F, -187.975998F), new Vector2(-12.5319996F, -185.792007F));
+ builder.AddLine(new Vector2(-11.3079996F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(-11.3079996F, -186.800003F), new Vector2(-10.9239998F, -187.975998F), new Vector2(-10.1560001F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-11.3079996F, -175.496002F));
+ builder.AddLine(new Vector2(-11.3079996F, -192.595993F));
+ builder.AddLine(new Vector2(-14.5480003F, -192.595993F));
+ builder.AddLine(new Vector2(-14.5480003F, -175.496002F));
+ builder.AddLine(new Vector2(-11.3079996F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0500()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-17.7159996F, -189.643997F));
+ builder.AddLine(new Vector2(-17.7159996F, -192.595993F));
+ builder.AddLine(new Vector2(-29.3799992F, -192.595993F));
+ builder.AddLine(new Vector2(-29.3799992F, -189.643997F));
+ builder.AddLine(new Vector2(-17.7159996F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-21.9279995F, -175.496002F));
+ builder.AddLine(new Vector2(-21.9279995F, -199.759995F));
+ builder.AddLine(new Vector2(-25.1679993F, -199.759995F));
+ builder.AddLine(new Vector2(-25.1679993F, -175.496002F));
+ builder.AddLine(new Vector2(-21.9279995F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0501()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-33.1419983F, -176.539993F));
+ builder.AddCubicBezier(new Vector2(-32.0019989F, -177.475998F), new Vector2(-31.4319992F, -178.748001F), new Vector2(-31.4319992F, -180.356003F));
+ builder.AddCubicBezier(new Vector2(-31.4319992F, -181.412003F), new Vector2(-31.6539993F, -182.264008F), new Vector2(-32.0979996F, -182.912003F));
+ builder.AddCubicBezier(new Vector2(-32.5419998F, -183.559998F), new Vector2(-33.1119995F, -184.076004F), new Vector2(-33.8079987F, -184.460007F));
+ builder.AddCubicBezier(new Vector2(-34.5040016F, -184.843994F), new Vector2(-35.2360001F, -185.149994F), new Vector2(-36.0040016F, -185.378006F));
+ builder.AddCubicBezier(new Vector2(-36.7719994F, -185.606003F), new Vector2(-37.5099983F, -185.828003F), new Vector2(-38.2179985F, -186.044006F));
+ builder.AddCubicBezier(new Vector2(-38.9259987F, -186.259995F), new Vector2(-39.4959984F, -186.524002F), new Vector2(-39.9280014F, -186.835999F));
+ builder.AddCubicBezier(new Vector2(-40.3600006F, -187.147995F), new Vector2(-40.5760002F, -187.591995F), new Vector2(-40.5760002F, -188.167999F));
+ builder.AddCubicBezier(new Vector2(-40.5760002F, -188.720001F), new Vector2(-40.3300018F, -189.164001F), new Vector2(-39.8380013F, -189.5F));
+ builder.AddCubicBezier(new Vector2(-39.3460007F, -189.835999F), new Vector2(-38.632F, -190.003998F), new Vector2(-37.6959991F, -190.003998F));
+ builder.AddCubicBezier(new Vector2(-36.8079987F, -190.003998F), new Vector2(-36.0159988F, -189.835999F), new Vector2(-35.3199997F, -189.5F));
+ builder.AddCubicBezier(new Vector2(-34.6240005F, -189.164001F), new Vector2(-34.0239983F, -188.684006F), new Vector2(-33.5200005F, -188.059998F));
+ builder.AddLine(new Vector2(-31.4319992F, -190.147995F));
+ builder.AddCubicBezier(new Vector2(-32.1040001F, -191.084F), new Vector2(-32.9620018F, -191.785995F), new Vector2(-34.0060005F, -192.253998F));
+ builder.AddCubicBezier(new Vector2(-35.0499992F, -192.722F), new Vector2(-36.2439995F, -192.955994F), new Vector2(-37.5880013F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-38.8600006F, -192.955994F), new Vector2(-39.9519997F, -192.751999F), new Vector2(-40.8639984F, -192.343994F));
+ builder.AddCubicBezier(new Vector2(-41.776001F, -191.936005F), new Vector2(-42.4780006F, -191.354004F), new Vector2(-42.9700012F, -190.598007F));
+ builder.AddCubicBezier(new Vector2(-43.4620018F, -189.841995F), new Vector2(-43.7080002F, -188.947998F), new Vector2(-43.7080002F, -187.916F));
+ builder.AddCubicBezier(new Vector2(-43.7080002F, -186.884003F), new Vector2(-43.4860001F, -186.050003F), new Vector2(-43.0419998F, -185.414001F));
+ builder.AddCubicBezier(new Vector2(-42.5979996F, -184.778F), new Vector2(-42.0279999F, -184.279999F), new Vector2(-41.3320007F, -183.919998F));
+ builder.AddCubicBezier(new Vector2(-40.6360016F, -183.559998F), new Vector2(-39.8979988F, -183.272003F), new Vector2(-39.118F, -183.056F));
+ builder.AddCubicBezier(new Vector2(-38.3380013F, -182.839996F), new Vector2(-37.5999985F, -182.617996F), new Vector2(-36.9039993F, -182.389999F));
+ builder.AddCubicBezier(new Vector2(-36.2080002F, -182.162003F), new Vector2(-35.6380005F, -181.873993F), new Vector2(-35.1940002F, -181.526001F));
+ builder.AddCubicBezier(new Vector2(-34.75F, -181.177994F), new Vector2(-34.5279999F, -180.692001F), new Vector2(-34.5279999F, -180.067993F));
+ builder.AddCubicBezier(new Vector2(-34.5279999F, -179.444F), new Vector2(-34.8040009F, -178.957993F), new Vector2(-35.355999F, -178.610001F));
+ builder.AddCubicBezier(new Vector2(-35.9080009F, -178.261993F), new Vector2(-36.6879997F, -178.087997F), new Vector2(-37.6959991F, -178.087997F));
+ builder.AddCubicBezier(new Vector2(-38.7039986F, -178.087997F), new Vector2(-39.6160011F, -178.274002F), new Vector2(-40.4319992F, -178.645996F));
+ builder.AddCubicBezier(new Vector2(-41.2480011F, -179.018005F), new Vector2(-41.9679985F, -179.587997F), new Vector2(-42.5919991F, -180.356003F));
+ builder.AddLine(new Vector2(-44.6800003F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-44.1520004F, -177.619995F), new Vector2(-43.5340004F, -177.061996F), new Vector2(-42.8260002F, -176.593994F));
+ builder.AddCubicBezier(new Vector2(-42.118F, -176.126007F), new Vector2(-41.3320007F, -175.766006F), new Vector2(-40.4679985F, -175.514008F));
+ builder.AddCubicBezier(new Vector2(-39.6040001F, -175.261993F), new Vector2(-38.6920013F, -175.136002F), new Vector2(-37.7319984F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-35.8120003F, -175.136002F), new Vector2(-34.2820015F, -175.604004F), new Vector2(-33.1419983F, -176.539993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0502()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-59.6559982F, -175.496002F));
+ builder.AddLine(new Vector2(-59.6559982F, -192.595993F));
+ builder.AddLine(new Vector2(-62.8959999F, -192.595993F));
+ builder.AddLine(new Vector2(-62.8959999F, -175.496002F));
+ builder.AddLine(new Vector2(-59.6559982F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-47.5600014F, -175.496002F));
+ builder.AddLine(new Vector2(-47.5600014F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-47.5600014F, -187.292007F), new Vector2(-47.8479996F, -188.401993F), new Vector2(-48.4239998F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(-49F, -190.490005F), new Vector2(-49.7859993F, -191.335999F), new Vector2(-50.7820015F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(-51.7779999F, -192.632004F), new Vector2(-52.9239998F, -192.955994F), new Vector2(-54.2200012F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-55.5159988F, -192.955994F), new Vector2(-56.6800003F, -192.662003F), new Vector2(-57.7120018F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-58.7439995F, -191.485992F), new Vector2(-59.5480003F, -190.688004F), new Vector2(-60.1240005F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-60.7000008F, -188.671997F), new Vector2(-60.987999F, -187.520004F), new Vector2(-60.987999F, -186.223999F));
+ builder.AddLine(new Vector2(-59.6559982F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-59.6559982F, -186.332001F), new Vector2(-59.4640007F, -187.100006F), new Vector2(-59.0800018F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-58.6959991F, -188.444F), new Vector2(-58.1679993F, -188.972F), new Vector2(-57.4959984F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-56.8240013F, -189.740005F), new Vector2(-56.0559998F, -189.932007F), new Vector2(-55.1920013F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-53.8959999F, -189.932007F), new Vector2(-52.8460007F, -189.511993F), new Vector2(-52.0419998F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-51.237999F, -187.832001F), new Vector2(-50.8359985F, -186.764008F), new Vector2(-50.8359985F, -185.468002F));
+ builder.AddLine(new Vector2(-50.8359985F, -175.496002F));
+ builder.AddLine(new Vector2(-47.5600014F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0503()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-78.3040009F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-79.1439972F, -179.528F), new Vector2(-79.8040009F, -180.218002F), new Vector2(-80.2839966F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-80.7639999F, -181.970001F), new Vector2(-81.0039978F, -182.972F), new Vector2(-81.0039978F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-81.0039978F, -185.203995F), new Vector2(-80.7639999F, -186.188004F), new Vector2(-80.2839966F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-79.8040009F, -187.916F), new Vector2(-79.1439972F, -188.593994F), new Vector2(-78.3040009F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-77.4639969F, -189.578003F), new Vector2(-76.5159988F, -189.824005F), new Vector2(-75.4599991F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-74.3560028F, -189.824005F), new Vector2(-73.3899994F, -189.578003F), new Vector2(-72.5619965F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-71.7340012F, -188.593994F), new Vector2(-71.0739975F, -187.916F), new Vector2(-70.5820007F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-70.0899963F, -186.188004F), new Vector2(-69.8440018F, -185.203995F), new Vector2(-69.8440018F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-69.8440018F, -182.972F), new Vector2(-70.0839996F, -181.970001F), new Vector2(-70.564003F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-71.0439987F, -180.218002F), new Vector2(-71.7040024F, -179.528F), new Vector2(-72.5439987F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-73.3840027F, -178.520004F), new Vector2(-74.3560028F, -178.268005F), new Vector2(-75.4599991F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-76.5159988F, -178.268005F), new Vector2(-77.4639969F, -178.520004F), new Vector2(-78.3040009F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-70.9059982F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-69.5500031F, -177.115997F), new Vector2(-68.4759979F, -178.190002F), new Vector2(-67.6839981F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-66.8919983F, -180.901993F), new Vector2(-66.4960022F, -182.419998F), new Vector2(-66.4960022F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-66.4960022F, -185.755997F), new Vector2(-66.8919983F, -187.255997F), new Vector2(-67.6839981F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-68.4759979F, -189.944F), new Vector2(-69.5500031F, -191.005997F), new Vector2(-70.9059982F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-72.262001F, -192.565994F), new Vector2(-73.7799988F, -192.955994F), new Vector2(-75.4599991F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-77.1159973F, -192.955994F), new Vector2(-78.6159973F, -192.559998F), new Vector2(-79.9599991F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-81.3040009F, -190.975998F), new Vector2(-82.3720016F, -189.914001F), new Vector2(-83.1640015F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(-83.9560013F, -187.25F), new Vector2(-84.3519974F, -185.755997F), new Vector2(-84.3519974F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-84.3519974F, -182.419998F), new Vector2(-83.9560013F, -180.901993F), new Vector2(-83.1640015F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-82.3720016F, -178.190002F), new Vector2(-81.3040009F, -177.115997F), new Vector2(-79.9599991F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-78.6159973F, -175.531998F), new Vector2(-77.1159973F, -175.136002F), new Vector2(-75.4599991F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-73.7799988F, -175.136002F), new Vector2(-72.262001F, -175.531998F), new Vector2(-70.9059982F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0504()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-87.6279984F, -175.496002F));
+ builder.AddLine(new Vector2(-87.6279984F, -186.475998F));
+ builder.AddCubicBezier(new Vector2(-87.6279984F, -187.820007F), new Vector2(-87.9219971F, -188.972F), new Vector2(-88.5100021F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-89.0979996F, -190.891998F), new Vector2(-89.8840027F, -191.636002F), new Vector2(-90.8679962F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(-91.8519974F, -192.692001F), new Vector2(-92.9680023F, -192.955994F), new Vector2(-94.2160034F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-95.4160004F, -192.955994F), new Vector2(-96.5199966F, -192.686005F), new Vector2(-97.5279999F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-98.5360031F, -191.606003F), new Vector2(-99.3580017F, -190.862F), new Vector2(-99.9940033F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-100.629997F, -188.966003F), new Vector2(-100.984001F, -187.832001F), new Vector2(-101.056F, -186.511993F));
+ builder.AddLine(new Vector2(-99.2200012F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(-99.2200012F, -186.692001F), new Vector2(-99.0279999F, -187.423996F), new Vector2(-98.6439972F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(-98.2600021F, -188.623993F), new Vector2(-97.75F, -189.091995F), new Vector2(-97.1139984F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(-96.4779968F, -189.764008F), new Vector2(-95.7639999F, -189.932007F), new Vector2(-94.9720001F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-93.8199997F, -189.932007F), new Vector2(-92.8539963F, -189.565994F), new Vector2(-92.0739975F, -188.834F));
+ builder.AddCubicBezier(new Vector2(-91.2939987F, -188.102005F), new Vector2(-90.9039993F, -187.100006F), new Vector2(-90.9039993F, -185.828003F));
+ builder.AddLine(new Vector2(-90.9039993F, -175.496002F));
+ builder.AddLine(new Vector2(-87.6279984F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-99.2200012F, -175.496002F));
+ builder.AddLine(new Vector2(-99.2200012F, -186.511993F));
+ builder.AddCubicBezier(new Vector2(-99.2200012F, -187.832001F), new Vector2(-99.5019989F, -188.972F), new Vector2(-100.066002F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-100.629997F, -190.891998F), new Vector2(-101.398003F, -191.636002F), new Vector2(-102.370003F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(-103.342003F, -192.692001F), new Vector2(-104.428001F, -192.955994F), new Vector2(-105.627998F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-106.851997F, -192.955994F), new Vector2(-107.956001F, -192.686005F), new Vector2(-108.940002F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-109.924004F, -191.606003F), new Vector2(-110.697998F, -190.856003F), new Vector2(-111.262001F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-111.825996F, -188.936005F), new Vector2(-112.108002F, -187.807999F), new Vector2(-112.108002F, -186.511993F));
+ builder.AddLine(new Vector2(-110.776001F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(-110.776001F, -186.692001F), new Vector2(-110.584F, -187.423996F), new Vector2(-110.199997F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(-109.816002F, -188.623993F), new Vector2(-109.311996F, -189.091995F), new Vector2(-108.688004F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(-108.064003F, -189.764008F), new Vector2(-107.356003F, -189.932007F), new Vector2(-106.564003F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-105.388F, -189.932007F), new Vector2(-104.410004F, -189.565994F), new Vector2(-103.629997F, -188.834F));
+ builder.AddCubicBezier(new Vector2(-102.849998F, -188.102005F), new Vector2(-102.459999F, -187.100006F), new Vector2(-102.459999F, -185.828003F));
+ builder.AddLine(new Vector2(-102.459999F, -175.496002F));
+ builder.AddLine(new Vector2(-99.2200012F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-110.776001F, -175.496002F));
+ builder.AddLine(new Vector2(-110.776001F, -192.595993F));
+ builder.AddLine(new Vector2(-114.015999F, -192.595993F));
+ builder.AddLine(new Vector2(-114.015999F, -175.496002F));
+ builder.AddLine(new Vector2(-110.776001F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0505()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-121.612F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-120.435997F, -176.395996F), new Vector2(-119.428001F, -177.128006F), new Vector2(-118.587997F, -178.087997F));
+ builder.AddLine(new Vector2(-120.676003F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-121.251999F, -179.539993F), new Vector2(-121.942001F, -179.035995F), new Vector2(-122.746002F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-123.550003F, -178.363998F), new Vector2(-124.431999F, -178.195999F), new Vector2(-125.391998F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-126.543999F, -178.195999F), new Vector2(-127.564003F, -178.442001F), new Vector2(-128.451996F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-129.339996F, -179.425995F), new Vector2(-130.024002F, -180.121994F), new Vector2(-130.503998F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-130.983994F, -181.921997F), new Vector2(-131.223999F, -182.972F), new Vector2(-131.223999F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-131.223999F, -185.348007F), new Vector2(-130.996002F, -186.367996F), new Vector2(-130.539993F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-130.084F, -188.095993F), new Vector2(-129.436005F, -188.768005F), new Vector2(-128.595993F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-127.755997F, -189.727997F), new Vector2(-126.783997F, -189.968002F), new Vector2(-125.68F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-124.624001F, -189.968002F), new Vector2(-123.723999F, -189.746002F), new Vector2(-122.980003F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-122.236F, -188.858002F), new Vector2(-121.660004F, -188.233994F), new Vector2(-121.251999F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-120.844002F, -186.626007F), new Vector2(-120.639999F, -185.647995F), new Vector2(-120.639999F, -184.496002F));
+ builder.AddLine(new Vector2(-119.452003F, -185.539993F));
+ builder.AddLine(new Vector2(-132.160004F, -185.539993F));
+ builder.AddLine(new Vector2(-132.160004F, -182.839996F));
+ builder.AddLine(new Vector2(-117.723999F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-117.652F, -183.175995F), new Vector2(-117.603996F, -183.481995F), new Vector2(-117.580002F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-117.556F, -184.033997F), new Vector2(-117.543999F, -184.292007F), new Vector2(-117.543999F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-117.543999F, -186.164001F), new Vector2(-117.886002F, -187.615997F), new Vector2(-118.57F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-119.253998F, -190.160004F), new Vector2(-120.208F, -191.156006F), new Vector2(-121.431999F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-122.655998F, -192.595993F), new Vector2(-124.047997F, -192.955994F), new Vector2(-125.608002F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-127.264F, -192.955994F), new Vector2(-128.757996F, -192.565994F), new Vector2(-130.089996F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-131.421997F, -191.005997F), new Vector2(-132.477997F, -189.944F), new Vector2(-133.257996F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-134.037994F, -187.255997F), new Vector2(-134.427994F, -185.744003F), new Vector2(-134.427994F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-134.427994F, -182.360001F), new Vector2(-134.031998F, -180.835999F), new Vector2(-133.240005F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-132.447998F, -178.147995F), new Vector2(-131.373993F, -177.085999F), new Vector2(-130.018005F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-128.662003F, -175.526001F), new Vector2(-127.120003F, -175.136002F), new Vector2(-125.391998F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-124.047997F, -175.136002F), new Vector2(-122.788002F, -175.388F), new Vector2(-121.612F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0506()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-138.028F, -201.199997F));
+ builder.AddLine(new Vector2(-141.304001F, -201.199997F));
+ builder.AddLine(new Vector2(-141.304001F, -188.419998F));
+ builder.AddLine(new Vector2(-140.692001F, -184.279999F));
+ builder.AddLine(new Vector2(-141.304001F, -180.104004F));
+ builder.AddLine(new Vector2(-141.304001F, -175.496002F));
+ builder.AddLine(new Vector2(-138.028F, -175.496002F));
+ builder.AddLine(new Vector2(-138.028F, -201.199997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-149.350006F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-150.177994F, -179.425995F), new Vector2(-150.826004F, -180.115997F), new Vector2(-151.294006F, -181.003998F));
+ builder.AddCubicBezier(new Vector2(-151.761993F, -181.891998F), new Vector2(-151.996002F, -182.912003F), new Vector2(-151.996002F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-151.996002F, -185.216003F), new Vector2(-151.761993F, -186.229996F), new Vector2(-151.294006F, -187.106003F));
+ builder.AddCubicBezier(new Vector2(-150.826004F, -187.981995F), new Vector2(-150.184006F, -188.666F), new Vector2(-149.367996F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-148.552002F, -189.649994F), new Vector2(-147.604004F, -189.895996F), new Vector2(-146.524002F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-145.444F, -189.895996F), new Vector2(-144.496002F, -189.643997F), new Vector2(-143.679993F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-142.863998F, -188.636002F), new Vector2(-142.227997F, -187.945999F), new Vector2(-141.772003F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-141.315994F, -186.194F), new Vector2(-141.087997F, -185.179993F), new Vector2(-141.087997F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-141.087997F, -182.899994F), new Vector2(-141.315994F, -181.897995F), new Vector2(-141.772003F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-142.227997F, -180.145996F), new Vector2(-142.863998F, -179.455994F), new Vector2(-143.679993F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-144.496002F, -178.447998F), new Vector2(-145.444F, -178.195999F), new Vector2(-146.524002F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-147.580002F, -178.195999F), new Vector2(-148.522003F, -178.442001F), new Vector2(-149.350006F, -178.934006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-143.535995F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-142.503998F, -176.485992F), new Vector2(-141.675995F, -177.235992F), new Vector2(-141.052002F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-140.427994F, -179.156006F), new Vector2(-140.080002F, -180.248001F), new Vector2(-140.007996F, -181.472F));
+ builder.AddLine(new Vector2(-140.007996F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-140.080002F, -187.867996F), new Vector2(-140.434006F, -188.966003F), new Vector2(-141.070007F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-141.705994F, -190.862F), new Vector2(-142.539993F, -191.606003F), new Vector2(-143.572006F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-144.604004F, -192.686005F), new Vector2(-145.768005F, -192.955994F), new Vector2(-147.063995F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-148.623993F, -192.955994F), new Vector2(-150.028F, -192.559998F), new Vector2(-151.276001F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-152.524002F, -190.975998F), new Vector2(-153.514008F, -189.908005F), new Vector2(-154.246002F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-154.977997F, -187.220001F), new Vector2(-155.343994F, -185.707993F), new Vector2(-155.343994F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-155.343994F, -182.348007F), new Vector2(-154.977997F, -180.835999F), new Vector2(-154.246002F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-153.514008F, -178.147995F), new Vector2(-152.524002F, -177.085999F), new Vector2(-151.276001F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-150.028F, -175.526001F), new Vector2(-148.623993F, -175.136002F), new Vector2(-147.063995F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-145.744003F, -175.136002F), new Vector2(-144.567993F, -175.406006F), new Vector2(-143.535995F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0507()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-169.311996F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-168.136002F, -176.395996F), new Vector2(-167.128006F, -177.128006F), new Vector2(-166.287994F, -178.087997F));
+ builder.AddLine(new Vector2(-168.376007F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-168.951996F, -179.539993F), new Vector2(-169.641998F, -179.035995F), new Vector2(-170.445999F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-171.25F, -178.363998F), new Vector2(-172.132004F, -178.195999F), new Vector2(-173.091995F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-174.244003F, -178.195999F), new Vector2(-175.264008F, -178.442001F), new Vector2(-176.151993F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-177.039993F, -179.425995F), new Vector2(-177.723999F, -180.121994F), new Vector2(-178.203995F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-178.684006F, -181.921997F), new Vector2(-178.923996F, -182.972F), new Vector2(-178.923996F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-178.923996F, -185.348007F), new Vector2(-178.695999F, -186.367996F), new Vector2(-178.240005F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-177.783997F, -188.095993F), new Vector2(-177.136002F, -188.768005F), new Vector2(-176.296005F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-175.455994F, -189.727997F), new Vector2(-174.483994F, -189.968002F), new Vector2(-173.380005F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-172.324005F, -189.968002F), new Vector2(-171.423996F, -189.746002F), new Vector2(-170.679993F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-169.936005F, -188.858002F), new Vector2(-169.360001F, -188.233994F), new Vector2(-168.951996F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-168.544006F, -186.626007F), new Vector2(-168.339996F, -185.647995F), new Vector2(-168.339996F, -184.496002F));
+ builder.AddLine(new Vector2(-167.151993F, -185.539993F));
+ builder.AddLine(new Vector2(-179.860001F, -185.539993F));
+ builder.AddLine(new Vector2(-179.860001F, -182.839996F));
+ builder.AddLine(new Vector2(-165.423996F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-165.352005F, -183.175995F), new Vector2(-165.304001F, -183.481995F), new Vector2(-165.279999F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-165.255997F, -184.033997F), new Vector2(-165.244003F, -184.292007F), new Vector2(-165.244003F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-165.244003F, -186.164001F), new Vector2(-165.585999F, -187.615997F), new Vector2(-166.270004F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-166.953995F, -190.160004F), new Vector2(-167.908005F, -191.156006F), new Vector2(-169.132004F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-170.356003F, -192.595993F), new Vector2(-171.748001F, -192.955994F), new Vector2(-173.307999F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-174.964005F, -192.955994F), new Vector2(-176.457993F, -192.565994F), new Vector2(-177.789993F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-179.121994F, -191.005997F), new Vector2(-180.177994F, -189.944F), new Vector2(-180.957993F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-181.738007F, -187.255997F), new Vector2(-182.128006F, -185.744003F), new Vector2(-182.128006F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-182.128006F, -182.360001F), new Vector2(-181.731995F, -180.835999F), new Vector2(-180.940002F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-180.147995F, -178.147995F), new Vector2(-179.074005F, -177.085999F), new Vector2(-177.718002F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-176.362F, -175.526001F), new Vector2(-174.820007F, -175.136002F), new Vector2(-173.091995F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-171.748001F, -175.136002F), new Vector2(-170.488007F, -175.388F), new Vector2(-169.311996F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0508()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-197.5F, -175.496002F));
+ builder.AddLine(new Vector2(-197.5F, -201.199997F));
+ builder.AddLine(new Vector2(-200.740005F, -201.199997F));
+ builder.AddLine(new Vector2(-200.740005F, -175.496002F));
+ builder.AddLine(new Vector2(-197.5F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-185.404007F, -175.496002F));
+ builder.AddLine(new Vector2(-185.404007F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-185.404007F, -187.460007F), new Vector2(-185.692001F, -188.647995F), new Vector2(-186.268005F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-186.843994F, -190.712006F), new Vector2(-187.630005F, -191.516006F), new Vector2(-188.626007F, -192.091995F));
+ builder.AddCubicBezier(new Vector2(-189.621994F, -192.667999F), new Vector2(-190.768005F, -192.955994F), new Vector2(-192.063995F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-193.360001F, -192.955994F), new Vector2(-194.524002F, -192.662003F), new Vector2(-195.556F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-196.587997F, -191.485992F), new Vector2(-197.391998F, -190.688004F), new Vector2(-197.968002F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-198.544006F, -188.671997F), new Vector2(-198.832001F, -187.520004F), new Vector2(-198.832001F, -186.223999F));
+ builder.AddLine(new Vector2(-197.5F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-197.5F, -186.332001F), new Vector2(-197.307999F, -187.100006F), new Vector2(-196.923996F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-196.539993F, -188.444F), new Vector2(-196.011993F, -188.972F), new Vector2(-195.339996F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-194.667999F, -189.740005F), new Vector2(-193.899994F, -189.932007F), new Vector2(-193.035995F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-191.740005F, -189.932007F), new Vector2(-190.690002F, -189.511993F), new Vector2(-189.886002F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-189.082001F, -187.832001F), new Vector2(-188.679993F, -186.764008F), new Vector2(-188.679993F, -185.468002F));
+ builder.AddLine(new Vector2(-188.679993F, -175.496002F));
+ builder.AddLine(new Vector2(-185.404007F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0509()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-203.908005F, -189.643997F));
+ builder.AddLine(new Vector2(-203.908005F, -192.595993F));
+ builder.AddLine(new Vector2(-215.572006F, -192.595993F));
+ builder.AddLine(new Vector2(-215.572006F, -189.643997F));
+ builder.AddLine(new Vector2(-203.908005F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-208.119995F, -175.496002F));
+ builder.AddLine(new Vector2(-208.119995F, -199.759995F));
+ builder.AddLine(new Vector2(-211.360001F, -199.759995F));
+ builder.AddLine(new Vector2(-211.360001F, -175.496002F));
+ builder.AddLine(new Vector2(-208.119995F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0510()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-224.679993F, -189.643997F));
+ builder.AddLine(new Vector2(-224.679993F, -192.595993F));
+ builder.AddLine(new Vector2(-237.567993F, -192.595993F));
+ builder.AddLine(new Vector2(-237.567993F, -189.643997F));
+ builder.AddLine(new Vector2(-224.679993F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-230.115997F, -175.496002F));
+ builder.AddLine(new Vector2(-230.115997F, -195.151993F));
+ builder.AddCubicBezier(new Vector2(-230.115997F, -196.207993F), new Vector2(-229.834F, -197.029999F), new Vector2(-229.270004F, -197.617996F));
+ builder.AddCubicBezier(new Vector2(-228.705994F, -198.205994F), new Vector2(-227.908005F, -198.5F), new Vector2(-226.876007F, -198.5F));
+ builder.AddCubicBezier(new Vector2(-226.324005F, -198.5F), new Vector2(-225.856003F, -198.416F), new Vector2(-225.472F, -198.248001F));
+ builder.AddCubicBezier(new Vector2(-225.087997F, -198.080002F), new Vector2(-224.740005F, -197.828003F), new Vector2(-224.427994F, -197.492004F));
+ builder.AddLine(new Vector2(-222.304001F, -199.580002F));
+ builder.AddCubicBezier(new Vector2(-222.904007F, -200.227997F), new Vector2(-223.563995F, -200.720001F), new Vector2(-224.283997F, -201.056F));
+ builder.AddCubicBezier(new Vector2(-225.003998F, -201.391998F), new Vector2(-225.856003F, -201.559998F), new Vector2(-226.839996F, -201.559998F));
+ builder.AddCubicBezier(new Vector2(-228.136002F, -201.559998F), new Vector2(-229.276001F, -201.283997F), new Vector2(-230.259995F, -200.731995F));
+ builder.AddCubicBezier(new Vector2(-231.244003F, -200.179993F), new Vector2(-232.011993F, -199.423996F), new Vector2(-232.563995F, -198.464005F));
+ builder.AddCubicBezier(new Vector2(-233.115997F, -197.503998F), new Vector2(-233.391998F, -196.399994F), new Vector2(-233.391998F, -195.151993F));
+ builder.AddLine(new Vector2(-233.391998F, -175.496002F));
+ builder.AddLine(new Vector2(-230.115997F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0511()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-250.671997F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-251.511993F, -179.528F), new Vector2(-252.171997F, -180.218002F), new Vector2(-252.651993F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-253.132004F, -181.970001F), new Vector2(-253.371994F, -182.972F), new Vector2(-253.371994F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-253.371994F, -185.203995F), new Vector2(-253.132004F, -186.188004F), new Vector2(-252.651993F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-252.171997F, -187.916F), new Vector2(-251.511993F, -188.593994F), new Vector2(-250.671997F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-249.832001F, -189.578003F), new Vector2(-248.884003F, -189.824005F), new Vector2(-247.828003F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-246.723999F, -189.824005F), new Vector2(-245.757996F, -189.578003F), new Vector2(-244.929993F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-244.102005F, -188.593994F), new Vector2(-243.442001F, -187.916F), new Vector2(-242.949997F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-242.457993F, -186.188004F), new Vector2(-242.212006F, -185.203995F), new Vector2(-242.212006F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-242.212006F, -182.972F), new Vector2(-242.451996F, -181.970001F), new Vector2(-242.932007F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-243.412003F, -180.218002F), new Vector2(-244.072006F, -179.528F), new Vector2(-244.912003F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-245.751999F, -178.520004F), new Vector2(-246.723999F, -178.268005F), new Vector2(-247.828003F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-248.884003F, -178.268005F), new Vector2(-249.832001F, -178.520004F), new Vector2(-250.671997F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-243.274002F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-241.917999F, -177.115997F), new Vector2(-240.843994F, -178.190002F), new Vector2(-240.052002F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-239.259995F, -180.901993F), new Vector2(-238.863998F, -182.419998F), new Vector2(-238.863998F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-238.863998F, -185.755997F), new Vector2(-239.259995F, -187.255997F), new Vector2(-240.052002F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-240.843994F, -189.944F), new Vector2(-241.917999F, -191.005997F), new Vector2(-243.274002F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-244.630005F, -192.565994F), new Vector2(-246.147995F, -192.955994F), new Vector2(-247.828003F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-249.483994F, -192.955994F), new Vector2(-250.983994F, -192.559998F), new Vector2(-252.328003F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-253.671997F, -190.975998F), new Vector2(-254.740005F, -189.914001F), new Vector2(-255.531998F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(-256.324005F, -187.25F), new Vector2(-256.720001F, -185.755997F), new Vector2(-256.720001F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-256.720001F, -182.419998F), new Vector2(-256.324005F, -180.901993F), new Vector2(-255.531998F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-254.740005F, -178.190002F), new Vector2(-253.671997F, -177.115997F), new Vector2(-252.328003F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-250.983994F, -175.531998F), new Vector2(-249.483994F, -175.136002F), new Vector2(-247.828003F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-246.147995F, -175.136002F), new Vector2(-244.630005F, -175.531998F), new Vector2(-243.274002F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0512()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-266.223999F, -189.643997F));
+ builder.AddLine(new Vector2(-266.223999F, -192.595993F));
+ builder.AddLine(new Vector2(-277.888F, -192.595993F));
+ builder.AddLine(new Vector2(-277.888F, -189.643997F));
+ builder.AddLine(new Vector2(-266.223999F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-270.436005F, -175.496002F));
+ builder.AddLine(new Vector2(-270.436005F, -199.759995F));
+ builder.AddLine(new Vector2(-273.675995F, -199.759995F));
+ builder.AddLine(new Vector2(-273.675995F, -175.496002F));
+ builder.AddLine(new Vector2(-270.436005F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0513()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-286.312012F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(-285.544006F, -189.511993F), new Vector2(-284.559998F, -189.895996F), new Vector2(-283.359985F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-282.783997F, -189.895996F), new Vector2(-282.279999F, -189.811996F), new Vector2(-281.847992F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(-281.415985F, -189.475998F), new Vector2(-281.019989F, -189.199997F), new Vector2(-280.660004F, -188.815994F));
+ builder.AddLine(new Vector2(-278.536011F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-279.135986F, -191.707993F), new Vector2(-279.783997F, -192.205994F), new Vector2(-280.480011F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(-281.175995F, -192.806F), new Vector2(-281.955994F, -192.955994F), new Vector2(-282.820007F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-284.716003F, -192.955994F), new Vector2(-286.167999F, -192.307999F), new Vector2(-287.175995F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-288.18399F, -189.716003F), new Vector2(-288.687988F, -187.975998F), new Vector2(-288.687988F, -185.792007F));
+ builder.AddLine(new Vector2(-287.463989F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(-287.463989F, -186.800003F), new Vector2(-287.079987F, -187.975998F), new Vector2(-286.312012F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-287.463989F, -175.496002F));
+ builder.AddLine(new Vector2(-287.463989F, -192.595993F));
+ builder.AddLine(new Vector2(-290.70401F, -192.595993F));
+ builder.AddLine(new Vector2(-290.70401F, -175.496002F));
+ builder.AddLine(new Vector2(-287.463989F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0514()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-295.420013F, -175.496002F));
+ builder.AddLine(new Vector2(-295.420013F, -192.595993F));
+ builder.AddLine(new Vector2(-298.696014F, -192.595993F));
+ builder.AddLine(new Vector2(-298.696014F, -188.419998F));
+ builder.AddLine(new Vector2(-298.084015F, -184.279999F));
+ builder.AddLine(new Vector2(-298.696014F, -180.104004F));
+ builder.AddLine(new Vector2(-298.696014F, -175.496002F));
+ builder.AddLine(new Vector2(-295.420013F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-306.723999F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-307.563995F, -179.455994F), new Vector2(-308.217987F, -180.145996F), new Vector2(-308.686005F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-309.153992F, -181.897995F), new Vector2(-309.388F, -182.912003F), new Vector2(-309.388F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-309.388F, -185.192001F), new Vector2(-309.153992F, -186.194F), new Vector2(-308.686005F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-308.217987F, -187.945999F), new Vector2(-307.570007F, -188.636002F), new Vector2(-306.742004F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-305.914001F, -189.643997F), new Vector2(-304.959991F, -189.895996F), new Vector2(-303.880005F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-302.799988F, -189.895996F), new Vector2(-301.858002F, -189.649994F), new Vector2(-301.053986F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-300.25F, -188.666F), new Vector2(-299.619995F, -187.975998F), new Vector2(-299.164001F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(-298.708008F, -186.199997F), new Vector2(-298.480011F, -185.179993F), new Vector2(-298.480011F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-298.480011F, -182.324005F), new Vector2(-298.971985F, -180.925995F), new Vector2(-299.955994F, -179.834F));
+ builder.AddCubicBezier(new Vector2(-300.940002F, -178.742004F), new Vector2(-302.235992F, -178.195999F), new Vector2(-303.843994F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-304.924011F, -178.195999F), new Vector2(-305.884003F, -178.447998F), new Vector2(-306.723999F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-300.891998F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-299.859985F, -176.485992F), new Vector2(-299.037994F, -177.235992F), new Vector2(-298.425995F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-297.813995F, -179.156006F), new Vector2(-297.471985F, -180.248001F), new Vector2(-297.399994F, -181.472F));
+ builder.AddLine(new Vector2(-297.399994F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-297.471985F, -187.867996F), new Vector2(-297.820007F, -188.966003F), new Vector2(-298.444F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-299.067993F, -190.862F), new Vector2(-299.890015F, -191.606003F), new Vector2(-300.910004F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-301.929993F, -192.686005F), new Vector2(-303.088013F, -192.955994F), new Vector2(-304.384003F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-305.967987F, -192.955994F), new Vector2(-307.390015F, -192.559998F), new Vector2(-308.649994F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-309.910004F, -190.975998F), new Vector2(-310.906006F, -189.908005F), new Vector2(-311.638F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-312.369995F, -187.220001F), new Vector2(-312.735992F, -185.707993F), new Vector2(-312.735992F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-312.735992F, -182.348007F), new Vector2(-312.369995F, -180.835999F), new Vector2(-311.638F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-310.906006F, -178.147995F), new Vector2(-309.910004F, -177.085999F), new Vector2(-308.649994F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-307.390015F, -175.526001F), new Vector2(-305.967987F, -175.136002F), new Vector2(-304.384003F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-303.088013F, -175.136002F), new Vector2(-301.924011F, -175.406006F), new Vector2(-300.891998F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0515()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-326.973999F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-327.802002F, -179.455994F), new Vector2(-328.437988F, -180.145996F), new Vector2(-328.881989F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-329.325989F, -181.897995F), new Vector2(-329.548004F, -182.899994F), new Vector2(-329.548004F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-329.548004F, -185.179993F), new Vector2(-329.320007F, -186.194F), new Vector2(-328.864014F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-328.40799F, -187.945999F), new Vector2(-327.772003F, -188.636002F), new Vector2(-326.955994F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-326.140015F, -189.643997F), new Vector2(-325.20401F, -189.895996F), new Vector2(-324.14801F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-323.067993F, -189.895996F), new Vector2(-322.119995F, -189.643997F), new Vector2(-321.303986F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-320.488007F, -188.636002F), new Vector2(-319.846008F, -187.945999F), new Vector2(-319.377991F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-318.910004F, -186.194F), new Vector2(-318.675995F, -185.192001F), new Vector2(-318.675995F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-318.675995F, -182.912003F), new Vector2(-318.910004F, -181.897995F), new Vector2(-319.377991F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-319.846008F, -180.145996F), new Vector2(-320.488007F, -179.455994F), new Vector2(-321.303986F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-322.119995F, -178.447998F), new Vector2(-323.067993F, -178.195999F), new Vector2(-324.14801F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-325.20401F, -178.195999F), new Vector2(-326.145996F, -178.447998F), new Vector2(-326.973999F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-329.368011F, -168.332001F));
+ builder.AddLine(new Vector2(-329.368011F, -179.779999F));
+ builder.AddLine(new Vector2(-329.980011F, -183.955994F));
+ builder.AddLine(new Vector2(-329.368011F, -188.095993F));
+ builder.AddLine(new Vector2(-329.368011F, -192.595993F));
+ builder.AddLine(new Vector2(-332.608002F, -192.595993F));
+ builder.AddLine(new Vector2(-332.608002F, -168.332001F));
+ builder.AddLine(new Vector2(-329.368011F, -168.332001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-319.377991F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-318.118011F, -177.085999F), new Vector2(-317.127991F, -178.147995F), new Vector2(-316.40799F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-315.687988F, -180.835999F), new Vector2(-315.328003F, -182.348007F), new Vector2(-315.328003F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-315.328003F, -185.707993F), new Vector2(-315.687988F, -187.220001F), new Vector2(-316.40799F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-317.127991F, -189.908005F), new Vector2(-318.118011F, -190.975998F), new Vector2(-319.377991F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-320.638F, -192.559998F), new Vector2(-322.048004F, -192.955994F), new Vector2(-323.608002F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-324.880005F, -192.955994F), new Vector2(-326.037994F, -192.686005F), new Vector2(-327.082001F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-328.126007F, -191.606003F), new Vector2(-328.966003F, -190.862F), new Vector2(-329.60199F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-330.238007F, -188.966003F), new Vector2(-330.59201F, -187.867996F), new Vector2(-330.664001F, -186.619995F));
+ builder.AddLine(new Vector2(-330.664001F, -181.472F));
+ builder.AddCubicBezier(new Vector2(-330.59201F, -180.248001F), new Vector2(-330.243988F, -179.156006F), new Vector2(-329.619995F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-328.996002F, -177.235992F), new Vector2(-328.161987F, -176.485992F), new Vector2(-327.118011F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-326.074005F, -175.406006F), new Vector2(-324.903992F, -175.136002F), new Vector2(-323.608002F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-322.048004F, -175.136002F), new Vector2(-320.638F, -175.526001F), new Vector2(-319.377991F, -176.306F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0516()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-344.776001F, -175.496002F));
+ builder.AddLine(new Vector2(-344.776001F, -192.595993F));
+ builder.AddLine(new Vector2(-348.052002F, -192.595993F));
+ builder.AddLine(new Vector2(-348.052002F, -188.419998F));
+ builder.AddLine(new Vector2(-347.440002F, -184.279999F));
+ builder.AddLine(new Vector2(-348.052002F, -180.104004F));
+ builder.AddLine(new Vector2(-348.052002F, -175.496002F));
+ builder.AddLine(new Vector2(-344.776001F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-356.079987F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-356.920013F, -179.455994F), new Vector2(-357.574005F, -180.145996F), new Vector2(-358.041992F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-358.51001F, -181.897995F), new Vector2(-358.743988F, -182.912003F), new Vector2(-358.743988F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-358.743988F, -185.192001F), new Vector2(-358.51001F, -186.194F), new Vector2(-358.041992F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-357.574005F, -187.945999F), new Vector2(-356.925995F, -188.636002F), new Vector2(-356.097992F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-355.269989F, -189.643997F), new Vector2(-354.31601F, -189.895996F), new Vector2(-353.235992F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-352.156006F, -189.895996F), new Vector2(-351.213989F, -189.649994F), new Vector2(-350.410004F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-349.605988F, -188.666F), new Vector2(-348.976013F, -187.975998F), new Vector2(-348.519989F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(-348.063995F, -186.199997F), new Vector2(-347.835999F, -185.179993F), new Vector2(-347.835999F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-347.835999F, -182.324005F), new Vector2(-348.328003F, -180.925995F), new Vector2(-349.312012F, -179.834F));
+ builder.AddCubicBezier(new Vector2(-350.29599F, -178.742004F), new Vector2(-351.59201F, -178.195999F), new Vector2(-353.200012F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-354.279999F, -178.195999F), new Vector2(-355.23999F, -178.447998F), new Vector2(-356.079987F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-350.247986F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-349.216003F, -176.485992F), new Vector2(-348.394012F, -177.235992F), new Vector2(-347.782013F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-347.170013F, -179.156006F), new Vector2(-346.828003F, -180.248001F), new Vector2(-346.756012F, -181.472F));
+ builder.AddLine(new Vector2(-346.756012F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-346.828003F, -187.867996F), new Vector2(-347.175995F, -188.966003F), new Vector2(-347.799988F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-348.424011F, -190.862F), new Vector2(-349.246002F, -191.606003F), new Vector2(-350.265991F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-351.286011F, -192.686005F), new Vector2(-352.444F, -192.955994F), new Vector2(-353.73999F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-355.324005F, -192.955994F), new Vector2(-356.746002F, -192.559998F), new Vector2(-358.006012F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-359.265991F, -190.975998F), new Vector2(-360.261993F, -189.908005F), new Vector2(-360.993988F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-361.726013F, -187.220001F), new Vector2(-362.09201F, -185.707993F), new Vector2(-362.09201F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-362.09201F, -182.348007F), new Vector2(-361.726013F, -180.835999F), new Vector2(-360.993988F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-360.261993F, -178.147995F), new Vector2(-359.265991F, -177.085999F), new Vector2(-358.006012F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-356.746002F, -175.526001F), new Vector2(-355.324005F, -175.136002F), new Vector2(-353.73999F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-352.444F, -175.136002F), new Vector2(-351.279999F, -175.406006F), new Vector2(-350.247986F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0517()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-371.631989F, -189.643997F));
+ builder.AddLine(new Vector2(-371.631989F, -192.595993F));
+ builder.AddLine(new Vector2(-383.29599F, -192.595993F));
+ builder.AddLine(new Vector2(-383.29599F, -189.643997F));
+ builder.AddLine(new Vector2(-371.631989F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-375.843994F, -175.496002F));
+ builder.AddLine(new Vector2(-375.843994F, -199.759995F));
+ builder.AddLine(new Vector2(-379.084015F, -199.759995F));
+ builder.AddLine(new Vector2(-379.084015F, -175.496002F));
+ builder.AddLine(new Vector2(-375.843994F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0518()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-396.579987F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-397.420013F, -179.528F), new Vector2(-398.079987F, -180.218002F), new Vector2(-398.559998F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-399.040009F, -181.970001F), new Vector2(-399.279999F, -182.972F), new Vector2(-399.279999F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-399.279999F, -185.203995F), new Vector2(-399.040009F, -186.188004F), new Vector2(-398.559998F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-398.079987F, -187.916F), new Vector2(-397.420013F, -188.593994F), new Vector2(-396.579987F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-395.73999F, -189.578003F), new Vector2(-394.791992F, -189.824005F), new Vector2(-393.735992F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-392.631989F, -189.824005F), new Vector2(-391.665985F, -189.578003F), new Vector2(-390.838013F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-390.01001F, -188.593994F), new Vector2(-389.350006F, -187.916F), new Vector2(-388.858002F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-388.365997F, -186.188004F), new Vector2(-388.119995F, -185.203995F), new Vector2(-388.119995F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-388.119995F, -182.972F), new Vector2(-388.359985F, -181.970001F), new Vector2(-388.839996F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-389.320007F, -180.218002F), new Vector2(-389.980011F, -179.528F), new Vector2(-390.820007F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-391.660004F, -178.520004F), new Vector2(-392.631989F, -178.268005F), new Vector2(-393.735992F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-394.791992F, -178.268005F), new Vector2(-395.73999F, -178.520004F), new Vector2(-396.579987F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-389.182007F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-387.825989F, -177.115997F), new Vector2(-386.752014F, -178.190002F), new Vector2(-385.959991F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-385.167999F, -180.901993F), new Vector2(-384.772003F, -182.419998F), new Vector2(-384.772003F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-384.772003F, -185.755997F), new Vector2(-385.167999F, -187.255997F), new Vector2(-385.959991F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-386.752014F, -189.944F), new Vector2(-387.825989F, -191.005997F), new Vector2(-389.182007F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-390.537994F, -192.565994F), new Vector2(-392.056F, -192.955994F), new Vector2(-393.735992F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-395.391998F, -192.955994F), new Vector2(-396.891998F, -192.559998F), new Vector2(-398.235992F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-399.579987F, -190.975998F), new Vector2(-400.64801F, -189.914001F), new Vector2(-401.440002F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(-402.231995F, -187.25F), new Vector2(-402.627991F, -185.755997F), new Vector2(-402.627991F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-402.627991F, -182.419998F), new Vector2(-402.231995F, -180.901993F), new Vector2(-401.440002F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-400.64801F, -178.190002F), new Vector2(-399.579987F, -177.115997F), new Vector2(-398.235992F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-396.891998F, -175.531998F), new Vector2(-395.391998F, -175.136002F), new Vector2(-393.735992F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-392.056F, -175.136002F), new Vector2(-390.537994F, -175.531998F), new Vector2(-389.182007F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0519()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-418F, -175.496002F));
+ builder.AddLine(new Vector2(-418F, -192.595993F));
+ builder.AddLine(new Vector2(-421.23999F, -192.595993F));
+ builder.AddLine(new Vector2(-421.23999F, -175.496002F));
+ builder.AddLine(new Vector2(-418F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-405.903992F, -175.496002F));
+ builder.AddLine(new Vector2(-405.903992F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-405.903992F, -187.292007F), new Vector2(-406.191986F, -188.401993F), new Vector2(-406.768005F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(-407.343994F, -190.490005F), new Vector2(-408.130005F, -191.335999F), new Vector2(-409.126007F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(-410.122009F, -192.632004F), new Vector2(-411.268005F, -192.955994F), new Vector2(-412.563995F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-413.859985F, -192.955994F), new Vector2(-415.023987F, -192.662003F), new Vector2(-416.056F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-417.088013F, -191.485992F), new Vector2(-417.891998F, -190.688004F), new Vector2(-418.467987F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-419.044006F, -188.671997F), new Vector2(-419.332001F, -187.520004F), new Vector2(-419.332001F, -186.223999F));
+ builder.AddLine(new Vector2(-418F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-418F, -186.332001F), new Vector2(-417.808014F, -187.100006F), new Vector2(-417.424011F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-417.040009F, -188.444F), new Vector2(-416.511993F, -188.972F), new Vector2(-415.839996F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-415.167999F, -189.740005F), new Vector2(-414.399994F, -189.932007F), new Vector2(-413.536011F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-412.23999F, -189.932007F), new Vector2(-411.190002F, -189.511993F), new Vector2(-410.385986F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-409.582001F, -187.832001F), new Vector2(-409.179993F, -186.764008F), new Vector2(-409.179993F, -185.468002F));
+ builder.AddLine(new Vector2(-409.179993F, -175.496002F));
+ builder.AddLine(new Vector2(-405.903992F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0520()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-434.037994F, -176.539993F));
+ builder.AddCubicBezier(new Vector2(-432.89801F, -177.475998F), new Vector2(-432.328003F, -178.748001F), new Vector2(-432.328003F, -180.356003F));
+ builder.AddCubicBezier(new Vector2(-432.328003F, -181.412003F), new Vector2(-432.549988F, -182.264008F), new Vector2(-432.993988F, -182.912003F));
+ builder.AddCubicBezier(new Vector2(-433.437988F, -183.559998F), new Vector2(-434.007996F, -184.076004F), new Vector2(-434.70401F, -184.460007F));
+ builder.AddCubicBezier(new Vector2(-435.399994F, -184.843994F), new Vector2(-436.131989F, -185.149994F), new Vector2(-436.899994F, -185.378006F));
+ builder.AddCubicBezier(new Vector2(-437.667999F, -185.606003F), new Vector2(-438.406006F, -185.828003F), new Vector2(-439.114014F, -186.044006F));
+ builder.AddCubicBezier(new Vector2(-439.821991F, -186.259995F), new Vector2(-440.391998F, -186.524002F), new Vector2(-440.824005F, -186.835999F));
+ builder.AddCubicBezier(new Vector2(-441.256012F, -187.147995F), new Vector2(-441.471985F, -187.591995F), new Vector2(-441.471985F, -188.167999F));
+ builder.AddCubicBezier(new Vector2(-441.471985F, -188.720001F), new Vector2(-441.226013F, -189.164001F), new Vector2(-440.734009F, -189.5F));
+ builder.AddCubicBezier(new Vector2(-440.242004F, -189.835999F), new Vector2(-439.528015F, -190.003998F), new Vector2(-438.59201F, -190.003998F));
+ builder.AddCubicBezier(new Vector2(-437.70401F, -190.003998F), new Vector2(-436.911987F, -189.835999F), new Vector2(-436.216003F, -189.5F));
+ builder.AddCubicBezier(new Vector2(-435.519989F, -189.164001F), new Vector2(-434.920013F, -188.684006F), new Vector2(-434.415985F, -188.059998F));
+ builder.AddLine(new Vector2(-432.328003F, -190.147995F));
+ builder.AddCubicBezier(new Vector2(-433F, -191.084F), new Vector2(-433.858002F, -191.785995F), new Vector2(-434.902008F, -192.253998F));
+ builder.AddCubicBezier(new Vector2(-435.946014F, -192.722F), new Vector2(-437.140015F, -192.955994F), new Vector2(-438.484009F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-439.756012F, -192.955994F), new Vector2(-440.847992F, -192.751999F), new Vector2(-441.76001F, -192.343994F));
+ builder.AddCubicBezier(new Vector2(-442.671997F, -191.936005F), new Vector2(-443.373993F, -191.354004F), new Vector2(-443.865997F, -190.598007F));
+ builder.AddCubicBezier(new Vector2(-444.358002F, -189.841995F), new Vector2(-444.604004F, -188.947998F), new Vector2(-444.604004F, -187.916F));
+ builder.AddCubicBezier(new Vector2(-444.604004F, -186.884003F), new Vector2(-444.381989F, -186.050003F), new Vector2(-443.937988F, -185.414001F));
+ builder.AddCubicBezier(new Vector2(-443.493988F, -184.778F), new Vector2(-442.924011F, -184.279999F), new Vector2(-442.227997F, -183.919998F));
+ builder.AddCubicBezier(new Vector2(-441.532013F, -183.559998F), new Vector2(-440.794006F, -183.272003F), new Vector2(-440.014008F, -183.056F));
+ builder.AddCubicBezier(new Vector2(-439.234009F, -182.839996F), new Vector2(-438.496002F, -182.617996F), new Vector2(-437.799988F, -182.389999F));
+ builder.AddCubicBezier(new Vector2(-437.104004F, -182.162003F), new Vector2(-436.533997F, -181.873993F), new Vector2(-436.089996F, -181.526001F));
+ builder.AddCubicBezier(new Vector2(-435.645996F, -181.177994F), new Vector2(-435.424011F, -180.692001F), new Vector2(-435.424011F, -180.067993F));
+ builder.AddCubicBezier(new Vector2(-435.424011F, -179.444F), new Vector2(-435.700012F, -178.957993F), new Vector2(-436.252014F, -178.610001F));
+ builder.AddCubicBezier(new Vector2(-436.803986F, -178.261993F), new Vector2(-437.584015F, -178.087997F), new Vector2(-438.59201F, -178.087997F));
+ builder.AddCubicBezier(new Vector2(-439.600006F, -178.087997F), new Vector2(-440.511993F, -178.274002F), new Vector2(-441.328003F, -178.645996F));
+ builder.AddCubicBezier(new Vector2(-442.144012F, -179.018005F), new Vector2(-442.864014F, -179.587997F), new Vector2(-443.488007F, -180.356003F));
+ builder.AddLine(new Vector2(-445.575989F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-445.048004F, -177.619995F), new Vector2(-444.429993F, -177.061996F), new Vector2(-443.721985F, -176.593994F));
+ builder.AddCubicBezier(new Vector2(-443.014008F, -176.126007F), new Vector2(-442.227997F, -175.766006F), new Vector2(-441.364014F, -175.514008F));
+ builder.AddCubicBezier(new Vector2(-440.5F, -175.261993F), new Vector2(-439.588013F, -175.136002F), new Vector2(-438.627991F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-436.708008F, -175.136002F), new Vector2(-435.178009F, -175.604004F), new Vector2(-434.037994F, -176.539993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0521()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-448.779999F, -175.496002F));
+ builder.AddLine(new Vector2(-448.779999F, -192.595993F));
+ builder.AddLine(new Vector2(-452.056F, -192.595993F));
+ builder.AddLine(new Vector2(-452.056F, -188.419998F));
+ builder.AddLine(new Vector2(-451.444F, -184.279999F));
+ builder.AddLine(new Vector2(-452.056F, -180.104004F));
+ builder.AddLine(new Vector2(-452.056F, -175.496002F));
+ builder.AddLine(new Vector2(-448.779999F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-460.084015F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-460.924011F, -179.455994F), new Vector2(-461.578003F, -180.145996F), new Vector2(-462.04599F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-462.514008F, -181.897995F), new Vector2(-462.747986F, -182.912003F), new Vector2(-462.747986F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-462.747986F, -185.192001F), new Vector2(-462.514008F, -186.194F), new Vector2(-462.04599F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-461.578003F, -187.945999F), new Vector2(-460.929993F, -188.636002F), new Vector2(-460.10199F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-459.273987F, -189.643997F), new Vector2(-458.320007F, -189.895996F), new Vector2(-457.23999F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-456.160004F, -189.895996F), new Vector2(-455.217987F, -189.649994F), new Vector2(-454.414001F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-453.609985F, -188.666F), new Vector2(-452.980011F, -187.975998F), new Vector2(-452.523987F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(-452.067993F, -186.199997F), new Vector2(-451.839996F, -185.179993F), new Vector2(-451.839996F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-451.839996F, -182.324005F), new Vector2(-452.332001F, -180.925995F), new Vector2(-453.31601F, -179.834F));
+ builder.AddCubicBezier(new Vector2(-454.299988F, -178.742004F), new Vector2(-455.596008F, -178.195999F), new Vector2(-457.20401F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-458.283997F, -178.195999F), new Vector2(-459.243988F, -178.447998F), new Vector2(-460.084015F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-454.252014F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-453.220001F, -176.485992F), new Vector2(-452.39801F, -177.235992F), new Vector2(-451.786011F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-451.174011F, -179.156006F), new Vector2(-450.832001F, -180.248001F), new Vector2(-450.76001F, -181.472F));
+ builder.AddLine(new Vector2(-450.76001F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-450.832001F, -187.867996F), new Vector2(-451.179993F, -188.966003F), new Vector2(-451.803986F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-452.428009F, -190.862F), new Vector2(-453.25F, -191.606003F), new Vector2(-454.269989F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-455.290009F, -192.686005F), new Vector2(-456.447998F, -192.955994F), new Vector2(-457.743988F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-459.328003F, -192.955994F), new Vector2(-460.75F, -192.559998F), new Vector2(-462.01001F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-463.269989F, -190.975998F), new Vector2(-464.265991F, -189.908005F), new Vector2(-464.997986F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-465.730011F, -187.220001F), new Vector2(-466.096008F, -185.707993F), new Vector2(-466.096008F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-466.096008F, -182.348007F), new Vector2(-465.730011F, -180.835999F), new Vector2(-464.997986F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-464.265991F, -178.147995F), new Vector2(-463.269989F, -177.085999F), new Vector2(-462.01001F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-460.75F, -175.526001F), new Vector2(-459.328003F, -175.136002F), new Vector2(-457.743988F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-456.447998F, -175.136002F), new Vector2(-455.283997F, -175.406006F), new Vector2(-454.252014F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0522()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-484.743988F, -175.496002F));
+ builder.AddLine(new Vector2(-479.776001F, -188.384003F));
+ builder.AddLine(new Vector2(-480.963989F, -188.384003F));
+ builder.AddLine(new Vector2(-476.032013F, -175.496002F));
+ builder.AddLine(new Vector2(-474.123993F, -175.496002F));
+ builder.AddLine(new Vector2(-467.391998F, -192.595993F));
+ builder.AddLine(new Vector2(-470.776001F, -192.595993F));
+ builder.AddLine(new Vector2(-475.671997F, -179.276001F));
+ builder.AddLine(new Vector2(-474.59201F, -179.276001F));
+ builder.AddLine(new Vector2(-479.451996F, -192.595993F));
+ builder.AddLine(new Vector2(-481.324005F, -192.595993F));
+ builder.AddLine(new Vector2(-486.18399F, -179.276001F));
+ builder.AddLine(new Vector2(-485.104004F, -179.276001F));
+ builder.AddLine(new Vector2(-490F, -192.595993F));
+ builder.AddLine(new Vector2(-493.384003F, -192.595993F));
+ builder.AddLine(new Vector2(-486.652008F, -175.496002F));
+ builder.AddLine(new Vector2(-484.743988F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0523()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-506.559998F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-505.384003F, -176.395996F), new Vector2(-504.376007F, -177.128006F), new Vector2(-503.536011F, -178.087997F));
+ builder.AddLine(new Vector2(-505.623993F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-506.200012F, -179.539993F), new Vector2(-506.890015F, -179.035995F), new Vector2(-507.694F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-508.497986F, -178.363998F), new Vector2(-509.380005F, -178.195999F), new Vector2(-510.339996F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-511.492004F, -178.195999F), new Vector2(-512.512024F, -178.442001F), new Vector2(-513.400024F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-514.288025F, -179.425995F), new Vector2(-514.971985F, -180.121994F), new Vector2(-515.452026F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-515.932007F, -181.921997F), new Vector2(-516.171997F, -182.972F), new Vector2(-516.171997F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-516.171997F, -185.348007F), new Vector2(-515.94397F, -186.367996F), new Vector2(-515.487976F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-515.031982F, -188.095993F), new Vector2(-514.383972F, -188.768005F), new Vector2(-513.544006F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-512.703979F, -189.727997F), new Vector2(-511.731995F, -189.968002F), new Vector2(-510.627991F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-509.571991F, -189.968002F), new Vector2(-508.671997F, -189.746002F), new Vector2(-507.928009F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-507.18399F, -188.858002F), new Vector2(-506.608002F, -188.233994F), new Vector2(-506.200012F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-505.791992F, -186.626007F), new Vector2(-505.588013F, -185.647995F), new Vector2(-505.588013F, -184.496002F));
+ builder.AddLine(new Vector2(-504.399994F, -185.539993F));
+ builder.AddLine(new Vector2(-517.107971F, -185.539993F));
+ builder.AddLine(new Vector2(-517.107971F, -182.839996F));
+ builder.AddLine(new Vector2(-502.671997F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-502.600006F, -183.175995F), new Vector2(-502.552002F, -183.481995F), new Vector2(-502.528015F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-502.503998F, -184.033997F), new Vector2(-502.492004F, -184.292007F), new Vector2(-502.492004F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-502.492004F, -186.164001F), new Vector2(-502.834015F, -187.615997F), new Vector2(-503.518005F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-504.201996F, -190.160004F), new Vector2(-505.156006F, -191.156006F), new Vector2(-506.380005F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-507.604004F, -192.595993F), new Vector2(-508.996002F, -192.955994F), new Vector2(-510.556F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-512.211975F, -192.955994F), new Vector2(-513.705994F, -192.565994F), new Vector2(-515.038025F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-516.369995F, -191.005997F), new Vector2(-517.426025F, -189.944F), new Vector2(-518.205994F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-518.986023F, -187.255997F), new Vector2(-519.375977F, -185.744003F), new Vector2(-519.375977F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-519.375977F, -182.360001F), new Vector2(-518.97998F, -180.835999F), new Vector2(-518.187988F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-517.395996F, -178.147995F), new Vector2(-516.322021F, -177.085999F), new Vector2(-514.966003F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-513.609985F, -175.526001F), new Vector2(-512.067993F, -175.136002F), new Vector2(-510.339996F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-508.996002F, -175.136002F), new Vector2(-507.735992F, -175.388F), new Vector2(-506.559998F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0524()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-534.747986F, -175.496002F));
+ builder.AddLine(new Vector2(-534.747986F, -201.199997F));
+ builder.AddLine(new Vector2(-537.987976F, -201.199997F));
+ builder.AddLine(new Vector2(-537.987976F, -175.496002F));
+ builder.AddLine(new Vector2(-534.747986F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-522.651978F, -175.496002F));
+ builder.AddLine(new Vector2(-522.651978F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-522.651978F, -187.460007F), new Vector2(-522.940002F, -188.647995F), new Vector2(-523.515991F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-524.09198F, -190.712006F), new Vector2(-524.877991F, -191.516006F), new Vector2(-525.874023F, -192.091995F));
+ builder.AddCubicBezier(new Vector2(-526.869995F, -192.667999F), new Vector2(-528.015991F, -192.955994F), new Vector2(-529.312012F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-530.607971F, -192.955994F), new Vector2(-531.771973F, -192.662003F), new Vector2(-532.804016F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-533.835999F, -191.485992F), new Vector2(-534.640015F, -190.688004F), new Vector2(-535.216003F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-535.791992F, -188.671997F), new Vector2(-536.080017F, -187.520004F), new Vector2(-536.080017F, -186.223999F));
+ builder.AddLine(new Vector2(-534.747986F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-534.747986F, -186.332001F), new Vector2(-534.55603F, -187.100006F), new Vector2(-534.171997F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-533.788025F, -188.444F), new Vector2(-533.26001F, -188.972F), new Vector2(-532.588013F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-531.916016F, -189.740005F), new Vector2(-531.14801F, -189.932007F), new Vector2(-530.283997F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-528.987976F, -189.932007F), new Vector2(-527.937988F, -189.511993F), new Vector2(-527.133972F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-526.330017F, -187.832001F), new Vector2(-525.927979F, -186.764008F), new Vector2(-525.927979F, -185.468002F));
+ builder.AddLine(new Vector2(-525.927979F, -175.496002F));
+ builder.AddLine(new Vector2(-522.651978F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0525()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-561.927979F, -175.496002F));
+ builder.AddLine(new Vector2(-561.927979F, -192.595993F));
+ builder.AddLine(new Vector2(-565.16803F, -192.595993F));
+ builder.AddLine(new Vector2(-565.16803F, -175.496002F));
+ builder.AddLine(new Vector2(-561.927979F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-549.83197F, -175.496002F));
+ builder.AddLine(new Vector2(-549.83197F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-549.83197F, -187.292007F), new Vector2(-550.119995F, -188.401993F), new Vector2(-550.695984F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(-551.271973F, -190.490005F), new Vector2(-552.057983F, -191.335999F), new Vector2(-553.054016F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(-554.049988F, -192.632004F), new Vector2(-555.195984F, -192.955994F), new Vector2(-556.492004F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-557.788025F, -192.955994F), new Vector2(-558.952026F, -192.662003F), new Vector2(-559.984009F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-561.015991F, -191.485992F), new Vector2(-561.820007F, -190.688004F), new Vector2(-562.395996F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-562.971985F, -188.671997F), new Vector2(-563.26001F, -187.520004F), new Vector2(-563.26001F, -186.223999F));
+ builder.AddLine(new Vector2(-561.927979F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-561.927979F, -186.332001F), new Vector2(-561.736023F, -187.100006F), new Vector2(-561.35199F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-560.968018F, -188.444F), new Vector2(-560.440002F, -188.972F), new Vector2(-559.768005F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-559.096008F, -189.740005F), new Vector2(-558.328003F, -189.932007F), new Vector2(-557.463989F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-556.16803F, -189.932007F), new Vector2(-555.117981F, -189.511993F), new Vector2(-554.314026F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-553.51001F, -187.832001F), new Vector2(-553.107971F, -186.764008F), new Vector2(-553.107971F, -185.468002F));
+ builder.AddLine(new Vector2(-553.107971F, -175.496002F));
+ builder.AddLine(new Vector2(-549.83197F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0526()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-572.763977F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-571.588013F, -176.395996F), new Vector2(-570.580017F, -177.128006F), new Vector2(-569.73999F, -178.087997F));
+ builder.AddLine(new Vector2(-571.828003F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-572.403992F, -179.539993F), new Vector2(-573.093994F, -179.035995F), new Vector2(-573.89801F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-574.702026F, -178.363998F), new Vector2(-575.583984F, -178.195999F), new Vector2(-576.544006F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-577.695984F, -178.195999F), new Vector2(-578.716003F, -178.442001F), new Vector2(-579.604004F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-580.492004F, -179.425995F), new Vector2(-581.176025F, -180.121994F), new Vector2(-581.656006F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-582.135986F, -181.921997F), new Vector2(-582.375977F, -182.972F), new Vector2(-582.375977F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-582.375977F, -185.348007F), new Vector2(-582.14801F, -186.367996F), new Vector2(-581.692017F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-581.236023F, -188.095993F), new Vector2(-580.588013F, -188.768005F), new Vector2(-579.747986F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-578.90802F, -189.727997F), new Vector2(-577.935974F, -189.968002F), new Vector2(-576.83197F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-575.776001F, -189.968002F), new Vector2(-574.875977F, -189.746002F), new Vector2(-574.132019F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-573.388F, -188.858002F), new Vector2(-572.812012F, -188.233994F), new Vector2(-572.403992F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-571.995972F, -186.626007F), new Vector2(-571.791992F, -185.647995F), new Vector2(-571.791992F, -184.496002F));
+ builder.AddLine(new Vector2(-570.604004F, -185.539993F));
+ builder.AddLine(new Vector2(-583.312012F, -185.539993F));
+ builder.AddLine(new Vector2(-583.312012F, -182.839996F));
+ builder.AddLine(new Vector2(-568.875977F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-568.804016F, -183.175995F), new Vector2(-568.755981F, -183.481995F), new Vector2(-568.731995F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-568.708008F, -184.033997F), new Vector2(-568.695984F, -184.292007F), new Vector2(-568.695984F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-568.695984F, -186.164001F), new Vector2(-569.038025F, -187.615997F), new Vector2(-569.721985F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-570.406006F, -190.160004F), new Vector2(-571.359985F, -191.156006F), new Vector2(-572.583984F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-573.807983F, -192.595993F), new Vector2(-575.200012F, -192.955994F), new Vector2(-576.76001F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-578.416016F, -192.955994F), new Vector2(-579.909973F, -192.565994F), new Vector2(-581.242004F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-582.573975F, -191.005997F), new Vector2(-583.630005F, -189.944F), new Vector2(-584.409973F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-585.190002F, -187.255997F), new Vector2(-585.580017F, -185.744003F), new Vector2(-585.580017F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-585.580017F, -182.360001F), new Vector2(-585.184021F, -180.835999F), new Vector2(-584.392029F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-583.599976F, -178.147995F), new Vector2(-582.526001F, -177.085999F), new Vector2(-581.169983F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-579.814026F, -175.526001F), new Vector2(-578.271973F, -175.136002F), new Vector2(-576.544006F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-575.200012F, -175.136002F), new Vector2(-573.940002F, -175.388F), new Vector2(-572.763977F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0527()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-594.435974F, -175.496002F));
+ builder.AddLine(new Vector2(-586.588013F, -192.595993F));
+ builder.AddLine(new Vector2(-590.044006F, -192.595993F));
+ builder.AddLine(new Vector2(-596.380005F, -178.160004F));
+ builder.AddLine(new Vector2(-594.291992F, -178.160004F));
+ builder.AddLine(new Vector2(-600.59198F, -192.595993F));
+ builder.AddLine(new Vector2(-604.192017F, -192.595993F));
+ builder.AddLine(new Vector2(-596.343994F, -175.496002F));
+ builder.AddLine(new Vector2(-594.435974F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0528()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-609.52002F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-608.343994F, -176.395996F), new Vector2(-607.335999F, -177.128006F), new Vector2(-606.495972F, -178.087997F));
+ builder.AddLine(new Vector2(-608.583984F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-609.159973F, -179.539993F), new Vector2(-609.849976F, -179.035995F), new Vector2(-610.653992F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-611.458008F, -178.363998F), new Vector2(-612.340027F, -178.195999F), new Vector2(-613.299988F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-614.452026F, -178.195999F), new Vector2(-615.471985F, -178.442001F), new Vector2(-616.359985F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-617.247986F, -179.425995F), new Vector2(-617.932007F, -180.121994F), new Vector2(-618.411987F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-618.892029F, -181.921997F), new Vector2(-619.132019F, -182.972F), new Vector2(-619.132019F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-619.132019F, -185.348007F), new Vector2(-618.903992F, -186.367996F), new Vector2(-618.447998F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-617.992004F, -188.095993F), new Vector2(-617.343994F, -188.768005F), new Vector2(-616.504028F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-615.664001F, -189.727997F), new Vector2(-614.692017F, -189.968002F), new Vector2(-613.588013F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-612.531982F, -189.968002F), new Vector2(-611.632019F, -189.746002F), new Vector2(-610.888F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-610.143982F, -188.858002F), new Vector2(-609.567993F, -188.233994F), new Vector2(-609.159973F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-608.752014F, -186.626007F), new Vector2(-608.547974F, -185.647995F), new Vector2(-608.547974F, -184.496002F));
+ builder.AddLine(new Vector2(-607.359985F, -185.539993F));
+ builder.AddLine(new Vector2(-620.067993F, -185.539993F));
+ builder.AddLine(new Vector2(-620.067993F, -182.839996F));
+ builder.AddLine(new Vector2(-605.632019F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-605.559998F, -183.175995F), new Vector2(-605.512024F, -183.481995F), new Vector2(-605.487976F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-605.463989F, -184.033997F), new Vector2(-605.452026F, -184.292007F), new Vector2(-605.452026F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-605.452026F, -186.164001F), new Vector2(-605.794006F, -187.615997F), new Vector2(-606.478027F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-607.161987F, -190.160004F), new Vector2(-608.116028F, -191.156006F), new Vector2(-609.340027F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-610.564026F, -192.595993F), new Vector2(-611.955994F, -192.955994F), new Vector2(-613.515991F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-615.171997F, -192.955994F), new Vector2(-616.666016F, -192.565994F), new Vector2(-617.997986F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-619.330017F, -191.005997F), new Vector2(-620.385986F, -189.944F), new Vector2(-621.166016F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-621.945984F, -187.255997F), new Vector2(-622.335999F, -185.744003F), new Vector2(-622.335999F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-622.335999F, -182.360001F), new Vector2(-621.940002F, -180.835999F), new Vector2(-621.14801F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-620.356018F, -178.147995F), new Vector2(-619.281982F, -177.085999F), new Vector2(-617.926025F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-616.570007F, -175.526001F), new Vector2(-615.028015F, -175.136002F), new Vector2(-613.299988F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-611.955994F, -175.136002F), new Vector2(-610.695984F, -175.388F), new Vector2(-609.52002F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0529()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-634.018005F, -176.539993F));
+ builder.AddCubicBezier(new Vector2(-632.877991F, -177.475998F), new Vector2(-632.307983F, -178.748001F), new Vector2(-632.307983F, -180.356003F));
+ builder.AddCubicBezier(new Vector2(-632.307983F, -181.412003F), new Vector2(-632.530029F, -182.264008F), new Vector2(-632.973999F, -182.912003F));
+ builder.AddCubicBezier(new Vector2(-633.41803F, -183.559998F), new Vector2(-633.987976F, -184.076004F), new Vector2(-634.684021F, -184.460007F));
+ builder.AddCubicBezier(new Vector2(-635.380005F, -184.843994F), new Vector2(-636.112F, -185.149994F), new Vector2(-636.880005F, -185.378006F));
+ builder.AddCubicBezier(new Vector2(-637.64801F, -185.606003F), new Vector2(-638.385986F, -185.828003F), new Vector2(-639.093994F, -186.044006F));
+ builder.AddCubicBezier(new Vector2(-639.802002F, -186.259995F), new Vector2(-640.372009F, -186.524002F), new Vector2(-640.804016F, -186.835999F));
+ builder.AddCubicBezier(new Vector2(-641.236023F, -187.147995F), new Vector2(-641.452026F, -187.591995F), new Vector2(-641.452026F, -188.167999F));
+ builder.AddCubicBezier(new Vector2(-641.452026F, -188.720001F), new Vector2(-641.205994F, -189.164001F), new Vector2(-640.713989F, -189.5F));
+ builder.AddCubicBezier(new Vector2(-640.221985F, -189.835999F), new Vector2(-639.507996F, -190.003998F), new Vector2(-638.572021F, -190.003998F));
+ builder.AddCubicBezier(new Vector2(-637.684021F, -190.003998F), new Vector2(-636.892029F, -189.835999F), new Vector2(-636.195984F, -189.5F));
+ builder.AddCubicBezier(new Vector2(-635.5F, -189.164001F), new Vector2(-634.900024F, -188.684006F), new Vector2(-634.395996F, -188.059998F));
+ builder.AddLine(new Vector2(-632.307983F, -190.147995F));
+ builder.AddCubicBezier(new Vector2(-632.97998F, -191.084F), new Vector2(-633.838013F, -191.785995F), new Vector2(-634.882019F, -192.253998F));
+ builder.AddCubicBezier(new Vector2(-635.926025F, -192.722F), new Vector2(-637.119995F, -192.955994F), new Vector2(-638.463989F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-639.736023F, -192.955994F), new Vector2(-640.828003F, -192.751999F), new Vector2(-641.73999F, -192.343994F));
+ builder.AddCubicBezier(new Vector2(-642.651978F, -191.936005F), new Vector2(-643.354004F, -191.354004F), new Vector2(-643.846008F, -190.598007F));
+ builder.AddCubicBezier(new Vector2(-644.338013F, -189.841995F), new Vector2(-644.583984F, -188.947998F), new Vector2(-644.583984F, -187.916F));
+ builder.AddCubicBezier(new Vector2(-644.583984F, -186.884003F), new Vector2(-644.362F, -186.050003F), new Vector2(-643.91803F, -185.414001F));
+ builder.AddCubicBezier(new Vector2(-643.473999F, -184.778F), new Vector2(-642.903992F, -184.279999F), new Vector2(-642.208008F, -183.919998F));
+ builder.AddCubicBezier(new Vector2(-641.512024F, -183.559998F), new Vector2(-640.773987F, -183.272003F), new Vector2(-639.994019F, -183.056F));
+ builder.AddCubicBezier(new Vector2(-639.213989F, -182.839996F), new Vector2(-638.476013F, -182.617996F), new Vector2(-637.780029F, -182.389999F));
+ builder.AddCubicBezier(new Vector2(-637.083984F, -182.162003F), new Vector2(-636.513977F, -181.873993F), new Vector2(-636.070007F, -181.526001F));
+ builder.AddCubicBezier(new Vector2(-635.625977F, -181.177994F), new Vector2(-635.403992F, -180.692001F), new Vector2(-635.403992F, -180.067993F));
+ builder.AddCubicBezier(new Vector2(-635.403992F, -179.444F), new Vector2(-635.679993F, -178.957993F), new Vector2(-636.231995F, -178.610001F));
+ builder.AddCubicBezier(new Vector2(-636.783997F, -178.261993F), new Vector2(-637.564026F, -178.087997F), new Vector2(-638.572021F, -178.087997F));
+ builder.AddCubicBezier(new Vector2(-639.580017F, -178.087997F), new Vector2(-640.492004F, -178.274002F), new Vector2(-641.307983F, -178.645996F));
+ builder.AddCubicBezier(new Vector2(-642.124023F, -179.018005F), new Vector2(-642.843994F, -179.587997F), new Vector2(-643.468018F, -180.356003F));
+ builder.AddLine(new Vector2(-645.55603F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-645.028015F, -177.619995F), new Vector2(-644.409973F, -177.061996F), new Vector2(-643.702026F, -176.593994F));
+ builder.AddCubicBezier(new Vector2(-642.994019F, -176.126007F), new Vector2(-642.208008F, -175.766006F), new Vector2(-641.343994F, -175.514008F));
+ builder.AddCubicBezier(new Vector2(-640.47998F, -175.261993F), new Vector2(-639.567993F, -175.136002F), new Vector2(-638.607971F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-636.687988F, -175.136002F), new Vector2(-635.15802F, -175.604004F), new Vector2(-634.018005F, -176.539993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0530()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-651.640015F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-650.463989F, -176.395996F), new Vector2(-649.455994F, -177.128006F), new Vector2(-648.616028F, -178.087997F));
+ builder.AddLine(new Vector2(-650.703979F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-651.280029F, -179.539993F), new Vector2(-651.969971F, -179.035995F), new Vector2(-652.773987F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-653.578003F, -178.363998F), new Vector2(-654.460022F, -178.195999F), new Vector2(-655.419983F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-656.572021F, -178.195999F), new Vector2(-657.59198F, -178.442001F), new Vector2(-658.47998F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-659.367981F, -179.425995F), new Vector2(-660.052002F, -180.121994F), new Vector2(-660.531982F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-661.012024F, -181.921997F), new Vector2(-661.252014F, -182.972F), new Vector2(-661.252014F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-661.252014F, -185.348007F), new Vector2(-661.023987F, -186.367996F), new Vector2(-660.567993F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-660.112F, -188.095993F), new Vector2(-659.463989F, -188.768005F), new Vector2(-658.624023F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-657.783997F, -189.727997F), new Vector2(-656.812012F, -189.968002F), new Vector2(-655.708008F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-654.651978F, -189.968002F), new Vector2(-653.752014F, -189.746002F), new Vector2(-653.007996F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-652.263977F, -188.858002F), new Vector2(-651.687988F, -188.233994F), new Vector2(-651.280029F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-650.872009F, -186.626007F), new Vector2(-650.66803F, -185.647995F), new Vector2(-650.66803F, -184.496002F));
+ builder.AddLine(new Vector2(-649.47998F, -185.539993F));
+ builder.AddLine(new Vector2(-662.187988F, -185.539993F));
+ builder.AddLine(new Vector2(-662.187988F, -182.839996F));
+ builder.AddLine(new Vector2(-647.752014F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-647.679993F, -183.175995F), new Vector2(-647.632019F, -183.481995F), new Vector2(-647.607971F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-647.583984F, -184.033997F), new Vector2(-647.572021F, -184.292007F), new Vector2(-647.572021F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-647.572021F, -186.164001F), new Vector2(-647.914001F, -187.615997F), new Vector2(-648.598022F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-649.281982F, -190.160004F), new Vector2(-650.236023F, -191.156006F), new Vector2(-651.460022F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-652.684021F, -192.595993F), new Vector2(-654.075989F, -192.955994F), new Vector2(-655.635986F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-657.291992F, -192.955994F), new Vector2(-658.786011F, -192.565994F), new Vector2(-660.117981F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-661.450012F, -191.005997F), new Vector2(-662.505981F, -189.944F), new Vector2(-663.286011F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-664.065979F, -187.255997F), new Vector2(-664.455994F, -185.744003F), new Vector2(-664.455994F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-664.455994F, -182.360001F), new Vector2(-664.059998F, -180.835999F), new Vector2(-663.268005F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-662.476013F, -178.147995F), new Vector2(-661.401978F, -177.085999F), new Vector2(-660.046021F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-658.690002F, -175.526001F), new Vector2(-657.14801F, -175.136002F), new Vector2(-655.419983F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-654.075989F, -175.136002F), new Vector2(-652.815979F, -175.388F), new Vector2(-651.640015F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0531()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-669.117981F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-667.978027F, -176.395996F), new Vector2(-667.012024F, -177.104004F), new Vector2(-666.219971F, -178.016006F));
+ builder.AddLine(new Vector2(-668.343994F, -180.175995F));
+ builder.AddCubicBezier(new Vector2(-668.895996F, -179.552002F), new Vector2(-669.549988F, -179.078003F), new Vector2(-670.30603F, -178.753998F));
+ builder.AddCubicBezier(new Vector2(-671.062012F, -178.429993F), new Vector2(-671.895996F, -178.268005F), new Vector2(-672.807983F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-673.888F, -178.268005F), new Vector2(-674.848022F, -178.520004F), new Vector2(-675.687988F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-676.528015F, -179.528F), new Vector2(-677.187988F, -180.212006F), new Vector2(-677.66803F, -181.076004F));
+ builder.AddCubicBezier(new Vector2(-678.14801F, -181.940002F), new Vector2(-678.388F, -182.936005F), new Vector2(-678.388F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-678.388F, -185.192001F), new Vector2(-678.14801F, -186.188004F), new Vector2(-677.66803F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-677.187988F, -187.916F), new Vector2(-676.528015F, -188.593994F), new Vector2(-675.687988F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-674.848022F, -189.578003F), new Vector2(-673.888F, -189.824005F), new Vector2(-672.807983F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-671.919983F, -189.824005F), new Vector2(-671.09198F, -189.662003F), new Vector2(-670.323975F, -189.337997F));
+ builder.AddCubicBezier(new Vector2(-669.55603F, -189.014008F), new Vector2(-668.90802F, -188.539993F), new Vector2(-668.380005F, -187.916F));
+ builder.AddLine(new Vector2(-666.219971F, -190.076004F));
+ builder.AddCubicBezier(new Vector2(-667.036011F, -191.011993F), new Vector2(-668.007996F, -191.725998F), new Vector2(-669.135986F, -192.218002F));
+ builder.AddCubicBezier(new Vector2(-670.263977F, -192.710007F), new Vector2(-671.487976F, -192.955994F), new Vector2(-672.807983F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-674.487976F, -192.955994F), new Vector2(-676.005981F, -192.565994F), new Vector2(-677.362F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-678.718018F, -191.005997F), new Vector2(-679.786011F, -189.944F), new Vector2(-680.565979F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-681.346008F, -187.255997F), new Vector2(-681.736023F, -185.744003F), new Vector2(-681.736023F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-681.736023F, -182.408005F), new Vector2(-681.346008F, -180.901993F), new Vector2(-680.565979F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-679.786011F, -178.190002F), new Vector2(-678.718018F, -177.115997F), new Vector2(-677.362F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-676.005981F, -175.531998F), new Vector2(-674.487976F, -175.136002F), new Vector2(-672.807983F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-671.487976F, -175.136002F), new Vector2(-670.257996F, -175.388F), new Vector2(-669.117981F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0532()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-690.124023F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(-689.356018F, -189.511993F), new Vector2(-688.372009F, -189.895996F), new Vector2(-687.171997F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-686.596008F, -189.895996F), new Vector2(-686.09198F, -189.811996F), new Vector2(-685.659973F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(-685.228027F, -189.475998F), new Vector2(-684.83197F, -189.199997F), new Vector2(-684.471985F, -188.815994F));
+ builder.AddLine(new Vector2(-682.348022F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-682.947998F, -191.707993F), new Vector2(-683.596008F, -192.205994F), new Vector2(-684.291992F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(-684.987976F, -192.806F), new Vector2(-685.768005F, -192.955994F), new Vector2(-686.632019F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-688.528015F, -192.955994F), new Vector2(-689.97998F, -192.307999F), new Vector2(-690.987976F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-691.995972F, -189.716003F), new Vector2(-692.5F, -187.975998F), new Vector2(-692.5F, -185.792007F));
+ builder.AddLine(new Vector2(-691.276001F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(-691.276001F, -186.800003F), new Vector2(-690.892029F, -187.975998F), new Vector2(-690.124023F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-691.276001F, -175.496002F));
+ builder.AddLine(new Vector2(-691.276001F, -192.595993F));
+ builder.AddLine(new Vector2(-694.515991F, -192.595993F));
+ builder.AddLine(new Vector2(-694.515991F, -175.496002F));
+ builder.AddLine(new Vector2(-691.276001F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0533()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-709.924011F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-710.763977F, -179.528F), new Vector2(-711.424011F, -180.218002F), new Vector2(-711.903992F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-712.383972F, -181.970001F), new Vector2(-712.624023F, -182.972F), new Vector2(-712.624023F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-712.624023F, -185.203995F), new Vector2(-712.383972F, -186.188004F), new Vector2(-711.903992F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-711.424011F, -187.916F), new Vector2(-710.763977F, -188.593994F), new Vector2(-709.924011F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-709.083984F, -189.578003F), new Vector2(-708.135986F, -189.824005F), new Vector2(-707.080017F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-705.976013F, -189.824005F), new Vector2(-705.01001F, -189.578003F), new Vector2(-704.182007F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-703.354004F, -188.593994F), new Vector2(-702.69397F, -187.916F), new Vector2(-702.202026F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-701.710022F, -186.188004F), new Vector2(-701.463989F, -185.203995F), new Vector2(-701.463989F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-701.463989F, -182.972F), new Vector2(-701.703979F, -181.970001F), new Vector2(-702.184021F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-702.664001F, -180.218002F), new Vector2(-703.323975F, -179.528F), new Vector2(-704.164001F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-705.004028F, -178.520004F), new Vector2(-705.976013F, -178.268005F), new Vector2(-707.080017F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-708.135986F, -178.268005F), new Vector2(-709.083984F, -178.520004F), new Vector2(-709.924011F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-702.526001F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-701.169983F, -177.115997F), new Vector2(-700.096008F, -178.190002F), new Vector2(-699.304016F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-698.512024F, -180.901993F), new Vector2(-698.116028F, -182.419998F), new Vector2(-698.116028F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-698.116028F, -185.755997F), new Vector2(-698.512024F, -187.255997F), new Vector2(-699.304016F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-700.096008F, -189.944F), new Vector2(-701.169983F, -191.005997F), new Vector2(-702.526001F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-703.882019F, -192.565994F), new Vector2(-705.400024F, -192.955994F), new Vector2(-707.080017F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-708.736023F, -192.955994F), new Vector2(-710.236023F, -192.559998F), new Vector2(-711.580017F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-712.924011F, -190.975998F), new Vector2(-713.992004F, -189.914001F), new Vector2(-714.783997F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(-715.575989F, -187.25F), new Vector2(-715.971985F, -185.755997F), new Vector2(-715.971985F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-715.971985F, -182.419998F), new Vector2(-715.575989F, -180.901993F), new Vector2(-714.783997F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-713.992004F, -178.190002F), new Vector2(-712.924011F, -177.115997F), new Vector2(-711.580017F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-710.236023F, -175.531998F), new Vector2(-708.736023F, -175.136002F), new Vector2(-707.080017F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-705.400024F, -175.136002F), new Vector2(-703.882019F, -175.531998F), new Vector2(-702.526001F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0534()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-717.124023F, -189.643997F));
+ builder.AddLine(new Vector2(-717.124023F, -192.595993F));
+ builder.AddLine(new Vector2(-730.012024F, -192.595993F));
+ builder.AddLine(new Vector2(-730.012024F, -189.643997F));
+ builder.AddLine(new Vector2(-717.124023F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-722.559998F, -175.496002F));
+ builder.AddLine(new Vector2(-722.559998F, -195.151993F));
+ builder.AddCubicBezier(new Vector2(-722.559998F, -196.207993F), new Vector2(-722.278015F, -197.029999F), new Vector2(-721.713989F, -197.617996F));
+ builder.AddCubicBezier(new Vector2(-721.150024F, -198.205994F), new Vector2(-720.35199F, -198.5F), new Vector2(-719.320007F, -198.5F));
+ builder.AddCubicBezier(new Vector2(-718.768005F, -198.5F), new Vector2(-718.299988F, -198.416F), new Vector2(-717.916016F, -198.248001F));
+ builder.AddCubicBezier(new Vector2(-717.531982F, -198.080002F), new Vector2(-717.184021F, -197.828003F), new Vector2(-716.872009F, -197.492004F));
+ builder.AddLine(new Vector2(-714.747986F, -199.580002F));
+ builder.AddCubicBezier(new Vector2(-715.348022F, -200.227997F), new Vector2(-716.007996F, -200.720001F), new Vector2(-716.728027F, -201.056F));
+ builder.AddCubicBezier(new Vector2(-717.447998F, -201.391998F), new Vector2(-718.299988F, -201.559998F), new Vector2(-719.283997F, -201.559998F));
+ builder.AddCubicBezier(new Vector2(-720.580017F, -201.559998F), new Vector2(-721.719971F, -201.283997F), new Vector2(-722.703979F, -200.731995F));
+ builder.AddCubicBezier(new Vector2(-723.687988F, -200.179993F), new Vector2(-724.455994F, -199.423996F), new Vector2(-725.007996F, -198.464005F));
+ builder.AddCubicBezier(new Vector2(-725.559998F, -197.503998F), new Vector2(-725.835999F, -196.399994F), new Vector2(-725.835999F, -195.151993F));
+ builder.AddLine(new Vector2(-725.835999F, -175.496002F));
+ builder.AddLine(new Vector2(-722.559998F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0535()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-743.296021F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-742.119995F, -176.395996F), new Vector2(-741.112F, -177.128006F), new Vector2(-740.271973F, -178.087997F));
+ builder.AddLine(new Vector2(-742.359985F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-742.935974F, -179.539993F), new Vector2(-743.625977F, -179.035995F), new Vector2(-744.429993F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-745.234009F, -178.363998F), new Vector2(-746.116028F, -178.195999F), new Vector2(-747.075989F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-748.228027F, -178.195999F), new Vector2(-749.247986F, -178.442001F), new Vector2(-750.135986F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-751.023987F, -179.425995F), new Vector2(-751.708008F, -180.121994F), new Vector2(-752.187988F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-752.66803F, -181.921997F), new Vector2(-752.90802F, -182.972F), new Vector2(-752.90802F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-752.90802F, -185.348007F), new Vector2(-752.679993F, -186.367996F), new Vector2(-752.223999F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-751.768005F, -188.095993F), new Vector2(-751.119995F, -188.768005F), new Vector2(-750.280029F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-749.440002F, -189.727997F), new Vector2(-748.468018F, -189.968002F), new Vector2(-747.364014F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-746.307983F, -189.968002F), new Vector2(-745.40802F, -189.746002F), new Vector2(-744.664001F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-743.919983F, -188.858002F), new Vector2(-743.343994F, -188.233994F), new Vector2(-742.935974F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-742.528015F, -186.626007F), new Vector2(-742.323975F, -185.647995F), new Vector2(-742.323975F, -184.496002F));
+ builder.AddLine(new Vector2(-741.135986F, -185.539993F));
+ builder.AddLine(new Vector2(-753.843994F, -185.539993F));
+ builder.AddLine(new Vector2(-753.843994F, -182.839996F));
+ builder.AddLine(new Vector2(-739.40802F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-739.335999F, -183.175995F), new Vector2(-739.288025F, -183.481995F), new Vector2(-739.263977F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-739.23999F, -184.033997F), new Vector2(-739.228027F, -184.292007F), new Vector2(-739.228027F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-739.228027F, -186.164001F), new Vector2(-739.570007F, -187.615997F), new Vector2(-740.254028F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-740.937988F, -190.160004F), new Vector2(-741.892029F, -191.156006F), new Vector2(-743.116028F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-744.340027F, -192.595993F), new Vector2(-745.731995F, -192.955994F), new Vector2(-747.291992F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-748.947998F, -192.955994F), new Vector2(-750.442017F, -192.565994F), new Vector2(-751.773987F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-753.106018F, -191.005997F), new Vector2(-754.161987F, -189.944F), new Vector2(-754.942017F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-755.721985F, -187.255997F), new Vector2(-756.112F, -185.744003F), new Vector2(-756.112F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-756.112F, -182.360001F), new Vector2(-755.716003F, -180.835999F), new Vector2(-754.924011F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-754.132019F, -178.147995F), new Vector2(-753.057983F, -177.085999F), new Vector2(-751.702026F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-750.346008F, -175.526001F), new Vector2(-748.804016F, -175.136002F), new Vector2(-747.075989F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-745.731995F, -175.136002F), new Vector2(-744.471985F, -175.388F), new Vector2(-743.296021F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0536()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-760.773987F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-759.633972F, -176.395996F), new Vector2(-758.66803F, -177.104004F), new Vector2(-757.875977F, -178.016006F));
+ builder.AddLine(new Vector2(-760F, -180.175995F));
+ builder.AddCubicBezier(new Vector2(-760.552002F, -179.552002F), new Vector2(-761.205994F, -179.078003F), new Vector2(-761.961975F, -178.753998F));
+ builder.AddCubicBezier(new Vector2(-762.718018F, -178.429993F), new Vector2(-763.552002F, -178.268005F), new Vector2(-764.463989F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-765.544006F, -178.268005F), new Vector2(-766.504028F, -178.520004F), new Vector2(-767.343994F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-768.184021F, -179.528F), new Vector2(-768.843994F, -180.212006F), new Vector2(-769.323975F, -181.076004F));
+ builder.AddCubicBezier(new Vector2(-769.804016F, -181.940002F), new Vector2(-770.044006F, -182.936005F), new Vector2(-770.044006F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-770.044006F, -185.192001F), new Vector2(-769.804016F, -186.188004F), new Vector2(-769.323975F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-768.843994F, -187.916F), new Vector2(-768.184021F, -188.593994F), new Vector2(-767.343994F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-766.504028F, -189.578003F), new Vector2(-765.544006F, -189.824005F), new Vector2(-764.463989F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-763.575989F, -189.824005F), new Vector2(-762.747986F, -189.662003F), new Vector2(-761.97998F, -189.337997F));
+ builder.AddCubicBezier(new Vector2(-761.211975F, -189.014008F), new Vector2(-760.564026F, -188.539993F), new Vector2(-760.036011F, -187.916F));
+ builder.AddLine(new Vector2(-757.875977F, -190.076004F));
+ builder.AddCubicBezier(new Vector2(-758.692017F, -191.011993F), new Vector2(-759.664001F, -191.725998F), new Vector2(-760.791992F, -192.218002F));
+ builder.AddCubicBezier(new Vector2(-761.919983F, -192.710007F), new Vector2(-763.143982F, -192.955994F), new Vector2(-764.463989F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-766.143982F, -192.955994F), new Vector2(-767.661987F, -192.565994F), new Vector2(-769.018005F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-770.374023F, -191.005997F), new Vector2(-771.442017F, -189.944F), new Vector2(-772.221985F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-773.002014F, -187.255997F), new Vector2(-773.392029F, -185.744003F), new Vector2(-773.392029F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-773.392029F, -182.408005F), new Vector2(-773.002014F, -180.901993F), new Vector2(-772.221985F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-771.442017F, -178.190002F), new Vector2(-770.374023F, -177.115997F), new Vector2(-769.018005F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-767.661987F, -175.531998F), new Vector2(-766.143982F, -175.136002F), new Vector2(-764.463989F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-763.143982F, -175.136002F), new Vector2(-761.914001F, -175.388F), new Vector2(-760.773987F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0537()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-777.208008F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(-776.823975F, -197.005997F), new Vector2(-776.632019F, -197.503998F), new Vector2(-776.632019F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(-776.632019F, -198.679993F), new Vector2(-776.823975F, -199.166F), new Vector2(-777.208008F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(-777.59198F, -199.957993F), new Vector2(-778.083984F, -200.156006F), new Vector2(-778.684021F, -200.156006F));
+ builder.AddCubicBezier(new Vector2(-779.283997F, -200.156006F), new Vector2(-779.776001F, -199.957993F), new Vector2(-780.159973F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(-780.544006F, -199.166F), new Vector2(-780.736023F, -198.679993F), new Vector2(-780.736023F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(-780.736023F, -197.503998F), new Vector2(-780.544006F, -197.005997F), new Vector2(-780.159973F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(-779.776001F, -196.214005F), new Vector2(-779.283997F, -196.016006F), new Vector2(-778.684021F, -196.016006F));
+ builder.AddCubicBezier(new Vector2(-778.083984F, -196.016006F), new Vector2(-777.59198F, -196.214005F), new Vector2(-777.208008F, -196.610001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-777.064026F, -175.496002F));
+ builder.AddLine(new Vector2(-777.064026F, -192.595993F));
+ builder.AddLine(new Vector2(-780.340027F, -192.595993F));
+ builder.AddLine(new Vector2(-780.340027F, -175.496002F));
+ builder.AddLine(new Vector2(-777.064026F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0538()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-785.09198F, -175.496002F));
+ builder.AddLine(new Vector2(-785.09198F, -201.199997F));
+ builder.AddLine(new Vector2(-788.33197F, -201.199997F));
+ builder.AddLine(new Vector2(-788.33197F, -175.496002F));
+ builder.AddLine(new Vector2(-785.09198F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0539()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-803.73999F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-804.580017F, -179.528F), new Vector2(-805.23999F, -180.218002F), new Vector2(-805.719971F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-806.200012F, -181.970001F), new Vector2(-806.440002F, -182.972F), new Vector2(-806.440002F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-806.440002F, -185.203995F), new Vector2(-806.200012F, -186.188004F), new Vector2(-805.719971F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-805.23999F, -187.916F), new Vector2(-804.580017F, -188.593994F), new Vector2(-803.73999F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-802.900024F, -189.578003F), new Vector2(-801.952026F, -189.824005F), new Vector2(-800.895996F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-799.791992F, -189.824005F), new Vector2(-798.825989F, -189.578003F), new Vector2(-797.997986F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-797.169983F, -188.593994F), new Vector2(-796.51001F, -187.916F), new Vector2(-796.018005F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-795.526001F, -186.188004F), new Vector2(-795.280029F, -185.203995F), new Vector2(-795.280029F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-795.280029F, -182.972F), new Vector2(-795.52002F, -181.970001F), new Vector2(-796F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-796.47998F, -180.218002F), new Vector2(-797.140015F, -179.528F), new Vector2(-797.97998F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-798.820007F, -178.520004F), new Vector2(-799.791992F, -178.268005F), new Vector2(-800.895996F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-801.952026F, -178.268005F), new Vector2(-802.900024F, -178.520004F), new Vector2(-803.73999F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-796.34198F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-794.986023F, -177.115997F), new Vector2(-793.911987F, -178.190002F), new Vector2(-793.119995F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-792.328003F, -180.901993F), new Vector2(-791.932007F, -182.419998F), new Vector2(-791.932007F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-791.932007F, -185.755997F), new Vector2(-792.328003F, -187.255997F), new Vector2(-793.119995F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-793.911987F, -189.944F), new Vector2(-794.986023F, -191.005997F), new Vector2(-796.34198F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-797.697998F, -192.565994F), new Vector2(-799.216003F, -192.955994F), new Vector2(-800.895996F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-802.552002F, -192.955994F), new Vector2(-804.052002F, -192.559998F), new Vector2(-805.395996F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-806.73999F, -190.975998F), new Vector2(-807.807983F, -189.914001F), new Vector2(-808.599976F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(-809.392029F, -187.25F), new Vector2(-809.788025F, -185.755997F), new Vector2(-809.788025F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-809.788025F, -182.419998F), new Vector2(-809.392029F, -180.901993F), new Vector2(-808.599976F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-807.807983F, -178.190002F), new Vector2(-806.73999F, -177.115997F), new Vector2(-805.395996F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-804.052002F, -175.531998F), new Vector2(-802.552002F, -175.136002F), new Vector2(-800.895996F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-799.216003F, -175.136002F), new Vector2(-797.697998F, -175.531998F), new Vector2(-796.34198F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0540()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-823.98999F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-824.817993F, -179.455994F), new Vector2(-825.453979F, -180.145996F), new Vector2(-825.89801F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-826.34198F, -181.897995F), new Vector2(-826.564026F, -182.899994F), new Vector2(-826.564026F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-826.564026F, -185.179993F), new Vector2(-826.335999F, -186.194F), new Vector2(-825.880005F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-825.424011F, -187.945999F), new Vector2(-824.788025F, -188.636002F), new Vector2(-823.971985F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-823.156006F, -189.643997F), new Vector2(-822.219971F, -189.895996F), new Vector2(-821.164001F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-820.083984F, -189.895996F), new Vector2(-819.135986F, -189.643997F), new Vector2(-818.320007F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-817.504028F, -188.636002F), new Vector2(-816.862F, -187.945999F), new Vector2(-816.393982F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-815.926025F, -186.194F), new Vector2(-815.692017F, -185.192001F), new Vector2(-815.692017F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-815.692017F, -182.912003F), new Vector2(-815.926025F, -181.897995F), new Vector2(-816.393982F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-816.862F, -180.145996F), new Vector2(-817.504028F, -179.455994F), new Vector2(-818.320007F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-819.135986F, -178.447998F), new Vector2(-820.083984F, -178.195999F), new Vector2(-821.164001F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-822.219971F, -178.195999F), new Vector2(-823.161987F, -178.447998F), new Vector2(-823.98999F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-826.383972F, -168.332001F));
+ builder.AddLine(new Vector2(-826.383972F, -179.779999F));
+ builder.AddLine(new Vector2(-826.995972F, -183.955994F));
+ builder.AddLine(new Vector2(-826.383972F, -188.095993F));
+ builder.AddLine(new Vector2(-826.383972F, -192.595993F));
+ builder.AddLine(new Vector2(-829.624023F, -192.595993F));
+ builder.AddLine(new Vector2(-829.624023F, -168.332001F));
+ builder.AddLine(new Vector2(-826.383972F, -168.332001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-816.393982F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-815.133972F, -177.085999F), new Vector2(-814.143982F, -178.147995F), new Vector2(-813.424011F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-812.703979F, -180.835999F), new Vector2(-812.343994F, -182.348007F), new Vector2(-812.343994F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-812.343994F, -185.707993F), new Vector2(-812.703979F, -187.220001F), new Vector2(-813.424011F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-814.143982F, -189.908005F), new Vector2(-815.133972F, -190.975998F), new Vector2(-816.393982F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-817.653992F, -192.559998F), new Vector2(-819.064026F, -192.955994F), new Vector2(-820.624023F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-821.895996F, -192.955994F), new Vector2(-823.054016F, -192.686005F), new Vector2(-824.098022F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-825.142029F, -191.606003F), new Vector2(-825.981995F, -190.862F), new Vector2(-826.617981F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-827.254028F, -188.966003F), new Vector2(-827.607971F, -187.867996F), new Vector2(-827.679993F, -186.619995F));
+ builder.AddLine(new Vector2(-827.679993F, -181.472F));
+ builder.AddCubicBezier(new Vector2(-827.607971F, -180.248001F), new Vector2(-827.26001F, -179.156006F), new Vector2(-826.635986F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-826.012024F, -177.235992F), new Vector2(-825.177979F, -176.485992F), new Vector2(-824.133972F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-823.090027F, -175.406006F), new Vector2(-821.919983F, -175.136002F), new Vector2(-820.624023F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-819.064026F, -175.136002F), new Vector2(-817.653992F, -175.526001F), new Vector2(-816.393982F, -176.306F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0541()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(751.892029F, -232.843994F));
+ builder.AddLine(new Vector2(751.892029F, -235.796005F));
+ builder.AddLine(new Vector2(740.228027F, -235.796005F));
+ builder.AddLine(new Vector2(740.228027F, -232.843994F));
+ builder.AddLine(new Vector2(751.892029F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(747.679993F, -218.695999F));
+ builder.AddLine(new Vector2(747.679993F, -242.960007F));
+ builder.AddLine(new Vector2(744.440002F, -242.960007F));
+ builder.AddLine(new Vector2(744.440002F, -218.695999F));
+ builder.AddLine(new Vector2(747.679993F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0542()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(736.466003F, -219.740005F));
+ builder.AddCubicBezier(new Vector2(737.606018F, -220.675995F), new Vector2(738.176025F, -221.947998F), new Vector2(738.176025F, -223.556F));
+ builder.AddCubicBezier(new Vector2(738.176025F, -224.612F), new Vector2(737.953979F, -225.464005F), new Vector2(737.51001F, -226.112F));
+ builder.AddCubicBezier(new Vector2(737.065979F, -226.759995F), new Vector2(736.495972F, -227.276001F), new Vector2(735.799988F, -227.660004F));
+ builder.AddCubicBezier(new Vector2(735.104004F, -228.044006F), new Vector2(734.372009F, -228.350006F), new Vector2(733.604004F, -228.578003F));
+ builder.AddCubicBezier(new Vector2(732.835999F, -228.806F), new Vector2(732.098022F, -229.028F), new Vector2(731.390015F, -229.244003F));
+ builder.AddCubicBezier(new Vector2(730.682007F, -229.460007F), new Vector2(730.112F, -229.723999F), new Vector2(729.679993F, -230.035995F));
+ builder.AddCubicBezier(new Vector2(729.247986F, -230.348007F), new Vector2(729.031982F, -230.792007F), new Vector2(729.031982F, -231.367996F));
+ builder.AddCubicBezier(new Vector2(729.031982F, -231.919998F), new Vector2(729.278015F, -232.363998F), new Vector2(729.77002F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(730.262024F, -233.035995F), new Vector2(730.976013F, -233.203995F), new Vector2(731.911987F, -233.203995F));
+ builder.AddCubicBezier(new Vector2(732.799988F, -233.203995F), new Vector2(733.59198F, -233.035995F), new Vector2(734.288025F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(734.984009F, -232.363998F), new Vector2(735.583984F, -231.884003F), new Vector2(736.088013F, -231.259995F));
+ builder.AddLine(new Vector2(738.176025F, -233.348007F));
+ builder.AddCubicBezier(new Vector2(737.504028F, -234.283997F), new Vector2(736.645996F, -234.985992F), new Vector2(735.60199F, -235.453995F));
+ builder.AddCubicBezier(new Vector2(734.557983F, -235.921997F), new Vector2(733.364014F, -236.156006F), new Vector2(732.02002F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(730.747986F, -236.156006F), new Vector2(729.656006F, -235.951996F), new Vector2(728.744019F, -235.544006F));
+ builder.AddCubicBezier(new Vector2(727.83197F, -235.136002F), new Vector2(727.130005F, -234.554001F), new Vector2(726.638F, -233.798004F));
+ builder.AddCubicBezier(new Vector2(726.145996F, -233.042007F), new Vector2(725.900024F, -232.147995F), new Vector2(725.900024F, -231.115997F));
+ builder.AddCubicBezier(new Vector2(725.900024F, -230.084F), new Vector2(726.122009F, -229.25F), new Vector2(726.565979F, -228.613998F));
+ builder.AddCubicBezier(new Vector2(727.01001F, -227.977997F), new Vector2(727.580017F, -227.479996F), new Vector2(728.276001F, -227.119995F));
+ builder.AddCubicBezier(new Vector2(728.971985F, -226.759995F), new Vector2(729.710022F, -226.472F), new Vector2(730.48999F, -226.255997F));
+ builder.AddCubicBezier(new Vector2(731.27002F, -226.039993F), new Vector2(732.007996F, -225.817993F), new Vector2(732.703979F, -225.589996F));
+ builder.AddCubicBezier(new Vector2(733.400024F, -225.362F), new Vector2(733.969971F, -225.074005F), new Vector2(734.414001F, -224.725998F));
+ builder.AddCubicBezier(new Vector2(734.857971F, -224.378006F), new Vector2(735.080017F, -223.891998F), new Vector2(735.080017F, -223.268005F));
+ builder.AddCubicBezier(new Vector2(735.080017F, -222.643997F), new Vector2(734.804016F, -222.158005F), new Vector2(734.252014F, -221.809998F));
+ builder.AddCubicBezier(new Vector2(733.700012F, -221.462006F), new Vector2(732.919983F, -221.287994F), new Vector2(731.911987F, -221.287994F));
+ builder.AddCubicBezier(new Vector2(730.903992F, -221.287994F), new Vector2(729.992004F, -221.473999F), new Vector2(729.176025F, -221.845993F));
+ builder.AddCubicBezier(new Vector2(728.359985F, -222.218002F), new Vector2(727.640015F, -222.787994F), new Vector2(727.015991F, -223.556F));
+ builder.AddLine(new Vector2(724.927979F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(725.455994F, -220.820007F), new Vector2(726.073975F, -220.261993F), new Vector2(726.781982F, -219.794006F));
+ builder.AddCubicBezier(new Vector2(727.48999F, -219.326004F), new Vector2(728.276001F, -218.966003F), new Vector2(729.140015F, -218.714005F));
+ builder.AddCubicBezier(new Vector2(730.004028F, -218.462006F), new Vector2(730.916016F, -218.335999F), new Vector2(731.875977F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(733.796021F, -218.335999F), new Vector2(735.325989F, -218.804001F), new Vector2(736.466003F, -219.740005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0543()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(718.843994F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(720.02002F, -219.595993F), new Vector2(721.028015F, -220.328003F), new Vector2(721.867981F, -221.287994F));
+ builder.AddLine(new Vector2(719.780029F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(719.203979F, -222.740005F), new Vector2(718.513977F, -222.235992F), new Vector2(717.710022F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(716.906006F, -221.563995F), new Vector2(716.023987F, -221.395996F), new Vector2(715.064026F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(713.911987F, -221.395996F), new Vector2(712.892029F, -221.641998F), new Vector2(712.004028F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(711.116028F, -222.626007F), new Vector2(710.432007F, -223.322006F), new Vector2(709.952026F, -224.222F));
+ builder.AddCubicBezier(new Vector2(709.471985F, -225.121994F), new Vector2(709.231995F, -226.171997F), new Vector2(709.231995F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(709.231995F, -228.548004F), new Vector2(709.460022F, -229.567993F), new Vector2(709.916016F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(710.372009F, -231.296005F), new Vector2(711.02002F, -231.968002F), new Vector2(711.859985F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(712.700012F, -232.927994F), new Vector2(713.671997F, -233.167999F), new Vector2(714.776001F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(715.83197F, -233.167999F), new Vector2(716.731995F, -232.945999F), new Vector2(717.476013F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(718.219971F, -232.057999F), new Vector2(718.796021F, -231.434006F), new Vector2(719.203979F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(719.612F, -229.826004F), new Vector2(719.815979F, -228.848007F), new Vector2(719.815979F, -227.695999F));
+ builder.AddLine(new Vector2(721.004028F, -228.740005F));
+ builder.AddLine(new Vector2(708.296021F, -228.740005F));
+ builder.AddLine(new Vector2(708.296021F, -226.039993F));
+ builder.AddLine(new Vector2(722.731995F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(722.804016F, -226.376007F), new Vector2(722.85199F, -226.682007F), new Vector2(722.875977F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(722.900024F, -227.233994F), new Vector2(722.911987F, -227.492004F), new Vector2(722.911987F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(722.911987F, -229.363998F), new Vector2(722.570007F, -230.815994F), new Vector2(721.885986F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(721.202026F, -233.360001F), new Vector2(720.247986F, -234.356003F), new Vector2(719.023987F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(717.799988F, -235.796005F), new Vector2(716.40802F, -236.156006F), new Vector2(714.848022F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(713.192017F, -236.156006F), new Vector2(711.697998F, -235.766006F), new Vector2(710.366028F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(709.033997F, -234.205994F), new Vector2(707.978027F, -233.143997F), new Vector2(707.197998F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(706.41803F, -230.455994F), new Vector2(706.028015F, -228.944F), new Vector2(706.028015F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(706.028015F, -225.559998F), new Vector2(706.424011F, -224.035995F), new Vector2(707.216003F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(708.007996F, -221.348007F), new Vector2(709.08197F, -220.285995F), new Vector2(710.437988F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(711.794006F, -218.725998F), new Vector2(713.335999F, -218.335999F), new Vector2(715.064026F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(716.40802F, -218.335999F), new Vector2(717.66803F, -218.587997F), new Vector2(718.843994F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0544()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(704.515991F, -232.843994F));
+ builder.AddLine(new Vector2(704.515991F, -235.796005F));
+ builder.AddLine(new Vector2(692.85199F, -235.796005F));
+ builder.AddLine(new Vector2(692.85199F, -232.843994F));
+ builder.AddLine(new Vector2(704.515991F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(700.304016F, -218.695999F));
+ builder.AddLine(new Vector2(700.304016F, -242.960007F));
+ builder.AddLine(new Vector2(697.064026F, -242.960007F));
+ builder.AddLine(new Vector2(697.064026F, -218.695999F));
+ builder.AddLine(new Vector2(700.304016F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0545()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(679.567993F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(678.728027F, -222.727997F), new Vector2(678.067993F, -223.417999F), new Vector2(677.588013F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(677.107971F, -225.169998F), new Vector2(676.867981F, -226.171997F), new Vector2(676.867981F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(676.867981F, -228.404007F), new Vector2(677.107971F, -229.388F), new Vector2(677.588013F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(678.067993F, -231.115997F), new Vector2(678.728027F, -231.794006F), new Vector2(679.567993F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(680.40802F, -232.778F), new Vector2(681.356018F, -233.024002F), new Vector2(682.411987F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(683.515991F, -233.024002F), new Vector2(684.481995F, -232.778F), new Vector2(685.309998F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(686.138F, -231.794006F), new Vector2(686.797974F, -231.115997F), new Vector2(687.289978F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(687.781982F, -229.388F), new Vector2(688.028015F, -228.404007F), new Vector2(688.028015F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(688.028015F, -226.171997F), new Vector2(687.788025F, -225.169998F), new Vector2(687.307983F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(686.828003F, -223.417999F), new Vector2(686.16803F, -222.727997F), new Vector2(685.328003F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(684.487976F, -221.720001F), new Vector2(683.515991F, -221.468002F), new Vector2(682.411987F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(681.356018F, -221.468002F), new Vector2(680.40802F, -221.720001F), new Vector2(679.567993F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(686.966003F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(688.322021F, -220.315994F), new Vector2(689.395996F, -221.389999F), new Vector2(690.187988F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(690.97998F, -224.102005F), new Vector2(691.375977F, -225.619995F), new Vector2(691.375977F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(691.375977F, -228.955994F), new Vector2(690.97998F, -230.455994F), new Vector2(690.187988F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(689.395996F, -233.143997F), new Vector2(688.322021F, -234.205994F), new Vector2(686.966003F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(685.609985F, -235.766006F), new Vector2(684.09198F, -236.156006F), new Vector2(682.411987F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(680.755981F, -236.156006F), new Vector2(679.255981F, -235.759995F), new Vector2(677.911987F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(676.567993F, -234.175995F), new Vector2(675.5F, -233.113998F), new Vector2(674.708008F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(673.916016F, -230.449997F), new Vector2(673.52002F, -228.955994F), new Vector2(673.52002F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(673.52002F, -225.619995F), new Vector2(673.916016F, -224.102005F), new Vector2(674.708008F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(675.5F, -221.389999F), new Vector2(676.567993F, -220.315994F), new Vector2(677.911987F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(679.255981F, -218.731995F), new Vector2(680.755981F, -218.335999F), new Vector2(682.411987F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(684.09198F, -218.335999F), new Vector2(685.609985F, -218.731995F), new Vector2(686.966003F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0546()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(665.132019F, -231.944F));
+ builder.AddCubicBezier(new Vector2(665.900024F, -232.712006F), new Vector2(666.883972F, -233.095993F), new Vector2(668.083984F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(668.659973F, -233.095993F), new Vector2(669.164001F, -233.011993F), new Vector2(669.596008F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(670.028015F, -232.675995F), new Vector2(670.424011F, -232.399994F), new Vector2(670.783997F, -232.016006F));
+ builder.AddLine(new Vector2(672.90802F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(672.307983F, -234.908005F), new Vector2(671.659973F, -235.406006F), new Vector2(670.963989F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(670.268005F, -236.005997F), new Vector2(669.487976F, -236.156006F), new Vector2(668.624023F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(666.728027F, -236.156006F), new Vector2(665.276001F, -235.507996F), new Vector2(664.268005F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(663.26001F, -232.916F), new Vector2(662.755981F, -231.175995F), new Vector2(662.755981F, -228.992004F));
+ builder.AddLine(new Vector2(663.97998F, -228.416F));
+ builder.AddCubicBezier(new Vector2(663.97998F, -230F), new Vector2(664.364014F, -231.175995F), new Vector2(665.132019F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(663.97998F, -218.695999F));
+ builder.AddLine(new Vector2(663.97998F, -235.796005F));
+ builder.AddLine(new Vector2(660.73999F, -235.796005F));
+ builder.AddLine(new Vector2(660.73999F, -218.695999F));
+ builder.AddLine(new Vector2(663.97998F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0547()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(645.421997F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(644.593994F, -222.656006F), new Vector2(643.958008F, -223.345993F), new Vector2(643.513977F, -224.222F));
+ builder.AddCubicBezier(new Vector2(643.070007F, -225.098007F), new Vector2(642.848022F, -226.100006F), new Vector2(642.848022F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(642.848022F, -228.380005F), new Vector2(643.075989F, -229.393997F), new Vector2(643.531982F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(643.987976F, -231.145996F), new Vector2(644.624023F, -231.835999F), new Vector2(645.440002F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(646.255981F, -232.843994F), new Vector2(647.192017F, -233.095993F), new Vector2(648.247986F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(649.328003F, -233.095993F), new Vector2(650.276001F, -232.843994F), new Vector2(651.09198F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(651.90802F, -231.835999F), new Vector2(652.549988F, -231.145996F), new Vector2(653.018005F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(653.486023F, -229.393997F), new Vector2(653.719971F, -228.391998F), new Vector2(653.719971F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(653.719971F, -226.112F), new Vector2(653.486023F, -225.098007F), new Vector2(653.018005F, -224.222F));
+ builder.AddCubicBezier(new Vector2(652.549988F, -223.345993F), new Vector2(651.90802F, -222.656006F), new Vector2(651.09198F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(650.276001F, -221.647995F), new Vector2(649.328003F, -221.395996F), new Vector2(648.247986F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(647.192017F, -221.395996F), new Vector2(646.25F, -221.647995F), new Vector2(645.421997F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(643.028015F, -211.531998F));
+ builder.AddLine(new Vector2(643.028015F, -222.979996F));
+ builder.AddLine(new Vector2(642.416016F, -227.156006F));
+ builder.AddLine(new Vector2(643.028015F, -231.296005F));
+ builder.AddLine(new Vector2(643.028015F, -235.796005F));
+ builder.AddLine(new Vector2(639.788025F, -235.796005F));
+ builder.AddLine(new Vector2(639.788025F, -211.531998F));
+ builder.AddLine(new Vector2(643.028015F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(653.018005F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(654.278015F, -220.285995F), new Vector2(655.268005F, -221.348007F), new Vector2(655.987976F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(656.708008F, -224.035995F), new Vector2(657.067993F, -225.548004F), new Vector2(657.067993F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(657.067993F, -228.908005F), new Vector2(656.708008F, -230.419998F), new Vector2(655.987976F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(655.268005F, -233.108002F), new Vector2(654.278015F, -234.175995F), new Vector2(653.018005F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(651.757996F, -235.759995F), new Vector2(650.348022F, -236.156006F), new Vector2(648.788025F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(647.515991F, -236.156006F), new Vector2(646.357971F, -235.886002F), new Vector2(645.314026F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(644.27002F, -234.806F), new Vector2(643.429993F, -234.061996F), new Vector2(642.794006F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(642.15802F, -232.166F), new Vector2(641.804016F, -231.067993F), new Vector2(641.731995F, -229.820007F));
+ builder.AddLine(new Vector2(641.731995F, -224.671997F));
+ builder.AddCubicBezier(new Vector2(641.804016F, -223.447998F), new Vector2(642.151978F, -222.356003F), new Vector2(642.776001F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(643.400024F, -220.436005F), new Vector2(644.234009F, -219.686005F), new Vector2(645.278015F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(646.322021F, -218.606003F), new Vector2(647.492004F, -218.335999F), new Vector2(648.788025F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(650.348022F, -218.335999F), new Vector2(651.757996F, -218.725998F), new Vector2(653.018005F, -219.505997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0548()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(635.036011F, -226.292007F));
+ builder.AddLine(new Vector2(635.036011F, -229.388F));
+ builder.AddLine(new Vector2(623.192017F, -229.388F));
+ builder.AddLine(new Vector2(623.192017F, -226.292007F));
+ builder.AddLine(new Vector2(635.036011F, -226.292007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0549()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(618.26001F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(618.643982F, -240.205994F), new Vector2(618.835999F, -240.703995F), new Vector2(618.835999F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(618.835999F, -241.880005F), new Vector2(618.643982F, -242.365997F), new Vector2(618.26001F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(617.875977F, -243.158005F), new Vector2(617.383972F, -243.356003F), new Vector2(616.783997F, -243.356003F));
+ builder.AddCubicBezier(new Vector2(616.184021F, -243.356003F), new Vector2(615.692017F, -243.158005F), new Vector2(615.307983F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(614.924011F, -242.365997F), new Vector2(614.731995F, -241.880005F), new Vector2(614.731995F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(614.731995F, -240.703995F), new Vector2(614.924011F, -240.205994F), new Vector2(615.307983F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(615.692017F, -239.414001F), new Vector2(616.184021F, -239.216003F), new Vector2(616.783997F, -239.216003F));
+ builder.AddCubicBezier(new Vector2(617.383972F, -239.216003F), new Vector2(617.875977F, -239.414001F), new Vector2(618.26001F, -239.809998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(618.403992F, -218.695999F));
+ builder.AddLine(new Vector2(618.403992F, -235.796005F));
+ builder.AddLine(new Vector2(615.127991F, -235.796005F));
+ builder.AddLine(new Vector2(615.127991F, -218.695999F));
+ builder.AddLine(new Vector2(618.403992F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0550()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(611.960022F, -232.843994F));
+ builder.AddLine(new Vector2(611.960022F, -235.796005F));
+ builder.AddLine(new Vector2(600.296021F, -235.796005F));
+ builder.AddLine(new Vector2(600.296021F, -232.843994F));
+ builder.AddLine(new Vector2(611.960022F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(607.747986F, -218.695999F));
+ builder.AddLine(new Vector2(607.747986F, -242.960007F));
+ builder.AddLine(new Vector2(604.507996F, -242.960007F));
+ builder.AddLine(new Vector2(604.507996F, -218.695999F));
+ builder.AddLine(new Vector2(607.747986F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0551()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(585.607971F, -218.695999F));
+ builder.AddLine(new Vector2(585.607971F, -235.796005F));
+ builder.AddLine(new Vector2(582.367981F, -235.796005F));
+ builder.AddLine(new Vector2(582.367981F, -218.695999F));
+ builder.AddLine(new Vector2(585.607971F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(597.703979F, -218.695999F));
+ builder.AddLine(new Vector2(597.703979F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(597.703979F, -230.492004F), new Vector2(597.416016F, -231.602005F), new Vector2(596.840027F, -232.645996F));
+ builder.AddCubicBezier(new Vector2(596.263977F, -233.690002F), new Vector2(595.478027F, -234.535995F), new Vector2(594.481995F, -235.184006F));
+ builder.AddCubicBezier(new Vector2(593.486023F, -235.832001F), new Vector2(592.340027F, -236.156006F), new Vector2(591.044006F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(589.747986F, -236.156006F), new Vector2(588.583984F, -235.862F), new Vector2(587.552002F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(586.52002F, -234.686005F), new Vector2(585.716003F, -233.888F), new Vector2(585.140015F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(584.564026F, -231.871994F), new Vector2(584.276001F, -230.720001F), new Vector2(584.276001F, -229.423996F));
+ builder.AddLine(new Vector2(585.607971F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(585.607971F, -229.531998F), new Vector2(585.799988F, -230.300003F), new Vector2(586.184021F, -230.972F));
+ builder.AddCubicBezier(new Vector2(586.567993F, -231.643997F), new Vector2(587.096008F, -232.171997F), new Vector2(587.768005F, -232.556F));
+ builder.AddCubicBezier(new Vector2(588.440002F, -232.940002F), new Vector2(589.208008F, -233.132004F), new Vector2(590.072021F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(591.367981F, -233.132004F), new Vector2(592.41803F, -232.712006F), new Vector2(593.221985F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(594.026001F, -231.031998F), new Vector2(594.427979F, -229.964005F), new Vector2(594.427979F, -228.667999F));
+ builder.AddLine(new Vector2(594.427979F, -218.695999F));
+ builder.AddLine(new Vector2(597.703979F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0552()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(577.651978F, -218.695999F));
+ builder.AddLine(new Vector2(577.651978F, -235.796005F));
+ builder.AddLine(new Vector2(574.375977F, -235.796005F));
+ builder.AddLine(new Vector2(574.375977F, -231.619995F));
+ builder.AddLine(new Vector2(574.987976F, -227.479996F));
+ builder.AddLine(new Vector2(574.375977F, -223.304001F));
+ builder.AddLine(new Vector2(574.375977F, -218.695999F));
+ builder.AddLine(new Vector2(577.651978F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(566.348022F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(565.507996F, -222.656006F), new Vector2(564.854004F, -223.345993F), new Vector2(564.385986F, -224.222F));
+ builder.AddCubicBezier(new Vector2(563.91803F, -225.098007F), new Vector2(563.684021F, -226.112F), new Vector2(563.684021F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(563.684021F, -228.391998F), new Vector2(563.91803F, -229.393997F), new Vector2(564.385986F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(564.854004F, -231.145996F), new Vector2(565.502014F, -231.835999F), new Vector2(566.330017F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(567.15802F, -232.843994F), new Vector2(568.112F, -233.095993F), new Vector2(569.192017F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(570.271973F, -233.095993F), new Vector2(571.213989F, -232.850006F), new Vector2(572.018005F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(572.822021F, -231.865997F), new Vector2(573.452026F, -231.175995F), new Vector2(573.90802F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(574.364014F, -229.399994F), new Vector2(574.59198F, -228.380005F), new Vector2(574.59198F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(574.59198F, -225.524002F), new Vector2(574.099976F, -224.126007F), new Vector2(573.116028F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(572.132019F, -221.942001F), new Vector2(570.835999F, -221.395996F), new Vector2(569.228027F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(568.14801F, -221.395996F), new Vector2(567.187988F, -221.647995F), new Vector2(566.348022F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(572.179993F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(573.211975F, -219.686005F), new Vector2(574.033997F, -220.436005F), new Vector2(574.645996F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(575.257996F, -222.356003F), new Vector2(575.599976F, -223.447998F), new Vector2(575.671997F, -224.671997F));
+ builder.AddLine(new Vector2(575.671997F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(575.599976F, -231.067993F), new Vector2(575.252014F, -232.166F), new Vector2(574.627991F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(574.004028F, -234.061996F), new Vector2(573.182007F, -234.806F), new Vector2(572.161987F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(571.142029F, -235.886002F), new Vector2(569.984009F, -236.156006F), new Vector2(568.687988F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(567.104004F, -236.156006F), new Vector2(565.682007F, -235.759995F), new Vector2(564.421997F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(563.161987F, -234.175995F), new Vector2(562.166016F, -233.108002F), new Vector2(561.434021F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(560.702026F, -230.419998F), new Vector2(560.335999F, -228.908005F), new Vector2(560.335999F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(560.335999F, -225.548004F), new Vector2(560.702026F, -224.035995F), new Vector2(561.434021F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(562.166016F, -221.348007F), new Vector2(563.161987F, -220.285995F), new Vector2(564.421997F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(565.682007F, -218.725998F), new Vector2(567.104004F, -218.335999F), new Vector2(568.687988F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(569.984009F, -218.335999F), new Vector2(571.14801F, -218.606003F), new Vector2(572.179993F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0553()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(546.367981F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(547.544006F, -219.595993F), new Vector2(548.552002F, -220.328003F), new Vector2(549.392029F, -221.287994F));
+ builder.AddLine(new Vector2(547.304016F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(546.728027F, -222.740005F), new Vector2(546.038025F, -222.235992F), new Vector2(545.234009F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(544.429993F, -221.563995F), new Vector2(543.547974F, -221.395996F), new Vector2(542.588013F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(541.435974F, -221.395996F), new Vector2(540.416016F, -221.641998F), new Vector2(539.528015F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(538.640015F, -222.626007F), new Vector2(537.955994F, -223.322006F), new Vector2(537.476013F, -224.222F));
+ builder.AddCubicBezier(new Vector2(536.995972F, -225.121994F), new Vector2(536.755981F, -226.171997F), new Vector2(536.755981F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(536.755981F, -228.548004F), new Vector2(536.984009F, -229.567993F), new Vector2(537.440002F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(537.895996F, -231.296005F), new Vector2(538.544006F, -231.968002F), new Vector2(539.383972F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(540.223999F, -232.927994F), new Vector2(541.195984F, -233.167999F), new Vector2(542.299988F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(543.356018F, -233.167999F), new Vector2(544.255981F, -232.945999F), new Vector2(545F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(545.744019F, -232.057999F), new Vector2(546.320007F, -231.434006F), new Vector2(546.728027F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(547.135986F, -229.826004F), new Vector2(547.340027F, -228.848007F), new Vector2(547.340027F, -227.695999F));
+ builder.AddLine(new Vector2(548.528015F, -228.740005F));
+ builder.AddLine(new Vector2(535.820007F, -228.740005F));
+ builder.AddLine(new Vector2(535.820007F, -226.039993F));
+ builder.AddLine(new Vector2(550.255981F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(550.328003F, -226.376007F), new Vector2(550.375977F, -226.682007F), new Vector2(550.400024F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(550.424011F, -227.233994F), new Vector2(550.435974F, -227.492004F), new Vector2(550.435974F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(550.435974F, -229.363998F), new Vector2(550.093994F, -230.815994F), new Vector2(549.409973F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(548.726013F, -233.360001F), new Vector2(547.771973F, -234.356003F), new Vector2(546.547974F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(545.323975F, -235.796005F), new Vector2(543.932007F, -236.156006F), new Vector2(542.372009F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(540.716003F, -236.156006F), new Vector2(539.221985F, -235.766006F), new Vector2(537.890015F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(536.557983F, -234.205994F), new Vector2(535.502014F, -233.143997F), new Vector2(534.721985F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(533.942017F, -230.455994F), new Vector2(533.552002F, -228.944F), new Vector2(533.552002F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(533.552002F, -225.559998F), new Vector2(533.947998F, -224.035995F), new Vector2(534.73999F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(535.531982F, -221.348007F), new Vector2(536.606018F, -220.285995F), new Vector2(537.961975F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(539.317993F, -218.725998F), new Vector2(540.859985F, -218.335999F), new Vector2(542.588013F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(543.932007F, -218.335999F), new Vector2(545.192017F, -218.587997F), new Vector2(546.367981F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0554()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(518.179993F, -218.695999F));
+ builder.AddLine(new Vector2(518.179993F, -244.399994F));
+ builder.AddLine(new Vector2(514.940002F, -244.399994F));
+ builder.AddLine(new Vector2(514.940002F, -218.695999F));
+ builder.AddLine(new Vector2(518.179993F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(530.276001F, -218.695999F));
+ builder.AddLine(new Vector2(530.276001F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(530.276001F, -230.660004F), new Vector2(529.987976F, -231.848007F), new Vector2(529.411987F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(528.835999F, -233.912003F), new Vector2(528.049988F, -234.716003F), new Vector2(527.054016F, -235.292007F));
+ builder.AddCubicBezier(new Vector2(526.057983F, -235.867996F), new Vector2(524.911987F, -236.156006F), new Vector2(523.616028F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(522.320007F, -236.156006F), new Vector2(521.156006F, -235.862F), new Vector2(520.124023F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(519.09198F, -234.686005F), new Vector2(518.288025F, -233.888F), new Vector2(517.711975F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(517.135986F, -231.871994F), new Vector2(516.848022F, -230.720001F), new Vector2(516.848022F, -229.423996F));
+ builder.AddLine(new Vector2(518.179993F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(518.179993F, -229.531998F), new Vector2(518.372009F, -230.300003F), new Vector2(518.755981F, -230.972F));
+ builder.AddCubicBezier(new Vector2(519.140015F, -231.643997F), new Vector2(519.66803F, -232.171997F), new Vector2(520.340027F, -232.556F));
+ builder.AddCubicBezier(new Vector2(521.012024F, -232.940002F), new Vector2(521.780029F, -233.132004F), new Vector2(522.643982F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(523.940002F, -233.132004F), new Vector2(524.98999F, -232.712006F), new Vector2(525.794006F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(526.598022F, -231.031998F), new Vector2(527F, -229.964005F), new Vector2(527F, -228.667999F));
+ builder.AddLine(new Vector2(527F, -218.695999F));
+ builder.AddLine(new Vector2(530.276001F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0555()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(511.772003F, -232.843994F));
+ builder.AddLine(new Vector2(511.772003F, -235.796005F));
+ builder.AddLine(new Vector2(500.108002F, -235.796005F));
+ builder.AddLine(new Vector2(500.108002F, -232.843994F));
+ builder.AddLine(new Vector2(511.772003F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(507.559998F, -218.695999F));
+ builder.AddLine(new Vector2(507.559998F, -242.960007F));
+ builder.AddLine(new Vector2(504.320007F, -242.960007F));
+ builder.AddLine(new Vector2(504.320007F, -218.695999F));
+ builder.AddLine(new Vector2(507.559998F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0556()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(480.056F, -211.531998F));
+ builder.AddLine(new Vector2(483.29599F, -218.552002F));
+ builder.AddLine(new Vector2(481.459991F, -221.863998F));
+ builder.AddLine(new Vector2(476.455994F, -211.531998F));
+ builder.AddLine(new Vector2(480.056F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(483.29599F, -218.552002F));
+ builder.AddLine(new Vector2(491.287994F, -235.796005F));
+ builder.AddLine(new Vector2(487.687988F, -235.796005F));
+ builder.AddLine(new Vector2(481.891998F, -222.296005F));
+ builder.AddLine(new Vector2(483.044006F, -222.296005F));
+ builder.AddLine(new Vector2(477.536011F, -235.796005F));
+ builder.AddLine(new Vector2(473.936005F, -235.796005F));
+ builder.AddLine(new Vector2(481.35199F, -218.552002F));
+ builder.AddLine(new Vector2(483.29599F, -218.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0557()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(461.06601F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(460.238007F, -222.656006F), new Vector2(459.60199F, -223.345993F), new Vector2(459.15799F, -224.222F));
+ builder.AddCubicBezier(new Vector2(458.713989F, -225.098007F), new Vector2(458.492004F, -226.100006F), new Vector2(458.492004F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(458.492004F, -228.380005F), new Vector2(458.720001F, -229.393997F), new Vector2(459.175995F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(459.631989F, -231.145996F), new Vector2(460.268005F, -231.835999F), new Vector2(461.084015F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(461.899994F, -232.843994F), new Vector2(462.835999F, -233.095993F), new Vector2(463.891998F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(464.971985F, -233.095993F), new Vector2(465.920013F, -232.843994F), new Vector2(466.735992F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(467.552002F, -231.835999F), new Vector2(468.194F, -231.145996F), new Vector2(468.661987F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(469.130005F, -229.393997F), new Vector2(469.364014F, -228.391998F), new Vector2(469.364014F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(469.364014F, -226.112F), new Vector2(469.130005F, -225.098007F), new Vector2(468.661987F, -224.222F));
+ builder.AddCubicBezier(new Vector2(468.194F, -223.345993F), new Vector2(467.552002F, -222.656006F), new Vector2(466.735992F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(465.920013F, -221.647995F), new Vector2(464.971985F, -221.395996F), new Vector2(463.891998F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(462.835999F, -221.395996F), new Vector2(461.894012F, -221.647995F), new Vector2(461.06601F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(458.671997F, -218.695999F));
+ builder.AddLine(new Vector2(458.671997F, -223.304001F));
+ builder.AddLine(new Vector2(458.059998F, -227.479996F));
+ builder.AddLine(new Vector2(458.671997F, -231.619995F));
+ builder.AddLine(new Vector2(458.671997F, -244.399994F));
+ builder.AddLine(new Vector2(455.432007F, -244.399994F));
+ builder.AddLine(new Vector2(455.432007F, -218.695999F));
+ builder.AddLine(new Vector2(458.671997F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(468.661987F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(469.921997F, -220.285995F), new Vector2(470.911987F, -221.348007F), new Vector2(471.631989F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(472.35199F, -224.035995F), new Vector2(472.712006F, -225.548004F), new Vector2(472.712006F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(472.712006F, -228.908005F), new Vector2(472.35199F, -230.419998F), new Vector2(471.631989F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(470.911987F, -233.108002F), new Vector2(469.921997F, -234.175995F), new Vector2(468.661987F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(467.402008F, -235.759995F), new Vector2(465.992004F, -236.156006F), new Vector2(464.432007F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(463.160004F, -236.156006F), new Vector2(462.002014F, -235.886002F), new Vector2(460.958008F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(459.914001F, -234.806F), new Vector2(459.074005F, -234.061996F), new Vector2(458.437988F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(457.802002F, -232.166F), new Vector2(457.447998F, -231.067993F), new Vector2(457.376007F, -229.820007F));
+ builder.AddLine(new Vector2(457.376007F, -224.671997F));
+ builder.AddCubicBezier(new Vector2(457.447998F, -223.447998F), new Vector2(457.79599F, -222.356003F), new Vector2(458.420013F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(459.044006F, -220.436005F), new Vector2(459.877991F, -219.686005F), new Vector2(460.921997F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(461.966003F, -218.606003F), new Vector2(463.135986F, -218.335999F), new Vector2(464.432007F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(465.992004F, -218.335999F), new Vector2(467.402008F, -218.725998F), new Vector2(468.661987F, -219.505997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0558()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(440.384003F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(441.559998F, -219.595993F), new Vector2(442.567993F, -220.328003F), new Vector2(443.40799F, -221.287994F));
+ builder.AddLine(new Vector2(441.320007F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(440.743988F, -222.740005F), new Vector2(440.053986F, -222.235992F), new Vector2(439.25F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(438.446014F, -221.563995F), new Vector2(437.563995F, -221.395996F), new Vector2(436.604004F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(435.451996F, -221.395996F), new Vector2(434.432007F, -221.641998F), new Vector2(433.544006F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(432.656006F, -222.626007F), new Vector2(431.971985F, -223.322006F), new Vector2(431.492004F, -224.222F));
+ builder.AddCubicBezier(new Vector2(431.011993F, -225.121994F), new Vector2(430.772003F, -226.171997F), new Vector2(430.772003F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(430.772003F, -228.548004F), new Vector2(431F, -229.567993F), new Vector2(431.455994F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(431.911987F, -231.296005F), new Vector2(432.559998F, -231.968002F), new Vector2(433.399994F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(434.23999F, -232.927994F), new Vector2(435.212006F, -233.167999F), new Vector2(436.31601F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(437.372009F, -233.167999F), new Vector2(438.272003F, -232.945999F), new Vector2(439.015991F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(439.76001F, -232.057999F), new Vector2(440.335999F, -231.434006F), new Vector2(440.743988F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(441.152008F, -229.826004F), new Vector2(441.355988F, -228.848007F), new Vector2(441.355988F, -227.695999F));
+ builder.AddLine(new Vector2(442.544006F, -228.740005F));
+ builder.AddLine(new Vector2(429.835999F, -228.740005F));
+ builder.AddLine(new Vector2(429.835999F, -226.039993F));
+ builder.AddLine(new Vector2(444.272003F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(444.343994F, -226.376007F), new Vector2(444.391998F, -226.682007F), new Vector2(444.415985F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(444.440002F, -227.233994F), new Vector2(444.451996F, -227.492004F), new Vector2(444.451996F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(444.451996F, -229.363998F), new Vector2(444.109985F, -230.815994F), new Vector2(443.425995F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(442.742004F, -233.360001F), new Vector2(441.787994F, -234.356003F), new Vector2(440.563995F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(439.339996F, -235.796005F), new Vector2(437.947998F, -236.156006F), new Vector2(436.388F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(434.731995F, -236.156006F), new Vector2(433.238007F, -235.766006F), new Vector2(431.906006F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(430.574005F, -234.205994F), new Vector2(429.518005F, -233.143997F), new Vector2(428.738007F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(427.958008F, -230.455994F), new Vector2(427.567993F, -228.944F), new Vector2(427.567993F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(427.567993F, -225.559998F), new Vector2(427.963989F, -224.035995F), new Vector2(428.756012F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(429.548004F, -221.348007F), new Vector2(430.622009F, -220.285995F), new Vector2(431.977997F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(433.334015F, -218.725998F), new Vector2(434.876007F, -218.335999F), new Vector2(436.604004F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(437.947998F, -218.335999F), new Vector2(439.208008F, -218.587997F), new Vector2(440.384003F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0559()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(418.712006F, -218.695999F));
+ builder.AddLine(new Vector2(426.559998F, -235.796005F));
+ builder.AddLine(new Vector2(423.104004F, -235.796005F));
+ builder.AddLine(new Vector2(416.768005F, -221.360001F));
+ builder.AddLine(new Vector2(418.855988F, -221.360001F));
+ builder.AddLine(new Vector2(412.556F, -235.796005F));
+ builder.AddLine(new Vector2(408.955994F, -235.796005F));
+ builder.AddLine(new Vector2(416.803986F, -218.695999F));
+ builder.AddLine(new Vector2(418.712006F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0560()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(396.175995F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(395.335999F, -222.727997F), new Vector2(394.675995F, -223.417999F), new Vector2(394.196014F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(393.716003F, -225.169998F), new Vector2(393.476013F, -226.171997F), new Vector2(393.476013F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(393.476013F, -228.404007F), new Vector2(393.716003F, -229.388F), new Vector2(394.196014F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(394.675995F, -231.115997F), new Vector2(395.335999F, -231.794006F), new Vector2(396.175995F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(397.015991F, -232.778F), new Vector2(397.963989F, -233.024002F), new Vector2(399.019989F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(400.123993F, -233.024002F), new Vector2(401.089996F, -232.778F), new Vector2(401.917999F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(402.746002F, -231.794006F), new Vector2(403.406006F, -231.115997F), new Vector2(403.89801F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(404.390015F, -229.388F), new Vector2(404.635986F, -228.404007F), new Vector2(404.635986F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(404.635986F, -226.171997F), new Vector2(404.395996F, -225.169998F), new Vector2(403.915985F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(403.436005F, -223.417999F), new Vector2(402.776001F, -222.727997F), new Vector2(401.936005F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(401.096008F, -221.720001F), new Vector2(400.123993F, -221.468002F), new Vector2(399.019989F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(397.963989F, -221.468002F), new Vector2(397.015991F, -221.720001F), new Vector2(396.175995F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(403.574005F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(404.929993F, -220.315994F), new Vector2(406.003998F, -221.389999F), new Vector2(406.79599F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(407.588013F, -224.102005F), new Vector2(407.984009F, -225.619995F), new Vector2(407.984009F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(407.984009F, -228.955994F), new Vector2(407.588013F, -230.455994F), new Vector2(406.79599F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(406.003998F, -233.143997F), new Vector2(404.929993F, -234.205994F), new Vector2(403.574005F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(402.217987F, -235.766006F), new Vector2(400.700012F, -236.156006F), new Vector2(399.019989F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(397.364014F, -236.156006F), new Vector2(395.864014F, -235.759995F), new Vector2(394.519989F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(393.175995F, -234.175995F), new Vector2(392.108002F, -233.113998F), new Vector2(391.31601F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(390.523987F, -230.449997F), new Vector2(390.127991F, -228.955994F), new Vector2(390.127991F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(390.127991F, -225.619995F), new Vector2(390.523987F, -224.102005F), new Vector2(391.31601F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(392.108002F, -221.389999F), new Vector2(393.175995F, -220.315994F), new Vector2(394.519989F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(395.864014F, -218.731995F), new Vector2(397.364014F, -218.335999F), new Vector2(399.019989F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(400.700012F, -218.335999F), new Vector2(402.217987F, -218.731995F), new Vector2(403.574005F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0561()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(381.73999F, -231.944F));
+ builder.AddCubicBezier(new Vector2(382.507996F, -232.712006F), new Vector2(383.492004F, -233.095993F), new Vector2(384.691986F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(385.268005F, -233.095993F), new Vector2(385.772003F, -233.011993F), new Vector2(386.20401F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(386.635986F, -232.675995F), new Vector2(387.032013F, -232.399994F), new Vector2(387.391998F, -232.016006F));
+ builder.AddLine(new Vector2(389.515991F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(388.915985F, -234.908005F), new Vector2(388.268005F, -235.406006F), new Vector2(387.571991F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(386.876007F, -236.005997F), new Vector2(386.096008F, -236.156006F), new Vector2(385.231995F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(383.335999F, -236.156006F), new Vector2(381.884003F, -235.507996F), new Vector2(380.876007F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(379.868011F, -232.916F), new Vector2(379.364014F, -231.175995F), new Vector2(379.364014F, -228.992004F));
+ builder.AddLine(new Vector2(380.588013F, -228.416F));
+ builder.AddCubicBezier(new Vector2(380.588013F, -230F), new Vector2(380.971985F, -231.175995F), new Vector2(381.73999F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(380.588013F, -218.695999F));
+ builder.AddLine(new Vector2(380.588013F, -235.796005F));
+ builder.AddLine(new Vector2(377.347992F, -235.796005F));
+ builder.AddLine(new Vector2(377.347992F, -218.695999F));
+ builder.AddLine(new Vector2(380.588013F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0562()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(372.631989F, -244.399994F));
+ builder.AddLine(new Vector2(369.355988F, -244.399994F));
+ builder.AddLine(new Vector2(369.355988F, -231.619995F));
+ builder.AddLine(new Vector2(369.967987F, -227.479996F));
+ builder.AddLine(new Vector2(369.355988F, -223.304001F));
+ builder.AddLine(new Vector2(369.355988F, -218.695999F));
+ builder.AddLine(new Vector2(372.631989F, -218.695999F));
+ builder.AddLine(new Vector2(372.631989F, -244.399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(361.309998F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(360.481995F, -222.626007F), new Vector2(359.834015F, -223.315994F), new Vector2(359.365997F, -224.203995F));
+ builder.AddCubicBezier(new Vector2(358.89801F, -225.091995F), new Vector2(358.664001F, -226.112F), new Vector2(358.664001F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(358.664001F, -228.416F), new Vector2(358.89801F, -229.429993F), new Vector2(359.365997F, -230.306F));
+ builder.AddCubicBezier(new Vector2(359.834015F, -231.182007F), new Vector2(360.476013F, -231.865997F), new Vector2(361.291992F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(362.108002F, -232.850006F), new Vector2(363.056F, -233.095993F), new Vector2(364.135986F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(365.216003F, -233.095993F), new Vector2(366.164001F, -232.843994F), new Vector2(366.980011F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(367.79599F, -231.835999F), new Vector2(368.432007F, -231.145996F), new Vector2(368.888F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(369.343994F, -229.393997F), new Vector2(369.571991F, -228.380005F), new Vector2(369.571991F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(369.571991F, -226.100006F), new Vector2(369.343994F, -225.098007F), new Vector2(368.888F, -224.222F));
+ builder.AddCubicBezier(new Vector2(368.432007F, -223.345993F), new Vector2(367.79599F, -222.656006F), new Vector2(366.980011F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(366.164001F, -221.647995F), new Vector2(365.216003F, -221.395996F), new Vector2(364.135986F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(363.079987F, -221.395996F), new Vector2(362.138F, -221.641998F), new Vector2(361.309998F, -222.134003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(367.123993F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(368.156006F, -219.686005F), new Vector2(368.984009F, -220.436005F), new Vector2(369.608002F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(370.231995F, -222.356003F), new Vector2(370.579987F, -223.447998F), new Vector2(370.652008F, -224.671997F));
+ builder.AddLine(new Vector2(370.652008F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(370.579987F, -231.067993F), new Vector2(370.226013F, -232.166F), new Vector2(369.589996F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(368.95401F, -234.061996F), new Vector2(368.119995F, -234.806F), new Vector2(367.088013F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(366.056F, -235.886002F), new Vector2(364.891998F, -236.156006F), new Vector2(363.596008F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(362.036011F, -236.156006F), new Vector2(360.631989F, -235.759995F), new Vector2(359.384003F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(358.135986F, -234.175995F), new Vector2(357.145996F, -233.108002F), new Vector2(356.414001F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(355.682007F, -230.419998F), new Vector2(355.31601F, -228.908005F), new Vector2(355.31601F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(355.31601F, -225.548004F), new Vector2(355.682007F, -224.035995F), new Vector2(356.414001F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(357.145996F, -221.348007F), new Vector2(358.135986F, -220.285995F), new Vector2(359.384003F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(360.631989F, -218.725998F), new Vector2(362.036011F, -218.335999F), new Vector2(363.596008F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(364.915985F, -218.335999F), new Vector2(366.09201F, -218.606003F), new Vector2(367.123993F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0563()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(341.059998F, -213.727997F));
+ builder.AddLine(new Vector2(343.471985F, -218.192001F));
+ builder.AddCubicBezier(new Vector2(343.783997F, -218.792007F), new Vector2(343.993988F, -219.278F), new Vector2(344.10199F, -219.649994F));
+ builder.AddCubicBezier(new Vector2(344.209991F, -220.022003F), new Vector2(344.264008F, -220.339996F), new Vector2(344.264008F, -220.604004F));
+ builder.AddCubicBezier(new Vector2(344.264008F, -221.300003F), new Vector2(344.023987F, -221.882004F), new Vector2(343.544006F, -222.350006F));
+ builder.AddCubicBezier(new Vector2(343.063995F, -222.817993F), new Vector2(342.511993F, -223.052002F), new Vector2(341.888F, -223.052002F));
+ builder.AddCubicBezier(new Vector2(341.191986F, -223.052002F), new Vector2(340.615997F, -222.817993F), new Vector2(340.160004F, -222.350006F));
+ builder.AddCubicBezier(new Vector2(339.70401F, -221.882004F), new Vector2(339.476013F, -221.300003F), new Vector2(339.476013F, -220.604004F));
+ builder.AddCubicBezier(new Vector2(339.476013F, -219.979996F), new Vector2(339.686005F, -219.457993F), new Vector2(340.105988F, -219.037994F));
+ builder.AddCubicBezier(new Vector2(340.526001F, -218.617996F), new Vector2(340.988007F, -218.408005F), new Vector2(341.492004F, -218.408005F));
+ builder.AddCubicBezier(new Vector2(341.731995F, -218.408005F), new Vector2(341.947998F, -218.492004F), new Vector2(342.140015F, -218.660004F));
+ builder.AddCubicBezier(new Vector2(342.332001F, -218.828003F), new Vector2(342.488007F, -219.044006F), new Vector2(342.608002F, -219.307999F));
+ builder.AddLine(new Vector2(341.455994F, -219.020004F));
+ builder.AddLine(new Vector2(339.223999F, -214.735992F));
+ builder.AddLine(new Vector2(341.059998F, -213.727997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0564()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(331.123993F, -231.944F));
+ builder.AddCubicBezier(new Vector2(331.891998F, -232.712006F), new Vector2(332.876007F, -233.095993F), new Vector2(334.075989F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(334.652008F, -233.095993F), new Vector2(335.156006F, -233.011993F), new Vector2(335.588013F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(336.019989F, -232.675995F), new Vector2(336.415985F, -232.399994F), new Vector2(336.776001F, -232.016006F));
+ builder.AddLine(new Vector2(338.899994F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(338.299988F, -234.908005F), new Vector2(337.652008F, -235.406006F), new Vector2(336.955994F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(336.26001F, -236.005997F), new Vector2(335.480011F, -236.156006F), new Vector2(334.615997F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(332.720001F, -236.156006F), new Vector2(331.268005F, -235.507996F), new Vector2(330.26001F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(329.252014F, -232.916F), new Vector2(328.747986F, -231.175995F), new Vector2(328.747986F, -228.992004F));
+ builder.AddLine(new Vector2(329.971985F, -228.416F));
+ builder.AddCubicBezier(new Vector2(329.971985F, -230F), new Vector2(330.355988F, -231.175995F), new Vector2(331.123993F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(329.971985F, -218.695999F));
+ builder.AddLine(new Vector2(329.971985F, -235.796005F));
+ builder.AddLine(new Vector2(326.731995F, -235.796005F));
+ builder.AddLine(new Vector2(326.731995F, -218.695999F));
+ builder.AddLine(new Vector2(329.971985F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0565()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(319.135986F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(320.312012F, -219.595993F), new Vector2(321.320007F, -220.328003F), new Vector2(322.160004F, -221.287994F));
+ builder.AddLine(new Vector2(320.071991F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(319.496002F, -222.740005F), new Vector2(318.806F, -222.235992F), new Vector2(318.002014F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(317.197998F, -221.563995F), new Vector2(316.31601F, -221.395996F), new Vector2(315.355988F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(314.20401F, -221.395996F), new Vector2(313.18399F, -221.641998F), new Vector2(312.29599F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(311.40799F, -222.626007F), new Vector2(310.723999F, -223.322006F), new Vector2(310.243988F, -224.222F));
+ builder.AddCubicBezier(new Vector2(309.764008F, -225.121994F), new Vector2(309.523987F, -226.171997F), new Vector2(309.523987F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(309.523987F, -228.548004F), new Vector2(309.752014F, -229.567993F), new Vector2(310.208008F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(310.664001F, -231.296005F), new Vector2(311.312012F, -231.968002F), new Vector2(312.152008F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(312.992004F, -232.927994F), new Vector2(313.963989F, -233.167999F), new Vector2(315.067993F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(316.123993F, -233.167999F), new Vector2(317.023987F, -232.945999F), new Vector2(317.768005F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(318.511993F, -232.057999F), new Vector2(319.088013F, -231.434006F), new Vector2(319.496002F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(319.903992F, -229.826004F), new Vector2(320.108002F, -228.848007F), new Vector2(320.108002F, -227.695999F));
+ builder.AddLine(new Vector2(321.29599F, -228.740005F));
+ builder.AddLine(new Vector2(308.588013F, -228.740005F));
+ builder.AddLine(new Vector2(308.588013F, -226.039993F));
+ builder.AddLine(new Vector2(323.023987F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(323.096008F, -226.376007F), new Vector2(323.144012F, -226.682007F), new Vector2(323.167999F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(323.191986F, -227.233994F), new Vector2(323.20401F, -227.492004F), new Vector2(323.20401F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(323.20401F, -229.363998F), new Vector2(322.862F, -230.815994F), new Vector2(322.178009F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(321.493988F, -233.360001F), new Vector2(320.540009F, -234.356003F), new Vector2(319.31601F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(318.09201F, -235.796005F), new Vector2(316.700012F, -236.156006F), new Vector2(315.140015F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(313.484009F, -236.156006F), new Vector2(311.98999F, -235.766006F), new Vector2(310.65799F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(309.325989F, -234.205994F), new Vector2(308.269989F, -233.143997F), new Vector2(307.48999F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(306.709991F, -230.455994F), new Vector2(306.320007F, -228.944F), new Vector2(306.320007F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(306.320007F, -225.559998F), new Vector2(306.716003F, -224.035995F), new Vector2(307.507996F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(308.299988F, -221.348007F), new Vector2(309.373993F, -220.285995F), new Vector2(310.730011F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(312.085999F, -218.725998F), new Vector2(313.627991F, -218.335999F), new Vector2(315.355988F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(316.700012F, -218.335999F), new Vector2(317.959991F, -218.587997F), new Vector2(319.135986F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0566()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(297.463989F, -218.695999F));
+ builder.AddLine(new Vector2(305.312012F, -235.796005F));
+ builder.AddLine(new Vector2(301.855988F, -235.796005F));
+ builder.AddLine(new Vector2(295.519989F, -221.360001F));
+ builder.AddLine(new Vector2(297.608002F, -221.360001F));
+ builder.AddLine(new Vector2(291.308014F, -235.796005F));
+ builder.AddLine(new Vector2(287.708008F, -235.796005F));
+ builder.AddLine(new Vector2(295.556F, -218.695999F));
+ builder.AddLine(new Vector2(297.463989F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0567()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(274.928009F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(274.088013F, -222.727997F), new Vector2(273.428009F, -223.417999F), new Vector2(272.947998F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(272.467987F, -225.169998F), new Vector2(272.227997F, -226.171997F), new Vector2(272.227997F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(272.227997F, -228.404007F), new Vector2(272.467987F, -229.388F), new Vector2(272.947998F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(273.428009F, -231.115997F), new Vector2(274.088013F, -231.794006F), new Vector2(274.928009F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(275.768005F, -232.778F), new Vector2(276.716003F, -233.024002F), new Vector2(277.772003F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(278.876007F, -233.024002F), new Vector2(279.84201F, -232.778F), new Vector2(280.670013F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(281.497986F, -231.794006F), new Vector2(282.15799F, -231.115997F), new Vector2(282.649994F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(283.141998F, -229.388F), new Vector2(283.388F, -228.404007F), new Vector2(283.388F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(283.388F, -226.171997F), new Vector2(283.14801F, -225.169998F), new Vector2(282.667999F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(282.187988F, -223.417999F), new Vector2(281.528015F, -222.727997F), new Vector2(280.687988F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(279.847992F, -221.720001F), new Vector2(278.876007F, -221.468002F), new Vector2(277.772003F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(276.716003F, -221.468002F), new Vector2(275.768005F, -221.720001F), new Vector2(274.928009F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(282.325989F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(283.682007F, -220.315994F), new Vector2(284.756012F, -221.389999F), new Vector2(285.548004F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(286.339996F, -224.102005F), new Vector2(286.735992F, -225.619995F), new Vector2(286.735992F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(286.735992F, -228.955994F), new Vector2(286.339996F, -230.455994F), new Vector2(285.548004F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(284.756012F, -233.143997F), new Vector2(283.682007F, -234.205994F), new Vector2(282.325989F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(280.970001F, -235.766006F), new Vector2(279.451996F, -236.156006F), new Vector2(277.772003F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(276.115997F, -236.156006F), new Vector2(274.615997F, -235.759995F), new Vector2(273.272003F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(271.928009F, -234.175995F), new Vector2(270.859985F, -233.113998F), new Vector2(270.067993F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(269.276001F, -230.449997F), new Vector2(268.880005F, -228.955994F), new Vector2(268.880005F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(268.880005F, -225.619995F), new Vector2(269.276001F, -224.102005F), new Vector2(270.067993F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(270.859985F, -221.389999F), new Vector2(271.928009F, -220.315994F), new Vector2(273.272003F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(274.615997F, -218.731995F), new Vector2(276.115997F, -218.335999F), new Vector2(277.772003F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(279.451996F, -218.335999F), new Vector2(280.970001F, -218.731995F), new Vector2(282.325989F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0568()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(264.667999F, -226.292007F));
+ builder.AddLine(new Vector2(264.667999F, -229.388F));
+ builder.AddLine(new Vector2(252.824005F, -229.388F));
+ builder.AddLine(new Vector2(252.824005F, -226.292007F));
+ builder.AddLine(new Vector2(264.667999F, -226.292007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0569()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(236.335999F, -218.695999F));
+ builder.AddLine(new Vector2(236.335999F, -235.796005F));
+ builder.AddLine(new Vector2(233.095993F, -235.796005F));
+ builder.AddLine(new Vector2(233.095993F, -218.695999F));
+ builder.AddLine(new Vector2(236.335999F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(248.432007F, -218.695999F));
+ builder.AddLine(new Vector2(248.432007F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(248.432007F, -230.492004F), new Vector2(248.143997F, -231.602005F), new Vector2(247.567993F, -232.645996F));
+ builder.AddCubicBezier(new Vector2(246.992004F, -233.690002F), new Vector2(246.205994F, -234.535995F), new Vector2(245.210007F, -235.184006F));
+ builder.AddCubicBezier(new Vector2(244.214005F, -235.832001F), new Vector2(243.067993F, -236.156006F), new Vector2(241.772003F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(240.475998F, -236.156006F), new Vector2(239.311996F, -235.862F), new Vector2(238.279999F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(237.248001F, -234.686005F), new Vector2(236.444F, -233.888F), new Vector2(235.867996F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(235.292007F, -231.871994F), new Vector2(235.003998F, -230.720001F), new Vector2(235.003998F, -229.423996F));
+ builder.AddLine(new Vector2(236.335999F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(236.335999F, -229.531998F), new Vector2(236.528F, -230.300003F), new Vector2(236.912003F, -230.972F));
+ builder.AddCubicBezier(new Vector2(237.296005F, -231.643997F), new Vector2(237.824005F, -232.171997F), new Vector2(238.496002F, -232.556F));
+ builder.AddCubicBezier(new Vector2(239.167999F, -232.940002F), new Vector2(239.936005F, -233.132004F), new Vector2(240.800003F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(242.095993F, -233.132004F), new Vector2(243.145996F, -232.712006F), new Vector2(243.949997F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(244.753998F, -231.031998F), new Vector2(245.156006F, -229.964005F), new Vector2(245.156006F, -228.667999F));
+ builder.AddLine(new Vector2(245.156006F, -218.695999F));
+ builder.AddLine(new Vector2(248.432007F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0570()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(228.380005F, -218.695999F));
+ builder.AddLine(new Vector2(228.380005F, -235.796005F));
+ builder.AddLine(new Vector2(225.104004F, -235.796005F));
+ builder.AddLine(new Vector2(225.104004F, -231.619995F));
+ builder.AddLine(new Vector2(225.716003F, -227.479996F));
+ builder.AddLine(new Vector2(225.104004F, -223.304001F));
+ builder.AddLine(new Vector2(225.104004F, -218.695999F));
+ builder.AddLine(new Vector2(228.380005F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(217.076004F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(216.235992F, -222.656006F), new Vector2(215.582001F, -223.345993F), new Vector2(215.113998F, -224.222F));
+ builder.AddCubicBezier(new Vector2(214.645996F, -225.098007F), new Vector2(214.412003F, -226.112F), new Vector2(214.412003F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(214.412003F, -228.391998F), new Vector2(214.645996F, -229.393997F), new Vector2(215.113998F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(215.582001F, -231.145996F), new Vector2(216.229996F, -231.835999F), new Vector2(217.057999F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(217.886002F, -232.843994F), new Vector2(218.839996F, -233.095993F), new Vector2(219.919998F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(221F, -233.095993F), new Vector2(221.942001F, -232.850006F), new Vector2(222.746002F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(223.550003F, -231.865997F), new Vector2(224.179993F, -231.175995F), new Vector2(224.636002F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(225.091995F, -229.399994F), new Vector2(225.320007F, -228.380005F), new Vector2(225.320007F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(225.320007F, -225.524002F), new Vector2(224.828003F, -224.126007F), new Vector2(223.843994F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(222.860001F, -221.942001F), new Vector2(221.563995F, -221.395996F), new Vector2(219.955994F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(218.876007F, -221.395996F), new Vector2(217.916F, -221.647995F), new Vector2(217.076004F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(222.908005F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(223.940002F, -219.686005F), new Vector2(224.761993F, -220.436005F), new Vector2(225.373993F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(225.985992F, -222.356003F), new Vector2(226.328003F, -223.447998F), new Vector2(226.399994F, -224.671997F));
+ builder.AddLine(new Vector2(226.399994F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(226.328003F, -231.067993F), new Vector2(225.979996F, -232.166F), new Vector2(225.356003F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(224.731995F, -234.061996F), new Vector2(223.910004F, -234.806F), new Vector2(222.889999F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(221.869995F, -235.886002F), new Vector2(220.712006F, -236.156006F), new Vector2(219.416F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(217.832001F, -236.156006F), new Vector2(216.410004F, -235.759995F), new Vector2(215.149994F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(213.889999F, -234.175995F), new Vector2(212.893997F, -233.108002F), new Vector2(212.162003F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(211.429993F, -230.419998F), new Vector2(211.063995F, -228.908005F), new Vector2(211.063995F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(211.063995F, -225.548004F), new Vector2(211.429993F, -224.035995F), new Vector2(212.162003F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(212.893997F, -221.348007F), new Vector2(213.889999F, -220.285995F), new Vector2(215.149994F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(216.410004F, -218.725998F), new Vector2(217.832001F, -218.335999F), new Vector2(219.416F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(220.712006F, -218.335999F), new Vector2(221.876007F, -218.606003F), new Vector2(222.908005F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0571()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(202.639999F, -231.944F));
+ builder.AddCubicBezier(new Vector2(203.408005F, -232.712006F), new Vector2(204.391998F, -233.095993F), new Vector2(205.591995F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(206.167999F, -233.095993F), new Vector2(206.671997F, -233.011993F), new Vector2(207.104004F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(207.535995F, -232.675995F), new Vector2(207.932007F, -232.399994F), new Vector2(208.292007F, -232.016006F));
+ builder.AddLine(new Vector2(210.416F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(209.815994F, -234.908005F), new Vector2(209.167999F, -235.406006F), new Vector2(208.472F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(207.776001F, -236.005997F), new Vector2(206.996002F, -236.156006F), new Vector2(206.132004F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(204.235992F, -236.156006F), new Vector2(202.783997F, -235.507996F), new Vector2(201.776001F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(200.768005F, -232.916F), new Vector2(200.264008F, -231.175995F), new Vector2(200.264008F, -228.992004F));
+ builder.AddLine(new Vector2(201.488007F, -228.416F));
+ builder.AddCubicBezier(new Vector2(201.488007F, -230F), new Vector2(201.871994F, -231.175995F), new Vector2(202.639999F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(201.488007F, -218.695999F));
+ builder.AddLine(new Vector2(201.488007F, -235.796005F));
+ builder.AddLine(new Vector2(198.248001F, -235.796005F));
+ builder.AddLine(new Vector2(198.248001F, -218.695999F));
+ builder.AddLine(new Vector2(201.488007F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0572()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(183.199997F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(184.376007F, -219.595993F), new Vector2(185.384003F, -220.328003F), new Vector2(186.223999F, -221.287994F));
+ builder.AddLine(new Vector2(184.136002F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(183.559998F, -222.740005F), new Vector2(182.869995F, -222.235992F), new Vector2(182.065994F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(181.261993F, -221.563995F), new Vector2(180.380005F, -221.395996F), new Vector2(179.419998F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(178.268005F, -221.395996F), new Vector2(177.248001F, -221.641998F), new Vector2(176.360001F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(175.472F, -222.626007F), new Vector2(174.787994F, -223.322006F), new Vector2(174.307999F, -224.222F));
+ builder.AddCubicBezier(new Vector2(173.828003F, -225.121994F), new Vector2(173.587997F, -226.171997F), new Vector2(173.587997F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(173.587997F, -228.548004F), new Vector2(173.815994F, -229.567993F), new Vector2(174.272003F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(174.727997F, -231.296005F), new Vector2(175.376007F, -231.968002F), new Vector2(176.216003F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(177.056F, -232.927994F), new Vector2(178.028F, -233.167999F), new Vector2(179.132004F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(180.188004F, -233.167999F), new Vector2(181.087997F, -232.945999F), new Vector2(181.832001F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(182.576004F, -232.057999F), new Vector2(183.151993F, -231.434006F), new Vector2(183.559998F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(183.968002F, -229.826004F), new Vector2(184.171997F, -228.848007F), new Vector2(184.171997F, -227.695999F));
+ builder.AddLine(new Vector2(185.360001F, -228.740005F));
+ builder.AddLine(new Vector2(172.651993F, -228.740005F));
+ builder.AddLine(new Vector2(172.651993F, -226.039993F));
+ builder.AddLine(new Vector2(187.087997F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(187.160004F, -226.376007F), new Vector2(187.207993F, -226.682007F), new Vector2(187.231995F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(187.255997F, -227.233994F), new Vector2(187.268005F, -227.492004F), new Vector2(187.268005F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(187.268005F, -229.363998F), new Vector2(186.925995F, -230.815994F), new Vector2(186.242004F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(185.557999F, -233.360001F), new Vector2(184.604004F, -234.356003F), new Vector2(183.380005F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(182.156006F, -235.796005F), new Vector2(180.764008F, -236.156006F), new Vector2(179.203995F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(177.548004F, -236.156006F), new Vector2(176.054001F, -235.766006F), new Vector2(174.722F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(173.389999F, -234.205994F), new Vector2(172.334F, -233.143997F), new Vector2(171.554001F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(170.774002F, -230.455994F), new Vector2(170.384003F, -228.944F), new Vector2(170.384003F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(170.384003F, -225.559998F), new Vector2(170.779999F, -224.035995F), new Vector2(171.572006F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(172.363998F, -221.348007F), new Vector2(173.438004F, -220.285995F), new Vector2(174.794006F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(176.149994F, -218.725998F), new Vector2(177.692001F, -218.335999F), new Vector2(179.419998F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(180.764008F, -218.335999F), new Vector2(182.024002F, -218.587997F), new Vector2(183.199997F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0573()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(166.748001F, -218.695999F));
+ builder.AddLine(new Vector2(166.748001F, -244.399994F));
+ builder.AddLine(new Vector2(163.507996F, -244.399994F));
+ builder.AddLine(new Vector2(163.507996F, -218.695999F));
+ builder.AddLine(new Vector2(166.748001F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0574()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(157.406006F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(158.546005F, -219.595993F), new Vector2(159.511993F, -220.304001F), new Vector2(160.304001F, -221.216003F));
+ builder.AddLine(new Vector2(158.179993F, -223.376007F));
+ builder.AddCubicBezier(new Vector2(157.628006F, -222.751999F), new Vector2(156.973999F, -222.278F), new Vector2(156.218002F, -221.953995F));
+ builder.AddCubicBezier(new Vector2(155.462006F, -221.630005F), new Vector2(154.628006F, -221.468002F), new Vector2(153.716003F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(152.636002F, -221.468002F), new Vector2(151.675995F, -221.720001F), new Vector2(150.835999F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(149.996002F, -222.727997F), new Vector2(149.335999F, -223.412003F), new Vector2(148.856003F, -224.276001F));
+ builder.AddCubicBezier(new Vector2(148.376007F, -225.139999F), new Vector2(148.136002F, -226.136002F), new Vector2(148.136002F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(148.136002F, -228.391998F), new Vector2(148.376007F, -229.388F), new Vector2(148.856003F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(149.335999F, -231.115997F), new Vector2(149.996002F, -231.794006F), new Vector2(150.835999F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(151.675995F, -232.778F), new Vector2(152.636002F, -233.024002F), new Vector2(153.716003F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(154.604004F, -233.024002F), new Vector2(155.432007F, -232.862F), new Vector2(156.199997F, -232.537994F));
+ builder.AddCubicBezier(new Vector2(156.968002F, -232.214005F), new Vector2(157.615997F, -231.740005F), new Vector2(158.143997F, -231.115997F));
+ builder.AddLine(new Vector2(160.304001F, -233.276001F));
+ builder.AddCubicBezier(new Vector2(159.488007F, -234.212006F), new Vector2(158.516006F, -234.925995F), new Vector2(157.388F, -235.417999F));
+ builder.AddCubicBezier(new Vector2(156.259995F, -235.910004F), new Vector2(155.035995F, -236.156006F), new Vector2(153.716003F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(152.035995F, -236.156006F), new Vector2(150.518005F, -235.766006F), new Vector2(149.162003F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(147.806F, -234.205994F), new Vector2(146.738007F, -233.143997F), new Vector2(145.957993F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(145.177994F, -230.455994F), new Vector2(144.787994F, -228.944F), new Vector2(144.787994F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(144.787994F, -225.608002F), new Vector2(145.177994F, -224.102005F), new Vector2(145.957993F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(146.738007F, -221.389999F), new Vector2(147.806F, -220.315994F), new Vector2(149.162003F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(150.518005F, -218.731995F), new Vector2(152.035995F, -218.335999F), new Vector2(153.716003F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(155.035995F, -218.335999F), new Vector2(156.266006F, -218.587997F), new Vector2(157.406006F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0575()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(140.972F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(141.356003F, -240.205994F), new Vector2(141.548004F, -240.703995F), new Vector2(141.548004F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(141.548004F, -241.880005F), new Vector2(141.356003F, -242.365997F), new Vector2(140.972F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(140.587997F, -243.158005F), new Vector2(140.095993F, -243.356003F), new Vector2(139.496002F, -243.356003F));
+ builder.AddCubicBezier(new Vector2(138.895996F, -243.356003F), new Vector2(138.404007F, -243.158005F), new Vector2(138.020004F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(137.636002F, -242.365997F), new Vector2(137.444F, -241.880005F), new Vector2(137.444F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(137.444F, -240.703995F), new Vector2(137.636002F, -240.205994F), new Vector2(138.020004F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(138.404007F, -239.414001F), new Vector2(138.895996F, -239.216003F), new Vector2(139.496002F, -239.216003F));
+ builder.AddCubicBezier(new Vector2(140.095993F, -239.216003F), new Vector2(140.587997F, -239.414001F), new Vector2(140.972F, -239.809998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(141.115997F, -218.695999F));
+ builder.AddLine(new Vector2(141.115997F, -235.796005F));
+ builder.AddLine(new Vector2(137.839996F, -235.796005F));
+ builder.AddLine(new Vector2(137.839996F, -218.695999F));
+ builder.AddLine(new Vector2(141.115997F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0576()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(121.351997F, -218.695999F));
+ builder.AddLine(new Vector2(121.351997F, -244.399994F));
+ builder.AddLine(new Vector2(118.112F, -244.399994F));
+ builder.AddLine(new Vector2(118.112F, -218.695999F));
+ builder.AddLine(new Vector2(121.351997F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(133.447998F, -218.695999F));
+ builder.AddLine(new Vector2(133.447998F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(133.447998F, -230.660004F), new Vector2(133.160004F, -231.848007F), new Vector2(132.584F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(132.007996F, -233.912003F), new Vector2(131.222F, -234.716003F), new Vector2(130.225998F, -235.292007F));
+ builder.AddCubicBezier(new Vector2(129.229996F, -235.867996F), new Vector2(128.084F, -236.156006F), new Vector2(126.788002F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(125.491997F, -236.156006F), new Vector2(124.328003F, -235.862F), new Vector2(123.295998F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(122.264F, -234.686005F), new Vector2(121.459999F, -233.888F), new Vector2(120.884003F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(120.307999F, -231.871994F), new Vector2(120.019997F, -230.720001F), new Vector2(120.019997F, -229.423996F));
+ builder.AddLine(new Vector2(121.351997F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(121.351997F, -229.531998F), new Vector2(121.543999F, -230.300003F), new Vector2(121.928001F, -230.972F));
+ builder.AddCubicBezier(new Vector2(122.311996F, -231.643997F), new Vector2(122.839996F, -232.171997F), new Vector2(123.512001F, -232.556F));
+ builder.AddCubicBezier(new Vector2(124.183998F, -232.940002F), new Vector2(124.952003F, -233.132004F), new Vector2(125.816002F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(127.112F, -233.132004F), new Vector2(128.162003F, -232.712006F), new Vector2(128.966003F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(129.770004F, -231.031998F), new Vector2(130.171997F, -229.964005F), new Vector2(130.171997F, -228.667999F));
+ builder.AddLine(new Vector2(130.171997F, -218.695999F));
+ builder.AddLine(new Vector2(133.447998F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0577()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(110.515999F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(111.692001F, -219.595993F), new Vector2(112.699997F, -220.328003F), new Vector2(113.540001F, -221.287994F));
+ builder.AddLine(new Vector2(111.452003F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(110.875999F, -222.740005F), new Vector2(110.185997F, -222.235992F), new Vector2(109.382004F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(108.578003F, -221.563995F), new Vector2(107.695999F, -221.395996F), new Vector2(106.736F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(105.584F, -221.395996F), new Vector2(104.564003F, -221.641998F), new Vector2(103.676003F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(102.788002F, -222.626007F), new Vector2(102.103996F, -223.322006F), new Vector2(101.624001F, -224.222F));
+ builder.AddCubicBezier(new Vector2(101.143997F, -225.121994F), new Vector2(100.903999F, -226.171997F), new Vector2(100.903999F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(100.903999F, -228.548004F), new Vector2(101.132004F, -229.567993F), new Vector2(101.587997F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(102.043999F, -231.296005F), new Vector2(102.692001F, -231.968002F), new Vector2(103.531998F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(104.372002F, -232.927994F), new Vector2(105.344002F, -233.167999F), new Vector2(106.447998F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(107.503998F, -233.167999F), new Vector2(108.403999F, -232.945999F), new Vector2(109.148003F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(109.891998F, -232.057999F), new Vector2(110.468002F, -231.434006F), new Vector2(110.875999F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(111.283997F, -229.826004F), new Vector2(111.487999F, -228.848007F), new Vector2(111.487999F, -227.695999F));
+ builder.AddLine(new Vector2(112.676003F, -228.740005F));
+ builder.AddLine(new Vector2(99.9680023F, -228.740005F));
+ builder.AddLine(new Vector2(99.9680023F, -226.039993F));
+ builder.AddLine(new Vector2(114.403999F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(114.475998F, -226.376007F), new Vector2(114.524002F, -226.682007F), new Vector2(114.547997F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(114.571999F, -227.233994F), new Vector2(114.584F, -227.492004F), new Vector2(114.584F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(114.584F, -229.363998F), new Vector2(114.241997F, -230.815994F), new Vector2(113.557999F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(112.874001F, -233.360001F), new Vector2(111.919998F, -234.356003F), new Vector2(110.695999F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(109.472F, -235.796005F), new Vector2(108.080002F, -236.156006F), new Vector2(106.519997F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(104.863998F, -236.156006F), new Vector2(103.370003F, -235.766006F), new Vector2(102.038002F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(100.706001F, -234.205994F), new Vector2(99.6500015F, -233.143997F), new Vector2(98.8700027F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(98.0899963F, -230.455994F), new Vector2(97.6999969F, -228.944F), new Vector2(97.6999969F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(97.6999969F, -225.559998F), new Vector2(98.0960007F, -224.035995F), new Vector2(98.8880005F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(99.6800003F, -221.348007F), new Vector2(100.753998F, -220.285995F), new Vector2(102.110001F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(103.466003F, -218.725998F), new Vector2(105.008003F, -218.335999F), new Vector2(106.736F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(108.080002F, -218.335999F), new Vector2(109.339996F, -218.587997F), new Vector2(110.515999F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0578()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(88.8440018F, -218.695999F));
+ builder.AddLine(new Vector2(96.6920013F, -235.796005F));
+ builder.AddLine(new Vector2(93.2360001F, -235.796005F));
+ builder.AddLine(new Vector2(86.9000015F, -221.360001F));
+ builder.AddLine(new Vector2(88.987999F, -221.360001F));
+ builder.AddLine(new Vector2(82.6880035F, -235.796005F));
+ builder.AddLine(new Vector2(79.0879974F, -235.796005F));
+ builder.AddLine(new Vector2(86.935997F, -218.695999F));
+ builder.AddLine(new Vector2(88.8440018F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0579()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(66.0199966F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(67.1959991F, -219.595993F), new Vector2(68.2040024F, -220.328003F), new Vector2(69.0439987F, -221.287994F));
+ builder.AddLine(new Vector2(66.9560013F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(66.3799973F, -222.740005F), new Vector2(65.6900024F, -222.235992F), new Vector2(64.8860016F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(64.0820007F, -221.563995F), new Vector2(63.2000008F, -221.395996F), new Vector2(62.2400017F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(61.0880013F, -221.395996F), new Vector2(60.0680008F, -221.641998F), new Vector2(59.1800003F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(58.2919998F, -222.626007F), new Vector2(57.6080017F, -223.322006F), new Vector2(57.1279984F, -224.222F));
+ builder.AddCubicBezier(new Vector2(56.6479988F, -225.121994F), new Vector2(56.4080009F, -226.171997F), new Vector2(56.4080009F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(56.4080009F, -228.548004F), new Vector2(56.6360016F, -229.567993F), new Vector2(57.0919991F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(57.5480003F, -231.296005F), new Vector2(58.1959991F, -231.968002F), new Vector2(59.0359993F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(59.8759995F, -232.927994F), new Vector2(60.8479996F, -233.167999F), new Vector2(61.9519997F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(63.0079994F, -233.167999F), new Vector2(63.9080009F, -232.945999F), new Vector2(64.6520004F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(65.3960037F, -232.057999F), new Vector2(65.9720001F, -231.434006F), new Vector2(66.3799973F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(66.788002F, -229.826004F), new Vector2(66.9919968F, -228.848007F), new Vector2(66.9919968F, -227.695999F));
+ builder.AddLine(new Vector2(68.1800003F, -228.740005F));
+ builder.AddLine(new Vector2(55.4720001F, -228.740005F));
+ builder.AddLine(new Vector2(55.4720001F, -226.039993F));
+ builder.AddLine(new Vector2(69.9079971F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(69.9800034F, -226.376007F), new Vector2(70.0279999F, -226.682007F), new Vector2(70.052002F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(70.0759964F, -227.233994F), new Vector2(70.0879974F, -227.492004F), new Vector2(70.0879974F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(70.0879974F, -229.363998F), new Vector2(69.7460022F, -230.815994F), new Vector2(69.0619965F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(68.3779984F, -233.360001F), new Vector2(67.4240036F, -234.356003F), new Vector2(66.1999969F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(64.9759979F, -235.796005F), new Vector2(63.5839996F, -236.156006F), new Vector2(62.0239983F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(60.368F, -236.156006F), new Vector2(58.8740005F, -235.766006F), new Vector2(57.5419998F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(56.2099991F, -234.205994F), new Vector2(55.1539993F, -233.143997F), new Vector2(54.3740005F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(53.5940018F, -230.455994F), new Vector2(53.2039986F, -228.944F), new Vector2(53.2039986F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(53.2039986F, -225.559998F), new Vector2(53.5999985F, -224.035995F), new Vector2(54.3919983F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(55.1839981F, -221.348007F), new Vector2(56.2579994F, -220.285995F), new Vector2(57.6139984F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(58.9700012F, -218.725998F), new Vector2(60.512001F, -218.335999F), new Vector2(62.2400017F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(63.5839996F, -218.335999F), new Vector2(64.8440018F, -218.587997F), new Vector2(66.0199966F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0580()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(49.6040001F, -244.399994F));
+ builder.AddLine(new Vector2(46.3279991F, -244.399994F));
+ builder.AddLine(new Vector2(46.3279991F, -231.619995F));
+ builder.AddLine(new Vector2(46.9399986F, -227.479996F));
+ builder.AddLine(new Vector2(46.3279991F, -223.304001F));
+ builder.AddLine(new Vector2(46.3279991F, -218.695999F));
+ builder.AddLine(new Vector2(49.6040001F, -218.695999F));
+ builder.AddLine(new Vector2(49.6040001F, -244.399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(38.2820015F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(37.4539986F, -222.626007F), new Vector2(36.8059998F, -223.315994F), new Vector2(36.3380013F, -224.203995F));
+ builder.AddCubicBezier(new Vector2(35.8699989F, -225.091995F), new Vector2(35.6360016F, -226.112F), new Vector2(35.6360016F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(35.6360016F, -228.416F), new Vector2(35.8699989F, -229.429993F), new Vector2(36.3380013F, -230.306F));
+ builder.AddCubicBezier(new Vector2(36.8059998F, -231.182007F), new Vector2(37.4480019F, -231.865997F), new Vector2(38.2639999F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(39.0800018F, -232.850006F), new Vector2(40.0279999F, -233.095993F), new Vector2(41.1080017F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(42.1879997F, -233.095993F), new Vector2(43.1360016F, -232.843994F), new Vector2(43.9519997F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(44.7680016F, -231.835999F), new Vector2(45.4039993F, -231.145996F), new Vector2(45.8600006F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(46.3160019F, -229.393997F), new Vector2(46.5439987F, -228.380005F), new Vector2(46.5439987F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(46.5439987F, -226.100006F), new Vector2(46.3160019F, -225.098007F), new Vector2(45.8600006F, -224.222F));
+ builder.AddCubicBezier(new Vector2(45.4039993F, -223.345993F), new Vector2(44.7680016F, -222.656006F), new Vector2(43.9519997F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(43.1360016F, -221.647995F), new Vector2(42.1879997F, -221.395996F), new Vector2(41.1080017F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(40.0519981F, -221.395996F), new Vector2(39.1100006F, -221.641998F), new Vector2(38.2820015F, -222.134003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(44.0960007F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(45.1279984F, -219.686005F), new Vector2(45.9560013F, -220.436005F), new Vector2(46.5800018F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(47.2039986F, -222.356003F), new Vector2(47.5519981F, -223.447998F), new Vector2(47.6240005F, -224.671997F));
+ builder.AddLine(new Vector2(47.6240005F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(47.5519981F, -231.067993F), new Vector2(47.1980019F, -232.166F), new Vector2(46.5620003F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(45.9259987F, -234.061996F), new Vector2(45.0919991F, -234.806F), new Vector2(44.0600014F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(43.0279999F, -235.886002F), new Vector2(41.8639984F, -236.156006F), new Vector2(40.5680008F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(39.0079994F, -236.156006F), new Vector2(37.6040001F, -235.759995F), new Vector2(36.355999F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(35.1080017F, -234.175995F), new Vector2(34.118F, -233.108002F), new Vector2(33.3860016F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(32.6539993F, -230.419998F), new Vector2(32.2879982F, -228.908005F), new Vector2(32.2879982F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(32.2879982F, -225.548004F), new Vector2(32.6539993F, -224.035995F), new Vector2(33.3860016F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(34.118F, -221.348007F), new Vector2(35.1080017F, -220.285995F), new Vector2(36.355999F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(37.6040001F, -218.725998F), new Vector2(39.0079994F, -218.335999F), new Vector2(40.5680008F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(41.8880005F, -218.335999F), new Vector2(43.0639992F, -218.606003F), new Vector2(44.0960007F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0581()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(28.6520004F, -218.695999F));
+ builder.AddLine(new Vector2(28.6520004F, -235.796005F));
+ builder.AddLine(new Vector2(25.3759995F, -235.796005F));
+ builder.AddLine(new Vector2(25.3759995F, -231.619995F));
+ builder.AddLine(new Vector2(25.9880009F, -227.479996F));
+ builder.AddLine(new Vector2(25.3759995F, -223.304001F));
+ builder.AddLine(new Vector2(25.3759995F, -218.695999F));
+ builder.AddLine(new Vector2(28.6520004F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(17.3479996F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(16.5079994F, -222.656006F), new Vector2(15.8540001F, -223.345993F), new Vector2(15.3859997F, -224.222F));
+ builder.AddCubicBezier(new Vector2(14.9180002F, -225.098007F), new Vector2(14.684F, -226.112F), new Vector2(14.684F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(14.684F, -228.391998F), new Vector2(14.9180002F, -229.393997F), new Vector2(15.3859997F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(15.8540001F, -231.145996F), new Vector2(16.5020008F, -231.835999F), new Vector2(17.3299999F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(18.1580009F, -232.843994F), new Vector2(19.1119995F, -233.095993F), new Vector2(20.1919994F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(21.2719994F, -233.095993F), new Vector2(22.2140007F, -232.850006F), new Vector2(23.0179996F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(23.8220005F, -231.865997F), new Vector2(24.4519997F, -231.175995F), new Vector2(24.9080009F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(25.3640003F, -229.399994F), new Vector2(25.5919991F, -228.380005F), new Vector2(25.5919991F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(25.5919991F, -225.524002F), new Vector2(25.1000004F, -224.126007F), new Vector2(24.1159992F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(23.132F, -221.942001F), new Vector2(21.8360004F, -221.395996F), new Vector2(20.2280006F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(19.1480007F, -221.395996F), new Vector2(18.1879997F, -221.647995F), new Vector2(17.3479996F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(23.1800003F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(24.2119999F, -219.686005F), new Vector2(25.0340004F, -220.436005F), new Vector2(25.6459999F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(26.2579994F, -222.356003F), new Vector2(26.6000004F, -223.447998F), new Vector2(26.6720009F, -224.671997F));
+ builder.AddLine(new Vector2(26.6720009F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(26.6000004F, -231.067993F), new Vector2(26.2520008F, -232.166F), new Vector2(25.6280003F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(25.0039997F, -234.061996F), new Vector2(24.1819992F, -234.806F), new Vector2(23.1620007F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(22.1420002F, -235.886002F), new Vector2(20.9839993F, -236.156006F), new Vector2(19.6879997F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(18.1040001F, -236.156006F), new Vector2(16.6819992F, -235.759995F), new Vector2(15.4219999F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(14.1619997F, -234.175995F), new Vector2(13.1660004F, -233.108002F), new Vector2(12.434F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(11.7019997F, -230.419998F), new Vector2(11.3360004F, -228.908005F), new Vector2(11.3360004F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(11.3360004F, -225.548004F), new Vector2(11.7019997F, -224.035995F), new Vector2(12.434F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(13.1660004F, -221.348007F), new Vector2(14.1619997F, -220.285995F), new Vector2(15.4219999F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(16.6819992F, -218.725998F), new Vector2(18.1040001F, -218.335999F), new Vector2(19.6879997F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(20.9839993F, -218.335999F), new Vector2(22.1480007F, -218.606003F), new Vector2(23.1800003F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0582()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(6.63800001F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(7.77799988F, -219.595993F), new Vector2(8.74400043F, -220.304001F), new Vector2(9.53600025F, -221.216003F));
+ builder.AddLine(new Vector2(7.41200018F, -223.376007F));
+ builder.AddCubicBezier(new Vector2(6.86000013F, -222.751999F), new Vector2(6.20599985F, -222.278F), new Vector2(5.44999981F, -221.953995F));
+ builder.AddCubicBezier(new Vector2(4.69399977F, -221.630005F), new Vector2(3.8599999F, -221.468002F), new Vector2(2.94799995F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(1.86800003F, -221.468002F), new Vector2(0.907999992F, -221.720001F), new Vector2(0.0680000037F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-0.772000015F, -222.727997F), new Vector2(-1.43200004F, -223.412003F), new Vector2(-1.91199994F, -224.276001F));
+ builder.AddCubicBezier(new Vector2(-2.39199996F, -225.139999F), new Vector2(-2.63199997F, -226.136002F), new Vector2(-2.63199997F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-2.63199997F, -228.391998F), new Vector2(-2.39199996F, -229.388F), new Vector2(-1.91199994F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-1.43200004F, -231.115997F), new Vector2(-0.772000015F, -231.794006F), new Vector2(0.0680000037F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(0.907999992F, -232.778F), new Vector2(1.86800003F, -233.024002F), new Vector2(2.94799995F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(3.83599997F, -233.024002F), new Vector2(4.66400003F, -232.862F), new Vector2(5.43200016F, -232.537994F));
+ builder.AddCubicBezier(new Vector2(6.19999981F, -232.214005F), new Vector2(6.84800005F, -231.740005F), new Vector2(7.37599993F, -231.115997F));
+ builder.AddLine(new Vector2(9.53600025F, -233.276001F));
+ builder.AddCubicBezier(new Vector2(8.72000027F, -234.212006F), new Vector2(7.74800014F, -234.925995F), new Vector2(6.61999989F, -235.417999F));
+ builder.AddCubicBezier(new Vector2(5.4920001F, -235.910004F), new Vector2(4.26800013F, -236.156006F), new Vector2(2.94799995F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(1.26800001F, -236.156006F), new Vector2(-0.25F, -235.766006F), new Vector2(-1.60599995F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-2.96199989F, -234.205994F), new Vector2(-4.03000021F, -233.143997F), new Vector2(-4.80999994F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-5.59000015F, -230.455994F), new Vector2(-5.98000002F, -228.944F), new Vector2(-5.98000002F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-5.98000002F, -225.608002F), new Vector2(-5.59000015F, -224.102005F), new Vector2(-4.80999994F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-4.03000021F, -221.389999F), new Vector2(-2.96199989F, -220.315994F), new Vector2(-1.60599995F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-0.25F, -218.731995F), new Vector2(1.26800001F, -218.335999F), new Vector2(2.94799995F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(4.26800013F, -218.335999F), new Vector2(5.49800014F, -218.587997F), new Vector2(6.63800001F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0583()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-9.79599953F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-9.4119997F, -240.205994F), new Vector2(-9.22000027F, -240.703995F), new Vector2(-9.22000027F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-9.22000027F, -241.880005F), new Vector2(-9.4119997F, -242.365997F), new Vector2(-9.79599953F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-10.1800003F, -243.158005F), new Vector2(-10.6719999F, -243.356003F), new Vector2(-11.2720003F, -243.356003F));
+ builder.AddCubicBezier(new Vector2(-11.8719997F, -243.356003F), new Vector2(-12.3640003F, -243.158005F), new Vector2(-12.7480001F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-13.132F, -242.365997F), new Vector2(-13.3240004F, -241.880005F), new Vector2(-13.3240004F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-13.3240004F, -240.703995F), new Vector2(-13.132F, -240.205994F), new Vector2(-12.7480001F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-12.3640003F, -239.414001F), new Vector2(-11.8719997F, -239.216003F), new Vector2(-11.2720003F, -239.216003F));
+ builder.AddCubicBezier(new Vector2(-10.6719999F, -239.216003F), new Vector2(-10.1800003F, -239.414001F), new Vector2(-9.79599953F, -239.809998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-9.65200043F, -218.695999F));
+ builder.AddLine(new Vector2(-9.65200043F, -235.796005F));
+ builder.AddLine(new Vector2(-12.9280005F, -235.796005F));
+ builder.AddLine(new Vector2(-12.9280005F, -218.695999F));
+ builder.AddLine(new Vector2(-9.65200043F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0584()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-22.9720001F, -231.944F));
+ builder.AddCubicBezier(new Vector2(-22.2040005F, -232.712006F), new Vector2(-21.2199993F, -233.095993F), new Vector2(-20.0200005F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-19.4440002F, -233.095993F), new Vector2(-18.9400005F, -233.011993F), new Vector2(-18.5079994F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(-18.0760002F, -232.675995F), new Vector2(-17.6800003F, -232.399994F), new Vector2(-17.3199997F, -232.016006F));
+ builder.AddLine(new Vector2(-15.1960001F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-15.7959995F, -234.908005F), new Vector2(-16.4440002F, -235.406006F), new Vector2(-17.1399994F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(-17.8360004F, -236.005997F), new Vector2(-18.6159992F, -236.156006F), new Vector2(-19.4799995F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-21.3759995F, -236.156006F), new Vector2(-22.8279991F, -235.507996F), new Vector2(-23.8360004F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-24.8439999F, -232.916F), new Vector2(-25.3479996F, -231.175995F), new Vector2(-25.3479996F, -228.992004F));
+ builder.AddLine(new Vector2(-24.1240005F, -228.416F));
+ builder.AddCubicBezier(new Vector2(-24.1240005F, -230F), new Vector2(-23.7399998F, -231.175995F), new Vector2(-22.9720001F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-24.1240005F, -218.695999F));
+ builder.AddLine(new Vector2(-24.1240005F, -235.796005F));
+ builder.AddLine(new Vector2(-27.3640003F, -235.796005F));
+ builder.AddLine(new Vector2(-27.3640003F, -218.695999F));
+ builder.AddLine(new Vector2(-24.1240005F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0585()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-37.4799995F, -231.944F));
+ builder.AddCubicBezier(new Vector2(-36.7120018F, -232.712006F), new Vector2(-35.7280006F, -233.095993F), new Vector2(-34.5279999F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-33.9519997F, -233.095993F), new Vector2(-33.4480019F, -233.011993F), new Vector2(-33.0159988F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(-32.5839996F, -232.675995F), new Vector2(-32.1879997F, -232.399994F), new Vector2(-31.8279991F, -232.016006F));
+ builder.AddLine(new Vector2(-29.7040005F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-30.3040009F, -234.908005F), new Vector2(-30.9519997F, -235.406006F), new Vector2(-31.6480007F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(-32.3440018F, -236.005997F), new Vector2(-33.1240005F, -236.156006F), new Vector2(-33.987999F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-35.8839989F, -236.156006F), new Vector2(-37.3359985F, -235.507996F), new Vector2(-38.3440018F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-39.3520012F, -232.916F), new Vector2(-39.855999F, -231.175995F), new Vector2(-39.855999F, -228.992004F));
+ builder.AddLine(new Vector2(-38.632F, -228.416F));
+ builder.AddCubicBezier(new Vector2(-38.632F, -230F), new Vector2(-38.2480011F, -231.175995F), new Vector2(-37.4799995F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-38.632F, -218.695999F));
+ builder.AddLine(new Vector2(-38.632F, -235.796005F));
+ builder.AddLine(new Vector2(-41.8720016F, -235.796005F));
+ builder.AddLine(new Vector2(-41.8720016F, -218.695999F));
+ builder.AddLine(new Vector2(-38.632F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0586()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-46.5880013F, -218.695999F));
+ builder.AddLine(new Vector2(-46.5880013F, -235.796005F));
+ builder.AddLine(new Vector2(-49.8639984F, -235.796005F));
+ builder.AddLine(new Vector2(-49.8639984F, -231.619995F));
+ builder.AddLine(new Vector2(-49.2519989F, -227.479996F));
+ builder.AddLine(new Vector2(-49.8639984F, -223.304001F));
+ builder.AddLine(new Vector2(-49.8639984F, -218.695999F));
+ builder.AddLine(new Vector2(-46.5880013F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-57.8919983F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-58.7319984F, -222.656006F), new Vector2(-59.3860016F, -223.345993F), new Vector2(-59.8540001F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-60.3219986F, -225.098007F), new Vector2(-60.5559998F, -226.112F), new Vector2(-60.5559998F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-60.5559998F, -228.391998F), new Vector2(-60.3219986F, -229.393997F), new Vector2(-59.8540001F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-59.3860016F, -231.145996F), new Vector2(-58.737999F, -231.835999F), new Vector2(-57.9099998F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-57.0820007F, -232.843994F), new Vector2(-56.1279984F, -233.095993F), new Vector2(-55.0480003F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-53.9679985F, -233.095993F), new Vector2(-53.026001F, -232.850006F), new Vector2(-52.2220001F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(-51.4179993F, -231.865997F), new Vector2(-50.7879982F, -231.175995F), new Vector2(-50.3320007F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(-49.8759995F, -229.399994F), new Vector2(-49.6479988F, -228.380005F), new Vector2(-49.6479988F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-49.6479988F, -225.524002F), new Vector2(-50.1399994F, -224.126007F), new Vector2(-51.1240005F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(-52.1080017F, -221.942001F), new Vector2(-53.4039993F, -221.395996F), new Vector2(-55.012001F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-56.0919991F, -221.395996F), new Vector2(-57.0519981F, -221.647995F), new Vector2(-57.8919983F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-52.0600014F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-51.0279999F, -219.686005F), new Vector2(-50.2060013F, -220.436005F), new Vector2(-49.5940018F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-48.9819984F, -222.356003F), new Vector2(-48.6399994F, -223.447998F), new Vector2(-48.5680008F, -224.671997F));
+ builder.AddLine(new Vector2(-48.5680008F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(-48.6399994F, -231.067993F), new Vector2(-48.987999F, -232.166F), new Vector2(-49.6119995F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-50.2360001F, -234.061996F), new Vector2(-51.0579987F, -234.806F), new Vector2(-52.0779991F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-53.0979996F, -235.886002F), new Vector2(-54.2560005F, -236.156006F), new Vector2(-55.5519981F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-57.1360016F, -236.156006F), new Vector2(-58.5579987F, -235.759995F), new Vector2(-59.8180008F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-61.0779991F, -234.175995F), new Vector2(-62.0740013F, -233.108002F), new Vector2(-62.8059998F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-63.5379982F, -230.419998F), new Vector2(-63.9039993F, -228.908005F), new Vector2(-63.9039993F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-63.9039993F, -225.548004F), new Vector2(-63.5379982F, -224.035995F), new Vector2(-62.8059998F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-62.0740013F, -221.348007F), new Vector2(-61.0779991F, -220.285995F), new Vector2(-59.8180008F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-58.5579987F, -218.725998F), new Vector2(-57.1360016F, -218.335999F), new Vector2(-55.5519981F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-54.2560005F, -218.335999F), new Vector2(-53.0919991F, -218.606003F), new Vector2(-52.0600014F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0587()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-78.1419983F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-78.9700012F, -222.656006F), new Vector2(-79.6060028F, -223.345993F), new Vector2(-80.0500031F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-80.4940033F, -225.098007F), new Vector2(-80.7160034F, -226.100006F), new Vector2(-80.7160034F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-80.7160034F, -228.380005F), new Vector2(-80.487999F, -229.393997F), new Vector2(-80.0319977F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-79.5759964F, -231.145996F), new Vector2(-78.9400024F, -231.835999F), new Vector2(-78.1240005F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-77.3079987F, -232.843994F), new Vector2(-76.3720016F, -233.095993F), new Vector2(-75.3160019F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-74.2360001F, -233.095993F), new Vector2(-73.288002F, -232.843994F), new Vector2(-72.4720001F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-71.6559982F, -231.835999F), new Vector2(-71.0139999F, -231.145996F), new Vector2(-70.5459976F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-70.0780029F, -229.393997F), new Vector2(-69.8440018F, -228.391998F), new Vector2(-69.8440018F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-69.8440018F, -226.112F), new Vector2(-70.0780029F, -225.098007F), new Vector2(-70.5459976F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-71.0139999F, -223.345993F), new Vector2(-71.6559982F, -222.656006F), new Vector2(-72.4720001F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-73.288002F, -221.647995F), new Vector2(-74.2360001F, -221.395996F), new Vector2(-75.3160019F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-76.3720016F, -221.395996F), new Vector2(-77.314003F, -221.647995F), new Vector2(-78.1419983F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-80.5360031F, -218.695999F));
+ builder.AddLine(new Vector2(-80.5360031F, -223.304001F));
+ builder.AddLine(new Vector2(-81.1480026F, -227.479996F));
+ builder.AddLine(new Vector2(-80.5360031F, -231.619995F));
+ builder.AddLine(new Vector2(-80.5360031F, -244.399994F));
+ builder.AddLine(new Vector2(-83.776001F, -244.399994F));
+ builder.AddLine(new Vector2(-83.776001F, -218.695999F));
+ builder.AddLine(new Vector2(-80.5360031F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-70.5459976F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-69.2860031F, -220.285995F), new Vector2(-68.2959976F, -221.348007F), new Vector2(-67.5759964F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-66.8560028F, -224.035995F), new Vector2(-66.4960022F, -225.548004F), new Vector2(-66.4960022F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-66.4960022F, -228.908005F), new Vector2(-66.8560028F, -230.419998F), new Vector2(-67.5759964F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-68.2959976F, -233.108002F), new Vector2(-69.2860031F, -234.175995F), new Vector2(-70.5459976F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-71.8059998F, -235.759995F), new Vector2(-73.2160034F, -236.156006F), new Vector2(-74.776001F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-76.0479965F, -236.156006F), new Vector2(-77.2060013F, -235.886002F), new Vector2(-78.25F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-79.2939987F, -234.806F), new Vector2(-80.1340027F, -234.061996F), new Vector2(-80.7699966F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-81.4059982F, -232.166F), new Vector2(-81.7600021F, -231.067993F), new Vector2(-81.8320007F, -229.820007F));
+ builder.AddLine(new Vector2(-81.8320007F, -224.671997F));
+ builder.AddCubicBezier(new Vector2(-81.7600021F, -223.447998F), new Vector2(-81.4120026F, -222.356003F), new Vector2(-80.788002F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-80.1640015F, -220.436005F), new Vector2(-79.3300018F, -219.686005F), new Vector2(-78.2860031F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-77.2419968F, -218.606003F), new Vector2(-76.0719986F, -218.335999F), new Vector2(-74.776001F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-73.2160034F, -218.335999F), new Vector2(-71.8059998F, -218.725998F), new Vector2(-70.5459976F, -219.505997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0588()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-94.3960037F, -232.843994F));
+ builder.AddLine(new Vector2(-94.3960037F, -235.796005F));
+ builder.AddLine(new Vector2(-106.059998F, -235.796005F));
+ builder.AddLine(new Vector2(-106.059998F, -232.843994F));
+ builder.AddLine(new Vector2(-94.3960037F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-98.6080017F, -218.695999F));
+ builder.AddLine(new Vector2(-98.6080017F, -242.960007F));
+ builder.AddLine(new Vector2(-101.848F, -242.960007F));
+ builder.AddLine(new Vector2(-101.848F, -218.695999F));
+ builder.AddLine(new Vector2(-98.6080017F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0589()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-109.821999F, -219.740005F));
+ builder.AddCubicBezier(new Vector2(-108.681999F, -220.675995F), new Vector2(-108.112F, -221.947998F), new Vector2(-108.112F, -223.556F));
+ builder.AddCubicBezier(new Vector2(-108.112F, -224.612F), new Vector2(-108.334F, -225.464005F), new Vector2(-108.778F, -226.112F));
+ builder.AddCubicBezier(new Vector2(-109.222F, -226.759995F), new Vector2(-109.792F, -227.276001F), new Vector2(-110.487999F, -227.660004F));
+ builder.AddCubicBezier(new Vector2(-111.183998F, -228.044006F), new Vector2(-111.916F, -228.350006F), new Vector2(-112.683998F, -228.578003F));
+ builder.AddCubicBezier(new Vector2(-113.452003F, -228.806F), new Vector2(-114.190002F, -229.028F), new Vector2(-114.898003F, -229.244003F));
+ builder.AddCubicBezier(new Vector2(-115.606003F, -229.460007F), new Vector2(-116.176003F, -229.723999F), new Vector2(-116.608002F, -230.035995F));
+ builder.AddCubicBezier(new Vector2(-117.040001F, -230.348007F), new Vector2(-117.255997F, -230.792007F), new Vector2(-117.255997F, -231.367996F));
+ builder.AddCubicBezier(new Vector2(-117.255997F, -231.919998F), new Vector2(-117.010002F, -232.363998F), new Vector2(-116.517998F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-116.026001F, -233.035995F), new Vector2(-115.311996F, -233.203995F), new Vector2(-114.375999F, -233.203995F));
+ builder.AddCubicBezier(new Vector2(-113.487999F, -233.203995F), new Vector2(-112.695999F, -233.035995F), new Vector2(-112F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-111.304001F, -232.363998F), new Vector2(-110.704002F, -231.884003F), new Vector2(-110.199997F, -231.259995F));
+ builder.AddLine(new Vector2(-108.112F, -233.348007F));
+ builder.AddCubicBezier(new Vector2(-108.783997F, -234.283997F), new Vector2(-109.641998F, -234.985992F), new Vector2(-110.685997F, -235.453995F));
+ builder.AddCubicBezier(new Vector2(-111.730003F, -235.921997F), new Vector2(-112.924004F, -236.156006F), new Vector2(-114.267998F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-115.540001F, -236.156006F), new Vector2(-116.632004F, -235.951996F), new Vector2(-117.543999F, -235.544006F));
+ builder.AddCubicBezier(new Vector2(-118.456001F, -235.136002F), new Vector2(-119.157997F, -234.554001F), new Vector2(-119.650002F, -233.798004F));
+ builder.AddCubicBezier(new Vector2(-120.141998F, -233.042007F), new Vector2(-120.388F, -232.147995F), new Vector2(-120.388F, -231.115997F));
+ builder.AddCubicBezier(new Vector2(-120.388F, -230.084F), new Vector2(-120.166F, -229.25F), new Vector2(-119.722F, -228.613998F));
+ builder.AddCubicBezier(new Vector2(-119.278F, -227.977997F), new Vector2(-118.708F, -227.479996F), new Vector2(-118.012001F, -227.119995F));
+ builder.AddCubicBezier(new Vector2(-117.316002F, -226.759995F), new Vector2(-116.578003F, -226.472F), new Vector2(-115.797997F, -226.255997F));
+ builder.AddCubicBezier(new Vector2(-115.017998F, -226.039993F), new Vector2(-114.279999F, -225.817993F), new Vector2(-113.584F, -225.589996F));
+ builder.AddCubicBezier(new Vector2(-112.888F, -225.362F), new Vector2(-112.318001F, -225.074005F), new Vector2(-111.874001F, -224.725998F));
+ builder.AddCubicBezier(new Vector2(-111.43F, -224.378006F), new Vector2(-111.208F, -223.891998F), new Vector2(-111.208F, -223.268005F));
+ builder.AddCubicBezier(new Vector2(-111.208F, -222.643997F), new Vector2(-111.484001F, -222.158005F), new Vector2(-112.036003F, -221.809998F));
+ builder.AddCubicBezier(new Vector2(-112.587997F, -221.462006F), new Vector2(-113.367996F, -221.287994F), new Vector2(-114.375999F, -221.287994F));
+ builder.AddCubicBezier(new Vector2(-115.384003F, -221.287994F), new Vector2(-116.295998F, -221.473999F), new Vector2(-117.112F, -221.845993F));
+ builder.AddCubicBezier(new Vector2(-117.928001F, -222.218002F), new Vector2(-118.648003F, -222.787994F), new Vector2(-119.272003F, -223.556F));
+ builder.AddLine(new Vector2(-121.360001F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-120.832001F, -220.820007F), new Vector2(-120.213997F, -220.261993F), new Vector2(-119.505997F, -219.794006F));
+ builder.AddCubicBezier(new Vector2(-118.797997F, -219.326004F), new Vector2(-118.012001F, -218.966003F), new Vector2(-117.148003F, -218.714005F));
+ builder.AddCubicBezier(new Vector2(-116.283997F, -218.462006F), new Vector2(-115.372002F, -218.335999F), new Vector2(-114.412003F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-112.491997F, -218.335999F), new Vector2(-110.961998F, -218.804001F), new Vector2(-109.821999F, -219.740005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0590()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-127.444F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-126.267998F, -219.595993F), new Vector2(-125.260002F, -220.328003F), new Vector2(-124.419998F, -221.287994F));
+ builder.AddLine(new Vector2(-126.508003F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(-127.084F, -222.740005F), new Vector2(-127.774002F, -222.235992F), new Vector2(-128.578003F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(-129.382004F, -221.563995F), new Vector2(-130.264008F, -221.395996F), new Vector2(-131.223999F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-132.376007F, -221.395996F), new Vector2(-133.395996F, -221.641998F), new Vector2(-134.283997F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-135.171997F, -222.626007F), new Vector2(-135.856003F, -223.322006F), new Vector2(-136.335999F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-136.815994F, -225.121994F), new Vector2(-137.056F, -226.171997F), new Vector2(-137.056F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(-137.056F, -228.548004F), new Vector2(-136.828003F, -229.567993F), new Vector2(-136.371994F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(-135.916F, -231.296005F), new Vector2(-135.268005F, -231.968002F), new Vector2(-134.427994F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(-133.587997F, -232.927994F), new Vector2(-132.615997F, -233.167999F), new Vector2(-131.511993F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(-130.455994F, -233.167999F), new Vector2(-129.556F, -232.945999F), new Vector2(-128.811996F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(-128.067993F, -232.057999F), new Vector2(-127.491997F, -231.434006F), new Vector2(-127.084F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(-126.676003F, -229.826004F), new Vector2(-126.472F, -228.848007F), new Vector2(-126.472F, -227.695999F));
+ builder.AddLine(new Vector2(-125.283997F, -228.740005F));
+ builder.AddLine(new Vector2(-137.992004F, -228.740005F));
+ builder.AddLine(new Vector2(-137.992004F, -226.039993F));
+ builder.AddLine(new Vector2(-123.556F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(-123.484001F, -226.376007F), new Vector2(-123.435997F, -226.682007F), new Vector2(-123.412003F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(-123.388F, -227.233994F), new Vector2(-123.375999F, -227.492004F), new Vector2(-123.375999F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(-123.375999F, -229.363998F), new Vector2(-123.718002F, -230.815994F), new Vector2(-124.402F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(-125.085999F, -233.360001F), new Vector2(-126.040001F, -234.356003F), new Vector2(-127.264F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(-128.488007F, -235.796005F), new Vector2(-129.880005F, -236.156006F), new Vector2(-131.440002F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-133.095993F, -236.156006F), new Vector2(-134.589996F, -235.766006F), new Vector2(-135.921997F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-137.253998F, -234.205994F), new Vector2(-138.309998F, -233.143997F), new Vector2(-139.089996F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-139.869995F, -230.455994F), new Vector2(-140.259995F, -228.944F), new Vector2(-140.259995F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-140.259995F, -225.559998F), new Vector2(-139.863998F, -224.035995F), new Vector2(-139.072006F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-138.279999F, -221.348007F), new Vector2(-137.205994F, -220.285995F), new Vector2(-135.850006F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-134.494003F, -218.725998F), new Vector2(-132.951996F, -218.335999F), new Vector2(-131.223999F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-129.880005F, -218.335999F), new Vector2(-128.619995F, -218.587997F), new Vector2(-127.444F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0591()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-141.772003F, -232.843994F));
+ builder.AddLine(new Vector2(-141.772003F, -235.796005F));
+ builder.AddLine(new Vector2(-153.436005F, -235.796005F));
+ builder.AddLine(new Vector2(-153.436005F, -232.843994F));
+ builder.AddLine(new Vector2(-141.772003F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-145.983994F, -218.695999F));
+ builder.AddLine(new Vector2(-145.983994F, -242.960007F));
+ builder.AddLine(new Vector2(-149.223999F, -242.960007F));
+ builder.AddLine(new Vector2(-149.223999F, -218.695999F));
+ builder.AddLine(new Vector2(-145.983994F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0592()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-166.720001F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-167.559998F, -222.727997F), new Vector2(-168.220001F, -223.417999F), new Vector2(-168.699997F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-169.179993F, -225.169998F), new Vector2(-169.419998F, -226.171997F), new Vector2(-169.419998F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-169.419998F, -228.404007F), new Vector2(-169.179993F, -229.388F), new Vector2(-168.699997F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-168.220001F, -231.115997F), new Vector2(-167.559998F, -231.794006F), new Vector2(-166.720001F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-165.880005F, -232.778F), new Vector2(-164.932007F, -233.024002F), new Vector2(-163.876007F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(-162.772003F, -233.024002F), new Vector2(-161.806F, -232.778F), new Vector2(-160.977997F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-160.149994F, -231.794006F), new Vector2(-159.490005F, -231.115997F), new Vector2(-158.998001F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-158.505997F, -229.388F), new Vector2(-158.259995F, -228.404007F), new Vector2(-158.259995F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-158.259995F, -226.171997F), new Vector2(-158.5F, -225.169998F), new Vector2(-158.979996F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-159.460007F, -223.417999F), new Vector2(-160.119995F, -222.727997F), new Vector2(-160.960007F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-161.800003F, -221.720001F), new Vector2(-162.772003F, -221.468002F), new Vector2(-163.876007F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-164.932007F, -221.468002F), new Vector2(-165.880005F, -221.720001F), new Vector2(-166.720001F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-159.322006F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-157.966003F, -220.315994F), new Vector2(-156.891998F, -221.389999F), new Vector2(-156.100006F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-155.307999F, -224.102005F), new Vector2(-154.912003F, -225.619995F), new Vector2(-154.912003F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-154.912003F, -228.955994F), new Vector2(-155.307999F, -230.455994F), new Vector2(-156.100006F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-156.891998F, -233.143997F), new Vector2(-157.966003F, -234.205994F), new Vector2(-159.322006F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-160.677994F, -235.766006F), new Vector2(-162.195999F, -236.156006F), new Vector2(-163.876007F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-165.531998F, -236.156006F), new Vector2(-167.031998F, -235.759995F), new Vector2(-168.376007F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-169.720001F, -234.175995F), new Vector2(-170.787994F, -233.113998F), new Vector2(-171.580002F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(-172.371994F, -230.449997F), new Vector2(-172.768005F, -228.955994F), new Vector2(-172.768005F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-172.768005F, -225.619995F), new Vector2(-172.371994F, -224.102005F), new Vector2(-171.580002F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-170.787994F, -221.389999F), new Vector2(-169.720001F, -220.315994F), new Vector2(-168.376007F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-167.031998F, -218.731995F), new Vector2(-165.531998F, -218.335999F), new Vector2(-163.876007F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-162.195999F, -218.335999F), new Vector2(-160.677994F, -218.731995F), new Vector2(-159.322006F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0593()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-181.156006F, -231.944F));
+ builder.AddCubicBezier(new Vector2(-180.388F, -232.712006F), new Vector2(-179.404007F, -233.095993F), new Vector2(-178.203995F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-177.628006F, -233.095993F), new Vector2(-177.123993F, -233.011993F), new Vector2(-176.692001F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(-176.259995F, -232.675995F), new Vector2(-175.863998F, -232.399994F), new Vector2(-175.503998F, -232.016006F));
+ builder.AddLine(new Vector2(-173.380005F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-173.979996F, -234.908005F), new Vector2(-174.628006F, -235.406006F), new Vector2(-175.324005F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(-176.020004F, -236.005997F), new Vector2(-176.800003F, -236.156006F), new Vector2(-177.664001F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-179.559998F, -236.156006F), new Vector2(-181.011993F, -235.507996F), new Vector2(-182.020004F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-183.028F, -232.916F), new Vector2(-183.531998F, -231.175995F), new Vector2(-183.531998F, -228.992004F));
+ builder.AddLine(new Vector2(-182.307999F, -228.416F));
+ builder.AddCubicBezier(new Vector2(-182.307999F, -230F), new Vector2(-181.923996F, -231.175995F), new Vector2(-181.156006F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-182.307999F, -218.695999F));
+ builder.AddLine(new Vector2(-182.307999F, -235.796005F));
+ builder.AddLine(new Vector2(-185.548004F, -235.796005F));
+ builder.AddLine(new Vector2(-185.548004F, -218.695999F));
+ builder.AddLine(new Vector2(-182.307999F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0594()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-200.865997F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-201.694F, -222.656006F), new Vector2(-202.330002F, -223.345993F), new Vector2(-202.774002F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-203.218002F, -225.098007F), new Vector2(-203.440002F, -226.100006F), new Vector2(-203.440002F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-203.440002F, -228.380005F), new Vector2(-203.212006F, -229.393997F), new Vector2(-202.755997F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-202.300003F, -231.145996F), new Vector2(-201.664001F, -231.835999F), new Vector2(-200.848007F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-200.031998F, -232.843994F), new Vector2(-199.095993F, -233.095993F), new Vector2(-198.039993F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-196.960007F, -233.095993F), new Vector2(-196.011993F, -232.843994F), new Vector2(-195.195999F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-194.380005F, -231.835999F), new Vector2(-193.738007F, -231.145996F), new Vector2(-193.270004F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-192.802002F, -229.393997F), new Vector2(-192.567993F, -228.391998F), new Vector2(-192.567993F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-192.567993F, -226.112F), new Vector2(-192.802002F, -225.098007F), new Vector2(-193.270004F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-193.738007F, -223.345993F), new Vector2(-194.380005F, -222.656006F), new Vector2(-195.195999F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-196.011993F, -221.647995F), new Vector2(-196.960007F, -221.395996F), new Vector2(-198.039993F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-199.095993F, -221.395996F), new Vector2(-200.037994F, -221.647995F), new Vector2(-200.865997F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-203.259995F, -211.531998F));
+ builder.AddLine(new Vector2(-203.259995F, -222.979996F));
+ builder.AddLine(new Vector2(-203.871994F, -227.156006F));
+ builder.AddLine(new Vector2(-203.259995F, -231.296005F));
+ builder.AddLine(new Vector2(-203.259995F, -235.796005F));
+ builder.AddLine(new Vector2(-206.5F, -235.796005F));
+ builder.AddLine(new Vector2(-206.5F, -211.531998F));
+ builder.AddLine(new Vector2(-203.259995F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-193.270004F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-192.009995F, -220.285995F), new Vector2(-191.020004F, -221.348007F), new Vector2(-190.300003F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-189.580002F, -224.035995F), new Vector2(-189.220001F, -225.548004F), new Vector2(-189.220001F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-189.220001F, -228.908005F), new Vector2(-189.580002F, -230.419998F), new Vector2(-190.300003F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-191.020004F, -233.108002F), new Vector2(-192.009995F, -234.175995F), new Vector2(-193.270004F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-194.529999F, -235.759995F), new Vector2(-195.940002F, -236.156006F), new Vector2(-197.5F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-198.772003F, -236.156006F), new Vector2(-199.929993F, -235.886002F), new Vector2(-200.973999F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-202.018005F, -234.806F), new Vector2(-202.858002F, -234.061996F), new Vector2(-203.494003F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-204.130005F, -232.166F), new Vector2(-204.483994F, -231.067993F), new Vector2(-204.556F, -229.820007F));
+ builder.AddLine(new Vector2(-204.556F, -224.671997F));
+ builder.AddCubicBezier(new Vector2(-204.483994F, -223.447998F), new Vector2(-204.136002F, -222.356003F), new Vector2(-203.511993F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-202.888F, -220.436005F), new Vector2(-202.054001F, -219.686005F), new Vector2(-201.009995F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-199.966003F, -218.606003F), new Vector2(-198.796005F, -218.335999F), new Vector2(-197.5F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-195.940002F, -218.335999F), new Vector2(-194.529999F, -218.725998F), new Vector2(-193.270004F, -219.505997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0595()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-211.251999F, -226.292007F));
+ builder.AddLine(new Vector2(-211.251999F, -229.388F));
+ builder.AddLine(new Vector2(-223.095993F, -229.388F));
+ builder.AddLine(new Vector2(-223.095993F, -226.292007F));
+ builder.AddLine(new Vector2(-211.251999F, -226.292007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0596()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-228.028F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-227.643997F, -240.205994F), new Vector2(-227.451996F, -240.703995F), new Vector2(-227.451996F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-227.451996F, -241.880005F), new Vector2(-227.643997F, -242.365997F), new Vector2(-228.028F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-228.412003F, -243.158005F), new Vector2(-228.904007F, -243.356003F), new Vector2(-229.503998F, -243.356003F));
+ builder.AddCubicBezier(new Vector2(-230.104004F, -243.356003F), new Vector2(-230.595993F, -243.158005F), new Vector2(-230.979996F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-231.363998F, -242.365997F), new Vector2(-231.556F, -241.880005F), new Vector2(-231.556F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-231.556F, -240.703995F), new Vector2(-231.363998F, -240.205994F), new Vector2(-230.979996F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-230.595993F, -239.414001F), new Vector2(-230.104004F, -239.216003F), new Vector2(-229.503998F, -239.216003F));
+ builder.AddCubicBezier(new Vector2(-228.904007F, -239.216003F), new Vector2(-228.412003F, -239.414001F), new Vector2(-228.028F, -239.809998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-227.884003F, -218.695999F));
+ builder.AddLine(new Vector2(-227.884003F, -235.796005F));
+ builder.AddLine(new Vector2(-231.160004F, -235.796005F));
+ builder.AddLine(new Vector2(-231.160004F, -218.695999F));
+ builder.AddLine(new Vector2(-227.884003F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0597()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-234.328003F, -232.843994F));
+ builder.AddLine(new Vector2(-234.328003F, -235.796005F));
+ builder.AddLine(new Vector2(-245.992004F, -235.796005F));
+ builder.AddLine(new Vector2(-245.992004F, -232.843994F));
+ builder.AddLine(new Vector2(-234.328003F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-238.539993F, -218.695999F));
+ builder.AddLine(new Vector2(-238.539993F, -242.960007F));
+ builder.AddLine(new Vector2(-241.779999F, -242.960007F));
+ builder.AddLine(new Vector2(-241.779999F, -218.695999F));
+ builder.AddLine(new Vector2(-238.539993F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0598()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-260.679993F, -218.695999F));
+ builder.AddLine(new Vector2(-260.679993F, -235.796005F));
+ builder.AddLine(new Vector2(-263.920013F, -235.796005F));
+ builder.AddLine(new Vector2(-263.920013F, -218.695999F));
+ builder.AddLine(new Vector2(-260.679993F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-248.584F, -218.695999F));
+ builder.AddLine(new Vector2(-248.584F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(-248.584F, -230.492004F), new Vector2(-248.871994F, -231.602005F), new Vector2(-249.447998F, -232.645996F));
+ builder.AddCubicBezier(new Vector2(-250.024002F, -233.690002F), new Vector2(-250.809998F, -234.535995F), new Vector2(-251.806F, -235.184006F));
+ builder.AddCubicBezier(new Vector2(-252.802002F, -235.832001F), new Vector2(-253.947998F, -236.156006F), new Vector2(-255.244003F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-256.540009F, -236.156006F), new Vector2(-257.70401F, -235.862F), new Vector2(-258.735992F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(-259.768005F, -234.686005F), new Vector2(-260.571991F, -233.888F), new Vector2(-261.14801F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-261.723999F, -231.871994F), new Vector2(-262.011993F, -230.720001F), new Vector2(-262.011993F, -229.423996F));
+ builder.AddLine(new Vector2(-260.679993F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(-260.679993F, -229.531998F), new Vector2(-260.488007F, -230.300003F), new Vector2(-260.104004F, -230.972F));
+ builder.AddCubicBezier(new Vector2(-259.720001F, -231.643997F), new Vector2(-259.191986F, -232.171997F), new Vector2(-258.519989F, -232.556F));
+ builder.AddCubicBezier(new Vector2(-257.847992F, -232.940002F), new Vector2(-257.079987F, -233.132004F), new Vector2(-256.216003F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-254.919998F, -233.132004F), new Vector2(-253.869995F, -232.712006F), new Vector2(-253.065994F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(-252.261993F, -231.031998F), new Vector2(-251.860001F, -229.964005F), new Vector2(-251.860001F, -228.667999F));
+ builder.AddLine(new Vector2(-251.860001F, -218.695999F));
+ builder.AddLine(new Vector2(-248.584F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0599()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-268.635986F, -218.695999F));
+ builder.AddLine(new Vector2(-268.635986F, -235.796005F));
+ builder.AddLine(new Vector2(-271.911987F, -235.796005F));
+ builder.AddLine(new Vector2(-271.911987F, -231.619995F));
+ builder.AddLine(new Vector2(-271.299988F, -227.479996F));
+ builder.AddLine(new Vector2(-271.911987F, -223.304001F));
+ builder.AddLine(new Vector2(-271.911987F, -218.695999F));
+ builder.AddLine(new Vector2(-268.635986F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-279.940002F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-280.779999F, -222.656006F), new Vector2(-281.43399F, -223.345993F), new Vector2(-281.902008F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-282.369995F, -225.098007F), new Vector2(-282.604004F, -226.112F), new Vector2(-282.604004F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-282.604004F, -228.391998F), new Vector2(-282.369995F, -229.393997F), new Vector2(-281.902008F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-281.43399F, -231.145996F), new Vector2(-280.786011F, -231.835999F), new Vector2(-279.958008F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-279.130005F, -232.843994F), new Vector2(-278.175995F, -233.095993F), new Vector2(-277.096008F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-276.015991F, -233.095993F), new Vector2(-275.074005F, -232.850006F), new Vector2(-274.269989F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(-273.466003F, -231.865997F), new Vector2(-272.835999F, -231.175995F), new Vector2(-272.380005F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(-271.924011F, -229.399994F), new Vector2(-271.696014F, -228.380005F), new Vector2(-271.696014F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-271.696014F, -225.524002F), new Vector2(-272.187988F, -224.126007F), new Vector2(-273.171997F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(-274.156006F, -221.942001F), new Vector2(-275.451996F, -221.395996F), new Vector2(-277.059998F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-278.140015F, -221.395996F), new Vector2(-279.100006F, -221.647995F), new Vector2(-279.940002F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-274.108002F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-273.075989F, -219.686005F), new Vector2(-272.253998F, -220.436005F), new Vector2(-271.641998F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-271.029999F, -222.356003F), new Vector2(-270.687988F, -223.447998F), new Vector2(-270.615997F, -224.671997F));
+ builder.AddLine(new Vector2(-270.615997F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(-270.687988F, -231.067993F), new Vector2(-271.036011F, -232.166F), new Vector2(-271.660004F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-272.283997F, -234.061996F), new Vector2(-273.105988F, -234.806F), new Vector2(-274.126007F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-275.145996F, -235.886002F), new Vector2(-276.303986F, -236.156006F), new Vector2(-277.600006F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-279.18399F, -236.156006F), new Vector2(-280.605988F, -235.759995F), new Vector2(-281.865997F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-283.126007F, -234.175995F), new Vector2(-284.122009F, -233.108002F), new Vector2(-284.854004F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-285.585999F, -230.419998F), new Vector2(-285.951996F, -228.908005F), new Vector2(-285.951996F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-285.951996F, -225.548004F), new Vector2(-285.585999F, -224.035995F), new Vector2(-284.854004F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-284.122009F, -221.348007F), new Vector2(-283.126007F, -220.285995F), new Vector2(-281.865997F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-280.605988F, -218.725998F), new Vector2(-279.18399F, -218.335999F), new Vector2(-277.600006F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-276.303986F, -218.335999F), new Vector2(-275.140015F, -218.606003F), new Vector2(-274.108002F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0600()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-299.920013F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-298.743988F, -219.595993F), new Vector2(-297.735992F, -220.328003F), new Vector2(-296.895996F, -221.287994F));
+ builder.AddLine(new Vector2(-298.984009F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(-299.559998F, -222.740005F), new Vector2(-300.25F, -222.235992F), new Vector2(-301.053986F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(-301.858002F, -221.563995F), new Vector2(-302.73999F, -221.395996F), new Vector2(-303.700012F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-304.85199F, -221.395996F), new Vector2(-305.872009F, -221.641998F), new Vector2(-306.76001F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-307.64801F, -222.626007F), new Vector2(-308.332001F, -223.322006F), new Vector2(-308.812012F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-309.291992F, -225.121994F), new Vector2(-309.532013F, -226.171997F), new Vector2(-309.532013F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(-309.532013F, -228.548004F), new Vector2(-309.303986F, -229.567993F), new Vector2(-308.847992F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(-308.391998F, -231.296005F), new Vector2(-307.743988F, -231.968002F), new Vector2(-306.903992F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(-306.063995F, -232.927994F), new Vector2(-305.09201F, -233.167999F), new Vector2(-303.988007F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(-302.932007F, -233.167999F), new Vector2(-302.032013F, -232.945999F), new Vector2(-301.287994F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(-300.544006F, -232.057999F), new Vector2(-299.967987F, -231.434006F), new Vector2(-299.559998F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(-299.152008F, -229.826004F), new Vector2(-298.947998F, -228.848007F), new Vector2(-298.947998F, -227.695999F));
+ builder.AddLine(new Vector2(-297.76001F, -228.740005F));
+ builder.AddLine(new Vector2(-310.467987F, -228.740005F));
+ builder.AddLine(new Vector2(-310.467987F, -226.039993F));
+ builder.AddLine(new Vector2(-296.032013F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(-295.959991F, -226.376007F), new Vector2(-295.911987F, -226.682007F), new Vector2(-295.888F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(-295.864014F, -227.233994F), new Vector2(-295.85199F, -227.492004F), new Vector2(-295.85199F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(-295.85199F, -229.363998F), new Vector2(-296.194F, -230.815994F), new Vector2(-296.877991F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(-297.562012F, -233.360001F), new Vector2(-298.515991F, -234.356003F), new Vector2(-299.73999F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(-300.963989F, -235.796005F), new Vector2(-302.355988F, -236.156006F), new Vector2(-303.915985F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-305.571991F, -236.156006F), new Vector2(-307.06601F, -235.766006F), new Vector2(-308.39801F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-309.730011F, -234.205994F), new Vector2(-310.786011F, -233.143997F), new Vector2(-311.56601F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-312.346008F, -230.455994F), new Vector2(-312.735992F, -228.944F), new Vector2(-312.735992F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-312.735992F, -225.559998F), new Vector2(-312.339996F, -224.035995F), new Vector2(-311.548004F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-310.756012F, -221.348007F), new Vector2(-309.682007F, -220.285995F), new Vector2(-308.325989F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-306.970001F, -218.725998F), new Vector2(-305.428009F, -218.335999F), new Vector2(-303.700012F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-302.355988F, -218.335999F), new Vector2(-301.096008F, -218.587997F), new Vector2(-299.920013F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0601()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-328.108002F, -218.695999F));
+ builder.AddLine(new Vector2(-328.108002F, -244.399994F));
+ builder.AddLine(new Vector2(-331.347992F, -244.399994F));
+ builder.AddLine(new Vector2(-331.347992F, -218.695999F));
+ builder.AddLine(new Vector2(-328.108002F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-316.011993F, -218.695999F));
+ builder.AddLine(new Vector2(-316.011993F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(-316.011993F, -230.660004F), new Vector2(-316.299988F, -231.848007F), new Vector2(-316.876007F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-317.451996F, -233.912003F), new Vector2(-318.238007F, -234.716003F), new Vector2(-319.234009F, -235.292007F));
+ builder.AddCubicBezier(new Vector2(-320.230011F, -235.867996F), new Vector2(-321.376007F, -236.156006F), new Vector2(-322.671997F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-323.967987F, -236.156006F), new Vector2(-325.131989F, -235.862F), new Vector2(-326.164001F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(-327.196014F, -234.686005F), new Vector2(-328F, -233.888F), new Vector2(-328.575989F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-329.152008F, -231.871994F), new Vector2(-329.440002F, -230.720001F), new Vector2(-329.440002F, -229.423996F));
+ builder.AddLine(new Vector2(-328.108002F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(-328.108002F, -229.531998F), new Vector2(-327.915985F, -230.300003F), new Vector2(-327.532013F, -230.972F));
+ builder.AddCubicBezier(new Vector2(-327.14801F, -231.643997F), new Vector2(-326.619995F, -232.171997F), new Vector2(-325.947998F, -232.556F));
+ builder.AddCubicBezier(new Vector2(-325.276001F, -232.940002F), new Vector2(-324.507996F, -233.132004F), new Vector2(-323.644012F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-322.347992F, -233.132004F), new Vector2(-321.298004F, -232.712006F), new Vector2(-320.493988F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(-319.690002F, -231.031998F), new Vector2(-319.287994F, -229.964005F), new Vector2(-319.287994F, -228.667999F));
+ builder.AddLine(new Vector2(-319.287994F, -218.695999F));
+ builder.AddLine(new Vector2(-316.011993F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0602()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-334.515991F, -232.843994F));
+ builder.AddLine(new Vector2(-334.515991F, -235.796005F));
+ builder.AddLine(new Vector2(-346.179993F, -235.796005F));
+ builder.AddLine(new Vector2(-346.179993F, -232.843994F));
+ builder.AddLine(new Vector2(-334.515991F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-338.727997F, -218.695999F));
+ builder.AddLine(new Vector2(-338.727997F, -242.960007F));
+ builder.AddLine(new Vector2(-341.967987F, -242.960007F));
+ builder.AddLine(new Vector2(-341.967987F, -218.695999F));
+ builder.AddLine(new Vector2(-338.727997F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0603()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-366.231995F, -211.531998F));
+ builder.AddLine(new Vector2(-362.992004F, -218.552002F));
+ builder.AddLine(new Vector2(-364.828003F, -221.863998F));
+ builder.AddLine(new Vector2(-369.832001F, -211.531998F));
+ builder.AddLine(new Vector2(-366.231995F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-362.992004F, -218.552002F));
+ builder.AddLine(new Vector2(-355F, -235.796005F));
+ builder.AddLine(new Vector2(-358.600006F, -235.796005F));
+ builder.AddLine(new Vector2(-364.395996F, -222.296005F));
+ builder.AddLine(new Vector2(-363.243988F, -222.296005F));
+ builder.AddLine(new Vector2(-368.752014F, -235.796005F));
+ builder.AddLine(new Vector2(-372.35199F, -235.796005F));
+ builder.AddLine(new Vector2(-364.936005F, -218.552002F));
+ builder.AddLine(new Vector2(-362.992004F, -218.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0604()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-385.221985F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-386.049988F, -222.656006F), new Vector2(-386.686005F, -223.345993F), new Vector2(-387.130005F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-387.574005F, -225.098007F), new Vector2(-387.79599F, -226.100006F), new Vector2(-387.79599F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-387.79599F, -228.380005F), new Vector2(-387.567993F, -229.393997F), new Vector2(-387.112F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-386.656006F, -231.145996F), new Vector2(-386.019989F, -231.835999F), new Vector2(-385.20401F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-384.388F, -232.843994F), new Vector2(-383.451996F, -233.095993F), new Vector2(-382.395996F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-381.31601F, -233.095993F), new Vector2(-380.368011F, -232.843994F), new Vector2(-379.552002F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-378.735992F, -231.835999F), new Vector2(-378.093994F, -231.145996F), new Vector2(-377.626007F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-377.15799F, -229.393997F), new Vector2(-376.924011F, -228.391998F), new Vector2(-376.924011F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-376.924011F, -226.112F), new Vector2(-377.15799F, -225.098007F), new Vector2(-377.626007F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-378.093994F, -223.345993F), new Vector2(-378.735992F, -222.656006F), new Vector2(-379.552002F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-380.368011F, -221.647995F), new Vector2(-381.31601F, -221.395996F), new Vector2(-382.395996F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-383.451996F, -221.395996F), new Vector2(-384.394012F, -221.647995F), new Vector2(-385.221985F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-387.615997F, -218.695999F));
+ builder.AddLine(new Vector2(-387.615997F, -223.304001F));
+ builder.AddLine(new Vector2(-388.227997F, -227.479996F));
+ builder.AddLine(new Vector2(-387.615997F, -231.619995F));
+ builder.AddLine(new Vector2(-387.615997F, -244.399994F));
+ builder.AddLine(new Vector2(-390.855988F, -244.399994F));
+ builder.AddLine(new Vector2(-390.855988F, -218.695999F));
+ builder.AddLine(new Vector2(-387.615997F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-377.626007F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-376.365997F, -220.285995F), new Vector2(-375.376007F, -221.348007F), new Vector2(-374.656006F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-373.936005F, -224.035995F), new Vector2(-373.575989F, -225.548004F), new Vector2(-373.575989F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-373.575989F, -228.908005F), new Vector2(-373.936005F, -230.419998F), new Vector2(-374.656006F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-375.376007F, -233.108002F), new Vector2(-376.365997F, -234.175995F), new Vector2(-377.626007F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-378.885986F, -235.759995F), new Vector2(-380.29599F, -236.156006F), new Vector2(-381.855988F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-383.127991F, -236.156006F), new Vector2(-384.286011F, -235.886002F), new Vector2(-385.329987F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-386.373993F, -234.806F), new Vector2(-387.213989F, -234.061996F), new Vector2(-387.850006F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-388.485992F, -232.166F), new Vector2(-388.839996F, -231.067993F), new Vector2(-388.911987F, -229.820007F));
+ builder.AddLine(new Vector2(-388.911987F, -224.671997F));
+ builder.AddCubicBezier(new Vector2(-388.839996F, -223.447998F), new Vector2(-388.492004F, -222.356003F), new Vector2(-387.868011F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-387.243988F, -220.436005F), new Vector2(-386.410004F, -219.686005F), new Vector2(-385.365997F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-384.321991F, -218.606003F), new Vector2(-383.152008F, -218.335999F), new Vector2(-381.855988F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-380.29599F, -218.335999F), new Vector2(-378.885986F, -218.725998F), new Vector2(-377.626007F, -219.505997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0605()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-403.420013F, -240.656006F));
+ builder.AddLine(new Vector2(-403.420013F, -243.679993F));
+ builder.AddLine(new Vector2(-416.559998F, -243.679993F));
+ builder.AddLine(new Vector2(-415.876007F, -240.656006F));
+ builder.AddLine(new Vector2(-403.420013F, -240.656006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-414.723999F, -231.835999F));
+ builder.AddLine(new Vector2(-413.463989F, -243.679993F));
+ builder.AddLine(new Vector2(-416.559998F, -243.679993F));
+ builder.AddLine(new Vector2(-417.675995F, -232.160004F));
+ builder.AddLine(new Vector2(-415.839996F, -230.324005F));
+ builder.AddLine(new Vector2(-414.723999F, -231.835999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-406.552002F, -219.397995F));
+ builder.AddCubicBezier(new Vector2(-405.18399F, -220.106003F), new Vector2(-404.109985F, -221.084F), new Vector2(-403.329987F, -222.332001F));
+ builder.AddCubicBezier(new Vector2(-402.549988F, -223.580002F), new Vector2(-402.160004F, -224.996002F), new Vector2(-402.160004F, -226.580002F));
+ builder.AddCubicBezier(new Vector2(-402.160004F, -228.091995F), new Vector2(-402.477997F, -229.460007F), new Vector2(-403.114014F, -230.684006F));
+ builder.AddCubicBezier(new Vector2(-403.75F, -231.908005F), new Vector2(-404.667999F, -232.880005F), new Vector2(-405.868011F, -233.600006F));
+ builder.AddCubicBezier(new Vector2(-407.067993F, -234.320007F), new Vector2(-408.532013F, -234.679993F), new Vector2(-410.26001F, -234.679993F));
+ builder.AddCubicBezier(new Vector2(-411.14801F, -234.679993F), new Vector2(-411.928009F, -234.595993F), new Vector2(-412.600006F, -234.427994F));
+ builder.AddCubicBezier(new Vector2(-413.272003F, -234.259995F), new Vector2(-413.872009F, -234.020004F), new Vector2(-414.399994F, -233.707993F));
+ builder.AddCubicBezier(new Vector2(-414.928009F, -233.395996F), new Vector2(-415.395996F, -232.988007F), new Vector2(-415.803986F, -232.483994F));
+ builder.AddLine(new Vector2(-415.839996F, -230.324005F));
+ builder.AddCubicBezier(new Vector2(-415.119995F, -230.899994F), new Vector2(-414.358002F, -231.307999F), new Vector2(-413.553986F, -231.548004F));
+ builder.AddCubicBezier(new Vector2(-412.75F, -231.787994F), new Vector2(-411.855988F, -231.908005F), new Vector2(-410.872009F, -231.908005F));
+ builder.AddCubicBezier(new Vector2(-409.911987F, -231.908005F), new Vector2(-409.029999F, -231.710007F), new Vector2(-408.226013F, -231.313995F));
+ builder.AddCubicBezier(new Vector2(-407.421997F, -230.917999F), new Vector2(-406.786011F, -230.335999F), new Vector2(-406.317993F, -229.567993F));
+ builder.AddCubicBezier(new Vector2(-405.850006F, -228.800003F), new Vector2(-405.615997F, -227.863998F), new Vector2(-405.615997F, -226.759995F));
+ builder.AddCubicBezier(new Vector2(-405.615997F, -225.679993F), new Vector2(-405.855988F, -224.75F), new Vector2(-406.335999F, -223.970001F));
+ builder.AddCubicBezier(new Vector2(-406.81601F, -223.190002F), new Vector2(-407.481995F, -222.584F), new Vector2(-408.334015F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-409.186005F, -221.720001F), new Vector2(-410.175995F, -221.503998F), new Vector2(-411.303986F, -221.503998F));
+ builder.AddCubicBezier(new Vector2(-412.503998F, -221.503998F), new Vector2(-413.589996F, -221.75F), new Vector2(-414.562012F, -222.242004F));
+ builder.AddCubicBezier(new Vector2(-415.533997F, -222.733994F), new Vector2(-416.29599F, -223.399994F), new Vector2(-416.847992F, -224.240005F));
+ builder.AddLine(new Vector2(-419.152008F, -221.936005F));
+ builder.AddCubicBezier(new Vector2(-418.23999F, -220.759995F), new Vector2(-417.118011F, -219.865997F), new Vector2(-415.786011F, -219.253998F));
+ builder.AddCubicBezier(new Vector2(-414.45401F, -218.641998F), new Vector2(-412.947998F, -218.335999F), new Vector2(-411.268005F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-409.492004F, -218.335999F), new Vector2(-407.920013F, -218.690002F), new Vector2(-406.552002F, -219.397995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0606()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-421.671997F, -218.695999F));
+ builder.AddLine(new Vector2(-421.671997F, -221.720001F));
+ builder.AddLine(new Vector2(-435.567993F, -221.720001F));
+ builder.AddLine(new Vector2(-438.447998F, -220.748001F));
+ builder.AddLine(new Vector2(-438.447998F, -218.695999F));
+ builder.AddLine(new Vector2(-421.671997F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-434.056F, -220.856003F));
+ builder.AddLine(new Vector2(-426.604004F, -228.524002F));
+ builder.AddCubicBezier(new Vector2(-425.476013F, -229.699997F), new Vector2(-424.593994F, -230.714005F), new Vector2(-423.958008F, -231.565994F));
+ builder.AddCubicBezier(new Vector2(-423.321991F, -232.417999F), new Vector2(-422.877991F, -233.251999F), new Vector2(-422.626007F, -234.067993F));
+ builder.AddCubicBezier(new Vector2(-422.373993F, -234.884003F), new Vector2(-422.247986F, -235.807999F), new Vector2(-422.247986F, -236.839996F));
+ builder.AddCubicBezier(new Vector2(-422.247986F, -238.279999F), new Vector2(-422.559998F, -239.539993F), new Vector2(-423.18399F, -240.619995F));
+ builder.AddCubicBezier(new Vector2(-423.808014F, -241.699997F), new Vector2(-424.690002F, -242.539993F), new Vector2(-425.829987F, -243.139999F));
+ builder.AddCubicBezier(new Vector2(-426.970001F, -243.740005F), new Vector2(-428.308014F, -244.039993F), new Vector2(-429.843994F, -244.039993F));
+ builder.AddCubicBezier(new Vector2(-431.691986F, -244.039993F), new Vector2(-433.312012F, -243.626007F), new Vector2(-434.70401F, -242.798004F));
+ builder.AddCubicBezier(new Vector2(-436.096008F, -241.970001F), new Vector2(-437.272003F, -240.740005F), new Vector2(-438.231995F, -239.108002F));
+ builder.AddLine(new Vector2(-435.855988F, -237.128006F));
+ builder.AddCubicBezier(new Vector2(-435.112F, -238.399994F), new Vector2(-434.26001F, -239.341995F), new Vector2(-433.299988F, -239.953995F));
+ builder.AddCubicBezier(new Vector2(-432.339996F, -240.565994F), new Vector2(-431.223999F, -240.871994F), new Vector2(-429.951996F, -240.871994F));
+ builder.AddCubicBezier(new Vector2(-428.656006F, -240.871994F), new Vector2(-427.605988F, -240.511993F), new Vector2(-426.802002F, -239.792007F));
+ builder.AddCubicBezier(new Vector2(-425.997986F, -239.072006F), new Vector2(-425.596008F, -238.076004F), new Vector2(-425.596008F, -236.804001F));
+ builder.AddCubicBezier(new Vector2(-425.596008F, -236.156006F), new Vector2(-425.70401F, -235.531998F), new Vector2(-425.920013F, -234.932007F));
+ builder.AddCubicBezier(new Vector2(-426.135986F, -234.332001F), new Vector2(-426.514008F, -233.677994F), new Vector2(-427.053986F, -232.970001F));
+ builder.AddCubicBezier(new Vector2(-427.593994F, -232.261993F), new Vector2(-428.320007F, -231.427994F), new Vector2(-429.231995F, -230.468002F));
+ builder.AddLine(new Vector2(-438.447998F, -220.748001F));
+ builder.AddLine(new Vector2(-434.056F, -220.856003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0607()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-454.864014F, -222.638F));
+ builder.AddCubicBezier(new Vector2(-455.872009F, -223.369995F), new Vector2(-456.65799F, -224.455994F), new Vector2(-457.221985F, -225.895996F));
+ builder.AddCubicBezier(new Vector2(-457.786011F, -227.335999F), new Vector2(-458.067993F, -229.112F), new Vector2(-458.067993F, -231.223999F));
+ builder.AddCubicBezier(new Vector2(-458.067993F, -233.335999F), new Vector2(-457.786011F, -235.106003F), new Vector2(-457.221985F, -236.533997F));
+ builder.AddCubicBezier(new Vector2(-456.65799F, -237.962006F), new Vector2(-455.872009F, -239.035995F), new Vector2(-454.864014F, -239.755997F));
+ builder.AddCubicBezier(new Vector2(-453.855988F, -240.475998F), new Vector2(-452.70401F, -240.835999F), new Vector2(-451.40799F, -240.835999F));
+ builder.AddCubicBezier(new Vector2(-450.088013F, -240.835999F), new Vector2(-448.924011F, -240.475998F), new Vector2(-447.915985F, -239.755997F));
+ builder.AddCubicBezier(new Vector2(-446.90799F, -239.035995F), new Vector2(-446.115997F, -237.955994F), new Vector2(-445.540009F, -236.516006F));
+ builder.AddCubicBezier(new Vector2(-444.963989F, -235.076004F), new Vector2(-444.675995F, -233.311996F), new Vector2(-444.675995F, -231.223999F));
+ builder.AddCubicBezier(new Vector2(-444.675995F, -229.112F), new Vector2(-444.963989F, -227.335999F), new Vector2(-445.540009F, -225.895996F));
+ builder.AddCubicBezier(new Vector2(-446.115997F, -224.455994F), new Vector2(-446.902008F, -223.369995F), new Vector2(-447.89801F, -222.638F));
+ builder.AddCubicBezier(new Vector2(-448.894012F, -221.906006F), new Vector2(-450.052002F, -221.539993F), new Vector2(-451.372009F, -221.539993F));
+ builder.AddCubicBezier(new Vector2(-452.691986F, -221.539993F), new Vector2(-453.855988F, -221.906006F), new Vector2(-454.864014F, -222.638F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-446.242004F, -219.901993F));
+ builder.AddCubicBezier(new Vector2(-444.717987F, -220.945999F), new Vector2(-443.506012F, -222.434006F), new Vector2(-442.605988F, -224.365997F));
+ builder.AddCubicBezier(new Vector2(-441.705994F, -226.298004F), new Vector2(-441.256012F, -228.572006F), new Vector2(-441.256012F, -231.188004F));
+ builder.AddCubicBezier(new Vector2(-441.256012F, -233.828003F), new Vector2(-441.705994F, -236.108002F), new Vector2(-442.605988F, -238.028F));
+ builder.AddCubicBezier(new Vector2(-443.506012F, -239.947998F), new Vector2(-444.723999F, -241.429993F), new Vector2(-446.26001F, -242.473999F));
+ builder.AddCubicBezier(new Vector2(-447.79599F, -243.518005F), new Vector2(-449.511993F, -244.039993F), new Vector2(-451.40799F, -244.039993F));
+ builder.AddCubicBezier(new Vector2(-453.256012F, -244.039993F), new Vector2(-454.947998F, -243.518005F), new Vector2(-456.484009F, -242.473999F));
+ builder.AddCubicBezier(new Vector2(-458.019989F, -241.429993F), new Vector2(-459.238007F, -239.947998F), new Vector2(-460.138F, -238.028F));
+ builder.AddCubicBezier(new Vector2(-461.037994F, -236.108002F), new Vector2(-461.488007F, -233.839996F), new Vector2(-461.488007F, -231.223999F));
+ builder.AddCubicBezier(new Vector2(-461.488007F, -228.608002F), new Vector2(-461.032013F, -226.334F), new Vector2(-460.119995F, -224.401993F));
+ builder.AddCubicBezier(new Vector2(-459.208008F, -222.470001F), new Vector2(-457.977997F, -220.975998F), new Vector2(-456.429993F, -219.919998F));
+ builder.AddCubicBezier(new Vector2(-454.881989F, -218.863998F), new Vector2(-453.171997F, -218.335999F), new Vector2(-451.299988F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-449.451996F, -218.335999F), new Vector2(-447.765991F, -218.858002F), new Vector2(-446.242004F, -219.901993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0608()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-464.691986F, -218.695999F));
+ builder.AddLine(new Vector2(-464.691986F, -221.720001F));
+ builder.AddLine(new Vector2(-478.588013F, -221.720001F));
+ builder.AddLine(new Vector2(-481.467987F, -220.748001F));
+ builder.AddLine(new Vector2(-481.467987F, -218.695999F));
+ builder.AddLine(new Vector2(-464.691986F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-477.075989F, -220.856003F));
+ builder.AddLine(new Vector2(-469.623993F, -228.524002F));
+ builder.AddCubicBezier(new Vector2(-468.496002F, -229.699997F), new Vector2(-467.614014F, -230.714005F), new Vector2(-466.977997F, -231.565994F));
+ builder.AddCubicBezier(new Vector2(-466.34201F, -232.417999F), new Vector2(-465.89801F, -233.251999F), new Vector2(-465.645996F, -234.067993F));
+ builder.AddCubicBezier(new Vector2(-465.394012F, -234.884003F), new Vector2(-465.268005F, -235.807999F), new Vector2(-465.268005F, -236.839996F));
+ builder.AddCubicBezier(new Vector2(-465.268005F, -238.279999F), new Vector2(-465.579987F, -239.539993F), new Vector2(-466.20401F, -240.619995F));
+ builder.AddCubicBezier(new Vector2(-466.828003F, -241.699997F), new Vector2(-467.709991F, -242.539993F), new Vector2(-468.850006F, -243.139999F));
+ builder.AddCubicBezier(new Vector2(-469.98999F, -243.740005F), new Vector2(-471.328003F, -244.039993F), new Vector2(-472.864014F, -244.039993F));
+ builder.AddCubicBezier(new Vector2(-474.712006F, -244.039993F), new Vector2(-476.332001F, -243.626007F), new Vector2(-477.723999F, -242.798004F));
+ builder.AddCubicBezier(new Vector2(-479.115997F, -241.970001F), new Vector2(-480.291992F, -240.740005F), new Vector2(-481.252014F, -239.108002F));
+ builder.AddLine(new Vector2(-478.876007F, -237.128006F));
+ builder.AddCubicBezier(new Vector2(-478.131989F, -238.399994F), new Vector2(-477.279999F, -239.341995F), new Vector2(-476.320007F, -239.953995F));
+ builder.AddCubicBezier(new Vector2(-475.359985F, -240.565994F), new Vector2(-474.243988F, -240.871994F), new Vector2(-472.971985F, -240.871994F));
+ builder.AddCubicBezier(new Vector2(-471.675995F, -240.871994F), new Vector2(-470.626007F, -240.511993F), new Vector2(-469.821991F, -239.792007F));
+ builder.AddCubicBezier(new Vector2(-469.018005F, -239.072006F), new Vector2(-468.615997F, -238.076004F), new Vector2(-468.615997F, -236.804001F));
+ builder.AddCubicBezier(new Vector2(-468.615997F, -236.156006F), new Vector2(-468.723999F, -235.531998F), new Vector2(-468.940002F, -234.932007F));
+ builder.AddCubicBezier(new Vector2(-469.156006F, -234.332001F), new Vector2(-469.533997F, -233.677994F), new Vector2(-470.074005F, -232.970001F));
+ builder.AddCubicBezier(new Vector2(-470.614014F, -232.261993F), new Vector2(-471.339996F, -231.427994F), new Vector2(-472.252014F, -230.468002F));
+ builder.AddLine(new Vector2(-481.467987F, -220.748001F));
+ builder.AddLine(new Vector2(-477.075989F, -220.856003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0609()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-504.220001F, -218.695999F));
+ builder.AddLine(new Vector2(-504.220001F, -244.399994F));
+ builder.AddLine(new Vector2(-507.459991F, -244.399994F));
+ builder.AddLine(new Vector2(-507.459991F, -218.695999F));
+ builder.AddLine(new Vector2(-504.220001F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-492.123993F, -218.695999F));
+ builder.AddLine(new Vector2(-492.123993F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(-492.123993F, -230.660004F), new Vector2(-492.411987F, -231.848007F), new Vector2(-492.988007F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-493.563995F, -233.912003F), new Vector2(-494.350006F, -234.716003F), new Vector2(-495.346008F, -235.292007F));
+ builder.AddCubicBezier(new Vector2(-496.34201F, -235.867996F), new Vector2(-497.488007F, -236.156006F), new Vector2(-498.783997F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-500.079987F, -236.156006F), new Vector2(-501.243988F, -235.862F), new Vector2(-502.276001F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(-503.308014F, -234.686005F), new Vector2(-504.112F, -233.888F), new Vector2(-504.687988F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-505.264008F, -231.871994F), new Vector2(-505.552002F, -230.720001F), new Vector2(-505.552002F, -229.423996F));
+ builder.AddLine(new Vector2(-504.220001F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(-504.220001F, -229.531998F), new Vector2(-504.028015F, -230.300003F), new Vector2(-503.644012F, -230.972F));
+ builder.AddCubicBezier(new Vector2(-503.26001F, -231.643997F), new Vector2(-502.731995F, -232.171997F), new Vector2(-502.059998F, -232.556F));
+ builder.AddCubicBezier(new Vector2(-501.388F, -232.940002F), new Vector2(-500.619995F, -233.132004F), new Vector2(-499.756012F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-498.459991F, -233.132004F), new Vector2(-497.410004F, -232.712006F), new Vector2(-496.605988F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(-495.802002F, -231.031998F), new Vector2(-495.399994F, -229.964005F), new Vector2(-495.399994F, -228.667999F));
+ builder.AddLine(new Vector2(-495.399994F, -218.695999F));
+ builder.AddLine(new Vector2(-492.123993F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0610()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-510.627991F, -232.843994F));
+ builder.AddLine(new Vector2(-510.627991F, -235.796005F));
+ builder.AddLine(new Vector2(-522.291992F, -235.796005F));
+ builder.AddLine(new Vector2(-522.291992F, -232.843994F));
+ builder.AddLine(new Vector2(-510.627991F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-514.840027F, -218.695999F));
+ builder.AddLine(new Vector2(-514.840027F, -242.960007F));
+ builder.AddLine(new Vector2(-518.080017F, -242.960007F));
+ builder.AddLine(new Vector2(-518.080017F, -218.695999F));
+ builder.AddLine(new Vector2(-514.840027F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0611()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-525.711975F, -240.656006F));
+ builder.AddLine(new Vector2(-524.236023F, -241.591995F));
+ builder.AddLine(new Vector2(-524.236023F, -243.679993F));
+ builder.AddLine(new Vector2(-540.867981F, -243.679993F));
+ builder.AddLine(new Vector2(-540.867981F, -240.656006F));
+ builder.AddLine(new Vector2(-525.711975F, -240.656006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-533.380005F, -218.695999F));
+ builder.AddLine(new Vector2(-524.236023F, -241.591995F));
+ builder.AddLine(new Vector2(-527.583984F, -241.664001F));
+ builder.AddLine(new Vector2(-536.94397F, -218.695999F));
+ builder.AddLine(new Vector2(-533.380005F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0612()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-542.559998F, -218.695999F));
+ builder.AddLine(new Vector2(-542.559998F, -221.720001F));
+ builder.AddLine(new Vector2(-556.455994F, -221.720001F));
+ builder.AddLine(new Vector2(-559.335999F, -220.748001F));
+ builder.AddLine(new Vector2(-559.335999F, -218.695999F));
+ builder.AddLine(new Vector2(-542.559998F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-554.94397F, -220.856003F));
+ builder.AddLine(new Vector2(-547.492004F, -228.524002F));
+ builder.AddCubicBezier(new Vector2(-546.364014F, -229.699997F), new Vector2(-545.481995F, -230.714005F), new Vector2(-544.846008F, -231.565994F));
+ builder.AddCubicBezier(new Vector2(-544.210022F, -232.417999F), new Vector2(-543.765991F, -233.251999F), new Vector2(-543.513977F, -234.067993F));
+ builder.AddCubicBezier(new Vector2(-543.262024F, -234.884003F), new Vector2(-543.135986F, -235.807999F), new Vector2(-543.135986F, -236.839996F));
+ builder.AddCubicBezier(new Vector2(-543.135986F, -238.279999F), new Vector2(-543.447998F, -239.539993F), new Vector2(-544.072021F, -240.619995F));
+ builder.AddCubicBezier(new Vector2(-544.695984F, -241.699997F), new Vector2(-545.578003F, -242.539993F), new Vector2(-546.718018F, -243.139999F));
+ builder.AddCubicBezier(new Vector2(-547.857971F, -243.740005F), new Vector2(-549.195984F, -244.039993F), new Vector2(-550.731995F, -244.039993F));
+ builder.AddCubicBezier(new Vector2(-552.580017F, -244.039993F), new Vector2(-554.200012F, -243.626007F), new Vector2(-555.59198F, -242.798004F));
+ builder.AddCubicBezier(new Vector2(-556.984009F, -241.970001F), new Vector2(-558.159973F, -240.740005F), new Vector2(-559.119995F, -239.108002F));
+ builder.AddLine(new Vector2(-556.744019F, -237.128006F));
+ builder.AddCubicBezier(new Vector2(-556F, -238.399994F), new Vector2(-555.14801F, -239.341995F), new Vector2(-554.187988F, -239.953995F));
+ builder.AddCubicBezier(new Vector2(-553.228027F, -240.565994F), new Vector2(-552.112F, -240.871994F), new Vector2(-550.840027F, -240.871994F));
+ builder.AddCubicBezier(new Vector2(-549.544006F, -240.871994F), new Vector2(-548.494019F, -240.511993F), new Vector2(-547.690002F, -239.792007F));
+ builder.AddCubicBezier(new Vector2(-546.885986F, -239.072006F), new Vector2(-546.484009F, -238.076004F), new Vector2(-546.484009F, -236.804001F));
+ builder.AddCubicBezier(new Vector2(-546.484009F, -236.156006F), new Vector2(-546.59198F, -235.531998F), new Vector2(-546.807983F, -234.932007F));
+ builder.AddCubicBezier(new Vector2(-547.023987F, -234.332001F), new Vector2(-547.401978F, -233.677994F), new Vector2(-547.942017F, -232.970001F));
+ builder.AddCubicBezier(new Vector2(-548.481995F, -232.261993F), new Vector2(-549.208008F, -231.427994F), new Vector2(-550.119995F, -230.468002F));
+ builder.AddLine(new Vector2(-559.335999F, -220.748001F));
+ builder.AddLine(new Vector2(-554.94397F, -220.856003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0613()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-568.768005F, -232.843994F));
+ builder.AddLine(new Vector2(-568.768005F, -235.796005F));
+ builder.AddLine(new Vector2(-580.432007F, -235.796005F));
+ builder.AddLine(new Vector2(-580.432007F, -232.843994F));
+ builder.AddLine(new Vector2(-568.768005F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-572.97998F, -218.695999F));
+ builder.AddLine(new Vector2(-572.97998F, -242.960007F));
+ builder.AddLine(new Vector2(-576.219971F, -242.960007F));
+ builder.AddLine(new Vector2(-576.219971F, -218.695999F));
+ builder.AddLine(new Vector2(-572.97998F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0614()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-584.19397F, -219.740005F));
+ builder.AddCubicBezier(new Vector2(-583.054016F, -220.675995F), new Vector2(-582.484009F, -221.947998F), new Vector2(-582.484009F, -223.556F));
+ builder.AddCubicBezier(new Vector2(-582.484009F, -224.612F), new Vector2(-582.705994F, -225.464005F), new Vector2(-583.150024F, -226.112F));
+ builder.AddCubicBezier(new Vector2(-583.593994F, -226.759995F), new Vector2(-584.164001F, -227.276001F), new Vector2(-584.859985F, -227.660004F));
+ builder.AddCubicBezier(new Vector2(-585.55603F, -228.044006F), new Vector2(-586.288025F, -228.350006F), new Vector2(-587.05603F, -228.578003F));
+ builder.AddCubicBezier(new Vector2(-587.823975F, -228.806F), new Vector2(-588.562012F, -229.028F), new Vector2(-589.27002F, -229.244003F));
+ builder.AddCubicBezier(new Vector2(-589.978027F, -229.460007F), new Vector2(-590.547974F, -229.723999F), new Vector2(-590.97998F, -230.035995F));
+ builder.AddCubicBezier(new Vector2(-591.411987F, -230.348007F), new Vector2(-591.627991F, -230.792007F), new Vector2(-591.627991F, -231.367996F));
+ builder.AddCubicBezier(new Vector2(-591.627991F, -231.919998F), new Vector2(-591.382019F, -232.363998F), new Vector2(-590.890015F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-590.39801F, -233.035995F), new Vector2(-589.684021F, -233.203995F), new Vector2(-588.747986F, -233.203995F));
+ builder.AddCubicBezier(new Vector2(-587.859985F, -233.203995F), new Vector2(-587.067993F, -233.035995F), new Vector2(-586.372009F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-585.676025F, -232.363998F), new Vector2(-585.075989F, -231.884003F), new Vector2(-584.572021F, -231.259995F));
+ builder.AddLine(new Vector2(-582.484009F, -233.348007F));
+ builder.AddCubicBezier(new Vector2(-583.156006F, -234.283997F), new Vector2(-584.013977F, -234.985992F), new Vector2(-585.057983F, -235.453995F));
+ builder.AddCubicBezier(new Vector2(-586.10199F, -235.921997F), new Vector2(-587.296021F, -236.156006F), new Vector2(-588.640015F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-589.911987F, -236.156006F), new Vector2(-591.004028F, -235.951996F), new Vector2(-591.916016F, -235.544006F));
+ builder.AddCubicBezier(new Vector2(-592.828003F, -235.136002F), new Vector2(-593.530029F, -234.554001F), new Vector2(-594.021973F, -233.798004F));
+ builder.AddCubicBezier(new Vector2(-594.513977F, -233.042007F), new Vector2(-594.76001F, -232.147995F), new Vector2(-594.76001F, -231.115997F));
+ builder.AddCubicBezier(new Vector2(-594.76001F, -230.084F), new Vector2(-594.538025F, -229.25F), new Vector2(-594.093994F, -228.613998F));
+ builder.AddCubicBezier(new Vector2(-593.650024F, -227.977997F), new Vector2(-593.080017F, -227.479996F), new Vector2(-592.383972F, -227.119995F));
+ builder.AddCubicBezier(new Vector2(-591.687988F, -226.759995F), new Vector2(-590.950012F, -226.472F), new Vector2(-590.169983F, -226.255997F));
+ builder.AddCubicBezier(new Vector2(-589.390015F, -226.039993F), new Vector2(-588.651978F, -225.817993F), new Vector2(-587.955994F, -225.589996F));
+ builder.AddCubicBezier(new Vector2(-587.26001F, -225.362F), new Vector2(-586.690002F, -225.074005F), new Vector2(-586.245972F, -224.725998F));
+ builder.AddCubicBezier(new Vector2(-585.802002F, -224.378006F), new Vector2(-585.580017F, -223.891998F), new Vector2(-585.580017F, -223.268005F));
+ builder.AddCubicBezier(new Vector2(-585.580017F, -222.643997F), new Vector2(-585.856018F, -222.158005F), new Vector2(-586.40802F, -221.809998F));
+ builder.AddCubicBezier(new Vector2(-586.960022F, -221.462006F), new Vector2(-587.73999F, -221.287994F), new Vector2(-588.747986F, -221.287994F));
+ builder.AddCubicBezier(new Vector2(-589.755981F, -221.287994F), new Vector2(-590.66803F, -221.473999F), new Vector2(-591.484009F, -221.845993F));
+ builder.AddCubicBezier(new Vector2(-592.299988F, -222.218002F), new Vector2(-593.02002F, -222.787994F), new Vector2(-593.643982F, -223.556F));
+ builder.AddLine(new Vector2(-595.731995F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-595.203979F, -220.820007F), new Vector2(-594.585999F, -220.261993F), new Vector2(-593.877991F, -219.794006F));
+ builder.AddCubicBezier(new Vector2(-593.169983F, -219.326004F), new Vector2(-592.383972F, -218.966003F), new Vector2(-591.52002F, -218.714005F));
+ builder.AddCubicBezier(new Vector2(-590.656006F, -218.462006F), new Vector2(-589.744019F, -218.335999F), new Vector2(-588.783997F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-586.864014F, -218.335999F), new Vector2(-585.333984F, -218.804001F), new Vector2(-584.19397F, -219.740005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0615()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-602.104004F, -219.326004F));
+ builder.AddCubicBezier(new Vector2(-601F, -219.938004F), new Vector2(-600.135986F, -220.807999F), new Vector2(-599.512024F, -221.936005F));
+ builder.AddCubicBezier(new Vector2(-598.888F, -223.063995F), new Vector2(-598.575989F, -224.371994F), new Vector2(-598.575989F, -225.860001F));
+ builder.AddLine(new Vector2(-598.575989F, -235.796005F));
+ builder.AddLine(new Vector2(-601.815979F, -235.796005F));
+ builder.AddLine(new Vector2(-601.815979F, -226.003998F));
+ builder.AddCubicBezier(new Vector2(-601.815979F, -224.587997F), new Vector2(-602.176025F, -223.477997F), new Vector2(-602.895996F, -222.673996F));
+ builder.AddCubicBezier(new Vector2(-603.616028F, -221.869995F), new Vector2(-604.612F, -221.468002F), new Vector2(-605.883972F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-606.723999F, -221.468002F), new Vector2(-607.455994F, -221.647995F), new Vector2(-608.080017F, -222.007996F));
+ builder.AddCubicBezier(new Vector2(-608.703979F, -222.367996F), new Vector2(-609.177979F, -222.889999F), new Vector2(-609.502014F, -223.574005F));
+ builder.AddCubicBezier(new Vector2(-609.825989F, -224.257996F), new Vector2(-609.987976F, -225.067993F), new Vector2(-609.987976F, -226.003998F));
+ builder.AddLine(new Vector2(-609.987976F, -235.796005F));
+ builder.AddLine(new Vector2(-613.228027F, -235.796005F));
+ builder.AddLine(new Vector2(-613.228027F, -225.860001F));
+ builder.AddCubicBezier(new Vector2(-613.228027F, -224.371994F), new Vector2(-612.916016F, -223.063995F), new Vector2(-612.291992F, -221.936005F));
+ builder.AddCubicBezier(new Vector2(-611.66803F, -220.807999F), new Vector2(-610.797974F, -219.938004F), new Vector2(-609.682007F, -219.326004F));
+ builder.AddCubicBezier(new Vector2(-608.565979F, -218.714005F), new Vector2(-607.299988F, -218.408005F), new Vector2(-605.883972F, -218.408005F));
+ builder.AddCubicBezier(new Vector2(-604.468018F, -218.408005F), new Vector2(-603.208008F, -218.714005F), new Vector2(-602.104004F, -219.326004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0616()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-628.726013F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-629.554016F, -223.214005F), new Vector2(-630.202026F, -223.867996F), new Vector2(-630.669983F, -224.707993F));
+ builder.AddCubicBezier(new Vector2(-631.138F, -225.548004F), new Vector2(-631.372009F, -226.507996F), new Vector2(-631.372009F, -227.587997F));
+ builder.AddCubicBezier(new Vector2(-631.372009F, -228.667999F), new Vector2(-631.138F, -229.621994F), new Vector2(-630.669983F, -230.449997F));
+ builder.AddCubicBezier(new Vector2(-630.202026F, -231.278F), new Vector2(-629.559998F, -231.925995F), new Vector2(-628.744019F, -232.393997F));
+ builder.AddCubicBezier(new Vector2(-627.927979F, -232.862F), new Vector2(-626.97998F, -233.095993F), new Vector2(-625.900024F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-624.843994F, -233.095993F), new Vector2(-623.914001F, -232.862F), new Vector2(-623.109985F, -232.393997F));
+ builder.AddCubicBezier(new Vector2(-622.30603F, -231.925995F), new Vector2(-621.682007F, -231.278F), new Vector2(-621.237976F, -230.449997F));
+ builder.AddCubicBezier(new Vector2(-620.794006F, -229.621994F), new Vector2(-620.572021F, -228.656006F), new Vector2(-620.572021F, -227.552002F));
+ builder.AddCubicBezier(new Vector2(-620.572021F, -226.447998F), new Vector2(-620.794006F, -225.481995F), new Vector2(-621.237976F, -224.654007F));
+ builder.AddCubicBezier(new Vector2(-621.682007F, -223.826004F), new Vector2(-622.299988F, -223.184006F), new Vector2(-623.09198F, -222.727997F));
+ builder.AddCubicBezier(new Vector2(-623.883972F, -222.272003F), new Vector2(-624.820007F, -222.044006F), new Vector2(-625.900024F, -222.044006F));
+ builder.AddCubicBezier(new Vector2(-626.955994F, -222.044006F), new Vector2(-627.89801F, -222.278F), new Vector2(-628.726013F, -222.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-622.984009F, -219.776001F));
+ builder.AddCubicBezier(new Vector2(-621.952026F, -220.304001F), new Vector2(-621.130005F, -221.042007F), new Vector2(-620.518005F, -221.990005F));
+ builder.AddCubicBezier(new Vector2(-619.906006F, -222.938004F), new Vector2(-619.564026F, -224.035995F), new Vector2(-619.492004F, -225.283997F));
+ builder.AddLine(new Vector2(-619.492004F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(-619.564026F, -231.091995F), new Vector2(-619.900024F, -232.201996F), new Vector2(-620.5F, -233.149994F));
+ builder.AddCubicBezier(new Vector2(-621.099976F, -234.098007F), new Vector2(-621.921997F, -234.835999F), new Vector2(-622.966003F, -235.363998F));
+ builder.AddCubicBezier(new Vector2(-624.01001F, -235.891998F), new Vector2(-625.203979F, -236.156006F), new Vector2(-626.547974F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-628.083984F, -236.156006F), new Vector2(-629.476013F, -235.778F), new Vector2(-630.723999F, -235.022003F));
+ builder.AddCubicBezier(new Vector2(-631.971985F, -234.266006F), new Vector2(-632.950012F, -233.246002F), new Vector2(-633.65802F, -231.962006F));
+ builder.AddCubicBezier(new Vector2(-634.366028F, -230.677994F), new Vector2(-634.719971F, -229.220001F), new Vector2(-634.719971F, -227.587997F));
+ builder.AddCubicBezier(new Vector2(-634.719971F, -225.955994F), new Vector2(-634.359985F, -224.485992F), new Vector2(-633.640015F, -223.177994F));
+ builder.AddCubicBezier(new Vector2(-632.919983F, -221.869995F), new Vector2(-631.942017F, -220.843994F), new Vector2(-630.705994F, -220.100006F));
+ builder.AddCubicBezier(new Vector2(-629.469971F, -219.356003F), new Vector2(-628.072021F, -218.983994F), new Vector2(-626.512024F, -218.983994F));
+ builder.AddCubicBezier(new Vector2(-625.192017F, -218.983994F), new Vector2(-624.015991F, -219.248001F), new Vector2(-622.984009F, -219.776001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-621.814026F, -212.197998F));
+ builder.AddCubicBezier(new Vector2(-620.458008F, -212.882004F), new Vector2(-619.401978F, -213.841995F), new Vector2(-618.645996F, -215.078003F));
+ builder.AddCubicBezier(new Vector2(-617.890015F, -216.313995F), new Vector2(-617.512024F, -217.748001F), new Vector2(-617.512024F, -219.380005F));
+ builder.AddLine(new Vector2(-617.512024F, -235.796005F));
+ builder.AddLine(new Vector2(-620.752014F, -235.796005F));
+ builder.AddLine(new Vector2(-620.752014F, -231.296005F));
+ builder.AddLine(new Vector2(-620.176025F, -227.479996F));
+ builder.AddLine(new Vector2(-620.752014F, -223.628006F));
+ builder.AddLine(new Vector2(-620.752014F, -219.380005F));
+ builder.AddCubicBezier(new Vector2(-620.752014F, -217.820007F), new Vector2(-621.268005F, -216.578003F), new Vector2(-622.299988F, -215.654007F));
+ builder.AddCubicBezier(new Vector2(-623.33197F, -214.729996F), new Vector2(-624.711975F, -214.268005F), new Vector2(-626.440002F, -214.268005F));
+ builder.AddCubicBezier(new Vector2(-627.76001F, -214.268005F), new Vector2(-628.900024F, -214.501999F), new Vector2(-629.859985F, -214.970001F));
+ builder.AddCubicBezier(new Vector2(-630.820007F, -215.438004F), new Vector2(-631.64801F, -216.115997F), new Vector2(-632.343994F, -217.003998F));
+ builder.AddLine(new Vector2(-634.468018F, -214.880005F));
+ builder.AddCubicBezier(new Vector2(-633.627991F, -213.703995F), new Vector2(-632.536011F, -212.792007F), new Vector2(-631.192017F, -212.143997F));
+ builder.AddCubicBezier(new Vector2(-629.848022F, -211.496002F), new Vector2(-628.288025F, -211.171997F), new Vector2(-626.512024F, -211.171997F));
+ builder.AddCubicBezier(new Vector2(-624.736023F, -211.171997F), new Vector2(-623.169983F, -211.514008F), new Vector2(-621.814026F, -212.197998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0617()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-641.487976F, -219.326004F));
+ builder.AddCubicBezier(new Vector2(-640.383972F, -219.938004F), new Vector2(-639.52002F, -220.807999F), new Vector2(-638.895996F, -221.936005F));
+ builder.AddCubicBezier(new Vector2(-638.271973F, -223.063995F), new Vector2(-637.960022F, -224.371994F), new Vector2(-637.960022F, -225.860001F));
+ builder.AddLine(new Vector2(-637.960022F, -235.796005F));
+ builder.AddLine(new Vector2(-641.200012F, -235.796005F));
+ builder.AddLine(new Vector2(-641.200012F, -226.003998F));
+ builder.AddCubicBezier(new Vector2(-641.200012F, -224.587997F), new Vector2(-641.559998F, -223.477997F), new Vector2(-642.280029F, -222.673996F));
+ builder.AddCubicBezier(new Vector2(-643F, -221.869995F), new Vector2(-643.995972F, -221.468002F), new Vector2(-645.268005F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-646.107971F, -221.468002F), new Vector2(-646.840027F, -221.647995F), new Vector2(-647.463989F, -222.007996F));
+ builder.AddCubicBezier(new Vector2(-648.088013F, -222.367996F), new Vector2(-648.562012F, -222.889999F), new Vector2(-648.885986F, -223.574005F));
+ builder.AddCubicBezier(new Vector2(-649.210022F, -224.257996F), new Vector2(-649.372009F, -225.067993F), new Vector2(-649.372009F, -226.003998F));
+ builder.AddLine(new Vector2(-649.372009F, -235.796005F));
+ builder.AddLine(new Vector2(-652.612F, -235.796005F));
+ builder.AddLine(new Vector2(-652.612F, -225.860001F));
+ builder.AddCubicBezier(new Vector2(-652.612F, -224.371994F), new Vector2(-652.299988F, -223.063995F), new Vector2(-651.676025F, -221.936005F));
+ builder.AddCubicBezier(new Vector2(-651.052002F, -220.807999F), new Vector2(-650.182007F, -219.938004F), new Vector2(-649.065979F, -219.326004F));
+ builder.AddCubicBezier(new Vector2(-647.950012F, -218.714005F), new Vector2(-646.684021F, -218.408005F), new Vector2(-645.268005F, -218.408005F));
+ builder.AddCubicBezier(new Vector2(-643.85199F, -218.408005F), new Vector2(-642.59198F, -218.714005F), new Vector2(-641.487976F, -219.326004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0618()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-659.848022F, -224.348007F));
+ builder.AddLine(new Vector2(-659.848022F, -227.300003F));
+ builder.AddLine(new Vector2(-672.987976F, -227.300003F));
+ builder.AddLine(new Vector2(-672.987976F, -224.348007F));
+ builder.AddLine(new Vector2(-659.848022F, -224.348007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-674.247986F, -218.695999F));
+ builder.AddLine(new Vector2(-665.788025F, -239.828003F));
+ builder.AddLine(new Vector2(-667.083984F, -239.828003F));
+ builder.AddLine(new Vector2(-658.659973F, -218.695999F));
+ builder.AddLine(new Vector2(-654.987976F, -218.695999F));
+ builder.AddLine(new Vector2(-665.176025F, -243.679993F));
+ builder.AddLine(new Vector2(-667.624023F, -243.679993F));
+ builder.AddLine(new Vector2(-677.883972F, -218.695999F));
+ builder.AddLine(new Vector2(-674.247986F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0619()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-699.52002F, -218.695999F));
+ builder.AddLine(new Vector2(-699.52002F, -235.796005F));
+ builder.AddLine(new Vector2(-702.76001F, -235.796005F));
+ builder.AddLine(new Vector2(-702.76001F, -218.695999F));
+ builder.AddLine(new Vector2(-699.52002F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-687.424011F, -218.695999F));
+ builder.AddLine(new Vector2(-687.424011F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(-687.424011F, -230.492004F), new Vector2(-687.711975F, -231.602005F), new Vector2(-688.288025F, -232.645996F));
+ builder.AddCubicBezier(new Vector2(-688.864014F, -233.690002F), new Vector2(-689.650024F, -234.535995F), new Vector2(-690.645996F, -235.184006F));
+ builder.AddCubicBezier(new Vector2(-691.642029F, -235.832001F), new Vector2(-692.788025F, -236.156006F), new Vector2(-694.083984F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-695.380005F, -236.156006F), new Vector2(-696.544006F, -235.862F), new Vector2(-697.575989F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(-698.607971F, -234.686005F), new Vector2(-699.411987F, -233.888F), new Vector2(-699.987976F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-700.564026F, -231.871994F), new Vector2(-700.85199F, -230.720001F), new Vector2(-700.85199F, -229.423996F));
+ builder.AddLine(new Vector2(-699.52002F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(-699.52002F, -229.531998F), new Vector2(-699.328003F, -230.300003F), new Vector2(-698.94397F, -230.972F));
+ builder.AddCubicBezier(new Vector2(-698.559998F, -231.643997F), new Vector2(-698.031982F, -232.171997F), new Vector2(-697.359985F, -232.556F));
+ builder.AddCubicBezier(new Vector2(-696.687988F, -232.940002F), new Vector2(-695.919983F, -233.132004F), new Vector2(-695.05603F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-693.76001F, -233.132004F), new Vector2(-692.710022F, -232.712006F), new Vector2(-691.906006F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(-691.10199F, -231.031998F), new Vector2(-690.700012F, -229.964005F), new Vector2(-690.700012F, -228.667999F));
+ builder.AddLine(new Vector2(-690.700012F, -218.695999F));
+ builder.AddLine(new Vector2(-687.424011F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0620()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-718.16803F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-719.007996F, -222.727997F), new Vector2(-719.66803F, -223.417999F), new Vector2(-720.14801F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-720.627991F, -225.169998F), new Vector2(-720.867981F, -226.171997F), new Vector2(-720.867981F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-720.867981F, -228.404007F), new Vector2(-720.627991F, -229.388F), new Vector2(-720.14801F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-719.66803F, -231.115997F), new Vector2(-719.007996F, -231.794006F), new Vector2(-718.16803F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-717.328003F, -232.778F), new Vector2(-716.380005F, -233.024002F), new Vector2(-715.323975F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(-714.219971F, -233.024002F), new Vector2(-713.254028F, -232.778F), new Vector2(-712.426025F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-711.598022F, -231.794006F), new Vector2(-710.937988F, -231.115997F), new Vector2(-710.445984F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-709.953979F, -229.388F), new Vector2(-709.708008F, -228.404007F), new Vector2(-709.708008F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-709.708008F, -226.171997F), new Vector2(-709.947998F, -225.169998F), new Vector2(-710.427979F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-710.90802F, -223.417999F), new Vector2(-711.567993F, -222.727997F), new Vector2(-712.40802F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-713.247986F, -221.720001F), new Vector2(-714.219971F, -221.468002F), new Vector2(-715.323975F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-716.380005F, -221.468002F), new Vector2(-717.328003F, -221.720001F), new Vector2(-718.16803F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-710.77002F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-709.414001F, -220.315994F), new Vector2(-708.340027F, -221.389999F), new Vector2(-707.547974F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-706.755981F, -224.102005F), new Vector2(-706.359985F, -225.619995F), new Vector2(-706.359985F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-706.359985F, -228.955994F), new Vector2(-706.755981F, -230.455994F), new Vector2(-707.547974F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-708.340027F, -233.143997F), new Vector2(-709.414001F, -234.205994F), new Vector2(-710.77002F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-712.125977F, -235.766006F), new Vector2(-713.643982F, -236.156006F), new Vector2(-715.323975F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-716.97998F, -236.156006F), new Vector2(-718.47998F, -235.759995F), new Vector2(-719.823975F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-721.16803F, -234.175995F), new Vector2(-722.236023F, -233.113998F), new Vector2(-723.028015F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(-723.820007F, -230.449997F), new Vector2(-724.216003F, -228.955994F), new Vector2(-724.216003F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-724.216003F, -225.619995F), new Vector2(-723.820007F, -224.102005F), new Vector2(-723.028015F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-722.236023F, -221.389999F), new Vector2(-721.16803F, -220.315994F), new Vector2(-719.823975F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-718.47998F, -218.731995F), new Vector2(-716.97998F, -218.335999F), new Vector2(-715.323975F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-713.643982F, -218.335999F), new Vector2(-712.125977F, -218.731995F), new Vector2(-710.77002F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0621()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-737.463989F, -218.606003F));
+ builder.AddCubicBezier(new Vector2(-736.528015F, -220.225998F), new Vector2(-735.807983F, -221.996002F), new Vector2(-735.304016F, -223.916F));
+ builder.AddCubicBezier(new Vector2(-734.799988F, -225.835999F), new Vector2(-734.547974F, -227.828003F), new Vector2(-734.547974F, -229.891998F));
+ builder.AddCubicBezier(new Vector2(-734.547974F, -231.955994F), new Vector2(-734.799988F, -233.947998F), new Vector2(-735.304016F, -235.867996F));
+ builder.AddCubicBezier(new Vector2(-735.807983F, -237.787994F), new Vector2(-736.528015F, -239.557999F), new Vector2(-737.463989F, -241.177994F));
+ builder.AddCubicBezier(new Vector2(-738.400024F, -242.798004F), new Vector2(-739.528015F, -244.160004F), new Vector2(-740.848022F, -245.264008F));
+ builder.AddLine(new Vector2(-742.755981F, -243.572006F));
+ builder.AddCubicBezier(new Vector2(-741.028015F, -242.084F), new Vector2(-739.708008F, -240.164001F), new Vector2(-738.796021F, -237.811996F));
+ builder.AddCubicBezier(new Vector2(-737.883972F, -235.460007F), new Vector2(-737.427979F, -232.820007F), new Vector2(-737.427979F, -229.891998F));
+ builder.AddCubicBezier(new Vector2(-737.427979F, -226.988007F), new Vector2(-737.883972F, -224.360001F), new Vector2(-738.796021F, -222.007996F));
+ builder.AddCubicBezier(new Vector2(-739.708008F, -219.656006F), new Vector2(-741.028015F, -217.723999F), new Vector2(-742.755981F, -216.212006F));
+ builder.AddLine(new Vector2(-740.848022F, -214.520004F));
+ builder.AddCubicBezier(new Vector2(-739.528015F, -215.623993F), new Vector2(-738.400024F, -216.985992F), new Vector2(-737.463989F, -218.606003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0622()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-756.83197F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-757.671997F, -222.727997F), new Vector2(-758.33197F, -223.417999F), new Vector2(-758.812012F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-759.291992F, -225.169998F), new Vector2(-759.531982F, -226.171997F), new Vector2(-759.531982F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-759.531982F, -228.404007F), new Vector2(-759.291992F, -229.388F), new Vector2(-758.812012F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-758.33197F, -231.115997F), new Vector2(-757.671997F, -231.794006F), new Vector2(-756.83197F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-755.992004F, -232.778F), new Vector2(-755.044006F, -233.024002F), new Vector2(-753.987976F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(-752.883972F, -233.024002F), new Vector2(-751.91803F, -232.778F), new Vector2(-751.090027F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-750.262024F, -231.794006F), new Vector2(-749.60199F, -231.115997F), new Vector2(-749.109985F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-748.617981F, -229.388F), new Vector2(-748.372009F, -228.404007F), new Vector2(-748.372009F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-748.372009F, -226.171997F), new Vector2(-748.612F, -225.169998F), new Vector2(-749.09198F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-749.572021F, -223.417999F), new Vector2(-750.231995F, -222.727997F), new Vector2(-751.072021F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-751.911987F, -221.720001F), new Vector2(-752.883972F, -221.468002F), new Vector2(-753.987976F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-755.044006F, -221.468002F), new Vector2(-755.992004F, -221.720001F), new Vector2(-756.83197F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-749.434021F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-748.078003F, -220.315994F), new Vector2(-747.004028F, -221.389999F), new Vector2(-746.211975F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-745.419983F, -224.102005F), new Vector2(-745.023987F, -225.619995F), new Vector2(-745.023987F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-745.023987F, -228.955994F), new Vector2(-745.419983F, -230.455994F), new Vector2(-746.211975F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-747.004028F, -233.143997F), new Vector2(-748.078003F, -234.205994F), new Vector2(-749.434021F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-750.789978F, -235.766006F), new Vector2(-752.307983F, -236.156006F), new Vector2(-753.987976F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-755.643982F, -236.156006F), new Vector2(-757.143982F, -235.759995F), new Vector2(-758.487976F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-759.83197F, -234.175995F), new Vector2(-760.900024F, -233.113998F), new Vector2(-761.692017F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(-762.484009F, -230.449997F), new Vector2(-762.880005F, -228.955994F), new Vector2(-762.880005F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-762.880005F, -225.619995F), new Vector2(-762.484009F, -224.102005F), new Vector2(-761.692017F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-760.900024F, -221.389999F), new Vector2(-759.83197F, -220.315994F), new Vector2(-758.487976F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-757.143982F, -218.731995F), new Vector2(-755.643982F, -218.335999F), new Vector2(-753.987976F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-752.307983F, -218.335999F), new Vector2(-750.789978F, -218.731995F), new Vector2(-749.434021F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0623()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-775.012024F, -211.531998F));
+ builder.AddLine(new Vector2(-771.771973F, -218.552002F));
+ builder.AddLine(new Vector2(-773.607971F, -221.863998F));
+ builder.AddLine(new Vector2(-778.612F, -211.531998F));
+ builder.AddLine(new Vector2(-775.012024F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-771.771973F, -218.552002F));
+ builder.AddLine(new Vector2(-763.780029F, -235.796005F));
+ builder.AddLine(new Vector2(-767.380005F, -235.796005F));
+ builder.AddLine(new Vector2(-773.176025F, -222.296005F));
+ builder.AddLine(new Vector2(-772.023987F, -222.296005F));
+ builder.AddLine(new Vector2(-777.531982F, -235.796005F));
+ builder.AddLine(new Vector2(-781.132019F, -235.796005F));
+ builder.AddLine(new Vector2(-773.716003F, -218.552002F));
+ builder.AddLine(new Vector2(-771.771973F, -218.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0624()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-792.435974F, -240.656006F));
+ builder.AddLine(new Vector2(-792.435974F, -243.679993F));
+ builder.AddLine(new Vector2(-800.536011F, -243.679993F));
+ builder.AddLine(new Vector2(-800.536011F, -240.656006F));
+ builder.AddLine(new Vector2(-792.435974F, -240.656006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-792.075989F, -218.695999F));
+ builder.AddLine(new Vector2(-792.075989F, -243.679993F));
+ builder.AddLine(new Vector2(-795.424011F, -243.679993F));
+ builder.AddLine(new Vector2(-795.424011F, -218.695999F));
+ builder.AddLine(new Vector2(-792.075989F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0625()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-803.164001F, -218.695999F));
+ builder.AddLine(new Vector2(-803.164001F, -221.720001F));
+ builder.AddLine(new Vector2(-817.059998F, -221.720001F));
+ builder.AddLine(new Vector2(-819.940002F, -220.748001F));
+ builder.AddLine(new Vector2(-819.940002F, -218.695999F));
+ builder.AddLine(new Vector2(-803.164001F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-815.547974F, -220.856003F));
+ builder.AddLine(new Vector2(-808.096008F, -228.524002F));
+ builder.AddCubicBezier(new Vector2(-806.968018F, -229.699997F), new Vector2(-806.085999F, -230.714005F), new Vector2(-805.450012F, -231.565994F));
+ builder.AddCubicBezier(new Vector2(-804.814026F, -232.417999F), new Vector2(-804.369995F, -233.251999F), new Vector2(-804.117981F, -234.067993F));
+ builder.AddCubicBezier(new Vector2(-803.866028F, -234.884003F), new Vector2(-803.73999F, -235.807999F), new Vector2(-803.73999F, -236.839996F));
+ builder.AddCubicBezier(new Vector2(-803.73999F, -238.279999F), new Vector2(-804.052002F, -239.539993F), new Vector2(-804.676025F, -240.619995F));
+ builder.AddCubicBezier(new Vector2(-805.299988F, -241.699997F), new Vector2(-806.182007F, -242.539993F), new Vector2(-807.322021F, -243.139999F));
+ builder.AddCubicBezier(new Vector2(-808.461975F, -243.740005F), new Vector2(-809.799988F, -244.039993F), new Vector2(-811.335999F, -244.039993F));
+ builder.AddCubicBezier(new Vector2(-813.184021F, -244.039993F), new Vector2(-814.804016F, -243.626007F), new Vector2(-816.195984F, -242.798004F));
+ builder.AddCubicBezier(new Vector2(-817.588013F, -241.970001F), new Vector2(-818.763977F, -240.740005F), new Vector2(-819.723999F, -239.108002F));
+ builder.AddLine(new Vector2(-817.348022F, -237.128006F));
+ builder.AddCubicBezier(new Vector2(-816.604004F, -238.399994F), new Vector2(-815.752014F, -239.341995F), new Vector2(-814.791992F, -239.953995F));
+ builder.AddCubicBezier(new Vector2(-813.83197F, -240.565994F), new Vector2(-812.716003F, -240.871994F), new Vector2(-811.44397F, -240.871994F));
+ builder.AddCubicBezier(new Vector2(-810.14801F, -240.871994F), new Vector2(-809.098022F, -240.511993F), new Vector2(-808.294006F, -239.792007F));
+ builder.AddCubicBezier(new Vector2(-807.48999F, -239.072006F), new Vector2(-807.088013F, -238.076004F), new Vector2(-807.088013F, -236.804001F));
+ builder.AddCubicBezier(new Vector2(-807.088013F, -236.156006F), new Vector2(-807.195984F, -235.531998F), new Vector2(-807.411987F, -234.932007F));
+ builder.AddCubicBezier(new Vector2(-807.627991F, -234.332001F), new Vector2(-808.005981F, -233.677994F), new Vector2(-808.546021F, -232.970001F));
+ builder.AddCubicBezier(new Vector2(-809.085999F, -232.261993F), new Vector2(-809.812012F, -231.427994F), new Vector2(-810.723999F, -230.468002F));
+ builder.AddLine(new Vector2(-819.940002F, -220.748001F));
+ builder.AddLine(new Vector2(-815.547974F, -220.856003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0626()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-822.171997F, -216.212006F));
+ builder.AddCubicBezier(new Vector2(-823.875977F, -217.723999F), new Vector2(-825.190002F, -219.656006F), new Vector2(-826.114014F, -222.007996F));
+ builder.AddCubicBezier(new Vector2(-827.038025F, -224.360001F), new Vector2(-827.5F, -226.988007F), new Vector2(-827.5F, -229.891998F));
+ builder.AddCubicBezier(new Vector2(-827.5F, -232.820007F), new Vector2(-827.038025F, -235.460007F), new Vector2(-826.114014F, -237.811996F));
+ builder.AddCubicBezier(new Vector2(-825.190002F, -240.164001F), new Vector2(-823.875977F, -242.084F), new Vector2(-822.171997F, -243.572006F));
+ builder.AddLine(new Vector2(-824.044006F, -245.264008F));
+ builder.AddCubicBezier(new Vector2(-825.364014F, -244.160004F), new Vector2(-826.492004F, -242.798004F), new Vector2(-827.427979F, -241.177994F));
+ builder.AddCubicBezier(new Vector2(-828.364014F, -239.557999F), new Vector2(-829.083984F, -237.787994F), new Vector2(-829.588013F, -235.867996F));
+ builder.AddCubicBezier(new Vector2(-830.09198F, -233.947998F), new Vector2(-830.343994F, -231.955994F), new Vector2(-830.343994F, -229.891998F));
+ builder.AddCubicBezier(new Vector2(-830.343994F, -227.828003F), new Vector2(-830.09198F, -225.835999F), new Vector2(-829.588013F, -223.916F));
+ builder.AddCubicBezier(new Vector2(-829.083984F, -221.996002F), new Vector2(-828.364014F, -220.225998F), new Vector2(-827.427979F, -218.606003F));
+ builder.AddCubicBezier(new Vector2(-826.492004F, -216.985992F), new Vector2(-825.364014F, -215.623993F), new Vector2(-824.044006F, -214.520004F));
+ builder.AddLine(new Vector2(-822.171997F, -216.212006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0627()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(806.64801F, -261.895996F));
+ builder.AddLine(new Vector2(806.64801F, -279.608002F));
+ builder.AddLine(new Vector2(799.59198F, -279.608002F));
+ builder.AddLine(new Vector2(799.59198F, -261.895996F));
+ builder.AddLine(new Vector2(806.64801F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(817.916016F, -261.895996F));
+ builder.AddLine(new Vector2(817.916016F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(817.916016F, -274.723999F), new Vector2(817.627991F, -275.846008F), new Vector2(817.052002F, -276.817993F));
+ builder.AddCubicBezier(new Vector2(816.476013F, -277.790009F), new Vector2(815.690002F, -278.558014F), new Vector2(814.69397F, -279.122009F));
+ builder.AddCubicBezier(new Vector2(813.697998F, -279.686005F), new Vector2(812.564026F, -279.967987F), new Vector2(811.291992F, -279.967987F));
+ builder.AddCubicBezier(new Vector2(809.875977F, -279.967987F), new Vector2(808.609985F, -279.691986F), new Vector2(807.494019F, -279.140015F));
+ builder.AddCubicBezier(new Vector2(806.377991F, -278.588013F), new Vector2(805.502014F, -277.79599F), new Vector2(804.866028F, -276.764008F));
+ builder.AddCubicBezier(new Vector2(804.22998F, -275.731995F), new Vector2(803.911987F, -274.496002F), new Vector2(803.911987F, -273.056F));
+ builder.AddLine(new Vector2(806.64801F, -271.832001F));
+ builder.AddCubicBezier(new Vector2(806.64801F, -272.287994F), new Vector2(806.737976F, -272.678009F), new Vector2(806.91803F, -273.002014F));
+ builder.AddCubicBezier(new Vector2(807.098022F, -273.325989F), new Vector2(807.349976F, -273.571991F), new Vector2(807.674011F, -273.73999F));
+ builder.AddCubicBezier(new Vector2(807.997986F, -273.90799F), new Vector2(808.364014F, -273.992004F), new Vector2(808.771973F, -273.992004F));
+ builder.AddCubicBezier(new Vector2(809.372009F, -273.992004F), new Vector2(809.869995F, -273.806F), new Vector2(810.265991F, -273.43399F));
+ builder.AddCubicBezier(new Vector2(810.661987F, -273.062012F), new Vector2(810.859985F, -272.528015F), new Vector2(810.859985F, -271.832001F));
+ builder.AddLine(new Vector2(810.859985F, -261.895996F));
+ builder.AddLine(new Vector2(817.916016F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0628()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(796.208008F, -261.895996F));
+ builder.AddLine(new Vector2(796.208008F, -279.608002F));
+ builder.AddLine(new Vector2(789.33197F, -279.608002F));
+ builder.AddLine(new Vector2(789.33197F, -275.252014F));
+ builder.AddLine(new Vector2(790.304016F, -270.967987F));
+ builder.AddLine(new Vector2(789.33197F, -266.64801F));
+ builder.AddLine(new Vector2(789.33197F, -261.895996F));
+ builder.AddLine(new Vector2(796.208008F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(785.083984F, -268.123993F));
+ builder.AddCubicBezier(new Vector2(784.627991F, -268.388F), new Vector2(784.273987F, -268.747986F), new Vector2(784.021973F, -269.20401F));
+ builder.AddCubicBezier(new Vector2(783.77002F, -269.660004F), new Vector2(783.643982F, -270.175995F), new Vector2(783.643982F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(783.643982F, -271.328003F), new Vector2(783.776001F, -271.843994F), new Vector2(784.039978F, -272.299988F));
+ builder.AddCubicBezier(new Vector2(784.304016F, -272.756012F), new Vector2(784.65802F, -273.115997F), new Vector2(785.10199F, -273.380005F));
+ builder.AddCubicBezier(new Vector2(785.546021F, -273.644012F), new Vector2(786.05603F, -273.776001F), new Vector2(786.632019F, -273.776001F));
+ builder.AddCubicBezier(new Vector2(787.208008F, -273.776001F), new Vector2(787.718018F, -273.644012F), new Vector2(788.161987F, -273.380005F));
+ builder.AddCubicBezier(new Vector2(788.606018F, -273.115997F), new Vector2(788.947998F, -272.761993F), new Vector2(789.187988F, -272.317993F));
+ builder.AddCubicBezier(new Vector2(789.427979F, -271.873993F), new Vector2(789.547974F, -271.35199F), new Vector2(789.547974F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(789.547974F, -269.864014F), new Vector2(789.278015F, -269.138F), new Vector2(788.737976F, -268.574005F));
+ builder.AddCubicBezier(new Vector2(788.197998F, -268.01001F), new Vector2(787.484009F, -267.727997F), new Vector2(786.596008F, -267.727997F));
+ builder.AddCubicBezier(new Vector2(786.044006F, -267.727997F), new Vector2(785.539978F, -267.859985F), new Vector2(785.083984F, -268.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(787.874023F, -262.058014F));
+ builder.AddCubicBezier(new Vector2(788.75F, -262.406006F), new Vector2(789.481995F, -262.891998F), new Vector2(790.070007F, -263.515991F));
+ builder.AddCubicBezier(new Vector2(790.65802F, -264.140015F), new Vector2(791.036011F, -264.859985F), new Vector2(791.203979F, -265.675995F));
+ builder.AddLine(new Vector2(791.203979F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(791.036011F, -276.644012F), new Vector2(790.65802F, -277.364014F), new Vector2(790.070007F, -277.988007F));
+ builder.AddCubicBezier(new Vector2(789.481995F, -278.612F), new Vector2(788.75F, -279.097992F), new Vector2(787.874023F, -279.446014F));
+ builder.AddCubicBezier(new Vector2(786.997986F, -279.794006F), new Vector2(786.044006F, -279.967987F), new Vector2(785.012024F, -279.967987F));
+ builder.AddCubicBezier(new Vector2(783.356018F, -279.967987F), new Vector2(781.892029F, -279.578003F), new Vector2(780.619995F, -278.798004F));
+ builder.AddCubicBezier(new Vector2(779.348022F, -278.018005F), new Vector2(778.35199F, -276.932007F), new Vector2(777.632019F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(776.911987F, -274.14801F), new Vector2(776.552002F, -272.552002F), new Vector2(776.552002F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(776.552002F, -268.951996F), new Vector2(776.911987F, -267.362F), new Vector2(777.632019F, -265.981995F));
+ builder.AddCubicBezier(new Vector2(778.35199F, -264.60199F), new Vector2(779.348022F, -263.515991F), new Vector2(780.619995F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(781.892029F, -261.932007F), new Vector2(783.356018F, -261.536011F), new Vector2(785.012024F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(786.044006F, -261.536011F), new Vector2(786.997986F, -261.709991F), new Vector2(787.874023F, -262.058014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0629()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(758.731995F, -261.895996F));
+ builder.AddLine(new Vector2(762.296021F, -274.135986F));
+ builder.AddLine(new Vector2(760.856018F, -274.135986F));
+ builder.AddLine(new Vector2(764.312012F, -261.895996F));
+ builder.AddLine(new Vector2(771.044006F, -261.895996F));
+ builder.AddLine(new Vector2(776.192017F, -279.608002F));
+ builder.AddLine(new Vector2(769.495972F, -279.608002F));
+ builder.AddLine(new Vector2(766.580017F, -266.720001F));
+ builder.AddLine(new Vector2(768.596008F, -266.68399F));
+ builder.AddLine(new Vector2(764.85199F, -279.608002F));
+ builder.AddLine(new Vector2(758.192017F, -279.608002F));
+ builder.AddLine(new Vector2(754.484009F, -266.68399F));
+ builder.AddLine(new Vector2(756.463989F, -266.720001F));
+ builder.AddLine(new Vector2(753.619995F, -279.608002F));
+ builder.AddLine(new Vector2(746.924011F, -279.608002F));
+ builder.AddLine(new Vector2(752.072021F, -261.895996F));
+ builder.AddLine(new Vector2(758.731995F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0630()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(745.195984F, -261.895996F));
+ builder.AddLine(new Vector2(745.195984F, -279.608002F));
+ builder.AddLine(new Vector2(738.320007F, -279.608002F));
+ builder.AddLine(new Vector2(738.320007F, -275.252014F));
+ builder.AddLine(new Vector2(739.291992F, -270.967987F));
+ builder.AddLine(new Vector2(738.320007F, -266.64801F));
+ builder.AddLine(new Vector2(738.320007F, -261.895996F));
+ builder.AddLine(new Vector2(745.195984F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(734.072021F, -268.123993F));
+ builder.AddCubicBezier(new Vector2(733.616028F, -268.388F), new Vector2(733.262024F, -268.747986F), new Vector2(733.01001F, -269.20401F));
+ builder.AddCubicBezier(new Vector2(732.757996F, -269.660004F), new Vector2(732.632019F, -270.175995F), new Vector2(732.632019F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(732.632019F, -271.328003F), new Vector2(732.763977F, -271.843994F), new Vector2(733.028015F, -272.299988F));
+ builder.AddCubicBezier(new Vector2(733.291992F, -272.756012F), new Vector2(733.645996F, -273.115997F), new Vector2(734.090027F, -273.380005F));
+ builder.AddCubicBezier(new Vector2(734.533997F, -273.644012F), new Vector2(735.044006F, -273.776001F), new Vector2(735.619995F, -273.776001F));
+ builder.AddCubicBezier(new Vector2(736.195984F, -273.776001F), new Vector2(736.705994F, -273.644012F), new Vector2(737.150024F, -273.380005F));
+ builder.AddCubicBezier(new Vector2(737.593994F, -273.115997F), new Vector2(737.935974F, -272.761993F), new Vector2(738.176025F, -272.317993F));
+ builder.AddCubicBezier(new Vector2(738.416016F, -271.873993F), new Vector2(738.536011F, -271.35199F), new Vector2(738.536011F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(738.536011F, -269.864014F), new Vector2(738.265991F, -269.138F), new Vector2(737.726013F, -268.574005F));
+ builder.AddCubicBezier(new Vector2(737.185974F, -268.01001F), new Vector2(736.471985F, -267.727997F), new Vector2(735.583984F, -267.727997F));
+ builder.AddCubicBezier(new Vector2(735.031982F, -267.727997F), new Vector2(734.528015F, -267.859985F), new Vector2(734.072021F, -268.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(736.862F, -262.058014F));
+ builder.AddCubicBezier(new Vector2(737.737976F, -262.406006F), new Vector2(738.469971F, -262.891998F), new Vector2(739.057983F, -263.515991F));
+ builder.AddCubicBezier(new Vector2(739.645996F, -264.140015F), new Vector2(740.023987F, -264.859985F), new Vector2(740.192017F, -265.675995F));
+ builder.AddLine(new Vector2(740.192017F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(740.023987F, -276.644012F), new Vector2(739.645996F, -277.364014F), new Vector2(739.057983F, -277.988007F));
+ builder.AddCubicBezier(new Vector2(738.469971F, -278.612F), new Vector2(737.737976F, -279.097992F), new Vector2(736.862F, -279.446014F));
+ builder.AddCubicBezier(new Vector2(735.986023F, -279.794006F), new Vector2(735.031982F, -279.967987F), new Vector2(734F, -279.967987F));
+ builder.AddCubicBezier(new Vector2(732.343994F, -279.967987F), new Vector2(730.880005F, -279.578003F), new Vector2(729.607971F, -278.798004F));
+ builder.AddCubicBezier(new Vector2(728.335999F, -278.018005F), new Vector2(727.340027F, -276.932007F), new Vector2(726.619995F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(725.900024F, -274.14801F), new Vector2(725.539978F, -272.552002F), new Vector2(725.539978F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(725.539978F, -268.951996F), new Vector2(725.900024F, -267.362F), new Vector2(726.619995F, -265.981995F));
+ builder.AddCubicBezier(new Vector2(727.340027F, -264.60199F), new Vector2(728.335999F, -263.515991F), new Vector2(729.607971F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(730.880005F, -261.932007F), new Vector2(732.343994F, -261.536011F), new Vector2(734F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(735.031982F, -261.536011F), new Vector2(735.986023F, -261.709991F), new Vector2(736.862F, -262.058014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0631()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(722.335999F, -282.325989F));
+ builder.AddCubicBezier(new Vector2(723.007996F, -283.033997F), new Vector2(723.343994F, -283.903992F), new Vector2(723.343994F, -284.936005F));
+ builder.AddCubicBezier(new Vector2(723.343994F, -285.967987F), new Vector2(723.007996F, -286.838013F), new Vector2(722.335999F, -287.54599F));
+ builder.AddCubicBezier(new Vector2(721.664001F, -288.253998F), new Vector2(720.799988F, -288.608002F), new Vector2(719.744019F, -288.608002F));
+ builder.AddCubicBezier(new Vector2(718.711975F, -288.608002F), new Vector2(717.854004F, -288.253998F), new Vector2(717.169983F, -287.54599F));
+ builder.AddCubicBezier(new Vector2(716.486023F, -286.838013F), new Vector2(716.143982F, -285.967987F), new Vector2(716.143982F, -284.936005F));
+ builder.AddCubicBezier(new Vector2(716.143982F, -283.903992F), new Vector2(716.486023F, -283.033997F), new Vector2(717.169983F, -282.325989F));
+ builder.AddCubicBezier(new Vector2(717.854004F, -281.618011F), new Vector2(718.711975F, -281.264008F), new Vector2(719.744019F, -281.264008F));
+ builder.AddCubicBezier(new Vector2(720.799988F, -281.264008F), new Vector2(721.664001F, -281.618011F), new Vector2(722.335999F, -282.325989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(723.271973F, -261.895996F));
+ builder.AddLine(new Vector2(723.271973F, -279.608002F));
+ builder.AddLine(new Vector2(716.216003F, -279.608002F));
+ builder.AddLine(new Vector2(716.216003F, -261.895996F));
+ builder.AddLine(new Vector2(723.271973F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0632()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(701.960022F, -261.895996F));
+ builder.AddLine(new Vector2(701.960022F, -279.608002F));
+ builder.AddLine(new Vector2(694.903992F, -279.608002F));
+ builder.AddLine(new Vector2(694.903992F, -261.895996F));
+ builder.AddLine(new Vector2(701.960022F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(713.228027F, -261.895996F));
+ builder.AddLine(new Vector2(713.228027F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(713.228027F, -274.723999F), new Vector2(712.940002F, -275.846008F), new Vector2(712.364014F, -276.817993F));
+ builder.AddCubicBezier(new Vector2(711.788025F, -277.790009F), new Vector2(711.002014F, -278.558014F), new Vector2(710.005981F, -279.122009F));
+ builder.AddCubicBezier(new Vector2(709.01001F, -279.686005F), new Vector2(707.875977F, -279.967987F), new Vector2(706.604004F, -279.967987F));
+ builder.AddCubicBezier(new Vector2(705.187988F, -279.967987F), new Vector2(703.921997F, -279.691986F), new Vector2(702.80603F, -279.140015F));
+ builder.AddCubicBezier(new Vector2(701.690002F, -278.588013F), new Vector2(700.814026F, -277.79599F), new Vector2(700.177979F, -276.764008F));
+ builder.AddCubicBezier(new Vector2(699.541992F, -275.731995F), new Vector2(699.223999F, -274.496002F), new Vector2(699.223999F, -273.056F));
+ builder.AddLine(new Vector2(701.960022F, -271.832001F));
+ builder.AddCubicBezier(new Vector2(701.960022F, -272.287994F), new Vector2(702.049988F, -272.678009F), new Vector2(702.22998F, -273.002014F));
+ builder.AddCubicBezier(new Vector2(702.409973F, -273.325989F), new Vector2(702.661987F, -273.571991F), new Vector2(702.986023F, -273.73999F));
+ builder.AddCubicBezier(new Vector2(703.309998F, -273.90799F), new Vector2(703.676025F, -273.992004F), new Vector2(704.083984F, -273.992004F));
+ builder.AddCubicBezier(new Vector2(704.684021F, -273.992004F), new Vector2(705.182007F, -273.806F), new Vector2(705.578003F, -273.43399F));
+ builder.AddCubicBezier(new Vector2(705.973999F, -273.062012F), new Vector2(706.171997F, -272.528015F), new Vector2(706.171997F, -271.832001F));
+ builder.AddLine(new Vector2(706.171997F, -261.895996F));
+ builder.AddLine(new Vector2(713.228027F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0633()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(686.731995F, -273.290009F));
+ builder.AddCubicBezier(new Vector2(687.09198F, -273.709991F), new Vector2(687.632019F, -273.920013F), new Vector2(688.35199F, -273.920013F));
+ builder.AddCubicBezier(new Vector2(688.783997F, -273.920013F), new Vector2(689.161987F, -273.854004F), new Vector2(689.486023F, -273.721985F));
+ builder.AddCubicBezier(new Vector2(689.809998F, -273.589996F), new Vector2(690.05603F, -273.428009F), new Vector2(690.223999F, -273.235992F));
+ builder.AddLine(new Vector2(694.184021F, -278.85199F));
+ builder.AddCubicBezier(new Vector2(693.823975F, -279.212006F), new Vector2(693.349976F, -279.488007F), new Vector2(692.762024F, -279.679993F));
+ builder.AddCubicBezier(new Vector2(692.174011F, -279.872009F), new Vector2(691.471985F, -279.967987F), new Vector2(690.656006F, -279.967987F));
+ builder.AddCubicBezier(new Vector2(688.83197F, -279.967987F), new Vector2(687.314026F, -279.518005F), new Vector2(686.10199F, -278.618011F));
+ builder.AddCubicBezier(new Vector2(684.890015F, -277.717987F), new Vector2(683.828003F, -276.308014F), new Vector2(682.916016F, -274.388F));
+ builder.AddLine(new Vector2(686.192017F, -271.471985F));
+ builder.AddCubicBezier(new Vector2(686.192017F, -272.264008F), new Vector2(686.372009F, -272.869995F), new Vector2(686.731995F, -273.290009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(686.192017F, -261.895996F));
+ builder.AddLine(new Vector2(686.192017F, -279.608002F));
+ builder.AddLine(new Vector2(679.135986F, -279.608002F));
+ builder.AddLine(new Vector2(679.135986F, -261.895996F));
+ builder.AddLine(new Vector2(686.192017F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0634()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(671.953979F, -262.471985F));
+ builder.AddCubicBezier(new Vector2(673.286011F, -263.144012F), new Vector2(674.330017F, -264.074005F), new Vector2(675.085999F, -265.261993F));
+ builder.AddCubicBezier(new Vector2(675.84198F, -266.450012F), new Vector2(676.219971F, -267.824005F), new Vector2(676.219971F, -269.384003F));
+ builder.AddLine(new Vector2(676.219971F, -279.608002F));
+ builder.AddLine(new Vector2(669.164001F, -279.608002F));
+ builder.AddLine(new Vector2(669.164001F, -269.312012F));
+ builder.AddCubicBezier(new Vector2(669.164001F, -268.76001F), new Vector2(668.98999F, -268.309998F), new Vector2(668.642029F, -267.962006F));
+ builder.AddCubicBezier(new Vector2(668.294006F, -267.614014F), new Vector2(667.867981F, -267.440002F), new Vector2(667.364014F, -267.440002F));
+ builder.AddCubicBezier(new Vector2(667.004028F, -267.440002F), new Vector2(666.685974F, -267.518005F), new Vector2(666.409973F, -267.674011F));
+ builder.AddCubicBezier(new Vector2(666.133972F, -267.829987F), new Vector2(665.91803F, -268.052002F), new Vector2(665.762024F, -268.339996F));
+ builder.AddCubicBezier(new Vector2(665.606018F, -268.627991F), new Vector2(665.528015F, -268.951996F), new Vector2(665.528015F, -269.312012F));
+ builder.AddLine(new Vector2(665.528015F, -279.608002F));
+ builder.AddLine(new Vector2(658.471985F, -279.608002F));
+ builder.AddLine(new Vector2(658.471985F, -269.384003F));
+ builder.AddCubicBezier(new Vector2(658.471985F, -267.847992F), new Vector2(658.856018F, -266.480011F), new Vector2(659.624023F, -265.279999F));
+ builder.AddCubicBezier(new Vector2(660.392029F, -264.079987F), new Vector2(661.442017F, -263.144012F), new Vector2(662.773987F, -262.471985F));
+ builder.AddCubicBezier(new Vector2(664.106018F, -261.799988F), new Vector2(665.635986F, -261.463989F), new Vector2(667.364014F, -261.463989F));
+ builder.AddCubicBezier(new Vector2(669.09198F, -261.463989F), new Vector2(670.622009F, -261.799988F), new Vector2(671.953979F, -262.471985F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0635()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(641.768005F, -261.895996F));
+ builder.AddLine(new Vector2(641.768005F, -287.528015F));
+ builder.AddLine(new Vector2(634.567993F, -287.528015F));
+ builder.AddLine(new Vector2(634.567993F, -261.895996F));
+ builder.AddLine(new Vector2(641.768005F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(658.76001F, -261.895996F));
+ builder.AddLine(new Vector2(648.5F, -276.511993F));
+ builder.AddLine(new Vector2(648.5F, -274.208008F));
+ builder.AddLine(new Vector2(658.364014F, -287.528015F));
+ builder.AddLine(new Vector2(649.687988F, -287.528015F));
+ builder.AddLine(new Vector2(641.156006F, -275.252014F));
+ builder.AddLine(new Vector2(650.119995F, -261.895996F));
+ builder.AddLine(new Vector2(658.76001F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0636()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(613.364014F, -261.895996F));
+ builder.AddLine(new Vector2(613.364014F, -279.608002F));
+ builder.AddLine(new Vector2(606.307983F, -279.608002F));
+ builder.AddLine(new Vector2(606.307983F, -261.895996F));
+ builder.AddLine(new Vector2(613.364014F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(624.632019F, -261.895996F));
+ builder.AddLine(new Vector2(624.632019F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(624.632019F, -274.723999F), new Vector2(624.343994F, -275.846008F), new Vector2(623.768005F, -276.817993F));
+ builder.AddCubicBezier(new Vector2(623.192017F, -277.790009F), new Vector2(622.406006F, -278.558014F), new Vector2(621.409973F, -279.122009F));
+ builder.AddCubicBezier(new Vector2(620.414001F, -279.686005F), new Vector2(619.280029F, -279.967987F), new Vector2(618.007996F, -279.967987F));
+ builder.AddCubicBezier(new Vector2(616.59198F, -279.967987F), new Vector2(615.325989F, -279.691986F), new Vector2(614.210022F, -279.140015F));
+ builder.AddCubicBezier(new Vector2(613.093994F, -278.588013F), new Vector2(612.218018F, -277.79599F), new Vector2(611.58197F, -276.764008F));
+ builder.AddCubicBezier(new Vector2(610.945984F, -275.731995F), new Vector2(610.627991F, -274.496002F), new Vector2(610.627991F, -273.056F));
+ builder.AddLine(new Vector2(613.364014F, -271.832001F));
+ builder.AddCubicBezier(new Vector2(613.364014F, -272.287994F), new Vector2(613.453979F, -272.678009F), new Vector2(613.633972F, -273.002014F));
+ builder.AddCubicBezier(new Vector2(613.814026F, -273.325989F), new Vector2(614.065979F, -273.571991F), new Vector2(614.390015F, -273.73999F));
+ builder.AddCubicBezier(new Vector2(614.713989F, -273.90799F), new Vector2(615.080017F, -273.992004F), new Vector2(615.487976F, -273.992004F));
+ builder.AddCubicBezier(new Vector2(616.088013F, -273.992004F), new Vector2(616.585999F, -273.806F), new Vector2(616.981995F, -273.43399F));
+ builder.AddCubicBezier(new Vector2(617.377991F, -273.062012F), new Vector2(617.575989F, -272.528015F), new Vector2(617.575989F, -271.832001F));
+ builder.AddLine(new Vector2(617.575989F, -261.895996F));
+ builder.AddLine(new Vector2(624.632019F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0637()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(602.924011F, -261.895996F));
+ builder.AddLine(new Vector2(602.924011F, -279.608002F));
+ builder.AddLine(new Vector2(596.047974F, -279.608002F));
+ builder.AddLine(new Vector2(596.047974F, -275.252014F));
+ builder.AddLine(new Vector2(597.02002F, -270.967987F));
+ builder.AddLine(new Vector2(596.047974F, -266.64801F));
+ builder.AddLine(new Vector2(596.047974F, -261.895996F));
+ builder.AddLine(new Vector2(602.924011F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(591.799988F, -268.123993F));
+ builder.AddCubicBezier(new Vector2(591.343994F, -268.388F), new Vector2(590.98999F, -268.747986F), new Vector2(590.737976F, -269.20401F));
+ builder.AddCubicBezier(new Vector2(590.486023F, -269.660004F), new Vector2(590.359985F, -270.175995F), new Vector2(590.359985F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(590.359985F, -271.328003F), new Vector2(590.492004F, -271.843994F), new Vector2(590.755981F, -272.299988F));
+ builder.AddCubicBezier(new Vector2(591.02002F, -272.756012F), new Vector2(591.374023F, -273.115997F), new Vector2(591.817993F, -273.380005F));
+ builder.AddCubicBezier(new Vector2(592.262024F, -273.644012F), new Vector2(592.771973F, -273.776001F), new Vector2(593.348022F, -273.776001F));
+ builder.AddCubicBezier(new Vector2(593.924011F, -273.776001F), new Vector2(594.434021F, -273.644012F), new Vector2(594.877991F, -273.380005F));
+ builder.AddCubicBezier(new Vector2(595.322021F, -273.115997F), new Vector2(595.664001F, -272.761993F), new Vector2(595.903992F, -272.317993F));
+ builder.AddCubicBezier(new Vector2(596.143982F, -271.873993F), new Vector2(596.263977F, -271.35199F), new Vector2(596.263977F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(596.263977F, -269.864014F), new Vector2(595.994019F, -269.138F), new Vector2(595.453979F, -268.574005F));
+ builder.AddCubicBezier(new Vector2(594.914001F, -268.01001F), new Vector2(594.200012F, -267.727997F), new Vector2(593.312012F, -267.727997F));
+ builder.AddCubicBezier(new Vector2(592.76001F, -267.727997F), new Vector2(592.255981F, -267.859985F), new Vector2(591.799988F, -268.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(594.590027F, -262.058014F));
+ builder.AddCubicBezier(new Vector2(595.466003F, -262.406006F), new Vector2(596.197998F, -262.891998F), new Vector2(596.786011F, -263.515991F));
+ builder.AddCubicBezier(new Vector2(597.374023F, -264.140015F), new Vector2(597.752014F, -264.859985F), new Vector2(597.919983F, -265.675995F));
+ builder.AddLine(new Vector2(597.919983F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(597.752014F, -276.644012F), new Vector2(597.374023F, -277.364014F), new Vector2(596.786011F, -277.988007F));
+ builder.AddCubicBezier(new Vector2(596.197998F, -278.612F), new Vector2(595.466003F, -279.097992F), new Vector2(594.590027F, -279.446014F));
+ builder.AddCubicBezier(new Vector2(593.713989F, -279.794006F), new Vector2(592.76001F, -279.967987F), new Vector2(591.728027F, -279.967987F));
+ builder.AddCubicBezier(new Vector2(590.072021F, -279.967987F), new Vector2(588.607971F, -279.578003F), new Vector2(587.335999F, -278.798004F));
+ builder.AddCubicBezier(new Vector2(586.064026F, -278.018005F), new Vector2(585.067993F, -276.932007F), new Vector2(584.348022F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(583.627991F, -274.14801F), new Vector2(583.268005F, -272.552002F), new Vector2(583.268005F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(583.268005F, -268.951996F), new Vector2(583.627991F, -267.362F), new Vector2(584.348022F, -265.981995F));
+ builder.AddCubicBezier(new Vector2(585.067993F, -264.60199F), new Vector2(586.064026F, -263.515991F), new Vector2(587.335999F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(588.607971F, -261.932007F), new Vector2(590.072021F, -261.536011F), new Vector2(591.728027F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(592.76001F, -261.536011F), new Vector2(593.713989F, -261.709991F), new Vector2(594.590027F, -262.058014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0638()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(582.151978F, -273.847992F));
+ builder.AddLine(new Vector2(582.151978F, -279.608002F));
+ builder.AddLine(new Vector2(566.635986F, -279.608002F));
+ builder.AddLine(new Vector2(566.635986F, -273.847992F));
+ builder.AddLine(new Vector2(582.151978F, -273.847992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(577.291992F, -261.895996F));
+ builder.AddLine(new Vector2(577.291992F, -280.652008F));
+ builder.AddCubicBezier(new Vector2(577.291992F, -281.20401F), new Vector2(577.460022F, -281.64801F), new Vector2(577.796021F, -281.984009F));
+ builder.AddCubicBezier(new Vector2(578.132019F, -282.320007F), new Vector2(578.575989F, -282.488007F), new Vector2(579.127991F, -282.488007F));
+ builder.AddCubicBezier(new Vector2(579.416016F, -282.488007F), new Vector2(579.692017F, -282.446014F), new Vector2(579.955994F, -282.362F));
+ builder.AddCubicBezier(new Vector2(580.219971F, -282.278015F), new Vector2(580.435974F, -282.140015F), new Vector2(580.604004F, -281.947998F));
+ builder.AddLine(new Vector2(584.960022F, -286.303986F));
+ builder.AddCubicBezier(new Vector2(584.263977F, -287.023987F), new Vector2(583.393982F, -287.600006F), new Vector2(582.349976F, -288.032013F));
+ builder.AddCubicBezier(new Vector2(581.30603F, -288.463989F), new Vector2(580.112F, -288.679993F), new Vector2(578.768005F, -288.679993F));
+ builder.AddCubicBezier(new Vector2(576.968018F, -288.679993F), new Vector2(575.432007F, -288.302002F), new Vector2(574.159973F, -287.54599F));
+ builder.AddCubicBezier(new Vector2(572.888F, -286.790009F), new Vector2(571.916016F, -285.782013F), new Vector2(571.244019F, -284.522003F));
+ builder.AddCubicBezier(new Vector2(570.572021F, -283.261993F), new Vector2(570.236023F, -281.864014F), new Vector2(570.236023F, -280.328003F));
+ builder.AddLine(new Vector2(570.236023F, -261.895996F));
+ builder.AddLine(new Vector2(577.291992F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0639()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(566.312012F, -273.847992F));
+ builder.AddLine(new Vector2(566.312012F, -279.608002F));
+ builder.AddLine(new Vector2(550.796021F, -279.608002F));
+ builder.AddLine(new Vector2(550.796021F, -273.847992F));
+ builder.AddLine(new Vector2(566.312012F, -273.847992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(561.452026F, -261.895996F));
+ builder.AddLine(new Vector2(561.452026F, -280.652008F));
+ builder.AddCubicBezier(new Vector2(561.452026F, -281.20401F), new Vector2(561.619995F, -281.64801F), new Vector2(561.955994F, -281.984009F));
+ builder.AddCubicBezier(new Vector2(562.291992F, -282.320007F), new Vector2(562.736023F, -282.488007F), new Vector2(563.288025F, -282.488007F));
+ builder.AddCubicBezier(new Vector2(563.575989F, -282.488007F), new Vector2(563.85199F, -282.446014F), new Vector2(564.116028F, -282.362F));
+ builder.AddCubicBezier(new Vector2(564.380005F, -282.278015F), new Vector2(564.596008F, -282.140015F), new Vector2(564.763977F, -281.947998F));
+ builder.AddLine(new Vector2(569.119995F, -286.303986F));
+ builder.AddCubicBezier(new Vector2(568.424011F, -287.023987F), new Vector2(567.554016F, -287.600006F), new Vector2(566.51001F, -288.032013F));
+ builder.AddCubicBezier(new Vector2(565.466003F, -288.463989F), new Vector2(564.271973F, -288.679993F), new Vector2(562.927979F, -288.679993F));
+ builder.AddCubicBezier(new Vector2(561.127991F, -288.679993F), new Vector2(559.59198F, -288.302002F), new Vector2(558.320007F, -287.54599F));
+ builder.AddCubicBezier(new Vector2(557.047974F, -286.790009F), new Vector2(556.075989F, -285.782013F), new Vector2(555.403992F, -284.522003F));
+ builder.AddCubicBezier(new Vector2(554.731995F, -283.261993F), new Vector2(554.395996F, -281.864014F), new Vector2(554.395996F, -280.328003F));
+ builder.AddLine(new Vector2(554.395996F, -261.895996F));
+ builder.AddLine(new Vector2(561.452026F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0640()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(545.539978F, -266.216003F));
+ builder.AddLine(new Vector2(545.539978F, -271.832001F));
+ builder.AddLine(new Vector2(531.211975F, -271.832001F));
+ builder.AddLine(new Vector2(531.211975F, -266.216003F));
+ builder.AddLine(new Vector2(545.539978F, -266.216003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(532.219971F, -261.895996F));
+ builder.AddLine(new Vector2(539.564026F, -283.675995F));
+ builder.AddLine(new Vector2(536.971985F, -283.675995F));
+ builder.AddLine(new Vector2(544.135986F, -261.895996F));
+ builder.AddLine(new Vector2(551.624023F, -261.895996F));
+ builder.AddLine(new Vector2(541.976013F, -287.528015F));
+ builder.AddLine(new Vector2(534.632019F, -287.528015F));
+ builder.AddLine(new Vector2(524.875977F, -261.895996F));
+ builder.AddLine(new Vector2(532.219971F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0641()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(511.700012F, -256.928009F));
+ builder.AddLine(new Vector2(514.112F, -261.391998F));
+ builder.AddCubicBezier(new Vector2(514.424011F, -261.992004F), new Vector2(514.633972F, -262.477997F), new Vector2(514.742004F, -262.850006F));
+ builder.AddCubicBezier(new Vector2(514.849976F, -263.221985F), new Vector2(514.903992F, -263.540009F), new Vector2(514.903992F, -263.803986F));
+ builder.AddCubicBezier(new Vector2(514.903992F, -264.5F), new Vector2(514.664001F, -265.082001F), new Vector2(514.184021F, -265.549988F));
+ builder.AddCubicBezier(new Vector2(513.703979F, -266.018005F), new Vector2(513.151978F, -266.252014F), new Vector2(512.528015F, -266.252014F));
+ builder.AddCubicBezier(new Vector2(511.832001F, -266.252014F), new Vector2(511.256012F, -266.018005F), new Vector2(510.799988F, -265.549988F));
+ builder.AddCubicBezier(new Vector2(510.343994F, -265.082001F), new Vector2(510.115997F, -264.5F), new Vector2(510.115997F, -263.803986F));
+ builder.AddCubicBezier(new Vector2(510.115997F, -263.179993F), new Vector2(510.325989F, -262.65799F), new Vector2(510.746002F, -262.238007F));
+ builder.AddCubicBezier(new Vector2(511.165985F, -261.817993F), new Vector2(511.627991F, -261.608002F), new Vector2(512.132019F, -261.608002F));
+ builder.AddCubicBezier(new Vector2(512.372009F, -261.608002F), new Vector2(512.588013F, -261.691986F), new Vector2(512.780029F, -261.859985F));
+ builder.AddCubicBezier(new Vector2(512.971985F, -262.028015F), new Vector2(513.127991F, -262.243988F), new Vector2(513.247986F, -262.507996F));
+ builder.AddLine(new Vector2(512.096008F, -262.220001F));
+ builder.AddLine(new Vector2(509.864014F, -257.936005F));
+ builder.AddLine(new Vector2(511.700012F, -256.928009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0642()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(501.764008F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(502.532013F, -275.911987F), new Vector2(503.515991F, -276.29599F), new Vector2(504.716003F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(505.291992F, -276.29599F), new Vector2(505.79599F, -276.212006F), new Vector2(506.227997F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(506.660004F, -275.876007F), new Vector2(507.056F, -275.600006F), new Vector2(507.415985F, -275.216003F));
+ builder.AddLine(new Vector2(509.540009F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(508.940002F, -278.108002F), new Vector2(508.291992F, -278.605988F), new Vector2(507.596008F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(506.899994F, -279.205994F), new Vector2(506.119995F, -279.355988F), new Vector2(505.256012F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(503.359985F, -279.355988F), new Vector2(501.90799F, -278.708008F), new Vector2(500.899994F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(499.891998F, -276.115997F), new Vector2(499.388F, -274.376007F), new Vector2(499.388F, -272.191986F));
+ builder.AddLine(new Vector2(500.612F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(500.612F, -273.200012F), new Vector2(500.996002F, -274.376007F), new Vector2(501.764008F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(500.612F, -261.895996F));
+ builder.AddLine(new Vector2(500.612F, -278.996002F));
+ builder.AddLine(new Vector2(497.372009F, -278.996002F));
+ builder.AddLine(new Vector2(497.372009F, -261.895996F));
+ builder.AddLine(new Vector2(500.612F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0643()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(489.776001F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(490.951996F, -262.79599F), new Vector2(491.959991F, -263.528015F), new Vector2(492.799988F, -264.488007F));
+ builder.AddLine(new Vector2(490.712006F, -266.612F));
+ builder.AddCubicBezier(new Vector2(490.135986F, -265.940002F), new Vector2(489.446014F, -265.436005F), new Vector2(488.641998F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(487.838013F, -264.764008F), new Vector2(486.955994F, -264.596008F), new Vector2(485.996002F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(484.843994F, -264.596008F), new Vector2(483.824005F, -264.84201F), new Vector2(482.936005F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(482.048004F, -265.825989F), new Vector2(481.364014F, -266.522003F), new Vector2(480.884003F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(480.403992F, -268.321991F), new Vector2(480.164001F, -269.372009F), new Vector2(480.164001F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(480.164001F, -271.747986F), new Vector2(480.391998F, -272.768005F), new Vector2(480.847992F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(481.303986F, -274.496002F), new Vector2(481.951996F, -275.167999F), new Vector2(482.791992F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(483.631989F, -276.127991F), new Vector2(484.604004F, -276.368011F), new Vector2(485.708008F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(486.764008F, -276.368011F), new Vector2(487.664001F, -276.145996F), new Vector2(488.40799F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(489.152008F, -275.257996F), new Vector2(489.727997F, -274.634003F), new Vector2(490.135986F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(490.544006F, -273.026001F), new Vector2(490.747986F, -272.048004F), new Vector2(490.747986F, -270.895996F));
+ builder.AddLine(new Vector2(491.936005F, -271.940002F));
+ builder.AddLine(new Vector2(479.227997F, -271.940002F));
+ builder.AddLine(new Vector2(479.227997F, -269.23999F));
+ builder.AddLine(new Vector2(493.664001F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(493.735992F, -269.575989F), new Vector2(493.783997F, -269.881989F), new Vector2(493.808014F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(493.832001F, -270.43399F), new Vector2(493.843994F, -270.691986F), new Vector2(493.843994F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(493.843994F, -272.563995F), new Vector2(493.502014F, -274.015991F), new Vector2(492.817993F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(492.134003F, -276.559998F), new Vector2(491.179993F, -277.556F), new Vector2(489.955994F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(488.731995F, -278.996002F), new Vector2(487.339996F, -279.355988F), new Vector2(485.779999F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(484.123993F, -279.355988F), new Vector2(482.630005F, -278.966003F), new Vector2(481.298004F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(479.966003F, -277.406006F), new Vector2(478.910004F, -276.343994F), new Vector2(478.130005F, -275F));
+ builder.AddCubicBezier(new Vector2(477.350006F, -273.656006F), new Vector2(476.959991F, -272.144012F), new Vector2(476.959991F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(476.959991F, -268.76001F), new Vector2(477.355988F, -267.235992F), new Vector2(478.14801F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(478.940002F, -264.548004F), new Vector2(480.014008F, -263.485992F), new Vector2(481.369995F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(482.726013F, -261.925995F), new Vector2(484.268005F, -261.536011F), new Vector2(485.996002F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(487.339996F, -261.536011F), new Vector2(488.600006F, -261.787994F), new Vector2(489.776001F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0644()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(468.104004F, -261.895996F));
+ builder.AddLine(new Vector2(475.951996F, -278.996002F));
+ builder.AddLine(new Vector2(472.496002F, -278.996002F));
+ builder.AddLine(new Vector2(466.160004F, -264.559998F));
+ builder.AddLine(new Vector2(468.247986F, -264.559998F));
+ builder.AddLine(new Vector2(461.947998F, -278.996002F));
+ builder.AddLine(new Vector2(458.347992F, -278.996002F));
+ builder.AddLine(new Vector2(466.196014F, -261.895996F));
+ builder.AddLine(new Vector2(468.104004F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0645()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(455.395996F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(455.779999F, -283.406006F), new Vector2(455.971985F, -283.903992F), new Vector2(455.971985F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(455.971985F, -285.079987F), new Vector2(455.779999F, -285.56601F), new Vector2(455.395996F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(455.011993F, -286.358002F), new Vector2(454.519989F, -286.556F), new Vector2(453.920013F, -286.556F));
+ builder.AddCubicBezier(new Vector2(453.320007F, -286.556F), new Vector2(452.828003F, -286.358002F), new Vector2(452.444F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(452.059998F, -285.56601F), new Vector2(451.868011F, -285.079987F), new Vector2(451.868011F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(451.868011F, -283.903992F), new Vector2(452.059998F, -283.406006F), new Vector2(452.444F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(452.828003F, -282.614014F), new Vector2(453.320007F, -282.415985F), new Vector2(453.920013F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(454.519989F, -282.415985F), new Vector2(455.011993F, -282.614014F), new Vector2(455.395996F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(455.540009F, -261.895996F));
+ builder.AddLine(new Vector2(455.540009F, -278.996002F));
+ builder.AddLine(new Vector2(452.264008F, -278.996002F));
+ builder.AddLine(new Vector2(452.264008F, -261.895996F));
+ builder.AddLine(new Vector2(455.540009F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0646()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(442.220001F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(442.988007F, -275.911987F), new Vector2(443.971985F, -276.29599F), new Vector2(445.171997F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(445.747986F, -276.29599F), new Vector2(446.252014F, -276.212006F), new Vector2(446.68399F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(447.115997F, -275.876007F), new Vector2(447.511993F, -275.600006F), new Vector2(447.872009F, -275.216003F));
+ builder.AddLine(new Vector2(449.996002F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(449.395996F, -278.108002F), new Vector2(448.747986F, -278.605988F), new Vector2(448.052002F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(447.355988F, -279.205994F), new Vector2(446.575989F, -279.355988F), new Vector2(445.712006F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(443.81601F, -279.355988F), new Vector2(442.364014F, -278.708008F), new Vector2(441.355988F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(440.347992F, -276.115997F), new Vector2(439.843994F, -274.376007F), new Vector2(439.843994F, -272.191986F));
+ builder.AddLine(new Vector2(441.067993F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(441.067993F, -273.200012F), new Vector2(441.451996F, -274.376007F), new Vector2(442.220001F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(441.067993F, -261.895996F));
+ builder.AddLine(new Vector2(441.067993F, -278.996002F));
+ builder.AddLine(new Vector2(437.828003F, -278.996002F));
+ builder.AddLine(new Vector2(437.828003F, -261.895996F));
+ builder.AddLine(new Vector2(441.067993F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0647()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(433.112F, -287.600006F));
+ builder.AddLine(new Vector2(429.835999F, -287.600006F));
+ builder.AddLine(new Vector2(429.835999F, -274.820007F));
+ builder.AddLine(new Vector2(430.447998F, -270.679993F));
+ builder.AddLine(new Vector2(429.835999F, -266.503998F));
+ builder.AddLine(new Vector2(429.835999F, -261.895996F));
+ builder.AddLine(new Vector2(433.112F, -261.895996F));
+ builder.AddLine(new Vector2(433.112F, -287.600006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(421.790009F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(420.962006F, -265.825989F), new Vector2(420.313995F, -266.515991F), new Vector2(419.846008F, -267.403992F));
+ builder.AddCubicBezier(new Vector2(419.377991F, -268.291992F), new Vector2(419.144012F, -269.312012F), new Vector2(419.144012F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(419.144012F, -271.615997F), new Vector2(419.377991F, -272.630005F), new Vector2(419.846008F, -273.506012F));
+ builder.AddCubicBezier(new Vector2(420.313995F, -274.381989F), new Vector2(420.955994F, -275.06601F), new Vector2(421.772003F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(422.588013F, -276.049988F), new Vector2(423.536011F, -276.29599F), new Vector2(424.615997F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(425.696014F, -276.29599F), new Vector2(426.644012F, -276.044006F), new Vector2(427.459991F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(428.276001F, -275.036011F), new Vector2(428.911987F, -274.346008F), new Vector2(429.368011F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(429.824005F, -272.593994F), new Vector2(430.052002F, -271.579987F), new Vector2(430.052002F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(430.052002F, -269.299988F), new Vector2(429.824005F, -268.298004F), new Vector2(429.368011F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(428.911987F, -266.54599F), new Vector2(428.276001F, -265.855988F), new Vector2(427.459991F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(426.644012F, -264.847992F), new Vector2(425.696014F, -264.596008F), new Vector2(424.615997F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(423.559998F, -264.596008F), new Vector2(422.618011F, -264.84201F), new Vector2(421.790009F, -265.334015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(427.604004F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(428.635986F, -262.885986F), new Vector2(429.463989F, -263.635986F), new Vector2(430.088013F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(430.712006F, -265.556F), new Vector2(431.059998F, -266.64801F), new Vector2(431.131989F, -267.872009F));
+ builder.AddLine(new Vector2(431.131989F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(431.059998F, -274.268005F), new Vector2(430.705994F, -275.365997F), new Vector2(430.070007F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(429.43399F, -277.261993F), new Vector2(428.600006F, -278.006012F), new Vector2(427.567993F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(426.536011F, -279.085999F), new Vector2(425.372009F, -279.355988F), new Vector2(424.075989F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(422.515991F, -279.355988F), new Vector2(421.112F, -278.959991F), new Vector2(419.864014F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(418.615997F, -277.376007F), new Vector2(417.626007F, -276.308014F), new Vector2(416.894012F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(416.161987F, -273.619995F), new Vector2(415.79599F, -272.108002F), new Vector2(415.79599F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(415.79599F, -268.747986F), new Vector2(416.161987F, -267.235992F), new Vector2(416.894012F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(417.626007F, -264.548004F), new Vector2(418.615997F, -263.485992F), new Vector2(419.864014F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(421.112F, -261.925995F), new Vector2(422.515991F, -261.536011F), new Vector2(424.075989F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(425.395996F, -261.536011F), new Vector2(426.571991F, -261.806F), new Vector2(427.604004F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0648()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(404.492004F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(404.876007F, -283.406006F), new Vector2(405.067993F, -283.903992F), new Vector2(405.067993F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(405.067993F, -285.079987F), new Vector2(404.876007F, -285.56601F), new Vector2(404.492004F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(404.108002F, -286.358002F), new Vector2(403.615997F, -286.556F), new Vector2(403.015991F, -286.556F));
+ builder.AddCubicBezier(new Vector2(402.415985F, -286.556F), new Vector2(401.924011F, -286.358002F), new Vector2(401.540009F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(401.156006F, -285.56601F), new Vector2(400.963989F, -285.079987F), new Vector2(400.963989F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(400.963989F, -283.903992F), new Vector2(401.156006F, -283.406006F), new Vector2(401.540009F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(401.924011F, -282.614014F), new Vector2(402.415985F, -282.415985F), new Vector2(403.015991F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(403.615997F, -282.415985F), new Vector2(404.108002F, -282.614014F), new Vector2(404.492004F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(404.635986F, -261.895996F));
+ builder.AddLine(new Vector2(404.635986F, -278.996002F));
+ builder.AddLine(new Vector2(401.359985F, -278.996002F));
+ builder.AddLine(new Vector2(401.359985F, -261.895996F));
+ builder.AddLine(new Vector2(404.635986F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0649()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(398.048004F, -278.996002F));
+ builder.AddLine(new Vector2(394.268005F, -278.996002F));
+ builder.AddLine(new Vector2(389.515991F, -272.299988F));
+ builder.AddLine(new Vector2(391.424011F, -269.996002F));
+ builder.AddLine(new Vector2(398.048004F, -278.996002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(385.268005F, -261.895996F));
+ builder.AddLine(new Vector2(390.343994F, -269.023987F));
+ builder.AddLine(new Vector2(388.507996F, -271.399994F));
+ builder.AddLine(new Vector2(381.451996F, -261.895996F));
+ builder.AddLine(new Vector2(385.268005F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(398.372009F, -261.895996F));
+ builder.AddLine(new Vector2(391.171997F, -271.832001F));
+ builder.AddLine(new Vector2(390.559998F, -272.335999F));
+ builder.AddLine(new Vector2(385.700012F, -278.996002F));
+ builder.AddLine(new Vector2(381.73999F, -278.996002F));
+ builder.AddLine(new Vector2(388.507996F, -269.924011F));
+ builder.AddLine(new Vector2(389.119995F, -269.384003F));
+ builder.AddLine(new Vector2(394.447998F, -261.895996F));
+ builder.AddLine(new Vector2(398.372009F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0650()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(378.5F, -261.895996F));
+ builder.AddLine(new Vector2(378.5F, -278.996002F));
+ builder.AddLine(new Vector2(375.223999F, -278.996002F));
+ builder.AddLine(new Vector2(375.223999F, -274.820007F));
+ builder.AddLine(new Vector2(375.835999F, -270.679993F));
+ builder.AddLine(new Vector2(375.223999F, -266.503998F));
+ builder.AddLine(new Vector2(375.223999F, -261.895996F));
+ builder.AddLine(new Vector2(378.5F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(367.196014F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(366.355988F, -265.855988F), new Vector2(365.701996F, -266.54599F), new Vector2(365.234009F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(364.765991F, -268.298004F), new Vector2(364.532013F, -269.312012F), new Vector2(364.532013F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(364.532013F, -271.59201F), new Vector2(364.765991F, -272.593994F), new Vector2(365.234009F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(365.701996F, -274.346008F), new Vector2(366.350006F, -275.036011F), new Vector2(367.178009F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(368.006012F, -276.044006F), new Vector2(368.959991F, -276.29599F), new Vector2(370.040009F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(371.119995F, -276.29599F), new Vector2(372.062012F, -276.049988F), new Vector2(372.865997F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(373.670013F, -275.06601F), new Vector2(374.299988F, -274.376007F), new Vector2(374.756012F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(375.212006F, -272.600006F), new Vector2(375.440002F, -271.579987F), new Vector2(375.440002F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(375.440002F, -268.723999F), new Vector2(374.947998F, -267.325989F), new Vector2(373.963989F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(372.980011F, -265.141998F), new Vector2(371.68399F, -264.596008F), new Vector2(370.075989F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(368.996002F, -264.596008F), new Vector2(368.036011F, -264.847992F), new Vector2(367.196014F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(373.028015F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(374.059998F, -262.885986F), new Vector2(374.881989F, -263.635986F), new Vector2(375.493988F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(376.105988F, -265.556F), new Vector2(376.447998F, -266.64801F), new Vector2(376.519989F, -267.872009F));
+ builder.AddLine(new Vector2(376.519989F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(376.447998F, -274.268005F), new Vector2(376.100006F, -275.365997F), new Vector2(375.476013F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(374.85199F, -277.261993F), new Vector2(374.029999F, -278.006012F), new Vector2(373.01001F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(371.98999F, -279.085999F), new Vector2(370.832001F, -279.355988F), new Vector2(369.536011F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(367.951996F, -279.355988F), new Vector2(366.529999F, -278.959991F), new Vector2(365.269989F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(364.01001F, -277.376007F), new Vector2(363.014008F, -276.308014F), new Vector2(362.282013F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(361.549988F, -273.619995F), new Vector2(361.18399F, -272.108002F), new Vector2(361.18399F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(361.18399F, -268.747986F), new Vector2(361.549988F, -267.235992F), new Vector2(362.282013F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(363.014008F, -264.548004F), new Vector2(364.01001F, -263.485992F), new Vector2(365.269989F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(366.529999F, -261.925995F), new Vector2(367.951996F, -261.536011F), new Vector2(369.536011F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(370.832001F, -261.536011F), new Vector2(371.996002F, -261.806F), new Vector2(373.028015F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0651()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(359.635986F, -276.044006F));
+ builder.AddLine(new Vector2(359.635986F, -278.996002F));
+ builder.AddLine(new Vector2(347.971985F, -278.996002F));
+ builder.AddLine(new Vector2(347.971985F, -276.044006F));
+ builder.AddLine(new Vector2(359.635986F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(355.424011F, -261.895996F));
+ builder.AddLine(new Vector2(355.424011F, -286.160004F));
+ builder.AddLine(new Vector2(352.18399F, -286.160004F));
+ builder.AddLine(new Vector2(352.18399F, -261.895996F));
+ builder.AddLine(new Vector2(355.424011F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0652()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(345.488007F, -269.492004F));
+ builder.AddLine(new Vector2(345.488007F, -272.588013F));
+ builder.AddLine(new Vector2(333.644012F, -272.588013F));
+ builder.AddLine(new Vector2(333.644012F, -269.492004F));
+ builder.AddLine(new Vector2(345.488007F, -269.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0653()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(325.471985F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(326.64801F, -262.79599F), new Vector2(327.656006F, -263.528015F), new Vector2(328.496002F, -264.488007F));
+ builder.AddLine(new Vector2(326.40799F, -266.612F));
+ builder.AddCubicBezier(new Vector2(325.832001F, -265.940002F), new Vector2(325.141998F, -265.436005F), new Vector2(324.338013F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(323.533997F, -264.764008F), new Vector2(322.652008F, -264.596008F), new Vector2(321.691986F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(320.540009F, -264.596008F), new Vector2(319.519989F, -264.84201F), new Vector2(318.631989F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(317.743988F, -265.825989F), new Vector2(317.059998F, -266.522003F), new Vector2(316.579987F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(316.100006F, -268.321991F), new Vector2(315.859985F, -269.372009F), new Vector2(315.859985F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(315.859985F, -271.747986F), new Vector2(316.088013F, -272.768005F), new Vector2(316.544006F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(317F, -274.496002F), new Vector2(317.64801F, -275.167999F), new Vector2(318.488007F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(319.328003F, -276.127991F), new Vector2(320.299988F, -276.368011F), new Vector2(321.403992F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(322.459991F, -276.368011F), new Vector2(323.359985F, -276.145996F), new Vector2(324.104004F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(324.847992F, -275.257996F), new Vector2(325.424011F, -274.634003F), new Vector2(325.832001F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(326.23999F, -273.026001F), new Vector2(326.444F, -272.048004F), new Vector2(326.444F, -270.895996F));
+ builder.AddLine(new Vector2(327.631989F, -271.940002F));
+ builder.AddLine(new Vector2(314.924011F, -271.940002F));
+ builder.AddLine(new Vector2(314.924011F, -269.23999F));
+ builder.AddLine(new Vector2(329.359985F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(329.432007F, -269.575989F), new Vector2(329.480011F, -269.881989F), new Vector2(329.503998F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(329.528015F, -270.43399F), new Vector2(329.540009F, -270.691986F), new Vector2(329.540009F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(329.540009F, -272.563995F), new Vector2(329.197998F, -274.015991F), new Vector2(328.514008F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(327.829987F, -276.559998F), new Vector2(326.876007F, -277.556F), new Vector2(325.652008F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(324.428009F, -278.996002F), new Vector2(323.036011F, -279.355988F), new Vector2(321.476013F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(319.820007F, -279.355988F), new Vector2(318.325989F, -278.966003F), new Vector2(316.993988F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(315.661987F, -277.406006F), new Vector2(314.605988F, -276.343994F), new Vector2(313.825989F, -275F));
+ builder.AddCubicBezier(new Vector2(313.04599F, -273.656006F), new Vector2(312.656006F, -272.144012F), new Vector2(312.656006F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(312.656006F, -268.76001F), new Vector2(313.052002F, -267.235992F), new Vector2(313.843994F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(314.635986F, -264.548004F), new Vector2(315.709991F, -263.485992F), new Vector2(317.06601F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(318.421997F, -261.925995F), new Vector2(319.963989F, -261.536011F), new Vector2(321.691986F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(323.036011F, -261.536011F), new Vector2(324.29599F, -261.787994F), new Vector2(325.471985F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0654()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(300.056F, -261.895996F));
+ builder.AddLine(new Vector2(300.056F, -287.600006F));
+ builder.AddLine(new Vector2(296.81601F, -287.600006F));
+ builder.AddLine(new Vector2(296.81601F, -261.895996F));
+ builder.AddLine(new Vector2(300.056F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(311.936005F, -261.895996F));
+ builder.AddLine(new Vector2(302.936005F, -271.652008F));
+ builder.AddLine(new Vector2(302.791992F, -269.779999F));
+ builder.AddLine(new Vector2(311.612F, -278.996002F));
+ builder.AddLine(new Vector2(307.652008F, -278.996002F));
+ builder.AddLine(new Vector2(299.768005F, -270.644012F));
+ builder.AddLine(new Vector2(307.76001F, -261.895996F));
+ builder.AddLine(new Vector2(311.936005F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0655()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(291.884003F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(292.268005F, -283.406006F), new Vector2(292.459991F, -283.903992F), new Vector2(292.459991F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(292.459991F, -285.079987F), new Vector2(292.268005F, -285.56601F), new Vector2(291.884003F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(291.5F, -286.358002F), new Vector2(291.007996F, -286.556F), new Vector2(290.40799F, -286.556F));
+ builder.AddCubicBezier(new Vector2(289.808014F, -286.556F), new Vector2(289.31601F, -286.358002F), new Vector2(288.932007F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(288.548004F, -285.56601F), new Vector2(288.355988F, -285.079987F), new Vector2(288.355988F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(288.355988F, -283.903992F), new Vector2(288.548004F, -283.406006F), new Vector2(288.932007F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(289.31601F, -282.614014F), new Vector2(289.808014F, -282.415985F), new Vector2(290.40799F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(291.007996F, -282.415985F), new Vector2(291.5F, -282.614014F), new Vector2(291.884003F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(292.028015F, -261.895996F));
+ builder.AddLine(new Vector2(292.028015F, -278.996002F));
+ builder.AddLine(new Vector2(288.752014F, -278.996002F));
+ builder.AddLine(new Vector2(288.752014F, -261.895996F));
+ builder.AddLine(new Vector2(292.028015F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0656()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(273.43399F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(272.605988F, -265.855988F), new Vector2(271.970001F, -266.54599F), new Vector2(271.526001F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(271.082001F, -268.298004F), new Vector2(270.859985F, -269.299988F), new Vector2(270.859985F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(270.859985F, -271.579987F), new Vector2(271.088013F, -272.593994F), new Vector2(271.544006F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(272F, -274.346008F), new Vector2(272.635986F, -275.036011F), new Vector2(273.451996F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(274.268005F, -276.044006F), new Vector2(275.20401F, -276.29599F), new Vector2(276.26001F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(277.339996F, -276.29599F), new Vector2(278.287994F, -276.044006F), new Vector2(279.104004F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(279.920013F, -275.036011F), new Vector2(280.562012F, -274.346008F), new Vector2(281.029999F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(281.497986F, -272.593994F), new Vector2(281.731995F, -271.59201F), new Vector2(281.731995F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(281.731995F, -269.312012F), new Vector2(281.497986F, -268.298004F), new Vector2(281.029999F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(280.562012F, -266.54599F), new Vector2(279.920013F, -265.855988F), new Vector2(279.104004F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(278.287994F, -264.847992F), new Vector2(277.339996F, -264.596008F), new Vector2(276.26001F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(275.20401F, -264.596008F), new Vector2(274.261993F, -264.847992F), new Vector2(273.43399F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(271.040009F, -261.895996F));
+ builder.AddLine(new Vector2(271.040009F, -266.503998F));
+ builder.AddLine(new Vector2(270.428009F, -270.679993F));
+ builder.AddLine(new Vector2(271.040009F, -274.820007F));
+ builder.AddLine(new Vector2(271.040009F, -287.600006F));
+ builder.AddLine(new Vector2(267.799988F, -287.600006F));
+ builder.AddLine(new Vector2(267.799988F, -261.895996F));
+ builder.AddLine(new Vector2(271.040009F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(281.029999F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(282.290009F, -263.485992F), new Vector2(283.279999F, -264.548004F), new Vector2(284F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(284.720001F, -267.235992F), new Vector2(285.079987F, -268.747986F), new Vector2(285.079987F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(285.079987F, -272.108002F), new Vector2(284.720001F, -273.619995F), new Vector2(284F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(283.279999F, -276.308014F), new Vector2(282.290009F, -277.376007F), new Vector2(281.029999F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(279.769989F, -278.959991F), new Vector2(278.359985F, -279.355988F), new Vector2(276.799988F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(275.528015F, -279.355988F), new Vector2(274.369995F, -279.085999F), new Vector2(273.325989F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(272.282013F, -278.006012F), new Vector2(271.441986F, -277.261993F), new Vector2(270.806F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(270.170013F, -275.365997F), new Vector2(269.81601F, -274.268005F), new Vector2(269.743988F, -273.019989F));
+ builder.AddLine(new Vector2(269.743988F, -267.872009F));
+ builder.AddCubicBezier(new Vector2(269.81601F, -266.64801F), new Vector2(270.164001F, -265.556F), new Vector2(270.787994F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(271.411987F, -263.635986F), new Vector2(272.246002F, -262.885986F), new Vector2(273.290009F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(274.334015F, -261.806F), new Vector2(275.503998F, -261.536011F), new Vector2(276.799988F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(278.359985F, -261.536011F), new Vector2(279.769989F, -261.925995F), new Vector2(281.029999F, -262.705994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0657()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(252.751999F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(253.927994F, -262.79599F), new Vector2(254.936005F, -263.528015F), new Vector2(255.776001F, -264.488007F));
+ builder.AddLine(new Vector2(253.688004F, -266.612F));
+ builder.AddCubicBezier(new Vector2(253.112F, -265.940002F), new Vector2(252.421997F, -265.436005F), new Vector2(251.617996F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(250.813995F, -264.764008F), new Vector2(249.932007F, -264.596008F), new Vector2(248.972F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(247.820007F, -264.596008F), new Vector2(246.800003F, -264.84201F), new Vector2(245.912003F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(245.024002F, -265.825989F), new Vector2(244.339996F, -266.522003F), new Vector2(243.860001F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(243.380005F, -268.321991F), new Vector2(243.139999F, -269.372009F), new Vector2(243.139999F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(243.139999F, -271.747986F), new Vector2(243.367996F, -272.768005F), new Vector2(243.824005F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(244.279999F, -274.496002F), new Vector2(244.927994F, -275.167999F), new Vector2(245.768005F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(246.608002F, -276.127991F), new Vector2(247.580002F, -276.368011F), new Vector2(248.684006F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(249.740005F, -276.368011F), new Vector2(250.639999F, -276.145996F), new Vector2(251.384003F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(252.128006F, -275.257996F), new Vector2(252.703995F, -274.634003F), new Vector2(253.112F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(253.520004F, -273.026001F), new Vector2(253.723999F, -272.048004F), new Vector2(253.723999F, -270.895996F));
+ builder.AddLine(new Vector2(254.912003F, -271.940002F));
+ builder.AddLine(new Vector2(242.203995F, -271.940002F));
+ builder.AddLine(new Vector2(242.203995F, -269.23999F));
+ builder.AddLine(new Vector2(256.640015F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(256.712006F, -269.575989F), new Vector2(256.76001F, -269.881989F), new Vector2(256.783997F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(256.808014F, -270.43399F), new Vector2(256.820007F, -270.691986F), new Vector2(256.820007F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(256.820007F, -272.563995F), new Vector2(256.477997F, -274.015991F), new Vector2(255.794006F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(255.110001F, -276.559998F), new Vector2(254.156006F, -277.556F), new Vector2(252.932007F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(251.707993F, -278.996002F), new Vector2(250.315994F, -279.355988F), new Vector2(248.755997F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(247.100006F, -279.355988F), new Vector2(245.606003F, -278.966003F), new Vector2(244.274002F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(242.942001F, -277.406006F), new Vector2(241.886002F, -276.343994F), new Vector2(241.106003F, -275F));
+ builder.AddCubicBezier(new Vector2(240.326004F, -273.656006F), new Vector2(239.936005F, -272.144012F), new Vector2(239.936005F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(239.936005F, -268.76001F), new Vector2(240.332001F, -267.235992F), new Vector2(241.123993F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(241.916F, -264.548004F), new Vector2(242.990005F, -263.485992F), new Vector2(244.345993F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(245.701996F, -261.925995F), new Vector2(247.244003F, -261.536011F), new Vector2(248.972F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(250.315994F, -261.536011F), new Vector2(251.576004F, -261.787994F), new Vector2(252.751999F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0658()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(224.563995F, -261.895996F));
+ builder.AddLine(new Vector2(224.563995F, -278.996002F));
+ builder.AddLine(new Vector2(221.324005F, -278.996002F));
+ builder.AddLine(new Vector2(221.324005F, -261.895996F));
+ builder.AddLine(new Vector2(224.563995F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(236.660004F, -261.895996F));
+ builder.AddLine(new Vector2(236.660004F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(236.660004F, -273.691986F), new Vector2(236.371994F, -274.802002F), new Vector2(235.796005F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(235.220001F, -276.890015F), new Vector2(234.434006F, -277.735992F), new Vector2(233.438004F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(232.442001F, -279.032013F), new Vector2(231.296005F, -279.355988F), new Vector2(230F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(228.703995F, -279.355988F), new Vector2(227.539993F, -279.062012F), new Vector2(226.507996F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(225.475998F, -277.885986F), new Vector2(224.671997F, -277.088013F), new Vector2(224.095993F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(223.520004F, -275.071991F), new Vector2(223.231995F, -273.920013F), new Vector2(223.231995F, -272.623993F));
+ builder.AddLine(new Vector2(224.563995F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(224.563995F, -272.731995F), new Vector2(224.755997F, -273.5F), new Vector2(225.139999F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(225.524002F, -274.843994F), new Vector2(226.052002F, -275.372009F), new Vector2(226.723999F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(227.395996F, -276.140015F), new Vector2(228.164001F, -276.332001F), new Vector2(229.028F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(230.324005F, -276.332001F), new Vector2(231.373993F, -275.911987F), new Vector2(232.177994F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(232.981995F, -274.231995F), new Vector2(233.384003F, -273.164001F), new Vector2(233.384003F, -271.868011F));
+ builder.AddLine(new Vector2(233.384003F, -261.895996F));
+ builder.AddLine(new Vector2(236.660004F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0659()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(216.391998F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(216.776001F, -283.406006F), new Vector2(216.968002F, -283.903992F), new Vector2(216.968002F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(216.968002F, -285.079987F), new Vector2(216.776001F, -285.56601F), new Vector2(216.391998F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(216.007996F, -286.358002F), new Vector2(215.516006F, -286.556F), new Vector2(214.916F, -286.556F));
+ builder.AddCubicBezier(new Vector2(214.315994F, -286.556F), new Vector2(213.824005F, -286.358002F), new Vector2(213.440002F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(213.056F, -285.56601F), new Vector2(212.863998F, -285.079987F), new Vector2(212.863998F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(212.863998F, -283.903992F), new Vector2(213.056F, -283.406006F), new Vector2(213.440002F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(213.824005F, -282.614014F), new Vector2(214.315994F, -282.415985F), new Vector2(214.916F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(215.516006F, -282.415985F), new Vector2(216.007996F, -282.614014F), new Vector2(216.391998F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(216.535995F, -261.895996F));
+ builder.AddLine(new Vector2(216.535995F, -278.996002F));
+ builder.AddLine(new Vector2(213.259995F, -278.996002F));
+ builder.AddLine(new Vector2(213.259995F, -261.895996F));
+ builder.AddLine(new Vector2(216.535995F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0660()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(208.507996F, -261.895996F));
+ builder.AddLine(new Vector2(208.507996F, -287.600006F));
+ builder.AddLine(new Vector2(205.268005F, -287.600006F));
+ builder.AddLine(new Vector2(205.268005F, -261.895996F));
+ builder.AddLine(new Vector2(208.507996F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0661()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(188.779999F, -261.895996F));
+ builder.AddLine(new Vector2(188.779999F, -278.996002F));
+ builder.AddLine(new Vector2(185.539993F, -278.996002F));
+ builder.AddLine(new Vector2(185.539993F, -261.895996F));
+ builder.AddLine(new Vector2(188.779999F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(200.876007F, -261.895996F));
+ builder.AddLine(new Vector2(200.876007F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(200.876007F, -273.691986F), new Vector2(200.587997F, -274.802002F), new Vector2(200.011993F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(199.436005F, -276.890015F), new Vector2(198.649994F, -277.735992F), new Vector2(197.654007F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(196.658005F, -279.032013F), new Vector2(195.511993F, -279.355988F), new Vector2(194.216003F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(192.919998F, -279.355988F), new Vector2(191.755997F, -279.062012F), new Vector2(190.723999F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(189.692001F, -277.885986F), new Vector2(188.888F, -277.088013F), new Vector2(188.311996F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(187.735992F, -275.071991F), new Vector2(187.447998F, -273.920013F), new Vector2(187.447998F, -272.623993F));
+ builder.AddLine(new Vector2(188.779999F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(188.779999F, -272.731995F), new Vector2(188.972F, -273.5F), new Vector2(189.356003F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(189.740005F, -274.843994F), new Vector2(190.268005F, -275.372009F), new Vector2(190.940002F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(191.612F, -276.140015F), new Vector2(192.380005F, -276.332001F), new Vector2(193.244003F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(194.539993F, -276.332001F), new Vector2(195.589996F, -275.911987F), new Vector2(196.393997F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(197.197998F, -274.231995F), new Vector2(197.600006F, -273.164001F), new Vector2(197.600006F, -271.868011F));
+ builder.AddLine(new Vector2(197.600006F, -261.895996F));
+ builder.AddLine(new Vector2(200.876007F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0662()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(170.132004F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(169.292007F, -265.928009F), new Vector2(168.632004F, -266.618011F), new Vector2(168.151993F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(167.671997F, -268.369995F), new Vector2(167.432007F, -269.372009F), new Vector2(167.432007F, -270.5F));
+ builder.AddCubicBezier(new Vector2(167.432007F, -271.604004F), new Vector2(167.671997F, -272.588013F), new Vector2(168.151993F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(168.632004F, -274.31601F), new Vector2(169.292007F, -274.993988F), new Vector2(170.132004F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(170.972F, -275.977997F), new Vector2(171.919998F, -276.223999F), new Vector2(172.975998F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(174.080002F, -276.223999F), new Vector2(175.046005F, -275.977997F), new Vector2(175.873993F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(176.701996F, -274.993988F), new Vector2(177.362F, -274.31601F), new Vector2(177.854004F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(178.345993F, -272.588013F), new Vector2(178.591995F, -271.604004F), new Vector2(178.591995F, -270.5F));
+ builder.AddCubicBezier(new Vector2(178.591995F, -269.372009F), new Vector2(178.352005F, -268.369995F), new Vector2(177.871994F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(177.391998F, -266.618011F), new Vector2(176.731995F, -265.928009F), new Vector2(175.891998F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(175.052002F, -264.920013F), new Vector2(174.080002F, -264.667999F), new Vector2(172.975998F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(171.919998F, -264.667999F), new Vector2(170.972F, -264.920013F), new Vector2(170.132004F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(177.529999F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(178.886002F, -263.515991F), new Vector2(179.960007F, -264.589996F), new Vector2(180.751999F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(181.544006F, -267.302002F), new Vector2(181.940002F, -268.820007F), new Vector2(181.940002F, -270.5F));
+ builder.AddCubicBezier(new Vector2(181.940002F, -272.156006F), new Vector2(181.544006F, -273.656006F), new Vector2(180.751999F, -275F));
+ builder.AddCubicBezier(new Vector2(179.960007F, -276.343994F), new Vector2(178.886002F, -277.406006F), new Vector2(177.529999F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(176.173996F, -278.966003F), new Vector2(174.656006F, -279.355988F), new Vector2(172.975998F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(171.320007F, -279.355988F), new Vector2(169.820007F, -278.959991F), new Vector2(168.475998F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(167.132004F, -277.376007F), new Vector2(166.063995F, -276.313995F), new Vector2(165.272003F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(164.479996F, -273.649994F), new Vector2(164.084F, -272.156006F), new Vector2(164.084F, -270.5F));
+ builder.AddCubicBezier(new Vector2(164.084F, -268.820007F), new Vector2(164.479996F, -267.302002F), new Vector2(165.272003F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(166.063995F, -264.589996F), new Vector2(167.132004F, -263.515991F), new Vector2(168.475998F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(169.820007F, -261.932007F), new Vector2(171.320007F, -261.536011F), new Vector2(172.975998F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(174.656006F, -261.536011F), new Vector2(176.173996F, -261.932007F), new Vector2(177.529999F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0663()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(141.817993F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(140.990005F, -266.414001F), new Vector2(140.341995F, -267.067993F), new Vector2(139.873993F, -267.90799F));
+ builder.AddCubicBezier(new Vector2(139.406006F, -268.747986F), new Vector2(139.171997F, -269.708008F), new Vector2(139.171997F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(139.171997F, -271.868011F), new Vector2(139.406006F, -272.821991F), new Vector2(139.873993F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(140.341995F, -274.477997F), new Vector2(140.983994F, -275.126007F), new Vector2(141.800003F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(142.615997F, -276.062012F), new Vector2(143.563995F, -276.29599F), new Vector2(144.643997F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(145.699997F, -276.29599F), new Vector2(146.630005F, -276.062012F), new Vector2(147.434006F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(148.238007F, -275.126007F), new Vector2(148.862F, -274.477997F), new Vector2(149.306F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(149.75F, -272.821991F), new Vector2(149.972F, -271.855988F), new Vector2(149.972F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(149.972F, -269.64801F), new Vector2(149.75F, -268.682007F), new Vector2(149.306F, -267.854004F));
+ builder.AddCubicBezier(new Vector2(148.862F, -267.026001F), new Vector2(148.244003F, -266.384003F), new Vector2(147.451996F, -265.928009F));
+ builder.AddCubicBezier(new Vector2(146.660004F, -265.471985F), new Vector2(145.723999F, -265.243988F), new Vector2(144.643997F, -265.243988F));
+ builder.AddCubicBezier(new Vector2(143.587997F, -265.243988F), new Vector2(142.645996F, -265.477997F), new Vector2(141.817993F, -265.946014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(147.559998F, -262.976013F));
+ builder.AddCubicBezier(new Vector2(148.591995F, -263.503998F), new Vector2(149.414001F, -264.242004F), new Vector2(150.026001F, -265.190002F));
+ builder.AddCubicBezier(new Vector2(150.638F, -266.138F), new Vector2(150.979996F, -267.235992F), new Vector2(151.052002F, -268.484009F));
+ builder.AddLine(new Vector2(151.052002F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(150.979996F, -274.291992F), new Vector2(150.643997F, -275.402008F), new Vector2(150.044006F, -276.350006F));
+ builder.AddCubicBezier(new Vector2(149.444F, -277.298004F), new Vector2(148.621994F, -278.036011F), new Vector2(147.578003F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(146.533997F, -279.09201F), new Vector2(145.339996F, -279.355988F), new Vector2(143.996002F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(142.460007F, -279.355988F), new Vector2(141.067993F, -278.977997F), new Vector2(139.820007F, -278.221985F));
+ builder.AddCubicBezier(new Vector2(138.572006F, -277.466003F), new Vector2(137.593994F, -276.446014F), new Vector2(136.886002F, -275.161987F));
+ builder.AddCubicBezier(new Vector2(136.177994F, -273.877991F), new Vector2(135.824005F, -272.420013F), new Vector2(135.824005F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(135.824005F, -269.156006F), new Vector2(136.184006F, -267.686005F), new Vector2(136.904007F, -266.377991F));
+ builder.AddCubicBezier(new Vector2(137.623993F, -265.070007F), new Vector2(138.602005F, -264.044006F), new Vector2(139.837997F, -263.299988F));
+ builder.AddCubicBezier(new Vector2(141.074005F, -262.556F), new Vector2(142.472F, -262.18399F), new Vector2(144.031998F, -262.18399F));
+ builder.AddCubicBezier(new Vector2(145.352005F, -262.18399F), new Vector2(146.528F, -262.447998F), new Vector2(147.559998F, -262.976013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(148.729996F, -255.397995F));
+ builder.AddCubicBezier(new Vector2(150.085999F, -256.082001F), new Vector2(151.141998F, -257.041992F), new Vector2(151.897995F, -258.278015F));
+ builder.AddCubicBezier(new Vector2(152.654007F, -259.514008F), new Vector2(153.031998F, -260.947998F), new Vector2(153.031998F, -262.579987F));
+ builder.AddLine(new Vector2(153.031998F, -278.996002F));
+ builder.AddLine(new Vector2(149.792007F, -278.996002F));
+ builder.AddLine(new Vector2(149.792007F, -274.496002F));
+ builder.AddLine(new Vector2(150.367996F, -270.679993F));
+ builder.AddLine(new Vector2(149.792007F, -266.828003F));
+ builder.AddLine(new Vector2(149.792007F, -262.579987F));
+ builder.AddCubicBezier(new Vector2(149.792007F, -261.019989F), new Vector2(149.276001F, -259.778015F), new Vector2(148.244003F, -258.854004F));
+ builder.AddCubicBezier(new Vector2(147.212006F, -257.929993F), new Vector2(145.832001F, -257.467987F), new Vector2(144.104004F, -257.467987F));
+ builder.AddCubicBezier(new Vector2(142.783997F, -257.467987F), new Vector2(141.643997F, -257.701996F), new Vector2(140.684006F, -258.170013F));
+ builder.AddCubicBezier(new Vector2(139.723999F, -258.638F), new Vector2(138.895996F, -259.31601F), new Vector2(138.199997F, -260.20401F));
+ builder.AddLine(new Vector2(136.076004F, -258.079987F));
+ builder.AddCubicBezier(new Vector2(136.916F, -256.903992F), new Vector2(138.007996F, -255.992004F), new Vector2(139.352005F, -255.343994F));
+ builder.AddCubicBezier(new Vector2(140.695999F, -254.695999F), new Vector2(142.255997F, -254.371994F), new Vector2(144.031998F, -254.371994F));
+ builder.AddCubicBezier(new Vector2(145.807999F, -254.371994F), new Vector2(147.373993F, -254.714005F), new Vector2(148.729996F, -255.397995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0664()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(120.452003F, -261.895996F));
+ builder.AddLine(new Vector2(120.452003F, -278.996002F));
+ builder.AddLine(new Vector2(117.211998F, -278.996002F));
+ builder.AddLine(new Vector2(117.211998F, -261.895996F));
+ builder.AddLine(new Vector2(120.452003F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(132.548004F, -261.895996F));
+ builder.AddLine(new Vector2(132.548004F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(132.548004F, -273.691986F), new Vector2(132.259995F, -274.802002F), new Vector2(131.684006F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(131.108002F, -276.890015F), new Vector2(130.322006F, -277.735992F), new Vector2(129.326004F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(128.330002F, -279.032013F), new Vector2(127.183998F, -279.355988F), new Vector2(125.888F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(124.592003F, -279.355988F), new Vector2(123.428001F, -279.062012F), new Vector2(122.396004F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(121.363998F, -277.885986F), new Vector2(120.559998F, -277.088013F), new Vector2(119.984001F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(119.407997F, -275.071991F), new Vector2(119.120003F, -273.920013F), new Vector2(119.120003F, -272.623993F));
+ builder.AddLine(new Vector2(120.452003F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(120.452003F, -272.731995F), new Vector2(120.643997F, -273.5F), new Vector2(121.028F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(121.412003F, -274.843994F), new Vector2(121.940002F, -275.372009F), new Vector2(122.612F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(123.283997F, -276.140015F), new Vector2(124.052002F, -276.332001F), new Vector2(124.916F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(126.211998F, -276.332001F), new Vector2(127.262001F, -275.911987F), new Vector2(128.065994F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(128.869995F, -274.231995F), new Vector2(129.272003F, -273.164001F), new Vector2(129.272003F, -271.868011F));
+ builder.AddLine(new Vector2(129.272003F, -261.895996F));
+ builder.AddLine(new Vector2(132.548004F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0665()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(109.328003F, -262.526001F));
+ builder.AddCubicBezier(new Vector2(110.431999F, -263.138F), new Vector2(111.295998F, -264.007996F), new Vector2(111.919998F, -265.135986F));
+ builder.AddCubicBezier(new Vector2(112.543999F, -266.264008F), new Vector2(112.856003F, -267.571991F), new Vector2(112.856003F, -269.059998F));
+ builder.AddLine(new Vector2(112.856003F, -278.996002F));
+ builder.AddLine(new Vector2(109.615997F, -278.996002F));
+ builder.AddLine(new Vector2(109.615997F, -269.20401F));
+ builder.AddCubicBezier(new Vector2(109.615997F, -267.787994F), new Vector2(109.255997F, -266.678009F), new Vector2(108.536003F, -265.873993F));
+ builder.AddCubicBezier(new Vector2(107.816002F, -265.070007F), new Vector2(106.82F, -264.667999F), new Vector2(105.547997F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(104.708F, -264.667999F), new Vector2(103.975998F, -264.847992F), new Vector2(103.351997F, -265.208008F));
+ builder.AddCubicBezier(new Vector2(102.727997F, -265.567993F), new Vector2(102.253998F, -266.089996F), new Vector2(101.93F, -266.773987F));
+ builder.AddCubicBezier(new Vector2(101.606003F, -267.458008F), new Vector2(101.444F, -268.268005F), new Vector2(101.444F, -269.20401F));
+ builder.AddLine(new Vector2(101.444F, -278.996002F));
+ builder.AddLine(new Vector2(98.2040024F, -278.996002F));
+ builder.AddLine(new Vector2(98.2040024F, -269.059998F));
+ builder.AddCubicBezier(new Vector2(98.2040024F, -267.571991F), new Vector2(98.5159988F, -266.264008F), new Vector2(99.1399994F, -265.135986F));
+ builder.AddCubicBezier(new Vector2(99.7639999F, -264.007996F), new Vector2(100.634003F, -263.138F), new Vector2(101.75F, -262.526001F));
+ builder.AddCubicBezier(new Vector2(102.865997F, -261.914001F), new Vector2(104.132004F, -261.608002F), new Vector2(105.547997F, -261.608002F));
+ builder.AddCubicBezier(new Vector2(106.963997F, -261.608002F), new Vector2(108.223999F, -261.914001F), new Vector2(109.328003F, -262.526001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0666()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(83.2279968F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(82.3880005F, -265.928009F), new Vector2(81.7279968F, -266.618011F), new Vector2(81.2480011F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(80.7679977F, -268.369995F), new Vector2(80.5279999F, -269.372009F), new Vector2(80.5279999F, -270.5F));
+ builder.AddCubicBezier(new Vector2(80.5279999F, -271.604004F), new Vector2(80.7679977F, -272.588013F), new Vector2(81.2480011F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(81.7279968F, -274.31601F), new Vector2(82.3880005F, -274.993988F), new Vector2(83.2279968F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(84.0680008F, -275.977997F), new Vector2(85.0159988F, -276.223999F), new Vector2(86.0719986F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(87.1760025F, -276.223999F), new Vector2(88.1419983F, -275.977997F), new Vector2(88.9700012F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(89.7979965F, -274.993988F), new Vector2(90.4580002F, -274.31601F), new Vector2(90.9499969F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(91.4420013F, -272.588013F), new Vector2(91.6880035F, -271.604004F), new Vector2(91.6880035F, -270.5F));
+ builder.AddCubicBezier(new Vector2(91.6880035F, -269.372009F), new Vector2(91.447998F, -268.369995F), new Vector2(90.9680023F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(90.487999F, -266.618011F), new Vector2(89.8280029F, -265.928009F), new Vector2(88.987999F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(88.1480026F, -264.920013F), new Vector2(87.1760025F, -264.667999F), new Vector2(86.0719986F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(85.0159988F, -264.667999F), new Vector2(84.0680008F, -264.920013F), new Vector2(83.2279968F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(90.6259995F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(91.9820023F, -263.515991F), new Vector2(93.0559998F, -264.589996F), new Vector2(93.8479996F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(94.6399994F, -267.302002F), new Vector2(95.0360031F, -268.820007F), new Vector2(95.0360031F, -270.5F));
+ builder.AddCubicBezier(new Vector2(95.0360031F, -272.156006F), new Vector2(94.6399994F, -273.656006F), new Vector2(93.8479996F, -275F));
+ builder.AddCubicBezier(new Vector2(93.0559998F, -276.343994F), new Vector2(91.9820023F, -277.406006F), new Vector2(90.6259995F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(89.2699966F, -278.966003F), new Vector2(87.7519989F, -279.355988F), new Vector2(86.0719986F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(84.4160004F, -279.355988F), new Vector2(82.9160004F, -278.959991F), new Vector2(81.5719986F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(80.2279968F, -277.376007F), new Vector2(79.1600037F, -276.313995F), new Vector2(78.3679962F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(77.5759964F, -273.649994F), new Vector2(77.1800003F, -272.156006F), new Vector2(77.1800003F, -270.5F));
+ builder.AddCubicBezier(new Vector2(77.1800003F, -268.820007F), new Vector2(77.5759964F, -267.302002F), new Vector2(78.3679962F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(79.1600037F, -264.589996F), new Vector2(80.2279968F, -263.515991F), new Vector2(81.5719986F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(82.9160004F, -261.932007F), new Vector2(84.4160004F, -261.536011F), new Vector2(86.0719986F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(87.7519989F, -261.536011F), new Vector2(89.2699966F, -261.932007F), new Vector2(90.6259995F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0667()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(65.0479965F, -254.731995F));
+ builder.AddLine(new Vector2(68.288002F, -261.752014F));
+ builder.AddLine(new Vector2(66.4520035F, -265.063995F));
+ builder.AddLine(new Vector2(61.4480019F, -254.731995F));
+ builder.AddLine(new Vector2(65.0479965F, -254.731995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(68.288002F, -261.752014F));
+ builder.AddLine(new Vector2(76.2799988F, -278.996002F));
+ builder.AddLine(new Vector2(72.6800003F, -278.996002F));
+ builder.AddLine(new Vector2(66.8840027F, -265.496002F));
+ builder.AddLine(new Vector2(68.0360031F, -265.496002F));
+ builder.AddLine(new Vector2(62.5279999F, -278.996002F));
+ builder.AddLine(new Vector2(58.9280014F, -278.996002F));
+ builder.AddLine(new Vector2(66.3440018F, -261.752014F));
+ builder.AddLine(new Vector2(68.288002F, -261.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0668()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(48.5600014F, -261.895996F));
+ builder.AddLine(new Vector2(48.5600014F, -278.996002F));
+ builder.AddLine(new Vector2(45.2840004F, -278.996002F));
+ builder.AddLine(new Vector2(45.2840004F, -274.820007F));
+ builder.AddLine(new Vector2(45.8959999F, -270.679993F));
+ builder.AddLine(new Vector2(45.2840004F, -266.503998F));
+ builder.AddLine(new Vector2(45.2840004F, -261.895996F));
+ builder.AddLine(new Vector2(48.5600014F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(37.2560005F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(36.4160004F, -265.855988F), new Vector2(35.762001F, -266.54599F), new Vector2(35.2939987F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(34.8260002F, -268.298004F), new Vector2(34.5919991F, -269.312012F), new Vector2(34.5919991F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(34.5919991F, -271.59201F), new Vector2(34.8260002F, -272.593994F), new Vector2(35.2939987F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(35.762001F, -274.346008F), new Vector2(36.4099998F, -275.036011F), new Vector2(37.237999F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(38.0660019F, -276.044006F), new Vector2(39.0200005F, -276.29599F), new Vector2(40.0999985F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(41.1800003F, -276.29599F), new Vector2(42.1220016F, -276.049988F), new Vector2(42.9259987F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(43.7299995F, -275.06601F), new Vector2(44.3600006F, -274.376007F), new Vector2(44.8160019F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(45.2719994F, -272.600006F), new Vector2(45.5F, -271.579987F), new Vector2(45.5F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(45.5F, -268.723999F), new Vector2(45.0079994F, -267.325989F), new Vector2(44.0239983F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(43.0400009F, -265.141998F), new Vector2(41.7439995F, -264.596008F), new Vector2(40.1360016F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(39.0559998F, -264.596008F), new Vector2(38.0960007F, -264.847992F), new Vector2(37.2560005F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(43.0880013F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(44.1199989F, -262.885986F), new Vector2(44.9420013F, -263.635986F), new Vector2(45.5540009F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(46.1660004F, -265.556F), new Vector2(46.5079994F, -266.64801F), new Vector2(46.5800018F, -267.872009F));
+ builder.AddLine(new Vector2(46.5800018F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(46.5079994F, -274.268005F), new Vector2(46.1599998F, -275.365997F), new Vector2(45.5359993F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(44.9119987F, -277.261993F), new Vector2(44.0900002F, -278.006012F), new Vector2(43.0699997F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(42.0499992F, -279.085999F), new Vector2(40.8919983F, -279.355988F), new Vector2(39.5960007F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(38.012001F, -279.355988F), new Vector2(36.5900002F, -278.959991F), new Vector2(35.3300018F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(34.0699997F, -277.376007F), new Vector2(33.0740013F, -276.308014F), new Vector2(32.3419991F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(31.6100006F, -273.619995F), new Vector2(31.2439995F, -272.108002F), new Vector2(31.2439995F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(31.2439995F, -268.747986F), new Vector2(31.6100006F, -267.235992F), new Vector2(32.3419991F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(33.0740013F, -264.548004F), new Vector2(34.0699997F, -263.485992F), new Vector2(35.3300018F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(36.5900002F, -261.925995F), new Vector2(38.012001F, -261.536011F), new Vector2(39.5960007F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(40.8919983F, -261.536011F), new Vector2(42.0559998F, -261.806F), new Vector2(43.0880013F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0669()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(21.632F, -276.044006F));
+ builder.AddLine(new Vector2(21.632F, -278.996002F));
+ builder.AddLine(new Vector2(8.74400043F, -278.996002F));
+ builder.AddLine(new Vector2(8.74400043F, -276.044006F));
+ builder.AddLine(new Vector2(21.632F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16.1959991F, -261.895996F));
+ builder.AddLine(new Vector2(16.1959991F, -281.552002F));
+ builder.AddCubicBezier(new Vector2(16.1959991F, -282.608002F), new Vector2(16.4780006F, -283.429993F), new Vector2(17.0419998F, -284.018005F));
+ builder.AddCubicBezier(new Vector2(17.6060009F, -284.605988F), new Vector2(18.4039993F, -284.899994F), new Vector2(19.4360008F, -284.899994F));
+ builder.AddCubicBezier(new Vector2(19.9880009F, -284.899994F), new Vector2(20.4559994F, -284.81601F), new Vector2(20.8400002F, -284.64801F));
+ builder.AddCubicBezier(new Vector2(21.2240009F, -284.480011F), new Vector2(21.5720005F, -284.227997F), new Vector2(21.8840008F, -283.891998F));
+ builder.AddLine(new Vector2(24.0079994F, -285.980011F));
+ builder.AddCubicBezier(new Vector2(23.4080009F, -286.627991F), new Vector2(22.7479992F, -287.119995F), new Vector2(22.0279999F, -287.455994F));
+ builder.AddCubicBezier(new Vector2(21.3080006F, -287.791992F), new Vector2(20.4559994F, -287.959991F), new Vector2(19.4720001F, -287.959991F));
+ builder.AddCubicBezier(new Vector2(18.1760006F, -287.959991F), new Vector2(17.0359993F, -287.68399F), new Vector2(16.052F, -287.131989F));
+ builder.AddCubicBezier(new Vector2(15.0679998F, -286.579987F), new Vector2(14.3000002F, -285.824005F), new Vector2(13.7480001F, -284.864014F));
+ builder.AddCubicBezier(new Vector2(13.1960001F, -283.903992F), new Vector2(12.9200001F, -282.799988F), new Vector2(12.9200001F, -281.552002F));
+ builder.AddLine(new Vector2(12.9200001F, -261.895996F));
+ builder.AddLine(new Vector2(16.1959991F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0670()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-4.36000013F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-5.19999981F, -265.928009F), new Vector2(-5.86000013F, -266.618011F), new Vector2(-6.34000015F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-6.82000017F, -268.369995F), new Vector2(-7.05999994F, -269.372009F), new Vector2(-7.05999994F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-7.05999994F, -271.604004F), new Vector2(-6.82000017F, -272.588013F), new Vector2(-6.34000015F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-5.86000013F, -274.31601F), new Vector2(-5.19999981F, -274.993988F), new Vector2(-4.36000013F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-3.51999998F, -275.977997F), new Vector2(-2.57200003F, -276.223999F), new Vector2(-1.51600003F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(-0.412F, -276.223999F), new Vector2(0.55400002F, -275.977997F), new Vector2(1.38199997F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(2.21000004F, -274.993988F), new Vector2(2.86999989F, -274.31601F), new Vector2(3.36199999F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(3.85400009F, -272.588013F), new Vector2(4.0999999F, -271.604004F), new Vector2(4.0999999F, -270.5F));
+ builder.AddCubicBezier(new Vector2(4.0999999F, -269.372009F), new Vector2(3.8599999F, -268.369995F), new Vector2(3.38000011F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(2.9000001F, -266.618011F), new Vector2(2.24000001F, -265.928009F), new Vector2(1.39999998F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(0.560000002F, -264.920013F), new Vector2(-0.412F, -264.667999F), new Vector2(-1.51600003F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-2.57200003F, -264.667999F), new Vector2(-3.51999998F, -264.920013F), new Vector2(-4.36000013F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(3.03800011F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(4.39400005F, -263.515991F), new Vector2(5.46799994F, -264.589996F), new Vector2(6.26000023F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(7.05200005F, -267.302002F), new Vector2(7.44799995F, -268.820007F), new Vector2(7.44799995F, -270.5F));
+ builder.AddCubicBezier(new Vector2(7.44799995F, -272.156006F), new Vector2(7.05200005F, -273.656006F), new Vector2(6.26000023F, -275F));
+ builder.AddCubicBezier(new Vector2(5.46799994F, -276.343994F), new Vector2(4.39400005F, -277.406006F), new Vector2(3.03800011F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(1.68200004F, -278.966003F), new Vector2(0.164000005F, -279.355988F), new Vector2(-1.51600003F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-3.17199993F, -279.355988F), new Vector2(-4.67199993F, -278.959991F), new Vector2(-6.01599979F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-7.36000013F, -277.376007F), new Vector2(-8.42800045F, -276.313995F), new Vector2(-9.22000027F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(-10.0120001F, -273.649994F), new Vector2(-10.408F, -272.156006F), new Vector2(-10.408F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-10.408F, -268.820007F), new Vector2(-10.0120001F, -267.302002F), new Vector2(-9.22000027F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-8.42800045F, -264.589996F), new Vector2(-7.36000013F, -263.515991F), new Vector2(-6.01599979F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-4.67199993F, -261.932007F), new Vector2(-3.17199993F, -261.536011F), new Vector2(-1.51600003F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(0.164000005F, -261.536011F), new Vector2(1.68200004F, -261.932007F), new Vector2(3.03800011F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0671()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-32.6739998F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-33.5019989F, -266.414001F), new Vector2(-34.1500015F, -267.067993F), new Vector2(-34.618F, -267.90799F));
+ builder.AddCubicBezier(new Vector2(-35.0859985F, -268.747986F), new Vector2(-35.3199997F, -269.708008F), new Vector2(-35.3199997F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(-35.3199997F, -271.868011F), new Vector2(-35.0859985F, -272.821991F), new Vector2(-34.618F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(-34.1500015F, -274.477997F), new Vector2(-33.5079994F, -275.126007F), new Vector2(-32.6920013F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(-31.8759995F, -276.062012F), new Vector2(-30.9279995F, -276.29599F), new Vector2(-29.8479996F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-28.7919998F, -276.29599F), new Vector2(-27.8619995F, -276.062012F), new Vector2(-27.0580006F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(-26.2539997F, -275.126007F), new Vector2(-25.6299992F, -274.477997F), new Vector2(-25.1860008F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(-24.7420006F, -272.821991F), new Vector2(-24.5200005F, -271.855988F), new Vector2(-24.5200005F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(-24.5200005F, -269.64801F), new Vector2(-24.7420006F, -268.682007F), new Vector2(-25.1860008F, -267.854004F));
+ builder.AddCubicBezier(new Vector2(-25.6299992F, -267.026001F), new Vector2(-26.2479992F, -266.384003F), new Vector2(-27.0400009F, -265.928009F));
+ builder.AddCubicBezier(new Vector2(-27.8320007F, -265.471985F), new Vector2(-28.7679996F, -265.243988F), new Vector2(-29.8479996F, -265.243988F));
+ builder.AddCubicBezier(new Vector2(-30.9039993F, -265.243988F), new Vector2(-31.8460007F, -265.477997F), new Vector2(-32.6739998F, -265.946014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-26.9319992F, -262.976013F));
+ builder.AddCubicBezier(new Vector2(-25.8999996F, -263.503998F), new Vector2(-25.0779991F, -264.242004F), new Vector2(-24.4659996F, -265.190002F));
+ builder.AddCubicBezier(new Vector2(-23.8540001F, -266.138F), new Vector2(-23.5119991F, -267.235992F), new Vector2(-23.4400005F, -268.484009F));
+ builder.AddLine(new Vector2(-23.4400005F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-23.5119991F, -274.291992F), new Vector2(-23.8479996F, -275.402008F), new Vector2(-24.448F, -276.350006F));
+ builder.AddCubicBezier(new Vector2(-25.0480003F, -277.298004F), new Vector2(-25.8700008F, -278.036011F), new Vector2(-26.9139996F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-27.9580002F, -279.09201F), new Vector2(-29.1520004F, -279.355988F), new Vector2(-30.4960003F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-32.0320015F, -279.355988F), new Vector2(-33.4239998F, -278.977997F), new Vector2(-34.6720009F, -278.221985F));
+ builder.AddCubicBezier(new Vector2(-35.9199982F, -277.466003F), new Vector2(-36.8979988F, -276.446014F), new Vector2(-37.605999F, -275.161987F));
+ builder.AddCubicBezier(new Vector2(-38.3139992F, -273.877991F), new Vector2(-38.6679993F, -272.420013F), new Vector2(-38.6679993F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(-38.6679993F, -269.156006F), new Vector2(-38.3079987F, -267.686005F), new Vector2(-37.5880013F, -266.377991F));
+ builder.AddCubicBezier(new Vector2(-36.868F, -265.070007F), new Vector2(-35.8899994F, -264.044006F), new Vector2(-34.6539993F, -263.299988F));
+ builder.AddCubicBezier(new Vector2(-33.4179993F, -262.556F), new Vector2(-32.0200005F, -262.18399F), new Vector2(-30.4599991F, -262.18399F));
+ builder.AddCubicBezier(new Vector2(-29.1399994F, -262.18399F), new Vector2(-27.9640007F, -262.447998F), new Vector2(-26.9319992F, -262.976013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-25.7619991F, -255.397995F));
+ builder.AddCubicBezier(new Vector2(-24.4060001F, -256.082001F), new Vector2(-23.3500004F, -257.041992F), new Vector2(-22.5939999F, -258.278015F));
+ builder.AddCubicBezier(new Vector2(-21.8379993F, -259.514008F), new Vector2(-21.4599991F, -260.947998F), new Vector2(-21.4599991F, -262.579987F));
+ builder.AddLine(new Vector2(-21.4599991F, -278.996002F));
+ builder.AddLine(new Vector2(-24.7000008F, -278.996002F));
+ builder.AddLine(new Vector2(-24.7000008F, -274.496002F));
+ builder.AddLine(new Vector2(-24.1240005F, -270.679993F));
+ builder.AddLine(new Vector2(-24.7000008F, -266.828003F));
+ builder.AddLine(new Vector2(-24.7000008F, -262.579987F));
+ builder.AddCubicBezier(new Vector2(-24.7000008F, -261.019989F), new Vector2(-25.2159996F, -259.778015F), new Vector2(-26.2479992F, -258.854004F));
+ builder.AddCubicBezier(new Vector2(-27.2800007F, -257.929993F), new Vector2(-28.6599998F, -257.467987F), new Vector2(-30.3880005F, -257.467987F));
+ builder.AddCubicBezier(new Vector2(-31.7080002F, -257.467987F), new Vector2(-32.8479996F, -257.701996F), new Vector2(-33.8079987F, -258.170013F));
+ builder.AddCubicBezier(new Vector2(-34.7680016F, -258.638F), new Vector2(-35.5960007F, -259.31601F), new Vector2(-36.2919998F, -260.20401F));
+ builder.AddLine(new Vector2(-38.4160004F, -258.079987F));
+ builder.AddCubicBezier(new Vector2(-37.5760002F, -256.903992F), new Vector2(-36.4840012F, -255.992004F), new Vector2(-35.1399994F, -255.343994F));
+ builder.AddCubicBezier(new Vector2(-33.7960014F, -254.695999F), new Vector2(-32.2360001F, -254.371994F), new Vector2(-30.4599991F, -254.371994F));
+ builder.AddCubicBezier(new Vector2(-28.684F, -254.371994F), new Vector2(-27.118F, -254.714005F), new Vector2(-25.7619991F, -255.397995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0672()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-54.0400009F, -261.895996F));
+ builder.AddLine(new Vector2(-54.0400009F, -278.996002F));
+ builder.AddLine(new Vector2(-57.2799988F, -278.996002F));
+ builder.AddLine(new Vector2(-57.2799988F, -261.895996F));
+ builder.AddLine(new Vector2(-54.0400009F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-41.9440002F, -261.895996F));
+ builder.AddLine(new Vector2(-41.9440002F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(-41.9440002F, -273.691986F), new Vector2(-42.2319984F, -274.802002F), new Vector2(-42.8079987F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(-43.3839989F, -276.890015F), new Vector2(-44.1699982F, -277.735992F), new Vector2(-45.1660004F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(-46.1619987F, -279.032013F), new Vector2(-47.3079987F, -279.355988F), new Vector2(-48.6040001F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-49.9000015F, -279.355988F), new Vector2(-51.0639992F, -279.062012F), new Vector2(-52.0960007F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(-53.1279984F, -277.885986F), new Vector2(-53.9319992F, -277.088013F), new Vector2(-54.5079994F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-55.0839996F, -275.071991F), new Vector2(-55.3720016F, -273.920013F), new Vector2(-55.3720016F, -272.623993F));
+ builder.AddLine(new Vector2(-54.0400009F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(-54.0400009F, -272.731995F), new Vector2(-53.8479996F, -273.5F), new Vector2(-53.4640007F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(-53.0800018F, -274.843994F), new Vector2(-52.5519981F, -275.372009F), new Vector2(-51.8800011F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(-51.2080002F, -276.140015F), new Vector2(-50.4399986F, -276.332001F), new Vector2(-49.5760002F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-48.2799988F, -276.332001F), new Vector2(-47.2299995F, -275.911987F), new Vector2(-46.4259987F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(-45.6220016F, -274.231995F), new Vector2(-45.2200012F, -273.164001F), new Vector2(-45.2200012F, -271.868011F));
+ builder.AddLine(new Vector2(-45.2200012F, -261.895996F));
+ builder.AddLine(new Vector2(-41.9440002F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0673()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-62.2120018F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-61.8279991F, -283.406006F), new Vector2(-61.6360016F, -283.903992F), new Vector2(-61.6360016F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-61.6360016F, -285.079987F), new Vector2(-61.8279991F, -285.56601F), new Vector2(-62.2120018F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-62.5960007F, -286.358002F), new Vector2(-63.0880013F, -286.556F), new Vector2(-63.6879997F, -286.556F));
+ builder.AddCubicBezier(new Vector2(-64.288002F, -286.556F), new Vector2(-64.7799988F, -286.358002F), new Vector2(-65.1640015F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-65.5479965F, -285.56601F), new Vector2(-65.7399979F, -285.079987F), new Vector2(-65.7399979F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-65.7399979F, -283.903992F), new Vector2(-65.5479965F, -283.406006F), new Vector2(-65.1640015F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-64.7799988F, -282.614014F), new Vector2(-64.288002F, -282.415985F), new Vector2(-63.6879997F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(-63.0880013F, -282.415985F), new Vector2(-62.5960007F, -282.614014F), new Vector2(-62.2120018F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-62.0680008F, -261.895996F));
+ builder.AddLine(new Vector2(-62.0680008F, -278.996002F));
+ builder.AddLine(new Vector2(-65.3440018F, -278.996002F));
+ builder.AddLine(new Vector2(-65.3440018F, -261.895996F));
+ builder.AddLine(new Vector2(-62.0680008F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0674()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-70.0960007F, -261.895996F));
+ builder.AddLine(new Vector2(-70.0960007F, -287.600006F));
+ builder.AddLine(new Vector2(-73.3359985F, -287.600006F));
+ builder.AddLine(new Vector2(-73.3359985F, -261.895996F));
+ builder.AddLine(new Vector2(-70.0960007F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0675()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-78.0879974F, -261.895996F));
+ builder.AddLine(new Vector2(-78.0879974F, -287.600006F));
+ builder.AddLine(new Vector2(-81.3280029F, -287.600006F));
+ builder.AddLine(new Vector2(-81.3280029F, -261.895996F));
+ builder.AddLine(new Vector2(-78.0879974F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0676()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-86.2600021F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-85.8759995F, -283.406006F), new Vector2(-85.6839981F, -283.903992F), new Vector2(-85.6839981F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-85.6839981F, -285.079987F), new Vector2(-85.8759995F, -285.56601F), new Vector2(-86.2600021F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-86.6439972F, -286.358002F), new Vector2(-87.1360016F, -286.556F), new Vector2(-87.7360001F, -286.556F));
+ builder.AddCubicBezier(new Vector2(-88.3359985F, -286.556F), new Vector2(-88.8280029F, -286.358002F), new Vector2(-89.211998F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-89.5960007F, -285.56601F), new Vector2(-89.788002F, -285.079987F), new Vector2(-89.788002F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-89.788002F, -283.903992F), new Vector2(-89.5960007F, -283.406006F), new Vector2(-89.211998F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-88.8280029F, -282.614014F), new Vector2(-88.3359985F, -282.415985F), new Vector2(-87.7360001F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(-87.1360016F, -282.415985F), new Vector2(-86.6439972F, -282.614014F), new Vector2(-86.2600021F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-86.1159973F, -261.895996F));
+ builder.AddLine(new Vector2(-86.1159973F, -278.996002F));
+ builder.AddLine(new Vector2(-89.3919983F, -278.996002F));
+ builder.AddLine(new Vector2(-89.3919983F, -261.895996F));
+ builder.AddLine(new Vector2(-86.1159973F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0677()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-103.431999F, -261.895996F));
+ builder.AddLine(new Vector2(-103.431999F, -287.600006F));
+ builder.AddLine(new Vector2(-106.671997F, -287.600006F));
+ builder.AddLine(new Vector2(-106.671997F, -261.895996F));
+ builder.AddLine(new Vector2(-103.431999F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-91.552002F, -261.895996F));
+ builder.AddLine(new Vector2(-100.552002F, -271.652008F));
+ builder.AddLine(new Vector2(-100.695999F, -269.779999F));
+ builder.AddLine(new Vector2(-91.8759995F, -278.996002F));
+ builder.AddLine(new Vector2(-95.8359985F, -278.996002F));
+ builder.AddLine(new Vector2(-103.720001F, -270.644012F));
+ builder.AddLine(new Vector2(-95.7279968F, -261.895996F));
+ builder.AddLine(new Vector2(-91.552002F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0678()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-121.720001F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(-120.543999F, -262.79599F), new Vector2(-119.536003F, -263.528015F), new Vector2(-118.695999F, -264.488007F));
+ builder.AddLine(new Vector2(-120.783997F, -266.612F));
+ builder.AddCubicBezier(new Vector2(-121.360001F, -265.940002F), new Vector2(-122.050003F, -265.436005F), new Vector2(-122.853996F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(-123.657997F, -264.764008F), new Vector2(-124.540001F, -264.596008F), new Vector2(-125.5F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-126.652F, -264.596008F), new Vector2(-127.671997F, -264.84201F), new Vector2(-128.559998F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(-129.447998F, -265.825989F), new Vector2(-130.132004F, -266.522003F), new Vector2(-130.612F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-131.091995F, -268.321991F), new Vector2(-131.332001F, -269.372009F), new Vector2(-131.332001F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(-131.332001F, -271.747986F), new Vector2(-131.104004F, -272.768005F), new Vector2(-130.647995F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(-130.192001F, -274.496002F), new Vector2(-129.544006F, -275.167999F), new Vector2(-128.703995F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(-127.863998F, -276.127991F), new Vector2(-126.891998F, -276.368011F), new Vector2(-125.788002F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(-124.732002F, -276.368011F), new Vector2(-123.832001F, -276.145996F), new Vector2(-123.087997F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(-122.344002F, -275.257996F), new Vector2(-121.767998F, -274.634003F), new Vector2(-121.360001F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(-120.952003F, -273.026001F), new Vector2(-120.748001F, -272.048004F), new Vector2(-120.748001F, -270.895996F));
+ builder.AddLine(new Vector2(-119.559998F, -271.940002F));
+ builder.AddLine(new Vector2(-132.268005F, -271.940002F));
+ builder.AddLine(new Vector2(-132.268005F, -269.23999F));
+ builder.AddLine(new Vector2(-117.832001F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(-117.760002F, -269.575989F), new Vector2(-117.711998F, -269.881989F), new Vector2(-117.688004F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(-117.664001F, -270.43399F), new Vector2(-117.652F, -270.691986F), new Vector2(-117.652F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(-117.652F, -272.563995F), new Vector2(-117.994003F, -274.015991F), new Vector2(-118.678001F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(-119.362F, -276.559998F), new Vector2(-120.316002F, -277.556F), new Vector2(-121.540001F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(-122.764F, -278.996002F), new Vector2(-124.155998F, -279.355988F), new Vector2(-125.716003F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-127.372002F, -279.355988F), new Vector2(-128.865997F, -278.966003F), new Vector2(-130.197998F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-131.529999F, -277.406006F), new Vector2(-132.585999F, -276.343994F), new Vector2(-133.365997F, -275F));
+ builder.AddCubicBezier(new Vector2(-134.145996F, -273.656006F), new Vector2(-134.535995F, -272.144012F), new Vector2(-134.535995F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-134.535995F, -268.76001F), new Vector2(-134.139999F, -267.235992F), new Vector2(-133.348007F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-132.556F, -264.548004F), new Vector2(-131.481995F, -263.485992F), new Vector2(-130.126007F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-128.770004F, -261.925995F), new Vector2(-127.227997F, -261.536011F), new Vector2(-125.5F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-124.155998F, -261.536011F), new Vector2(-122.896004F, -261.787994F), new Vector2(-121.720001F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0679()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-149.908005F, -261.895996F));
+ builder.AddLine(new Vector2(-149.908005F, -287.600006F));
+ builder.AddLine(new Vector2(-153.147995F, -287.600006F));
+ builder.AddLine(new Vector2(-153.147995F, -261.895996F));
+ builder.AddLine(new Vector2(-149.908005F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-137.811996F, -261.895996F));
+ builder.AddLine(new Vector2(-137.811996F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(-137.811996F, -273.859985F), new Vector2(-138.100006F, -275.048004F), new Vector2(-138.675995F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-139.251999F, -277.112F), new Vector2(-140.037994F, -277.915985F), new Vector2(-141.033997F, -278.492004F));
+ builder.AddCubicBezier(new Vector2(-142.029999F, -279.067993F), new Vector2(-143.175995F, -279.355988F), new Vector2(-144.472F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-145.768005F, -279.355988F), new Vector2(-146.932007F, -279.062012F), new Vector2(-147.964005F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(-148.996002F, -277.885986F), new Vector2(-149.800003F, -277.088013F), new Vector2(-150.376007F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-150.951996F, -275.071991F), new Vector2(-151.240005F, -273.920013F), new Vector2(-151.240005F, -272.623993F));
+ builder.AddLine(new Vector2(-149.908005F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(-149.908005F, -272.731995F), new Vector2(-149.716003F, -273.5F), new Vector2(-149.332001F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(-148.947998F, -274.843994F), new Vector2(-148.419998F, -275.372009F), new Vector2(-147.748001F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(-147.076004F, -276.140015F), new Vector2(-146.307999F, -276.332001F), new Vector2(-145.444F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-144.147995F, -276.332001F), new Vector2(-143.098007F, -275.911987F), new Vector2(-142.294006F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(-141.490005F, -274.231995F), new Vector2(-141.087997F, -273.164001F), new Vector2(-141.087997F, -271.868011F));
+ builder.AddLine(new Vector2(-141.087997F, -261.895996F));
+ builder.AddLine(new Vector2(-137.811996F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0680()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-156.315994F, -276.044006F));
+ builder.AddLine(new Vector2(-156.315994F, -278.996002F));
+ builder.AddLine(new Vector2(-167.979996F, -278.996002F));
+ builder.AddLine(new Vector2(-167.979996F, -276.044006F));
+ builder.AddLine(new Vector2(-156.315994F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-160.528F, -261.895996F));
+ builder.AddLine(new Vector2(-160.528F, -286.160004F));
+ builder.AddLine(new Vector2(-163.768005F, -286.160004F));
+ builder.AddLine(new Vector2(-163.768005F, -261.895996F));
+ builder.AddLine(new Vector2(-160.528F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0681()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-178.563995F, -287.600006F));
+ builder.AddLine(new Vector2(-181.839996F, -287.600006F));
+ builder.AddLine(new Vector2(-181.839996F, -274.820007F));
+ builder.AddLine(new Vector2(-181.227997F, -270.679993F));
+ builder.AddLine(new Vector2(-181.839996F, -266.503998F));
+ builder.AddLine(new Vector2(-181.839996F, -261.895996F));
+ builder.AddLine(new Vector2(-178.563995F, -261.895996F));
+ builder.AddLine(new Vector2(-178.563995F, -287.600006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-189.886002F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(-190.714005F, -265.825989F), new Vector2(-191.362F, -266.515991F), new Vector2(-191.830002F, -267.403992F));
+ builder.AddCubicBezier(new Vector2(-192.298004F, -268.291992F), new Vector2(-192.531998F, -269.312012F), new Vector2(-192.531998F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-192.531998F, -271.615997F), new Vector2(-192.298004F, -272.630005F), new Vector2(-191.830002F, -273.506012F));
+ builder.AddCubicBezier(new Vector2(-191.362F, -274.381989F), new Vector2(-190.720001F, -275.06601F), new Vector2(-189.904007F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(-189.087997F, -276.049988F), new Vector2(-188.139999F, -276.29599F), new Vector2(-187.059998F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-185.979996F, -276.29599F), new Vector2(-185.031998F, -276.044006F), new Vector2(-184.216003F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-183.399994F, -275.036011F), new Vector2(-182.764008F, -274.346008F), new Vector2(-182.307999F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-181.852005F, -272.593994F), new Vector2(-181.623993F, -271.579987F), new Vector2(-181.623993F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-181.623993F, -269.299988F), new Vector2(-181.852005F, -268.298004F), new Vector2(-182.307999F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-182.764008F, -266.54599F), new Vector2(-183.399994F, -265.855988F), new Vector2(-184.216003F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-185.031998F, -264.847992F), new Vector2(-185.979996F, -264.596008F), new Vector2(-187.059998F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-188.115997F, -264.596008F), new Vector2(-189.057999F, -264.84201F), new Vector2(-189.886002F, -265.334015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-184.072006F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-183.039993F, -262.885986F), new Vector2(-182.212006F, -263.635986F), new Vector2(-181.587997F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-180.964005F, -265.556F), new Vector2(-180.615997F, -266.64801F), new Vector2(-180.544006F, -267.872009F));
+ builder.AddLine(new Vector2(-180.544006F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-180.615997F, -274.268005F), new Vector2(-180.970001F, -275.365997F), new Vector2(-181.606003F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-182.242004F, -277.261993F), new Vector2(-183.076004F, -278.006012F), new Vector2(-184.108002F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-185.139999F, -279.085999F), new Vector2(-186.304001F, -279.355988F), new Vector2(-187.600006F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-189.160004F, -279.355988F), new Vector2(-190.563995F, -278.959991F), new Vector2(-191.811996F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-193.059998F, -277.376007F), new Vector2(-194.050003F, -276.308014F), new Vector2(-194.781998F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-195.514008F, -273.619995F), new Vector2(-195.880005F, -272.108002F), new Vector2(-195.880005F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-195.880005F, -268.747986F), new Vector2(-195.514008F, -267.235992F), new Vector2(-194.781998F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-194.050003F, -264.548004F), new Vector2(-193.059998F, -263.485992F), new Vector2(-191.811996F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-190.563995F, -261.925995F), new Vector2(-189.160004F, -261.536011F), new Vector2(-187.600006F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-186.279999F, -261.536011F), new Vector2(-185.104004F, -261.806F), new Vector2(-184.072006F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0682()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-199.731995F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-199.348007F, -283.406006F), new Vector2(-199.156006F, -283.903992F), new Vector2(-199.156006F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-199.156006F, -285.079987F), new Vector2(-199.348007F, -285.56601F), new Vector2(-199.731995F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-200.115997F, -286.358002F), new Vector2(-200.608002F, -286.556F), new Vector2(-201.207993F, -286.556F));
+ builder.AddCubicBezier(new Vector2(-201.807999F, -286.556F), new Vector2(-202.300003F, -286.358002F), new Vector2(-202.684006F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-203.067993F, -285.56601F), new Vector2(-203.259995F, -285.079987F), new Vector2(-203.259995F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-203.259995F, -283.903992F), new Vector2(-203.067993F, -283.406006F), new Vector2(-202.684006F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-202.300003F, -282.614014F), new Vector2(-201.807999F, -282.415985F), new Vector2(-201.207993F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(-200.608002F, -282.415985F), new Vector2(-200.115997F, -282.614014F), new Vector2(-199.731995F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-199.587997F, -261.895996F));
+ builder.AddLine(new Vector2(-199.587997F, -278.996002F));
+ builder.AddLine(new Vector2(-202.863998F, -278.996002F));
+ builder.AddLine(new Vector2(-202.863998F, -261.895996F));
+ builder.AddLine(new Vector2(-199.587997F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0683()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-207.255997F, -261.895996F));
+ builder.AddLine(new Vector2(-207.255997F, -272.876007F));
+ builder.AddCubicBezier(new Vector2(-207.255997F, -274.220001F), new Vector2(-207.550003F, -275.372009F), new Vector2(-208.138F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-208.725998F, -277.291992F), new Vector2(-209.511993F, -278.036011F), new Vector2(-210.496002F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-211.479996F, -279.09201F), new Vector2(-212.595993F, -279.355988F), new Vector2(-213.843994F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-215.044006F, -279.355988F), new Vector2(-216.147995F, -279.085999F), new Vector2(-217.156006F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-218.164001F, -278.006012F), new Vector2(-218.985992F, -277.261993F), new Vector2(-219.621994F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-220.257996F, -275.365997F), new Vector2(-220.612F, -274.231995F), new Vector2(-220.684006F, -272.911987F));
+ builder.AddLine(new Vector2(-218.848007F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-218.848007F, -273.09201F), new Vector2(-218.656006F, -273.824005F), new Vector2(-218.272003F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-217.888F, -275.023987F), new Vector2(-217.378006F, -275.492004F), new Vector2(-216.742004F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-216.106003F, -276.164001F), new Vector2(-215.391998F, -276.332001F), new Vector2(-214.600006F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-213.447998F, -276.332001F), new Vector2(-212.481995F, -275.966003F), new Vector2(-211.701996F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-210.921997F, -274.502014F), new Vector2(-210.531998F, -273.5F), new Vector2(-210.531998F, -272.227997F));
+ builder.AddLine(new Vector2(-210.531998F, -261.895996F));
+ builder.AddLine(new Vector2(-207.255997F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-218.848007F, -261.895996F));
+ builder.AddLine(new Vector2(-218.848007F, -272.911987F));
+ builder.AddCubicBezier(new Vector2(-218.848007F, -274.231995F), new Vector2(-219.130005F, -275.372009F), new Vector2(-219.694F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-220.257996F, -277.291992F), new Vector2(-221.026001F, -278.036011F), new Vector2(-221.998001F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-222.970001F, -279.09201F), new Vector2(-224.056F, -279.355988F), new Vector2(-225.255997F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-226.479996F, -279.355988F), new Vector2(-227.584F, -279.085999F), new Vector2(-228.567993F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-229.552002F, -278.006012F), new Vector2(-230.326004F, -277.256012F), new Vector2(-230.889999F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-231.453995F, -275.335999F), new Vector2(-231.735992F, -274.208008F), new Vector2(-231.735992F, -272.911987F));
+ builder.AddLine(new Vector2(-230.404007F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-230.404007F, -273.09201F), new Vector2(-230.212006F, -273.824005F), new Vector2(-229.828003F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-229.444F, -275.023987F), new Vector2(-228.940002F, -275.492004F), new Vector2(-228.315994F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-227.692001F, -276.164001F), new Vector2(-226.983994F, -276.332001F), new Vector2(-226.192001F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-225.016006F, -276.332001F), new Vector2(-224.037994F, -275.966003F), new Vector2(-223.257996F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-222.477997F, -274.502014F), new Vector2(-222.087997F, -273.5F), new Vector2(-222.087997F, -272.227997F));
+ builder.AddLine(new Vector2(-222.087997F, -261.895996F));
+ builder.AddLine(new Vector2(-218.848007F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-230.404007F, -261.895996F));
+ builder.AddLine(new Vector2(-230.404007F, -278.996002F));
+ builder.AddLine(new Vector2(-233.643997F, -278.996002F));
+ builder.AddLine(new Vector2(-233.643997F, -261.895996F));
+ builder.AddLine(new Vector2(-230.404007F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0684()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-238.360001F, -261.895996F));
+ builder.AddLine(new Vector2(-238.360001F, -278.996002F));
+ builder.AddLine(new Vector2(-241.636002F, -278.996002F));
+ builder.AddLine(new Vector2(-241.636002F, -274.820007F));
+ builder.AddLine(new Vector2(-241.024002F, -270.679993F));
+ builder.AddLine(new Vector2(-241.636002F, -266.503998F));
+ builder.AddLine(new Vector2(-241.636002F, -261.895996F));
+ builder.AddLine(new Vector2(-238.360001F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-249.664001F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-250.503998F, -265.855988F), new Vector2(-251.158005F, -266.54599F), new Vector2(-251.626007F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-252.093994F, -268.298004F), new Vector2(-252.328003F, -269.312012F), new Vector2(-252.328003F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-252.328003F, -271.59201F), new Vector2(-252.093994F, -272.593994F), new Vector2(-251.626007F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-251.158005F, -274.346008F), new Vector2(-250.509995F, -275.036011F), new Vector2(-249.682007F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-248.854004F, -276.044006F), new Vector2(-247.899994F, -276.29599F), new Vector2(-246.820007F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-245.740005F, -276.29599F), new Vector2(-244.798004F, -276.049988F), new Vector2(-243.994003F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(-243.190002F, -275.06601F), new Vector2(-242.559998F, -274.376007F), new Vector2(-242.104004F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(-241.647995F, -272.600006F), new Vector2(-241.419998F, -271.579987F), new Vector2(-241.419998F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-241.419998F, -268.723999F), new Vector2(-241.912003F, -267.325989F), new Vector2(-242.895996F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(-243.880005F, -265.141998F), new Vector2(-245.175995F, -264.596008F), new Vector2(-246.783997F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-247.863998F, -264.596008F), new Vector2(-248.824005F, -264.847992F), new Vector2(-249.664001F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-243.832001F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-242.800003F, -262.885986F), new Vector2(-241.977997F, -263.635986F), new Vector2(-241.365997F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-240.753998F, -265.556F), new Vector2(-240.412003F, -266.64801F), new Vector2(-240.339996F, -267.872009F));
+ builder.AddLine(new Vector2(-240.339996F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-240.412003F, -274.268005F), new Vector2(-240.759995F, -275.365997F), new Vector2(-241.384003F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-242.007996F, -277.261993F), new Vector2(-242.830002F, -278.006012F), new Vector2(-243.850006F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-244.869995F, -279.085999F), new Vector2(-246.028F, -279.355988F), new Vector2(-247.324005F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-248.908005F, -279.355988F), new Vector2(-250.330002F, -278.959991F), new Vector2(-251.589996F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-252.850006F, -277.376007F), new Vector2(-253.845993F, -276.308014F), new Vector2(-254.578003F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-255.309998F, -273.619995F), new Vector2(-255.675995F, -272.108002F), new Vector2(-255.675995F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-255.675995F, -268.747986F), new Vector2(-255.309998F, -267.235992F), new Vector2(-254.578003F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-253.845993F, -264.548004F), new Vector2(-252.850006F, -263.485992F), new Vector2(-251.589996F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-250.330002F, -261.925995F), new Vector2(-248.908005F, -261.536011F), new Vector2(-247.324005F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-246.028F, -261.536011F), new Vector2(-244.863998F, -261.806F), new Vector2(-243.832001F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0685()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-269.932007F, -256.928009F));
+ builder.AddLine(new Vector2(-267.519989F, -261.391998F));
+ builder.AddCubicBezier(new Vector2(-267.208008F, -261.992004F), new Vector2(-266.997986F, -262.477997F), new Vector2(-266.890015F, -262.850006F));
+ builder.AddCubicBezier(new Vector2(-266.782013F, -263.221985F), new Vector2(-266.727997F, -263.540009F), new Vector2(-266.727997F, -263.803986F));
+ builder.AddCubicBezier(new Vector2(-266.727997F, -264.5F), new Vector2(-266.967987F, -265.082001F), new Vector2(-267.447998F, -265.549988F));
+ builder.AddCubicBezier(new Vector2(-267.928009F, -266.018005F), new Vector2(-268.480011F, -266.252014F), new Vector2(-269.104004F, -266.252014F));
+ builder.AddCubicBezier(new Vector2(-269.799988F, -266.252014F), new Vector2(-270.376007F, -266.018005F), new Vector2(-270.832001F, -265.549988F));
+ builder.AddCubicBezier(new Vector2(-271.287994F, -265.082001F), new Vector2(-271.515991F, -264.5F), new Vector2(-271.515991F, -263.803986F));
+ builder.AddCubicBezier(new Vector2(-271.515991F, -263.179993F), new Vector2(-271.306F, -262.65799F), new Vector2(-270.885986F, -262.238007F));
+ builder.AddCubicBezier(new Vector2(-270.466003F, -261.817993F), new Vector2(-270.003998F, -261.608002F), new Vector2(-269.5F, -261.608002F));
+ builder.AddCubicBezier(new Vector2(-269.26001F, -261.608002F), new Vector2(-269.044006F, -261.691986F), new Vector2(-268.85199F, -261.859985F));
+ builder.AddCubicBezier(new Vector2(-268.660004F, -262.028015F), new Vector2(-268.503998F, -262.243988F), new Vector2(-268.384003F, -262.507996F));
+ builder.AddLine(new Vector2(-269.536011F, -262.220001F));
+ builder.AddLine(new Vector2(-271.768005F, -257.936005F));
+ builder.AddLine(new Vector2(-269.932007F, -256.928009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0686()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-273.891998F, -276.044006F));
+ builder.AddLine(new Vector2(-273.891998F, -278.996002F));
+ builder.AddLine(new Vector2(-285.556F, -278.996002F));
+ builder.AddLine(new Vector2(-285.556F, -276.044006F));
+ builder.AddLine(new Vector2(-273.891998F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-278.104004F, -261.895996F));
+ builder.AddLine(new Vector2(-278.104004F, -286.160004F));
+ builder.AddLine(new Vector2(-281.343994F, -286.160004F));
+ builder.AddLine(new Vector2(-281.343994F, -261.895996F));
+ builder.AddLine(new Vector2(-278.104004F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0687()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-300.243988F, -261.895996F));
+ builder.AddLine(new Vector2(-300.243988F, -278.996002F));
+ builder.AddLine(new Vector2(-303.484009F, -278.996002F));
+ builder.AddLine(new Vector2(-303.484009F, -261.895996F));
+ builder.AddLine(new Vector2(-300.243988F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-288.14801F, -261.895996F));
+ builder.AddLine(new Vector2(-288.14801F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(-288.14801F, -273.691986F), new Vector2(-288.436005F, -274.802002F), new Vector2(-289.011993F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(-289.588013F, -276.890015F), new Vector2(-290.373993F, -277.735992F), new Vector2(-291.369995F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(-292.365997F, -279.032013F), new Vector2(-293.511993F, -279.355988F), new Vector2(-294.808014F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-296.104004F, -279.355988F), new Vector2(-297.268005F, -279.062012F), new Vector2(-298.299988F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(-299.332001F, -277.885986F), new Vector2(-300.135986F, -277.088013F), new Vector2(-300.712006F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-301.287994F, -275.071991F), new Vector2(-301.575989F, -273.920013F), new Vector2(-301.575989F, -272.623993F));
+ builder.AddLine(new Vector2(-300.243988F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(-300.243988F, -272.731995F), new Vector2(-300.052002F, -273.5F), new Vector2(-299.667999F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(-299.283997F, -274.843994F), new Vector2(-298.756012F, -275.372009F), new Vector2(-298.084015F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(-297.411987F, -276.140015F), new Vector2(-296.644012F, -276.332001F), new Vector2(-295.779999F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-294.484009F, -276.332001F), new Vector2(-293.43399F, -275.911987F), new Vector2(-292.630005F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(-291.825989F, -274.231995F), new Vector2(-291.424011F, -273.164001F), new Vector2(-291.424011F, -271.868011F));
+ builder.AddLine(new Vector2(-291.424011F, -261.895996F));
+ builder.AddLine(new Vector2(-288.14801F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0688()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-311.079987F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(-309.903992F, -262.79599F), new Vector2(-308.895996F, -263.528015F), new Vector2(-308.056F, -264.488007F));
+ builder.AddLine(new Vector2(-310.144012F, -266.612F));
+ builder.AddCubicBezier(new Vector2(-310.720001F, -265.940002F), new Vector2(-311.410004F, -265.436005F), new Vector2(-312.213989F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(-313.018005F, -264.764008F), new Vector2(-313.899994F, -264.596008F), new Vector2(-314.859985F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-316.011993F, -264.596008F), new Vector2(-317.032013F, -264.84201F), new Vector2(-317.920013F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(-318.808014F, -265.825989F), new Vector2(-319.492004F, -266.522003F), new Vector2(-319.971985F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-320.451996F, -268.321991F), new Vector2(-320.691986F, -269.372009F), new Vector2(-320.691986F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(-320.691986F, -271.747986F), new Vector2(-320.463989F, -272.768005F), new Vector2(-320.007996F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(-319.552002F, -274.496002F), new Vector2(-318.903992F, -275.167999F), new Vector2(-318.063995F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(-317.223999F, -276.127991F), new Vector2(-316.252014F, -276.368011F), new Vector2(-315.14801F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(-314.09201F, -276.368011F), new Vector2(-313.191986F, -276.145996F), new Vector2(-312.447998F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(-311.70401F, -275.257996F), new Vector2(-311.127991F, -274.634003F), new Vector2(-310.720001F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(-310.312012F, -273.026001F), new Vector2(-310.108002F, -272.048004F), new Vector2(-310.108002F, -270.895996F));
+ builder.AddLine(new Vector2(-308.920013F, -271.940002F));
+ builder.AddLine(new Vector2(-321.627991F, -271.940002F));
+ builder.AddLine(new Vector2(-321.627991F, -269.23999F));
+ builder.AddLine(new Vector2(-307.191986F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(-307.119995F, -269.575989F), new Vector2(-307.071991F, -269.881989F), new Vector2(-307.048004F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(-307.023987F, -270.43399F), new Vector2(-307.011993F, -270.691986F), new Vector2(-307.011993F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(-307.011993F, -272.563995F), new Vector2(-307.354004F, -274.015991F), new Vector2(-308.037994F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(-308.721985F, -276.559998F), new Vector2(-309.675995F, -277.556F), new Vector2(-310.899994F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(-312.123993F, -278.996002F), new Vector2(-313.515991F, -279.355988F), new Vector2(-315.075989F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-316.731995F, -279.355988F), new Vector2(-318.226013F, -278.966003F), new Vector2(-319.558014F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-320.890015F, -277.406006F), new Vector2(-321.946014F, -276.343994F), new Vector2(-322.726013F, -275F));
+ builder.AddCubicBezier(new Vector2(-323.506012F, -273.656006F), new Vector2(-323.895996F, -272.144012F), new Vector2(-323.895996F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-323.895996F, -268.76001F), new Vector2(-323.5F, -267.235992F), new Vector2(-322.708008F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-321.915985F, -264.548004F), new Vector2(-320.84201F, -263.485992F), new Vector2(-319.485992F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-318.130005F, -261.925995F), new Vector2(-316.588013F, -261.536011F), new Vector2(-314.859985F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-313.515991F, -261.536011F), new Vector2(-312.256012F, -261.787994F), new Vector2(-311.079987F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0689()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-327.171997F, -261.895996F));
+ builder.AddLine(new Vector2(-327.171997F, -272.876007F));
+ builder.AddCubicBezier(new Vector2(-327.171997F, -274.220001F), new Vector2(-327.466003F, -275.372009F), new Vector2(-328.053986F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-328.641998F, -277.291992F), new Vector2(-329.428009F, -278.036011F), new Vector2(-330.411987F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-331.395996F, -279.09201F), new Vector2(-332.511993F, -279.355988F), new Vector2(-333.76001F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-334.959991F, -279.355988F), new Vector2(-336.063995F, -279.085999F), new Vector2(-337.071991F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-338.079987F, -278.006012F), new Vector2(-338.902008F, -277.261993F), new Vector2(-339.537994F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-340.174011F, -275.365997F), new Vector2(-340.528015F, -274.231995F), new Vector2(-340.600006F, -272.911987F));
+ builder.AddLine(new Vector2(-338.764008F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-338.764008F, -273.09201F), new Vector2(-338.571991F, -273.824005F), new Vector2(-338.187988F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-337.803986F, -275.023987F), new Vector2(-337.294006F, -275.492004F), new Vector2(-336.65799F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-336.022003F, -276.164001F), new Vector2(-335.308014F, -276.332001F), new Vector2(-334.515991F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-333.364014F, -276.332001F), new Vector2(-332.39801F, -275.966003F), new Vector2(-331.618011F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-330.838013F, -274.502014F), new Vector2(-330.447998F, -273.5F), new Vector2(-330.447998F, -272.227997F));
+ builder.AddLine(new Vector2(-330.447998F, -261.895996F));
+ builder.AddLine(new Vector2(-327.171997F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-338.764008F, -261.895996F));
+ builder.AddLine(new Vector2(-338.764008F, -272.911987F));
+ builder.AddCubicBezier(new Vector2(-338.764008F, -274.231995F), new Vector2(-339.04599F, -275.372009F), new Vector2(-339.609985F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-340.174011F, -277.291992F), new Vector2(-340.941986F, -278.036011F), new Vector2(-341.914001F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-342.885986F, -279.09201F), new Vector2(-343.971985F, -279.355988F), new Vector2(-345.171997F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-346.395996F, -279.355988F), new Vector2(-347.5F, -279.085999F), new Vector2(-348.484009F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-349.467987F, -278.006012F), new Vector2(-350.242004F, -277.256012F), new Vector2(-350.806F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-351.369995F, -275.335999F), new Vector2(-351.652008F, -274.208008F), new Vector2(-351.652008F, -272.911987F));
+ builder.AddLine(new Vector2(-350.320007F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-350.320007F, -273.09201F), new Vector2(-350.127991F, -273.824005F), new Vector2(-349.743988F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-349.359985F, -275.023987F), new Vector2(-348.855988F, -275.492004F), new Vector2(-348.231995F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-347.608002F, -276.164001F), new Vector2(-346.899994F, -276.332001F), new Vector2(-346.108002F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-344.932007F, -276.332001F), new Vector2(-343.95401F, -275.966003F), new Vector2(-343.174011F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-342.394012F, -274.502014F), new Vector2(-342.003998F, -273.5F), new Vector2(-342.003998F, -272.227997F));
+ builder.AddLine(new Vector2(-342.003998F, -261.895996F));
+ builder.AddLine(new Vector2(-338.764008F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-350.320007F, -261.895996F));
+ builder.AddLine(new Vector2(-350.320007F, -278.996002F));
+ builder.AddLine(new Vector2(-353.559998F, -278.996002F));
+ builder.AddLine(new Vector2(-353.559998F, -261.895996F));
+ builder.AddLine(new Vector2(-350.320007F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0690()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-370.048004F, -261.895996F));
+ builder.AddLine(new Vector2(-370.048004F, -278.996002F));
+ builder.AddLine(new Vector2(-373.287994F, -278.996002F));
+ builder.AddLine(new Vector2(-373.287994F, -261.895996F));
+ builder.AddLine(new Vector2(-370.048004F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-357.951996F, -261.895996F));
+ builder.AddLine(new Vector2(-357.951996F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(-357.951996F, -273.691986F), new Vector2(-358.23999F, -274.802002F), new Vector2(-358.81601F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(-359.391998F, -276.890015F), new Vector2(-360.178009F, -277.735992F), new Vector2(-361.174011F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(-362.170013F, -279.032013F), new Vector2(-363.31601F, -279.355988F), new Vector2(-364.612F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-365.90799F, -279.355988F), new Vector2(-367.071991F, -279.062012F), new Vector2(-368.104004F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(-369.135986F, -277.885986F), new Vector2(-369.940002F, -277.088013F), new Vector2(-370.515991F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-371.09201F, -275.071991F), new Vector2(-371.380005F, -273.920013F), new Vector2(-371.380005F, -272.623993F));
+ builder.AddLine(new Vector2(-370.048004F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(-370.048004F, -272.731995F), new Vector2(-369.855988F, -273.5F), new Vector2(-369.471985F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(-369.088013F, -274.843994F), new Vector2(-368.559998F, -275.372009F), new Vector2(-367.888F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(-367.216003F, -276.140015F), new Vector2(-366.447998F, -276.332001F), new Vector2(-365.584015F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-364.287994F, -276.332001F), new Vector2(-363.238007F, -275.911987F), new Vector2(-362.43399F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(-361.630005F, -274.231995F), new Vector2(-361.227997F, -273.164001F), new Vector2(-361.227997F, -271.868011F));
+ builder.AddLine(new Vector2(-361.227997F, -261.895996F));
+ builder.AddLine(new Vector2(-357.951996F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0691()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-383.403992F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(-382.635986F, -275.911987F), new Vector2(-381.652008F, -276.29599F), new Vector2(-380.451996F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-379.876007F, -276.29599F), new Vector2(-379.372009F, -276.212006F), new Vector2(-378.940002F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(-378.507996F, -275.876007F), new Vector2(-378.112F, -275.600006F), new Vector2(-377.752014F, -275.216003F));
+ builder.AddLine(new Vector2(-375.627991F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-376.227997F, -278.108002F), new Vector2(-376.876007F, -278.605988F), new Vector2(-377.571991F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(-378.268005F, -279.205994F), new Vector2(-379.048004F, -279.355988F), new Vector2(-379.911987F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-381.808014F, -279.355988F), new Vector2(-383.26001F, -278.708008F), new Vector2(-384.268005F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-385.276001F, -276.115997F), new Vector2(-385.779999F, -274.376007F), new Vector2(-385.779999F, -272.191986F));
+ builder.AddLine(new Vector2(-384.556F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(-384.556F, -273.200012F), new Vector2(-384.171997F, -274.376007F), new Vector2(-383.403992F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-384.556F, -261.895996F));
+ builder.AddLine(new Vector2(-384.556F, -278.996002F));
+ builder.AddLine(new Vector2(-387.79599F, -278.996002F));
+ builder.AddLine(new Vector2(-387.79599F, -261.895996F));
+ builder.AddLine(new Vector2(-384.556F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0692()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-395.391998F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(-394.216003F, -262.79599F), new Vector2(-393.208008F, -263.528015F), new Vector2(-392.368011F, -264.488007F));
+ builder.AddLine(new Vector2(-394.455994F, -266.612F));
+ builder.AddCubicBezier(new Vector2(-395.032013F, -265.940002F), new Vector2(-395.721985F, -265.436005F), new Vector2(-396.526001F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(-397.329987F, -264.764008F), new Vector2(-398.212006F, -264.596008F), new Vector2(-399.171997F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-400.324005F, -264.596008F), new Vector2(-401.343994F, -264.84201F), new Vector2(-402.231995F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(-403.119995F, -265.825989F), new Vector2(-403.803986F, -266.522003F), new Vector2(-404.283997F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-404.764008F, -268.321991F), new Vector2(-405.003998F, -269.372009F), new Vector2(-405.003998F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(-405.003998F, -271.747986F), new Vector2(-404.776001F, -272.768005F), new Vector2(-404.320007F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(-403.864014F, -274.496002F), new Vector2(-403.216003F, -275.167999F), new Vector2(-402.376007F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(-401.536011F, -276.127991F), new Vector2(-400.563995F, -276.368011F), new Vector2(-399.459991F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(-398.403992F, -276.368011F), new Vector2(-397.503998F, -276.145996F), new Vector2(-396.76001F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(-396.015991F, -275.257996F), new Vector2(-395.440002F, -274.634003F), new Vector2(-395.032013F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(-394.623993F, -273.026001F), new Vector2(-394.420013F, -272.048004F), new Vector2(-394.420013F, -270.895996F));
+ builder.AddLine(new Vector2(-393.231995F, -271.940002F));
+ builder.AddLine(new Vector2(-405.940002F, -271.940002F));
+ builder.AddLine(new Vector2(-405.940002F, -269.23999F));
+ builder.AddLine(new Vector2(-391.503998F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(-391.432007F, -269.575989F), new Vector2(-391.384003F, -269.881989F), new Vector2(-391.359985F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(-391.335999F, -270.43399F), new Vector2(-391.324005F, -270.691986F), new Vector2(-391.324005F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(-391.324005F, -272.563995F), new Vector2(-391.665985F, -274.015991F), new Vector2(-392.350006F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(-393.033997F, -276.559998F), new Vector2(-393.988007F, -277.556F), new Vector2(-395.212006F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(-396.436005F, -278.996002F), new Vector2(-397.828003F, -279.355988F), new Vector2(-399.388F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-401.044006F, -279.355988F), new Vector2(-402.537994F, -278.966003F), new Vector2(-403.869995F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-405.201996F, -277.406006F), new Vector2(-406.257996F, -276.343994F), new Vector2(-407.037994F, -275F));
+ builder.AddCubicBezier(new Vector2(-407.817993F, -273.656006F), new Vector2(-408.208008F, -272.144012F), new Vector2(-408.208008F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-408.208008F, -268.76001F), new Vector2(-407.812012F, -267.235992F), new Vector2(-407.019989F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-406.227997F, -264.548004F), new Vector2(-405.153992F, -263.485992F), new Vector2(-403.798004F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-402.441986F, -261.925995F), new Vector2(-400.899994F, -261.536011F), new Vector2(-399.171997F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-397.828003F, -261.536011F), new Vector2(-396.567993F, -261.787994F), new Vector2(-395.391998F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0693()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-417.063995F, -261.895996F));
+ builder.AddLine(new Vector2(-409.216003F, -278.996002F));
+ builder.AddLine(new Vector2(-412.671997F, -278.996002F));
+ builder.AddLine(new Vector2(-419.007996F, -264.559998F));
+ builder.AddLine(new Vector2(-416.920013F, -264.559998F));
+ builder.AddLine(new Vector2(-423.220001F, -278.996002F));
+ builder.AddLine(new Vector2(-426.820007F, -278.996002F));
+ builder.AddLine(new Vector2(-418.971985F, -261.895996F));
+ builder.AddLine(new Vector2(-417.063995F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0694()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-439.600006F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-440.440002F, -265.928009F), new Vector2(-441.100006F, -266.618011F), new Vector2(-441.579987F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-442.059998F, -268.369995F), new Vector2(-442.299988F, -269.372009F), new Vector2(-442.299988F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-442.299988F, -271.604004F), new Vector2(-442.059998F, -272.588013F), new Vector2(-441.579987F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-441.100006F, -274.31601F), new Vector2(-440.440002F, -274.993988F), new Vector2(-439.600006F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-438.76001F, -275.977997F), new Vector2(-437.812012F, -276.223999F), new Vector2(-436.756012F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(-435.652008F, -276.223999F), new Vector2(-434.686005F, -275.977997F), new Vector2(-433.858002F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-433.029999F, -274.993988F), new Vector2(-432.369995F, -274.31601F), new Vector2(-431.877991F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-431.385986F, -272.588013F), new Vector2(-431.140015F, -271.604004F), new Vector2(-431.140015F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-431.140015F, -269.372009F), new Vector2(-431.380005F, -268.369995F), new Vector2(-431.859985F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-432.339996F, -266.618011F), new Vector2(-433F, -265.928009F), new Vector2(-433.839996F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-434.679993F, -264.920013F), new Vector2(-435.652008F, -264.667999F), new Vector2(-436.756012F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-437.812012F, -264.667999F), new Vector2(-438.76001F, -264.920013F), new Vector2(-439.600006F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-432.201996F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-430.846008F, -263.515991F), new Vector2(-429.772003F, -264.589996F), new Vector2(-428.980011F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-428.187988F, -267.302002F), new Vector2(-427.791992F, -268.820007F), new Vector2(-427.791992F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-427.791992F, -272.156006F), new Vector2(-428.187988F, -273.656006F), new Vector2(-428.980011F, -275F));
+ builder.AddCubicBezier(new Vector2(-429.772003F, -276.343994F), new Vector2(-430.846008F, -277.406006F), new Vector2(-432.201996F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-433.558014F, -278.966003F), new Vector2(-435.075989F, -279.355988F), new Vector2(-436.756012F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-438.411987F, -279.355988F), new Vector2(-439.911987F, -278.959991F), new Vector2(-441.256012F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-442.600006F, -277.376007F), new Vector2(-443.667999F, -276.313995F), new Vector2(-444.459991F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(-445.252014F, -273.649994F), new Vector2(-445.64801F, -272.156006F), new Vector2(-445.64801F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-445.64801F, -268.820007F), new Vector2(-445.252014F, -267.302002F), new Vector2(-444.459991F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-443.667999F, -264.589996F), new Vector2(-442.600006F, -263.515991F), new Vector2(-441.256012F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-439.911987F, -261.932007F), new Vector2(-438.411987F, -261.536011F), new Vector2(-436.756012F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-435.075989F, -261.536011F), new Vector2(-433.558014F, -261.932007F), new Vector2(-432.201996F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0695()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-460.462006F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-461.290009F, -266.414001F), new Vector2(-461.937988F, -267.067993F), new Vector2(-462.406006F, -267.90799F));
+ builder.AddCubicBezier(new Vector2(-462.873993F, -268.747986F), new Vector2(-463.108002F, -269.708008F), new Vector2(-463.108002F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(-463.108002F, -271.868011F), new Vector2(-462.873993F, -272.821991F), new Vector2(-462.406006F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(-461.937988F, -274.477997F), new Vector2(-461.29599F, -275.126007F), new Vector2(-460.480011F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(-459.664001F, -276.062012F), new Vector2(-458.716003F, -276.29599F), new Vector2(-457.635986F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-456.579987F, -276.29599F), new Vector2(-455.649994F, -276.062012F), new Vector2(-454.846008F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(-454.041992F, -275.126007F), new Vector2(-453.417999F, -274.477997F), new Vector2(-452.973999F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(-452.529999F, -272.821991F), new Vector2(-452.308014F, -271.855988F), new Vector2(-452.308014F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(-452.308014F, -269.64801F), new Vector2(-452.529999F, -268.682007F), new Vector2(-452.973999F, -267.854004F));
+ builder.AddCubicBezier(new Vector2(-453.417999F, -267.026001F), new Vector2(-454.036011F, -266.384003F), new Vector2(-454.828003F, -265.928009F));
+ builder.AddCubicBezier(new Vector2(-455.619995F, -265.471985F), new Vector2(-456.556F, -265.243988F), new Vector2(-457.635986F, -265.243988F));
+ builder.AddCubicBezier(new Vector2(-458.691986F, -265.243988F), new Vector2(-459.634003F, -265.477997F), new Vector2(-460.462006F, -265.946014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-454.720001F, -262.976013F));
+ builder.AddCubicBezier(new Vector2(-453.687988F, -263.503998F), new Vector2(-452.865997F, -264.242004F), new Vector2(-452.253998F, -265.190002F));
+ builder.AddCubicBezier(new Vector2(-451.641998F, -266.138F), new Vector2(-451.299988F, -267.235992F), new Vector2(-451.227997F, -268.484009F));
+ builder.AddLine(new Vector2(-451.227997F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-451.299988F, -274.291992F), new Vector2(-451.635986F, -275.402008F), new Vector2(-452.235992F, -276.350006F));
+ builder.AddCubicBezier(new Vector2(-452.835999F, -277.298004F), new Vector2(-453.65799F, -278.036011F), new Vector2(-454.701996F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-455.746002F, -279.09201F), new Vector2(-456.940002F, -279.355988F), new Vector2(-458.283997F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-459.820007F, -279.355988F), new Vector2(-461.212006F, -278.977997F), new Vector2(-462.459991F, -278.221985F));
+ builder.AddCubicBezier(new Vector2(-463.708008F, -277.466003F), new Vector2(-464.686005F, -276.446014F), new Vector2(-465.394012F, -275.161987F));
+ builder.AddCubicBezier(new Vector2(-466.10199F, -273.877991F), new Vector2(-466.455994F, -272.420013F), new Vector2(-466.455994F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(-466.455994F, -269.156006F), new Vector2(-466.096008F, -267.686005F), new Vector2(-465.376007F, -266.377991F));
+ builder.AddCubicBezier(new Vector2(-464.656006F, -265.070007F), new Vector2(-463.678009F, -264.044006F), new Vector2(-462.441986F, -263.299988F));
+ builder.AddCubicBezier(new Vector2(-461.205994F, -262.556F), new Vector2(-459.808014F, -262.18399F), new Vector2(-458.247986F, -262.18399F));
+ builder.AddCubicBezier(new Vector2(-456.928009F, -262.18399F), new Vector2(-455.752014F, -262.447998F), new Vector2(-454.720001F, -262.976013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-453.549988F, -255.397995F));
+ builder.AddCubicBezier(new Vector2(-452.194F, -256.082001F), new Vector2(-451.138F, -257.041992F), new Vector2(-450.381989F, -258.278015F));
+ builder.AddCubicBezier(new Vector2(-449.626007F, -259.514008F), new Vector2(-449.247986F, -260.947998F), new Vector2(-449.247986F, -262.579987F));
+ builder.AddLine(new Vector2(-449.247986F, -278.996002F));
+ builder.AddLine(new Vector2(-452.488007F, -278.996002F));
+ builder.AddLine(new Vector2(-452.488007F, -274.496002F));
+ builder.AddLine(new Vector2(-451.911987F, -270.679993F));
+ builder.AddLine(new Vector2(-452.488007F, -266.828003F));
+ builder.AddLine(new Vector2(-452.488007F, -262.579987F));
+ builder.AddCubicBezier(new Vector2(-452.488007F, -261.019989F), new Vector2(-453.003998F, -259.778015F), new Vector2(-454.036011F, -258.854004F));
+ builder.AddCubicBezier(new Vector2(-455.067993F, -257.929993F), new Vector2(-456.447998F, -257.467987F), new Vector2(-458.175995F, -257.467987F));
+ builder.AddCubicBezier(new Vector2(-459.496002F, -257.467987F), new Vector2(-460.635986F, -257.701996F), new Vector2(-461.596008F, -258.170013F));
+ builder.AddCubicBezier(new Vector2(-462.556F, -258.638F), new Vector2(-463.384003F, -259.31601F), new Vector2(-464.079987F, -260.20401F));
+ builder.AddLine(new Vector2(-466.20401F, -258.079987F));
+ builder.AddCubicBezier(new Vector2(-465.364014F, -256.903992F), new Vector2(-464.272003F, -255.992004F), new Vector2(-462.928009F, -255.343994F));
+ builder.AddCubicBezier(new Vector2(-461.584015F, -254.695999F), new Vector2(-460.023987F, -254.371994F), new Vector2(-458.247986F, -254.371994F));
+ builder.AddCubicBezier(new Vector2(-456.471985F, -254.371994F), new Vector2(-454.906006F, -254.714005F), new Vector2(-453.549988F, -255.397995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0696()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-480.388F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(-479.212006F, -262.79599F), new Vector2(-478.20401F, -263.528015F), new Vector2(-477.364014F, -264.488007F));
+ builder.AddLine(new Vector2(-479.451996F, -266.612F));
+ builder.AddCubicBezier(new Vector2(-480.028015F, -265.940002F), new Vector2(-480.717987F, -265.436005F), new Vector2(-481.522003F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(-482.325989F, -264.764008F), new Vector2(-483.208008F, -264.596008F), new Vector2(-484.167999F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-485.320007F, -264.596008F), new Vector2(-486.339996F, -264.84201F), new Vector2(-487.227997F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(-488.115997F, -265.825989F), new Vector2(-488.799988F, -266.522003F), new Vector2(-489.279999F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-489.76001F, -268.321991F), new Vector2(-490F, -269.372009F), new Vector2(-490F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(-490F, -271.747986F), new Vector2(-489.772003F, -272.768005F), new Vector2(-489.31601F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(-488.859985F, -274.496002F), new Vector2(-488.212006F, -275.167999F), new Vector2(-487.372009F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(-486.532013F, -276.127991F), new Vector2(-485.559998F, -276.368011F), new Vector2(-484.455994F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(-483.399994F, -276.368011F), new Vector2(-482.5F, -276.145996F), new Vector2(-481.756012F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(-481.011993F, -275.257996F), new Vector2(-480.436005F, -274.634003F), new Vector2(-480.028015F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(-479.619995F, -273.026001F), new Vector2(-479.415985F, -272.048004F), new Vector2(-479.415985F, -270.895996F));
+ builder.AddLine(new Vector2(-478.227997F, -271.940002F));
+ builder.AddLine(new Vector2(-490.936005F, -271.940002F));
+ builder.AddLine(new Vector2(-490.936005F, -269.23999F));
+ builder.AddLine(new Vector2(-476.5F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(-476.428009F, -269.575989F), new Vector2(-476.380005F, -269.881989F), new Vector2(-476.355988F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(-476.332001F, -270.43399F), new Vector2(-476.320007F, -270.691986F), new Vector2(-476.320007F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(-476.320007F, -272.563995F), new Vector2(-476.661987F, -274.015991F), new Vector2(-477.346008F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(-478.029999F, -276.559998F), new Vector2(-478.984009F, -277.556F), new Vector2(-480.208008F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(-481.432007F, -278.996002F), new Vector2(-482.824005F, -279.355988F), new Vector2(-484.384003F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-486.040009F, -279.355988F), new Vector2(-487.533997F, -278.966003F), new Vector2(-488.865997F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-490.197998F, -277.406006F), new Vector2(-491.253998F, -276.343994F), new Vector2(-492.033997F, -275F));
+ builder.AddCubicBezier(new Vector2(-492.813995F, -273.656006F), new Vector2(-493.20401F, -272.144012F), new Vector2(-493.20401F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-493.20401F, -268.76001F), new Vector2(-492.808014F, -267.235992F), new Vector2(-492.015991F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-491.223999F, -264.548004F), new Vector2(-490.149994F, -263.485992F), new Vector2(-488.794006F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-487.437988F, -261.925995F), new Vector2(-485.895996F, -261.536011F), new Vector2(-484.167999F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-482.824005F, -261.536011F), new Vector2(-481.563995F, -261.787994F), new Vector2(-480.388F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0697()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-508.575989F, -261.895996F));
+ builder.AddLine(new Vector2(-508.575989F, -287.600006F));
+ builder.AddLine(new Vector2(-511.81601F, -287.600006F));
+ builder.AddLine(new Vector2(-511.81601F, -261.895996F));
+ builder.AddLine(new Vector2(-508.575989F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-496.480011F, -261.895996F));
+ builder.AddLine(new Vector2(-496.480011F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(-496.480011F, -273.859985F), new Vector2(-496.768005F, -275.048004F), new Vector2(-497.343994F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-497.920013F, -277.112F), new Vector2(-498.705994F, -277.915985F), new Vector2(-499.701996F, -278.492004F));
+ builder.AddCubicBezier(new Vector2(-500.697998F, -279.067993F), new Vector2(-501.843994F, -279.355988F), new Vector2(-503.140015F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-504.436005F, -279.355988F), new Vector2(-505.600006F, -279.062012F), new Vector2(-506.631989F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(-507.664001F, -277.885986F), new Vector2(-508.467987F, -277.088013F), new Vector2(-509.044006F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-509.619995F, -275.071991F), new Vector2(-509.90799F, -273.920013F), new Vector2(-509.90799F, -272.623993F));
+ builder.AddLine(new Vector2(-508.575989F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(-508.575989F, -272.731995F), new Vector2(-508.384003F, -273.5F), new Vector2(-508F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(-507.615997F, -274.843994F), new Vector2(-507.088013F, -275.372009F), new Vector2(-506.415985F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(-505.743988F, -276.140015F), new Vector2(-504.976013F, -276.332001F), new Vector2(-504.112F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-502.81601F, -276.332001F), new Vector2(-501.765991F, -275.911987F), new Vector2(-500.962006F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(-500.15799F, -274.231995F), new Vector2(-499.756012F, -273.164001F), new Vector2(-499.756012F, -271.868011F));
+ builder.AddLine(new Vector2(-499.756012F, -261.895996F));
+ builder.AddLine(new Vector2(-496.480011F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0698()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-514.984009F, -276.044006F));
+ builder.AddLine(new Vector2(-514.984009F, -278.996002F));
+ builder.AddLine(new Vector2(-526.64801F, -278.996002F));
+ builder.AddLine(new Vector2(-526.64801F, -276.044006F));
+ builder.AddLine(new Vector2(-514.984009F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-519.195984F, -261.895996F));
+ builder.AddLine(new Vector2(-519.195984F, -286.160004F));
+ builder.AddLine(new Vector2(-522.435974F, -286.160004F));
+ builder.AddLine(new Vector2(-522.435974F, -261.895996F));
+ builder.AddLine(new Vector2(-519.195984F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0699()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-547.924011F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-548.763977F, -265.928009F), new Vector2(-549.424011F, -266.618011F), new Vector2(-549.903992F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-550.383972F, -268.369995F), new Vector2(-550.624023F, -269.372009F), new Vector2(-550.624023F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-550.624023F, -271.604004F), new Vector2(-550.383972F, -272.588013F), new Vector2(-549.903992F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-549.424011F, -274.31601F), new Vector2(-548.763977F, -274.993988F), new Vector2(-547.924011F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-547.083984F, -275.977997F), new Vector2(-546.135986F, -276.223999F), new Vector2(-545.080017F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(-543.976013F, -276.223999F), new Vector2(-543.01001F, -275.977997F), new Vector2(-542.182007F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-541.354004F, -274.993988F), new Vector2(-540.69397F, -274.31601F), new Vector2(-540.202026F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-539.710022F, -272.588013F), new Vector2(-539.463989F, -271.604004F), new Vector2(-539.463989F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-539.463989F, -269.372009F), new Vector2(-539.703979F, -268.369995F), new Vector2(-540.184021F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-540.664001F, -266.618011F), new Vector2(-541.323975F, -265.928009F), new Vector2(-542.164001F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-543.004028F, -264.920013F), new Vector2(-543.976013F, -264.667999F), new Vector2(-545.080017F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-546.135986F, -264.667999F), new Vector2(-547.083984F, -264.920013F), new Vector2(-547.924011F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-540.526001F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-539.169983F, -263.515991F), new Vector2(-538.096008F, -264.589996F), new Vector2(-537.304016F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-536.512024F, -267.302002F), new Vector2(-536.116028F, -268.820007F), new Vector2(-536.116028F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-536.116028F, -272.156006F), new Vector2(-536.512024F, -273.656006F), new Vector2(-537.304016F, -275F));
+ builder.AddCubicBezier(new Vector2(-538.096008F, -276.343994F), new Vector2(-539.169983F, -277.406006F), new Vector2(-540.526001F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-541.882019F, -278.966003F), new Vector2(-543.400024F, -279.355988F), new Vector2(-545.080017F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-546.736023F, -279.355988F), new Vector2(-548.236023F, -278.959991F), new Vector2(-549.580017F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-550.924011F, -277.376007F), new Vector2(-551.992004F, -276.313995F), new Vector2(-552.783997F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(-553.575989F, -273.649994F), new Vector2(-553.971985F, -272.156006F), new Vector2(-553.971985F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-553.971985F, -268.820007F), new Vector2(-553.575989F, -267.302002F), new Vector2(-552.783997F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-551.992004F, -264.589996F), new Vector2(-550.924011F, -263.515991F), new Vector2(-549.580017F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-548.236023F, -261.932007F), new Vector2(-546.736023F, -261.536011F), new Vector2(-545.080017F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-543.400024F, -261.536011F), new Vector2(-541.882019F, -261.932007F), new Vector2(-540.526001F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0700()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-555.484009F, -276.044006F));
+ builder.AddLine(new Vector2(-555.484009F, -278.996002F));
+ builder.AddLine(new Vector2(-567.14801F, -278.996002F));
+ builder.AddLine(new Vector2(-567.14801F, -276.044006F));
+ builder.AddLine(new Vector2(-555.484009F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-559.695984F, -261.895996F));
+ builder.AddLine(new Vector2(-559.695984F, -286.160004F));
+ builder.AddLine(new Vector2(-562.935974F, -286.160004F));
+ builder.AddLine(new Vector2(-562.935974F, -261.895996F));
+ builder.AddLine(new Vector2(-559.695984F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0701()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-576.184021F, -276.044006F));
+ builder.AddLine(new Vector2(-576.184021F, -278.996002F));
+ builder.AddLine(new Vector2(-587.848022F, -278.996002F));
+ builder.AddLine(new Vector2(-587.848022F, -276.044006F));
+ builder.AddLine(new Vector2(-576.184021F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-580.395996F, -261.895996F));
+ builder.AddLine(new Vector2(-580.395996F, -286.160004F));
+ builder.AddLine(new Vector2(-583.635986F, -286.160004F));
+ builder.AddLine(new Vector2(-583.635986F, -261.895996F));
+ builder.AddLine(new Vector2(-580.395996F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0702()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-591.609985F, -262.940002F));
+ builder.AddCubicBezier(new Vector2(-590.469971F, -263.876007F), new Vector2(-589.900024F, -265.14801F), new Vector2(-589.900024F, -266.756012F));
+ builder.AddCubicBezier(new Vector2(-589.900024F, -267.812012F), new Vector2(-590.122009F, -268.664001F), new Vector2(-590.565979F, -269.312012F));
+ builder.AddCubicBezier(new Vector2(-591.01001F, -269.959991F), new Vector2(-591.580017F, -270.476013F), new Vector2(-592.276001F, -270.859985F));
+ builder.AddCubicBezier(new Vector2(-592.971985F, -271.243988F), new Vector2(-593.703979F, -271.549988F), new Vector2(-594.471985F, -271.778015F));
+ builder.AddCubicBezier(new Vector2(-595.23999F, -272.006012F), new Vector2(-595.978027F, -272.227997F), new Vector2(-596.685974F, -272.444F));
+ builder.AddCubicBezier(new Vector2(-597.393982F, -272.660004F), new Vector2(-597.963989F, -272.924011F), new Vector2(-598.395996F, -273.235992F));
+ builder.AddCubicBezier(new Vector2(-598.828003F, -273.548004F), new Vector2(-599.044006F, -273.992004F), new Vector2(-599.044006F, -274.567993F));
+ builder.AddCubicBezier(new Vector2(-599.044006F, -275.119995F), new Vector2(-598.797974F, -275.563995F), new Vector2(-598.30603F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(-597.814026F, -276.235992F), new Vector2(-597.099976F, -276.403992F), new Vector2(-596.164001F, -276.403992F));
+ builder.AddCubicBezier(new Vector2(-595.276001F, -276.403992F), new Vector2(-594.484009F, -276.235992F), new Vector2(-593.788025F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(-593.09198F, -275.563995F), new Vector2(-592.492004F, -275.084015F), new Vector2(-591.987976F, -274.459991F));
+ builder.AddLine(new Vector2(-589.900024F, -276.548004F));
+ builder.AddCubicBezier(new Vector2(-590.572021F, -277.484009F), new Vector2(-591.429993F, -278.186005F), new Vector2(-592.473999F, -278.653992F));
+ builder.AddCubicBezier(new Vector2(-593.518005F, -279.122009F), new Vector2(-594.711975F, -279.355988F), new Vector2(-596.05603F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-597.328003F, -279.355988F), new Vector2(-598.419983F, -279.152008F), new Vector2(-599.33197F, -278.743988F));
+ builder.AddCubicBezier(new Vector2(-600.244019F, -278.335999F), new Vector2(-600.945984F, -277.753998F), new Vector2(-601.437988F, -276.997986F));
+ builder.AddCubicBezier(new Vector2(-601.929993F, -276.242004F), new Vector2(-602.176025F, -275.347992F), new Vector2(-602.176025F, -274.31601F));
+ builder.AddCubicBezier(new Vector2(-602.176025F, -273.283997F), new Vector2(-601.953979F, -272.450012F), new Vector2(-601.51001F, -271.813995F));
+ builder.AddCubicBezier(new Vector2(-601.065979F, -271.178009F), new Vector2(-600.495972F, -270.679993F), new Vector2(-599.799988F, -270.320007F));
+ builder.AddCubicBezier(new Vector2(-599.104004F, -269.959991F), new Vector2(-598.366028F, -269.671997F), new Vector2(-597.585999F, -269.455994F));
+ builder.AddCubicBezier(new Vector2(-596.80603F, -269.23999F), new Vector2(-596.067993F, -269.018005F), new Vector2(-595.372009F, -268.790009F));
+ builder.AddCubicBezier(new Vector2(-594.676025F, -268.562012F), new Vector2(-594.106018F, -268.273987F), new Vector2(-593.661987F, -267.925995F));
+ builder.AddCubicBezier(new Vector2(-593.218018F, -267.578003F), new Vector2(-592.995972F, -267.09201F), new Vector2(-592.995972F, -266.467987F));
+ builder.AddCubicBezier(new Vector2(-592.995972F, -265.843994F), new Vector2(-593.271973F, -265.358002F), new Vector2(-593.823975F, -265.01001F));
+ builder.AddCubicBezier(new Vector2(-594.375977F, -264.661987F), new Vector2(-595.156006F, -264.488007F), new Vector2(-596.164001F, -264.488007F));
+ builder.AddCubicBezier(new Vector2(-597.171997F, -264.488007F), new Vector2(-598.083984F, -264.674011F), new Vector2(-598.900024F, -265.04599F));
+ builder.AddCubicBezier(new Vector2(-599.716003F, -265.417999F), new Vector2(-600.435974F, -265.988007F), new Vector2(-601.059998F, -266.756012F));
+ builder.AddLine(new Vector2(-603.14801F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-602.619995F, -264.019989F), new Vector2(-602.002014F, -263.462006F), new Vector2(-601.294006F, -262.993988F));
+ builder.AddCubicBezier(new Vector2(-600.585999F, -262.526001F), new Vector2(-599.799988F, -262.165985F), new Vector2(-598.935974F, -261.914001F));
+ builder.AddCubicBezier(new Vector2(-598.072021F, -261.661987F), new Vector2(-597.159973F, -261.536011F), new Vector2(-596.200012F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-594.280029F, -261.536011F), new Vector2(-592.75F, -262.003998F), new Vector2(-591.609985F, -262.940002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0703()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-609.52002F, -262.526001F));
+ builder.AddCubicBezier(new Vector2(-608.416016F, -263.138F), new Vector2(-607.552002F, -264.007996F), new Vector2(-606.927979F, -265.135986F));
+ builder.AddCubicBezier(new Vector2(-606.304016F, -266.264008F), new Vector2(-605.992004F, -267.571991F), new Vector2(-605.992004F, -269.059998F));
+ builder.AddLine(new Vector2(-605.992004F, -278.996002F));
+ builder.AddLine(new Vector2(-609.231995F, -278.996002F));
+ builder.AddLine(new Vector2(-609.231995F, -269.20401F));
+ builder.AddCubicBezier(new Vector2(-609.231995F, -267.787994F), new Vector2(-609.59198F, -266.678009F), new Vector2(-610.312012F, -265.873993F));
+ builder.AddCubicBezier(new Vector2(-611.031982F, -265.070007F), new Vector2(-612.028015F, -264.667999F), new Vector2(-613.299988F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-614.140015F, -264.667999F), new Vector2(-614.872009F, -264.847992F), new Vector2(-615.495972F, -265.208008F));
+ builder.AddCubicBezier(new Vector2(-616.119995F, -265.567993F), new Vector2(-616.593994F, -266.089996F), new Vector2(-616.91803F, -266.773987F));
+ builder.AddCubicBezier(new Vector2(-617.242004F, -267.458008F), new Vector2(-617.403992F, -268.268005F), new Vector2(-617.403992F, -269.20401F));
+ builder.AddLine(new Vector2(-617.403992F, -278.996002F));
+ builder.AddLine(new Vector2(-620.643982F, -278.996002F));
+ builder.AddLine(new Vector2(-620.643982F, -269.059998F));
+ builder.AddCubicBezier(new Vector2(-620.643982F, -267.571991F), new Vector2(-620.33197F, -266.264008F), new Vector2(-619.708008F, -265.135986F));
+ builder.AddCubicBezier(new Vector2(-619.083984F, -264.007996F), new Vector2(-618.213989F, -263.138F), new Vector2(-617.098022F, -262.526001F));
+ builder.AddCubicBezier(new Vector2(-615.981995F, -261.914001F), new Vector2(-614.716003F, -261.608002F), new Vector2(-613.299988F, -261.608002F));
+ builder.AddCubicBezier(new Vector2(-611.883972F, -261.608002F), new Vector2(-610.624023F, -261.914001F), new Vector2(-609.52002F, -262.526001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0704()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-630.255981F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(-629.487976F, -275.911987F), new Vector2(-628.504028F, -276.29599F), new Vector2(-627.304016F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-626.728027F, -276.29599F), new Vector2(-626.223999F, -276.212006F), new Vector2(-625.791992F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(-625.359985F, -275.876007F), new Vector2(-624.963989F, -275.600006F), new Vector2(-624.604004F, -275.216003F));
+ builder.AddLine(new Vector2(-622.47998F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-623.080017F, -278.108002F), new Vector2(-623.728027F, -278.605988F), new Vector2(-624.424011F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(-625.119995F, -279.205994F), new Vector2(-625.900024F, -279.355988F), new Vector2(-626.763977F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-628.659973F, -279.355988F), new Vector2(-630.112F, -278.708008F), new Vector2(-631.119995F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-632.127991F, -276.115997F), new Vector2(-632.632019F, -274.376007F), new Vector2(-632.632019F, -272.191986F));
+ builder.AddLine(new Vector2(-631.40802F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(-631.40802F, -273.200012F), new Vector2(-631.023987F, -274.376007F), new Vector2(-630.255981F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-631.40802F, -261.895996F));
+ builder.AddLine(new Vector2(-631.40802F, -278.996002F));
+ builder.AddLine(new Vector2(-634.64801F, -278.996002F));
+ builder.AddLine(new Vector2(-634.64801F, -261.895996F));
+ builder.AddLine(new Vector2(-631.40802F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0705()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-637.815979F, -276.044006F));
+ builder.AddLine(new Vector2(-637.815979F, -278.996002F));
+ builder.AddLine(new Vector2(-649.47998F, -278.996002F));
+ builder.AddLine(new Vector2(-649.47998F, -276.044006F));
+ builder.AddLine(new Vector2(-637.815979F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-642.028015F, -261.895996F));
+ builder.AddLine(new Vector2(-642.028015F, -286.160004F));
+ builder.AddLine(new Vector2(-645.268005F, -286.160004F));
+ builder.AddLine(new Vector2(-645.268005F, -261.895996F));
+ builder.AddLine(new Vector2(-642.028015F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0706()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-664.16803F, -261.895996F));
+ builder.AddLine(new Vector2(-664.16803F, -278.996002F));
+ builder.AddLine(new Vector2(-667.40802F, -278.996002F));
+ builder.AddLine(new Vector2(-667.40802F, -261.895996F));
+ builder.AddLine(new Vector2(-664.16803F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-652.072021F, -261.895996F));
+ builder.AddLine(new Vector2(-652.072021F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(-652.072021F, -273.691986F), new Vector2(-652.359985F, -274.802002F), new Vector2(-652.935974F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(-653.512024F, -276.890015F), new Vector2(-654.297974F, -277.735992F), new Vector2(-655.294006F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(-656.289978F, -279.032013F), new Vector2(-657.435974F, -279.355988F), new Vector2(-658.731995F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-660.028015F, -279.355988F), new Vector2(-661.192017F, -279.062012F), new Vector2(-662.223999F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(-663.255981F, -277.885986F), new Vector2(-664.059998F, -277.088013F), new Vector2(-664.635986F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-665.211975F, -275.071991F), new Vector2(-665.5F, -273.920013F), new Vector2(-665.5F, -272.623993F));
+ builder.AddLine(new Vector2(-664.16803F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(-664.16803F, -272.731995F), new Vector2(-663.976013F, -273.5F), new Vector2(-663.59198F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(-663.208008F, -274.843994F), new Vector2(-662.679993F, -275.372009F), new Vector2(-662.007996F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(-661.335999F, -276.140015F), new Vector2(-660.567993F, -276.332001F), new Vector2(-659.703979F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-658.40802F, -276.332001F), new Vector2(-657.357971F, -275.911987F), new Vector2(-656.554016F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(-655.75F, -274.231995F), new Vector2(-655.348022F, -273.164001F), new Vector2(-655.348022F, -271.868011F));
+ builder.AddLine(new Vector2(-655.348022F, -261.895996F));
+ builder.AddLine(new Vector2(-652.072021F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0707()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-675.291992F, -262.526001F));
+ builder.AddCubicBezier(new Vector2(-674.187988F, -263.138F), new Vector2(-673.323975F, -264.007996F), new Vector2(-672.700012F, -265.135986F));
+ builder.AddCubicBezier(new Vector2(-672.075989F, -266.264008F), new Vector2(-671.763977F, -267.571991F), new Vector2(-671.763977F, -269.059998F));
+ builder.AddLine(new Vector2(-671.763977F, -278.996002F));
+ builder.AddLine(new Vector2(-675.004028F, -278.996002F));
+ builder.AddLine(new Vector2(-675.004028F, -269.20401F));
+ builder.AddCubicBezier(new Vector2(-675.004028F, -267.787994F), new Vector2(-675.364014F, -266.678009F), new Vector2(-676.083984F, -265.873993F));
+ builder.AddCubicBezier(new Vector2(-676.804016F, -265.070007F), new Vector2(-677.799988F, -264.667999F), new Vector2(-679.072021F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-679.911987F, -264.667999F), new Vector2(-680.643982F, -264.847992F), new Vector2(-681.268005F, -265.208008F));
+ builder.AddCubicBezier(new Vector2(-681.892029F, -265.567993F), new Vector2(-682.366028F, -266.089996F), new Vector2(-682.690002F, -266.773987F));
+ builder.AddCubicBezier(new Vector2(-683.013977F, -267.458008F), new Vector2(-683.176025F, -268.268005F), new Vector2(-683.176025F, -269.20401F));
+ builder.AddLine(new Vector2(-683.176025F, -278.996002F));
+ builder.AddLine(new Vector2(-686.416016F, -278.996002F));
+ builder.AddLine(new Vector2(-686.416016F, -269.059998F));
+ builder.AddCubicBezier(new Vector2(-686.416016F, -267.571991F), new Vector2(-686.104004F, -266.264008F), new Vector2(-685.47998F, -265.135986F));
+ builder.AddCubicBezier(new Vector2(-684.856018F, -264.007996F), new Vector2(-683.986023F, -263.138F), new Vector2(-682.869995F, -262.526001F));
+ builder.AddCubicBezier(new Vector2(-681.754028F, -261.914001F), new Vector2(-680.487976F, -261.608002F), new Vector2(-679.072021F, -261.608002F));
+ builder.AddCubicBezier(new Vector2(-677.656006F, -261.608002F), new Vector2(-676.395996F, -261.914001F), new Vector2(-675.291992F, -262.526001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0708()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-701.031982F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(-699.856018F, -262.79599F), new Vector2(-698.848022F, -263.528015F), new Vector2(-698.007996F, -264.488007F));
+ builder.AddLine(new Vector2(-700.096008F, -266.612F));
+ builder.AddCubicBezier(new Vector2(-700.671997F, -265.940002F), new Vector2(-701.362F, -265.436005F), new Vector2(-702.166016F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(-702.969971F, -264.764008F), new Vector2(-703.85199F, -264.596008F), new Vector2(-704.812012F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-705.963989F, -264.596008F), new Vector2(-706.984009F, -264.84201F), new Vector2(-707.872009F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(-708.76001F, -265.825989F), new Vector2(-709.44397F, -266.522003F), new Vector2(-709.924011F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-710.403992F, -268.321991F), new Vector2(-710.643982F, -269.372009F), new Vector2(-710.643982F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(-710.643982F, -271.747986F), new Vector2(-710.416016F, -272.768005F), new Vector2(-709.960022F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(-709.504028F, -274.496002F), new Vector2(-708.856018F, -275.167999F), new Vector2(-708.015991F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(-707.176025F, -276.127991F), new Vector2(-706.203979F, -276.368011F), new Vector2(-705.099976F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(-704.044006F, -276.368011F), new Vector2(-703.143982F, -276.145996F), new Vector2(-702.400024F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(-701.656006F, -275.257996F), new Vector2(-701.080017F, -274.634003F), new Vector2(-700.671997F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(-700.263977F, -273.026001F), new Vector2(-700.059998F, -272.048004F), new Vector2(-700.059998F, -270.895996F));
+ builder.AddLine(new Vector2(-698.872009F, -271.940002F));
+ builder.AddLine(new Vector2(-711.580017F, -271.940002F));
+ builder.AddLine(new Vector2(-711.580017F, -269.23999F));
+ builder.AddLine(new Vector2(-697.143982F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(-697.072021F, -269.575989F), new Vector2(-697.023987F, -269.881989F), new Vector2(-697F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(-696.976013F, -270.43399F), new Vector2(-696.963989F, -270.691986F), new Vector2(-696.963989F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(-696.963989F, -272.563995F), new Vector2(-697.30603F, -274.015991F), new Vector2(-697.98999F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(-698.674011F, -276.559998F), new Vector2(-699.627991F, -277.556F), new Vector2(-700.85199F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(-702.075989F, -278.996002F), new Vector2(-703.468018F, -279.355988F), new Vector2(-705.028015F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-706.684021F, -279.355988F), new Vector2(-708.177979F, -278.966003F), new Vector2(-709.51001F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-710.84198F, -277.406006F), new Vector2(-711.89801F, -276.343994F), new Vector2(-712.677979F, -275F));
+ builder.AddCubicBezier(new Vector2(-713.458008F, -273.656006F), new Vector2(-713.848022F, -272.144012F), new Vector2(-713.848022F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-713.848022F, -268.76001F), new Vector2(-713.452026F, -267.235992F), new Vector2(-712.659973F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-711.867981F, -264.548004F), new Vector2(-710.794006F, -263.485992F), new Vector2(-709.437988F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-708.08197F, -261.925995F), new Vector2(-706.539978F, -261.536011F), new Vector2(-704.812012F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-703.468018F, -261.536011F), new Vector2(-702.208008F, -261.787994F), new Vector2(-701.031982F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0709()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-715.359985F, -276.044006F));
+ builder.AddLine(new Vector2(-715.359985F, -278.996002F));
+ builder.AddLine(new Vector2(-727.023987F, -278.996002F));
+ builder.AddLine(new Vector2(-727.023987F, -276.044006F));
+ builder.AddLine(new Vector2(-715.359985F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-719.572021F, -261.895996F));
+ builder.AddLine(new Vector2(-719.572021F, -286.160004F));
+ builder.AddLine(new Vector2(-722.812012F, -286.160004F));
+ builder.AddLine(new Vector2(-722.812012F, -261.895996F));
+ builder.AddLine(new Vector2(-719.572021F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0710()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-733.323975F, -262.526001F));
+ builder.AddCubicBezier(new Vector2(-732.219971F, -263.138F), new Vector2(-731.356018F, -264.007996F), new Vector2(-730.731995F, -265.135986F));
+ builder.AddCubicBezier(new Vector2(-730.107971F, -266.264008F), new Vector2(-729.796021F, -267.571991F), new Vector2(-729.796021F, -269.059998F));
+ builder.AddLine(new Vector2(-729.796021F, -278.996002F));
+ builder.AddLine(new Vector2(-733.036011F, -278.996002F));
+ builder.AddLine(new Vector2(-733.036011F, -269.20401F));
+ builder.AddCubicBezier(new Vector2(-733.036011F, -267.787994F), new Vector2(-733.395996F, -266.678009F), new Vector2(-734.116028F, -265.873993F));
+ builder.AddCubicBezier(new Vector2(-734.835999F, -265.070007F), new Vector2(-735.83197F, -264.667999F), new Vector2(-737.104004F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-737.94397F, -264.667999F), new Vector2(-738.676025F, -264.847992F), new Vector2(-739.299988F, -265.208008F));
+ builder.AddCubicBezier(new Vector2(-739.924011F, -265.567993F), new Vector2(-740.39801F, -266.089996F), new Vector2(-740.721985F, -266.773987F));
+ builder.AddCubicBezier(new Vector2(-741.046021F, -267.458008F), new Vector2(-741.208008F, -268.268005F), new Vector2(-741.208008F, -269.20401F));
+ builder.AddLine(new Vector2(-741.208008F, -278.996002F));
+ builder.AddLine(new Vector2(-744.447998F, -278.996002F));
+ builder.AddLine(new Vector2(-744.447998F, -269.059998F));
+ builder.AddCubicBezier(new Vector2(-744.447998F, -267.571991F), new Vector2(-744.135986F, -266.264008F), new Vector2(-743.512024F, -265.135986F));
+ builder.AddCubicBezier(new Vector2(-742.888F, -264.007996F), new Vector2(-742.018005F, -263.138F), new Vector2(-740.901978F, -262.526001F));
+ builder.AddCubicBezier(new Vector2(-739.786011F, -261.914001F), new Vector2(-738.52002F, -261.608002F), new Vector2(-737.104004F, -261.608002F));
+ builder.AddCubicBezier(new Vector2(-735.687988F, -261.608002F), new Vector2(-734.427979F, -261.914001F), new Vector2(-733.323975F, -262.526001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0711()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-748.768005F, -261.895996F));
+ builder.AddLine(new Vector2(-748.768005F, -287.600006F));
+ builder.AddLine(new Vector2(-752.007996F, -287.600006F));
+ builder.AddLine(new Vector2(-752.007996F, -261.895996F));
+ builder.AddLine(new Vector2(-748.768005F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0712()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-767.416016F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-768.255981F, -265.928009F), new Vector2(-768.916016F, -266.618011F), new Vector2(-769.395996F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-769.875977F, -268.369995F), new Vector2(-770.116028F, -269.372009F), new Vector2(-770.116028F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-770.116028F, -271.604004F), new Vector2(-769.875977F, -272.588013F), new Vector2(-769.395996F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-768.916016F, -274.31601F), new Vector2(-768.255981F, -274.993988F), new Vector2(-767.416016F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-766.575989F, -275.977997F), new Vector2(-765.627991F, -276.223999F), new Vector2(-764.572021F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(-763.468018F, -276.223999F), new Vector2(-762.502014F, -275.977997F), new Vector2(-761.674011F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-760.846008F, -274.993988F), new Vector2(-760.185974F, -274.31601F), new Vector2(-759.69397F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-759.202026F, -272.588013F), new Vector2(-758.955994F, -271.604004F), new Vector2(-758.955994F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-758.955994F, -269.372009F), new Vector2(-759.195984F, -268.369995F), new Vector2(-759.676025F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-760.156006F, -266.618011F), new Vector2(-760.815979F, -265.928009F), new Vector2(-761.656006F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-762.495972F, -264.920013F), new Vector2(-763.468018F, -264.667999F), new Vector2(-764.572021F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-765.627991F, -264.667999F), new Vector2(-766.575989F, -264.920013F), new Vector2(-767.416016F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-760.018005F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-758.661987F, -263.515991F), new Vector2(-757.588013F, -264.589996F), new Vector2(-756.796021F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-756.004028F, -267.302002F), new Vector2(-755.607971F, -268.820007F), new Vector2(-755.607971F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-755.607971F, -272.156006F), new Vector2(-756.004028F, -273.656006F), new Vector2(-756.796021F, -275F));
+ builder.AddCubicBezier(new Vector2(-757.588013F, -276.343994F), new Vector2(-758.661987F, -277.406006F), new Vector2(-760.018005F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-761.374023F, -278.966003F), new Vector2(-762.892029F, -279.355988F), new Vector2(-764.572021F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-766.228027F, -279.355988F), new Vector2(-767.728027F, -278.959991F), new Vector2(-769.072021F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-770.416016F, -277.376007F), new Vector2(-771.484009F, -276.313995F), new Vector2(-772.276001F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(-773.067993F, -273.649994F), new Vector2(-773.463989F, -272.156006F), new Vector2(-773.463989F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-773.463989F, -268.820007F), new Vector2(-773.067993F, -267.302002F), new Vector2(-772.276001F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-771.484009F, -264.589996F), new Vector2(-770.416016F, -263.515991F), new Vector2(-769.072021F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-767.728027F, -261.932007F), new Vector2(-766.228027F, -261.536011F), new Vector2(-764.572021F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-762.892029F, -261.536011F), new Vector2(-761.374023F, -261.932007F), new Vector2(-760.018005F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0713()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-777.69397F, -262.940002F));
+ builder.AddCubicBezier(new Vector2(-776.554016F, -263.876007F), new Vector2(-775.984009F, -265.14801F), new Vector2(-775.984009F, -266.756012F));
+ builder.AddCubicBezier(new Vector2(-775.984009F, -267.812012F), new Vector2(-776.205994F, -268.664001F), new Vector2(-776.650024F, -269.312012F));
+ builder.AddCubicBezier(new Vector2(-777.093994F, -269.959991F), new Vector2(-777.664001F, -270.476013F), new Vector2(-778.359985F, -270.859985F));
+ builder.AddCubicBezier(new Vector2(-779.05603F, -271.243988F), new Vector2(-779.788025F, -271.549988F), new Vector2(-780.55603F, -271.778015F));
+ builder.AddCubicBezier(new Vector2(-781.323975F, -272.006012F), new Vector2(-782.062012F, -272.227997F), new Vector2(-782.77002F, -272.444F));
+ builder.AddCubicBezier(new Vector2(-783.478027F, -272.660004F), new Vector2(-784.047974F, -272.924011F), new Vector2(-784.47998F, -273.235992F));
+ builder.AddCubicBezier(new Vector2(-784.911987F, -273.548004F), new Vector2(-785.127991F, -273.992004F), new Vector2(-785.127991F, -274.567993F));
+ builder.AddCubicBezier(new Vector2(-785.127991F, -275.119995F), new Vector2(-784.882019F, -275.563995F), new Vector2(-784.390015F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(-783.89801F, -276.235992F), new Vector2(-783.184021F, -276.403992F), new Vector2(-782.247986F, -276.403992F));
+ builder.AddCubicBezier(new Vector2(-781.359985F, -276.403992F), new Vector2(-780.567993F, -276.235992F), new Vector2(-779.872009F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(-779.176025F, -275.563995F), new Vector2(-778.575989F, -275.084015F), new Vector2(-778.072021F, -274.459991F));
+ builder.AddLine(new Vector2(-775.984009F, -276.548004F));
+ builder.AddCubicBezier(new Vector2(-776.656006F, -277.484009F), new Vector2(-777.513977F, -278.186005F), new Vector2(-778.557983F, -278.653992F));
+ builder.AddCubicBezier(new Vector2(-779.60199F, -279.122009F), new Vector2(-780.796021F, -279.355988F), new Vector2(-782.140015F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-783.411987F, -279.355988F), new Vector2(-784.504028F, -279.152008F), new Vector2(-785.416016F, -278.743988F));
+ builder.AddCubicBezier(new Vector2(-786.328003F, -278.335999F), new Vector2(-787.030029F, -277.753998F), new Vector2(-787.521973F, -276.997986F));
+ builder.AddCubicBezier(new Vector2(-788.013977F, -276.242004F), new Vector2(-788.26001F, -275.347992F), new Vector2(-788.26001F, -274.31601F));
+ builder.AddCubicBezier(new Vector2(-788.26001F, -273.283997F), new Vector2(-788.038025F, -272.450012F), new Vector2(-787.593994F, -271.813995F));
+ builder.AddCubicBezier(new Vector2(-787.150024F, -271.178009F), new Vector2(-786.580017F, -270.679993F), new Vector2(-785.883972F, -270.320007F));
+ builder.AddCubicBezier(new Vector2(-785.187988F, -269.959991F), new Vector2(-784.450012F, -269.671997F), new Vector2(-783.669983F, -269.455994F));
+ builder.AddCubicBezier(new Vector2(-782.890015F, -269.23999F), new Vector2(-782.151978F, -269.018005F), new Vector2(-781.455994F, -268.790009F));
+ builder.AddCubicBezier(new Vector2(-780.76001F, -268.562012F), new Vector2(-780.190002F, -268.273987F), new Vector2(-779.745972F, -267.925995F));
+ builder.AddCubicBezier(new Vector2(-779.302002F, -267.578003F), new Vector2(-779.080017F, -267.09201F), new Vector2(-779.080017F, -266.467987F));
+ builder.AddCubicBezier(new Vector2(-779.080017F, -265.843994F), new Vector2(-779.356018F, -265.358002F), new Vector2(-779.90802F, -265.01001F));
+ builder.AddCubicBezier(new Vector2(-780.460022F, -264.661987F), new Vector2(-781.23999F, -264.488007F), new Vector2(-782.247986F, -264.488007F));
+ builder.AddCubicBezier(new Vector2(-783.255981F, -264.488007F), new Vector2(-784.16803F, -264.674011F), new Vector2(-784.984009F, -265.04599F));
+ builder.AddCubicBezier(new Vector2(-785.799988F, -265.417999F), new Vector2(-786.52002F, -265.988007F), new Vector2(-787.143982F, -266.756012F));
+ builder.AddLine(new Vector2(-789.231995F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-788.703979F, -264.019989F), new Vector2(-788.085999F, -263.462006F), new Vector2(-787.377991F, -262.993988F));
+ builder.AddCubicBezier(new Vector2(-786.669983F, -262.526001F), new Vector2(-785.883972F, -262.165985F), new Vector2(-785.02002F, -261.914001F));
+ builder.AddCubicBezier(new Vector2(-784.156006F, -261.661987F), new Vector2(-783.244019F, -261.536011F), new Vector2(-782.283997F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-780.364014F, -261.536011F), new Vector2(-778.833984F, -262.003998F), new Vector2(-777.69397F, -262.940002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0714()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-803.038025F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-803.866028F, -265.855988F), new Vector2(-804.502014F, -266.54599F), new Vector2(-804.945984F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-805.390015F, -268.298004F), new Vector2(-805.612F, -269.299988F), new Vector2(-805.612F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-805.612F, -271.579987F), new Vector2(-805.383972F, -272.593994F), new Vector2(-804.927979F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-804.471985F, -274.346008F), new Vector2(-803.835999F, -275.036011F), new Vector2(-803.02002F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-802.203979F, -276.044006F), new Vector2(-801.268005F, -276.29599F), new Vector2(-800.211975F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-799.132019F, -276.29599F), new Vector2(-798.184021F, -276.044006F), new Vector2(-797.367981F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-796.552002F, -275.036011F), new Vector2(-795.909973F, -274.346008F), new Vector2(-795.442017F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-794.973999F, -272.593994F), new Vector2(-794.73999F, -271.59201F), new Vector2(-794.73999F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-794.73999F, -269.312012F), new Vector2(-794.973999F, -268.298004F), new Vector2(-795.442017F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-795.909973F, -266.54599F), new Vector2(-796.552002F, -265.855988F), new Vector2(-797.367981F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-798.184021F, -264.847992F), new Vector2(-799.132019F, -264.596008F), new Vector2(-800.211975F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-801.268005F, -264.596008F), new Vector2(-802.210022F, -264.847992F), new Vector2(-803.038025F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-805.432007F, -261.895996F));
+ builder.AddLine(new Vector2(-805.432007F, -266.503998F));
+ builder.AddLine(new Vector2(-806.044006F, -270.679993F));
+ builder.AddLine(new Vector2(-805.432007F, -274.820007F));
+ builder.AddLine(new Vector2(-805.432007F, -287.600006F));
+ builder.AddLine(new Vector2(-808.671997F, -287.600006F));
+ builder.AddLine(new Vector2(-808.671997F, -261.895996F));
+ builder.AddLine(new Vector2(-805.432007F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-795.442017F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-794.182007F, -263.485992F), new Vector2(-793.192017F, -264.548004F), new Vector2(-792.471985F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-791.752014F, -267.235992F), new Vector2(-791.392029F, -268.747986F), new Vector2(-791.392029F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-791.392029F, -272.108002F), new Vector2(-791.752014F, -273.619995F), new Vector2(-792.471985F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-793.192017F, -276.308014F), new Vector2(-794.182007F, -277.376007F), new Vector2(-795.442017F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-796.702026F, -278.959991F), new Vector2(-798.112F, -279.355988F), new Vector2(-799.671997F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-800.94397F, -279.355988F), new Vector2(-802.10199F, -279.085999F), new Vector2(-803.145996F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-804.190002F, -278.006012F), new Vector2(-805.030029F, -277.261993F), new Vector2(-805.666016F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-806.302002F, -275.365997F), new Vector2(-806.656006F, -274.268005F), new Vector2(-806.728027F, -273.019989F));
+ builder.AddLine(new Vector2(-806.728027F, -267.872009F));
+ builder.AddCubicBezier(new Vector2(-806.656006F, -266.64801F), new Vector2(-806.307983F, -265.556F), new Vector2(-805.684021F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-805.059998F, -263.635986F), new Vector2(-804.226013F, -262.885986F), new Vector2(-803.182007F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-802.138F, -261.806F), new Vector2(-800.968018F, -261.536011F), new Vector2(-799.671997F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-798.112F, -261.536011F), new Vector2(-796.702026F, -261.925995F), new Vector2(-795.442017F, -262.705994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0715()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-813.388F, -261.895996F));
+ builder.AddLine(new Vector2(-813.388F, -278.996002F));
+ builder.AddLine(new Vector2(-816.664001F, -278.996002F));
+ builder.AddLine(new Vector2(-816.664001F, -274.820007F));
+ builder.AddLine(new Vector2(-816.052002F, -270.679993F));
+ builder.AddLine(new Vector2(-816.664001F, -266.503998F));
+ builder.AddLine(new Vector2(-816.664001F, -261.895996F));
+ builder.AddLine(new Vector2(-813.388F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-824.692017F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-825.531982F, -265.855988F), new Vector2(-826.185974F, -266.54599F), new Vector2(-826.653992F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-827.122009F, -268.298004F), new Vector2(-827.356018F, -269.312012F), new Vector2(-827.356018F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-827.356018F, -271.59201F), new Vector2(-827.122009F, -272.593994F), new Vector2(-826.653992F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-826.185974F, -274.346008F), new Vector2(-825.538025F, -275.036011F), new Vector2(-824.710022F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-823.882019F, -276.044006F), new Vector2(-822.927979F, -276.29599F), new Vector2(-821.848022F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-820.768005F, -276.29599F), new Vector2(-819.825989F, -276.049988F), new Vector2(-819.021973F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(-818.218018F, -275.06601F), new Vector2(-817.588013F, -274.376007F), new Vector2(-817.132019F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(-816.676025F, -272.600006F), new Vector2(-816.447998F, -271.579987F), new Vector2(-816.447998F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-816.447998F, -268.723999F), new Vector2(-816.940002F, -267.325989F), new Vector2(-817.924011F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(-818.90802F, -265.141998F), new Vector2(-820.203979F, -264.596008F), new Vector2(-821.812012F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-822.892029F, -264.596008F), new Vector2(-823.85199F, -264.847992F), new Vector2(-824.692017F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-818.859985F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-817.828003F, -262.885986F), new Vector2(-817.005981F, -263.635986F), new Vector2(-816.393982F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-815.781982F, -265.556F), new Vector2(-815.440002F, -266.64801F), new Vector2(-815.367981F, -267.872009F));
+ builder.AddLine(new Vector2(-815.367981F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-815.440002F, -274.268005F), new Vector2(-815.788025F, -275.365997F), new Vector2(-816.411987F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-817.036011F, -277.261993F), new Vector2(-817.857971F, -278.006012F), new Vector2(-818.877991F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-819.89801F, -279.085999F), new Vector2(-821.05603F, -279.355988F), new Vector2(-822.35199F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-823.935974F, -279.355988F), new Vector2(-825.357971F, -278.959991F), new Vector2(-826.617981F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-827.877991F, -277.376007F), new Vector2(-828.874023F, -276.308014F), new Vector2(-829.606018F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-830.338013F, -273.619995F), new Vector2(-830.703979F, -272.108002F), new Vector2(-830.703979F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-830.703979F, -268.747986F), new Vector2(-830.338013F, -267.235992F), new Vector2(-829.606018F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-828.874023F, -264.548004F), new Vector2(-827.877991F, -263.485992F), new Vector2(-826.617981F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-825.357971F, -261.925995F), new Vector2(-823.935974F, -261.536011F), new Vector2(-822.35199F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-821.05603F, -261.536011F), new Vector2(-819.892029F, -261.806F), new Vector2(-818.859985F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0716()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(803.192017F, -305.096008F));
+ builder.AddLine(new Vector2(803.192017F, -322.196014F));
+ builder.AddLine(new Vector2(799.952026F, -322.196014F));
+ builder.AddLine(new Vector2(799.952026F, -305.096008F));
+ builder.AddLine(new Vector2(803.192017F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(815.288025F, -305.096008F));
+ builder.AddLine(new Vector2(815.288025F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(815.288025F, -316.891998F), new Vector2(815F, -318.002014F), new Vector2(814.424011F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(813.848022F, -320.089996F), new Vector2(813.062012F, -320.936005F), new Vector2(812.065979F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(811.070007F, -322.231995F), new Vector2(809.924011F, -322.556F), new Vector2(808.627991F, -322.556F));
+ builder.AddCubicBezier(new Vector2(807.33197F, -322.556F), new Vector2(806.16803F, -322.261993F), new Vector2(805.135986F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(804.104004F, -321.085999F), new Vector2(803.299988F, -320.287994F), new Vector2(802.723999F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(802.14801F, -318.272003F), new Vector2(801.859985F, -317.119995F), new Vector2(801.859985F, -315.824005F));
+ builder.AddLine(new Vector2(803.192017F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(803.192017F, -315.932007F), new Vector2(803.383972F, -316.700012F), new Vector2(803.768005F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(804.151978F, -318.044006F), new Vector2(804.679993F, -318.571991F), new Vector2(805.35199F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(806.023987F, -319.339996F), new Vector2(806.791992F, -319.532013F), new Vector2(807.656006F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(808.952026F, -319.532013F), new Vector2(810.002014F, -319.112F), new Vector2(810.80603F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(811.609985F, -317.432007F), new Vector2(812.012024F, -316.364014F), new Vector2(812.012024F, -315.067993F));
+ builder.AddLine(new Vector2(812.012024F, -305.096008F));
+ builder.AddLine(new Vector2(815.288025F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0717()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(795.236023F, -305.096008F));
+ builder.AddLine(new Vector2(795.236023F, -322.196014F));
+ builder.AddLine(new Vector2(791.960022F, -322.196014F));
+ builder.AddLine(new Vector2(791.960022F, -318.019989F));
+ builder.AddLine(new Vector2(792.572021F, -313.880005F));
+ builder.AddLine(new Vector2(791.960022F, -309.70401F));
+ builder.AddLine(new Vector2(791.960022F, -305.096008F));
+ builder.AddLine(new Vector2(795.236023F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(783.932007F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(783.09198F, -309.056F), new Vector2(782.437988F, -309.746002F), new Vector2(781.969971F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(781.502014F, -311.497986F), new Vector2(781.268005F, -312.511993F), new Vector2(781.268005F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(781.268005F, -314.791992F), new Vector2(781.502014F, -315.794006F), new Vector2(781.969971F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(782.437988F, -317.54599F), new Vector2(783.085999F, -318.235992F), new Vector2(783.914001F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(784.742004F, -319.243988F), new Vector2(785.695984F, -319.496002F), new Vector2(786.776001F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(787.856018F, -319.496002F), new Vector2(788.797974F, -319.25F), new Vector2(789.60199F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(790.406006F, -318.265991F), new Vector2(791.036011F, -317.575989F), new Vector2(791.492004F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(791.947998F, -315.799988F), new Vector2(792.176025F, -314.779999F), new Vector2(792.176025F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(792.176025F, -311.924011F), new Vector2(791.684021F, -310.526001F), new Vector2(790.700012F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(789.716003F, -308.34201F), new Vector2(788.419983F, -307.79599F), new Vector2(786.812012F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(785.731995F, -307.79599F), new Vector2(784.771973F, -308.048004F), new Vector2(783.932007F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(789.763977F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(790.796021F, -306.085999F), new Vector2(791.617981F, -306.835999F), new Vector2(792.22998F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(792.84198F, -308.756012F), new Vector2(793.184021F, -309.847992F), new Vector2(793.255981F, -311.071991F));
+ builder.AddLine(new Vector2(793.255981F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(793.184021F, -317.467987F), new Vector2(792.835999F, -318.56601F), new Vector2(792.211975F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(791.588013F, -320.462006F), new Vector2(790.765991F, -321.205994F), new Vector2(789.745972F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(788.726013F, -322.286011F), new Vector2(787.567993F, -322.556F), new Vector2(786.271973F, -322.556F));
+ builder.AddCubicBezier(new Vector2(784.687988F, -322.556F), new Vector2(783.265991F, -322.160004F), new Vector2(782.005981F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(780.745972F, -320.575989F), new Vector2(779.75F, -319.507996F), new Vector2(779.018005F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(778.286011F, -316.820007F), new Vector2(777.919983F, -315.308014F), new Vector2(777.919983F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(777.919983F, -311.947998F), new Vector2(778.286011F, -310.436005F), new Vector2(779.018005F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(779.75F, -307.747986F), new Vector2(780.745972F, -306.686005F), new Vector2(782.005981F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(783.265991F, -305.126007F), new Vector2(784.687988F, -304.735992F), new Vector2(786.271973F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(787.567993F, -304.735992F), new Vector2(788.731995F, -305.006012F), new Vector2(789.763977F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0718()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(766.83197F, -330.799988F));
+ builder.AddLine(new Vector2(763.55603F, -330.799988F));
+ builder.AddLine(new Vector2(763.55603F, -318.019989F));
+ builder.AddLine(new Vector2(764.16803F, -313.880005F));
+ builder.AddLine(new Vector2(763.55603F, -309.70401F));
+ builder.AddLine(new Vector2(763.55603F, -305.096008F));
+ builder.AddLine(new Vector2(766.83197F, -305.096008F));
+ builder.AddLine(new Vector2(766.83197F, -330.799988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(755.51001F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(754.682007F, -309.026001F), new Vector2(754.033997F, -309.716003F), new Vector2(753.565979F, -310.604004F));
+ builder.AddCubicBezier(new Vector2(753.098022F, -311.492004F), new Vector2(752.864014F, -312.511993F), new Vector2(752.864014F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(752.864014F, -314.81601F), new Vector2(753.098022F, -315.829987F), new Vector2(753.565979F, -316.705994F));
+ builder.AddCubicBezier(new Vector2(754.033997F, -317.582001F), new Vector2(754.676025F, -318.265991F), new Vector2(755.492004F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(756.307983F, -319.25F), new Vector2(757.255981F, -319.496002F), new Vector2(758.335999F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(759.416016F, -319.496002F), new Vector2(760.364014F, -319.243988F), new Vector2(761.179993F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(761.995972F, -318.235992F), new Vector2(762.632019F, -317.54599F), new Vector2(763.088013F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(763.544006F, -315.794006F), new Vector2(763.771973F, -314.779999F), new Vector2(763.771973F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(763.771973F, -312.5F), new Vector2(763.544006F, -311.497986F), new Vector2(763.088013F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(762.632019F, -309.746002F), new Vector2(761.995972F, -309.056F), new Vector2(761.179993F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(760.364014F, -308.048004F), new Vector2(759.416016F, -307.79599F), new Vector2(758.335999F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(757.280029F, -307.79599F), new Vector2(756.338013F, -308.041992F), new Vector2(755.51001F, -308.533997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(761.323975F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(762.356018F, -306.085999F), new Vector2(763.184021F, -306.835999F), new Vector2(763.807983F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(764.432007F, -308.756012F), new Vector2(764.780029F, -309.847992F), new Vector2(764.85199F, -311.071991F));
+ builder.AddLine(new Vector2(764.85199F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(764.780029F, -317.467987F), new Vector2(764.426025F, -318.56601F), new Vector2(763.789978F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(763.153992F, -320.462006F), new Vector2(762.320007F, -321.205994F), new Vector2(761.288025F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(760.255981F, -322.286011F), new Vector2(759.09198F, -322.556F), new Vector2(757.796021F, -322.556F));
+ builder.AddCubicBezier(new Vector2(756.236023F, -322.556F), new Vector2(754.83197F, -322.160004F), new Vector2(753.583984F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(752.335999F, -320.575989F), new Vector2(751.346008F, -319.507996F), new Vector2(750.614014F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(749.882019F, -316.820007F), new Vector2(749.515991F, -315.308014F), new Vector2(749.515991F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(749.515991F, -311.947998F), new Vector2(749.882019F, -310.436005F), new Vector2(750.614014F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(751.346008F, -307.747986F), new Vector2(752.335999F, -306.686005F), new Vector2(753.583984F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(754.83197F, -305.126007F), new Vector2(756.236023F, -304.735992F), new Vector2(757.796021F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(759.116028F, -304.735992F), new Vector2(760.291992F, -305.006012F), new Vector2(761.323975F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0719()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(734.107971F, -305.096008F));
+ builder.AddLine(new Vector2(734.107971F, -322.196014F));
+ builder.AddLine(new Vector2(730.867981F, -322.196014F));
+ builder.AddLine(new Vector2(730.867981F, -305.096008F));
+ builder.AddLine(new Vector2(734.107971F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(746.203979F, -305.096008F));
+ builder.AddLine(new Vector2(746.203979F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(746.203979F, -316.891998F), new Vector2(745.916016F, -318.002014F), new Vector2(745.340027F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(744.763977F, -320.089996F), new Vector2(743.978027F, -320.936005F), new Vector2(742.981995F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(741.986023F, -322.231995F), new Vector2(740.840027F, -322.556F), new Vector2(739.544006F, -322.556F));
+ builder.AddCubicBezier(new Vector2(738.247986F, -322.556F), new Vector2(737.083984F, -322.261993F), new Vector2(736.052002F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(735.02002F, -321.085999F), new Vector2(734.216003F, -320.287994F), new Vector2(733.640015F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(733.064026F, -318.272003F), new Vector2(732.776001F, -317.119995F), new Vector2(732.776001F, -315.824005F));
+ builder.AddLine(new Vector2(734.107971F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(734.107971F, -315.932007F), new Vector2(734.299988F, -316.700012F), new Vector2(734.684021F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(735.067993F, -318.044006F), new Vector2(735.596008F, -318.571991F), new Vector2(736.268005F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(736.940002F, -319.339996F), new Vector2(737.708008F, -319.532013F), new Vector2(738.572021F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(739.867981F, -319.532013F), new Vector2(740.91803F, -319.112F), new Vector2(741.721985F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(742.526001F, -317.432007F), new Vector2(742.927979F, -316.364014F), new Vector2(742.927979F, -315.067993F));
+ builder.AddLine(new Vector2(742.927979F, -305.096008F));
+ builder.AddLine(new Vector2(746.203979F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0720()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(726.151978F, -305.096008F));
+ builder.AddLine(new Vector2(726.151978F, -322.196014F));
+ builder.AddLine(new Vector2(722.875977F, -322.196014F));
+ builder.AddLine(new Vector2(722.875977F, -318.019989F));
+ builder.AddLine(new Vector2(723.487976F, -313.880005F));
+ builder.AddLine(new Vector2(722.875977F, -309.70401F));
+ builder.AddLine(new Vector2(722.875977F, -305.096008F));
+ builder.AddLine(new Vector2(726.151978F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(714.848022F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(714.007996F, -309.056F), new Vector2(713.354004F, -309.746002F), new Vector2(712.885986F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(712.41803F, -311.497986F), new Vector2(712.184021F, -312.511993F), new Vector2(712.184021F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(712.184021F, -314.791992F), new Vector2(712.41803F, -315.794006F), new Vector2(712.885986F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(713.354004F, -317.54599F), new Vector2(714.002014F, -318.235992F), new Vector2(714.830017F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(715.65802F, -319.243988F), new Vector2(716.612F, -319.496002F), new Vector2(717.692017F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(718.771973F, -319.496002F), new Vector2(719.713989F, -319.25F), new Vector2(720.518005F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(721.322021F, -318.265991F), new Vector2(721.952026F, -317.575989F), new Vector2(722.40802F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(722.864014F, -315.799988F), new Vector2(723.09198F, -314.779999F), new Vector2(723.09198F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(723.09198F, -311.924011F), new Vector2(722.599976F, -310.526001F), new Vector2(721.616028F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(720.632019F, -308.34201F), new Vector2(719.335999F, -307.79599F), new Vector2(717.728027F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(716.64801F, -307.79599F), new Vector2(715.687988F, -308.048004F), new Vector2(714.848022F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(720.679993F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(721.711975F, -306.085999F), new Vector2(722.533997F, -306.835999F), new Vector2(723.145996F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(723.757996F, -308.756012F), new Vector2(724.099976F, -309.847992F), new Vector2(724.171997F, -311.071991F));
+ builder.AddLine(new Vector2(724.171997F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(724.099976F, -317.467987F), new Vector2(723.752014F, -318.56601F), new Vector2(723.127991F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(722.504028F, -320.462006F), new Vector2(721.682007F, -321.205994F), new Vector2(720.661987F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(719.642029F, -322.286011F), new Vector2(718.484009F, -322.556F), new Vector2(717.187988F, -322.556F));
+ builder.AddCubicBezier(new Vector2(715.604004F, -322.556F), new Vector2(714.182007F, -322.160004F), new Vector2(712.921997F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(711.661987F, -320.575989F), new Vector2(710.666016F, -319.507996F), new Vector2(709.934021F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(709.202026F, -316.820007F), new Vector2(708.835999F, -315.308014F), new Vector2(708.835999F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(708.835999F, -311.947998F), new Vector2(709.202026F, -310.436005F), new Vector2(709.934021F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(710.666016F, -307.747986F), new Vector2(711.661987F, -306.686005F), new Vector2(712.921997F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(714.182007F, -305.126007F), new Vector2(715.604004F, -304.735992F), new Vector2(717.187988F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(718.484009F, -304.735992F), new Vector2(719.64801F, -305.006012F), new Vector2(720.679993F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0721()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(697.117981F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(698.257996F, -307.075989F), new Vector2(698.828003F, -308.347992F), new Vector2(698.828003F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(698.828003F, -311.011993F), new Vector2(698.606018F, -311.864014F), new Vector2(698.161987F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(697.718018F, -313.160004F), new Vector2(697.14801F, -313.675995F), new Vector2(696.452026F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(695.755981F, -314.444F), new Vector2(695.023987F, -314.75F), new Vector2(694.255981F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(693.487976F, -315.205994F), new Vector2(692.75F, -315.428009F), new Vector2(692.041992F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(691.333984F, -315.859985F), new Vector2(690.763977F, -316.123993F), new Vector2(690.33197F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(689.900024F, -316.747986F), new Vector2(689.684021F, -317.191986F), new Vector2(689.684021F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(689.684021F, -318.320007F), new Vector2(689.929993F, -318.764008F), new Vector2(690.421997F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(690.914001F, -319.436005F), new Vector2(691.627991F, -319.604004F), new Vector2(692.564026F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(693.452026F, -319.604004F), new Vector2(694.244019F, -319.436005F), new Vector2(694.940002F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(695.635986F, -318.764008F), new Vector2(696.236023F, -318.283997F), new Vector2(696.73999F, -317.660004F));
+ builder.AddLine(new Vector2(698.828003F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(698.156006F, -320.68399F), new Vector2(697.297974F, -321.385986F), new Vector2(696.254028F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(695.210022F, -322.321991F), new Vector2(694.015991F, -322.556F), new Vector2(692.671997F, -322.556F));
+ builder.AddCubicBezier(new Vector2(691.400024F, -322.556F), new Vector2(690.307983F, -322.35199F), new Vector2(689.395996F, -321.944F));
+ builder.AddCubicBezier(new Vector2(688.484009F, -321.536011F), new Vector2(687.781982F, -320.95401F), new Vector2(687.289978F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(686.797974F, -319.441986F), new Vector2(686.552002F, -318.548004F), new Vector2(686.552002F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(686.552002F, -316.484009F), new Vector2(686.773987F, -315.649994F), new Vector2(687.218018F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(687.661987F, -314.377991F), new Vector2(688.231995F, -313.880005F), new Vector2(688.927979F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(689.624023F, -313.160004F), new Vector2(690.362F, -312.872009F), new Vector2(691.142029F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(691.921997F, -312.440002F), new Vector2(692.659973F, -312.217987F), new Vector2(693.356018F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(694.052002F, -311.761993F), new Vector2(694.622009F, -311.473999F), new Vector2(695.065979F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(695.51001F, -310.778015F), new Vector2(695.731995F, -310.291992F), new Vector2(695.731995F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(695.731995F, -309.044006F), new Vector2(695.455994F, -308.558014F), new Vector2(694.903992F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(694.35199F, -307.862F), new Vector2(693.572021F, -307.687988F), new Vector2(692.564026F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(691.55603F, -307.687988F), new Vector2(690.643982F, -307.873993F), new Vector2(689.828003F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(689.012024F, -308.618011F), new Vector2(688.291992F, -309.187988F), new Vector2(687.66803F, -309.955994F));
+ builder.AddLine(new Vector2(685.580017F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(686.107971F, -307.220001F), new Vector2(686.726013F, -306.661987F), new Vector2(687.434021F, -306.194F));
+ builder.AddCubicBezier(new Vector2(688.142029F, -305.726013F), new Vector2(688.927979F, -305.365997F), new Vector2(689.791992F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(690.656006F, -304.862F), new Vector2(691.567993F, -304.735992F), new Vector2(692.528015F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(694.447998F, -304.735992F), new Vector2(695.978027F, -305.20401F), new Vector2(697.117981F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0722()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(670.604004F, -305.096008F));
+ builder.AddLine(new Vector2(670.604004F, -322.196014F));
+ builder.AddLine(new Vector2(667.364014F, -322.196014F));
+ builder.AddLine(new Vector2(667.364014F, -305.096008F));
+ builder.AddLine(new Vector2(670.604004F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(682.700012F, -305.096008F));
+ builder.AddLine(new Vector2(682.700012F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(682.700012F, -316.891998F), new Vector2(682.411987F, -318.002014F), new Vector2(681.835999F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(681.26001F, -320.089996F), new Vector2(680.473999F, -320.936005F), new Vector2(679.478027F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(678.481995F, -322.231995F), new Vector2(677.335999F, -322.556F), new Vector2(676.039978F, -322.556F));
+ builder.AddCubicBezier(new Vector2(674.744019F, -322.556F), new Vector2(673.580017F, -322.261993F), new Vector2(672.547974F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(671.515991F, -321.085999F), new Vector2(670.711975F, -320.287994F), new Vector2(670.135986F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(669.559998F, -318.272003F), new Vector2(669.271973F, -317.119995F), new Vector2(669.271973F, -315.824005F));
+ builder.AddLine(new Vector2(670.604004F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(670.604004F, -315.932007F), new Vector2(670.796021F, -316.700012F), new Vector2(671.179993F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(671.564026F, -318.044006F), new Vector2(672.09198F, -318.571991F), new Vector2(672.763977F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(673.435974F, -319.339996F), new Vector2(674.203979F, -319.532013F), new Vector2(675.067993F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(676.364014F, -319.532013F), new Vector2(677.414001F, -319.112F), new Vector2(678.218018F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(679.021973F, -317.432007F), new Vector2(679.424011F, -316.364014F), new Vector2(679.424011F, -315.067993F));
+ builder.AddLine(new Vector2(679.424011F, -305.096008F));
+ builder.AddLine(new Vector2(682.700012F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0723()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(659.768005F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(660.94397F, -305.996002F), new Vector2(661.952026F, -306.727997F), new Vector2(662.791992F, -307.687988F));
+ builder.AddLine(new Vector2(660.703979F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(660.127991F, -309.140015F), new Vector2(659.437988F, -308.635986F), new Vector2(658.633972F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(657.830017F, -307.963989F), new Vector2(656.947998F, -307.79599F), new Vector2(655.987976F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(654.835999F, -307.79599F), new Vector2(653.815979F, -308.041992F), new Vector2(652.927979F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(652.039978F, -309.026001F), new Vector2(651.356018F, -309.721985F), new Vector2(650.875977F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(650.395996F, -311.522003F), new Vector2(650.156006F, -312.571991F), new Vector2(650.156006F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(650.156006F, -314.947998F), new Vector2(650.383972F, -315.967987F), new Vector2(650.840027F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(651.296021F, -317.696014F), new Vector2(651.94397F, -318.368011F), new Vector2(652.783997F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(653.624023F, -319.328003F), new Vector2(654.596008F, -319.567993F), new Vector2(655.700012F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(656.755981F, -319.567993F), new Vector2(657.656006F, -319.346008F), new Vector2(658.400024F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(659.143982F, -318.458008F), new Vector2(659.719971F, -317.834015F), new Vector2(660.127991F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(660.536011F, -316.226013F), new Vector2(660.73999F, -315.247986F), new Vector2(660.73999F, -314.096008F));
+ builder.AddLine(new Vector2(661.927979F, -315.140015F));
+ builder.AddLine(new Vector2(649.219971F, -315.140015F));
+ builder.AddLine(new Vector2(649.219971F, -312.440002F));
+ builder.AddLine(new Vector2(663.656006F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(663.728027F, -312.776001F), new Vector2(663.776001F, -313.082001F), new Vector2(663.799988F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(663.823975F, -313.634003F), new Vector2(663.835999F, -313.891998F), new Vector2(663.835999F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(663.835999F, -315.764008F), new Vector2(663.494019F, -317.216003F), new Vector2(662.809998F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(662.125977F, -319.76001F), new Vector2(661.171997F, -320.756012F), new Vector2(659.947998F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(658.723999F, -322.196014F), new Vector2(657.33197F, -322.556F), new Vector2(655.771973F, -322.556F));
+ builder.AddCubicBezier(new Vector2(654.116028F, -322.556F), new Vector2(652.622009F, -322.165985F), new Vector2(651.289978F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(649.958008F, -320.605988F), new Vector2(648.901978F, -319.544006F), new Vector2(648.122009F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(647.34198F, -316.855988F), new Vector2(646.952026F, -315.343994F), new Vector2(646.952026F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(646.952026F, -311.959991F), new Vector2(647.348022F, -310.436005F), new Vector2(648.140015F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(648.932007F, -307.747986F), new Vector2(650.005981F, -306.686005F), new Vector2(651.362F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(652.718018F, -305.126007F), new Vector2(654.26001F, -304.735992F), new Vector2(655.987976F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(657.33197F, -304.735992F), new Vector2(658.59198F, -304.988007F), new Vector2(659.768005F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0724()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(641.911987F, -319.243988F));
+ builder.AddLine(new Vector2(644.900024F, -320.432007F));
+ builder.AddLine(new Vector2(644.900024F, -322.196014F));
+ builder.AddLine(new Vector2(631.544006F, -322.196014F));
+ builder.AddLine(new Vector2(631.544006F, -319.243988F));
+ builder.AddLine(new Vector2(641.911987F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(644.684021F, -305.096008F));
+ builder.AddLine(new Vector2(644.684021F, -308.048004F));
+ builder.AddLine(new Vector2(633.812012F, -308.048004F));
+ builder.AddLine(new Vector2(630.895996F, -306.859985F));
+ builder.AddLine(new Vector2(630.895996F, -305.096008F));
+ builder.AddLine(new Vector2(644.684021F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(634.747986F, -306.859985F));
+ builder.AddLine(new Vector2(644.900024F, -320.432007F));
+ builder.AddLine(new Vector2(641.083984F, -320.432007F));
+ builder.AddLine(new Vector2(630.895996F, -306.859985F));
+ builder.AddLine(new Vector2(634.747986F, -306.859985F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0725()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(627.367981F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(627.752014F, -326.605988F), new Vector2(627.94397F, -327.104004F), new Vector2(627.94397F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(627.94397F, -328.279999F), new Vector2(627.752014F, -328.765991F), new Vector2(627.367981F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(626.984009F, -329.558014F), new Vector2(626.492004F, -329.756012F), new Vector2(625.892029F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(625.291992F, -329.756012F), new Vector2(624.799988F, -329.558014F), new Vector2(624.416016F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(624.031982F, -328.765991F), new Vector2(623.840027F, -328.279999F), new Vector2(623.840027F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(623.840027F, -327.104004F), new Vector2(624.031982F, -326.605988F), new Vector2(624.416016F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(624.799988F, -325.813995F), new Vector2(625.291992F, -325.615997F), new Vector2(625.892029F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(626.492004F, -325.615997F), new Vector2(626.984009F, -325.813995F), new Vector2(627.367981F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(627.512024F, -305.096008F));
+ builder.AddLine(new Vector2(627.512024F, -322.196014F));
+ builder.AddLine(new Vector2(624.236023F, -322.196014F));
+ builder.AddLine(new Vector2(624.236023F, -305.096008F));
+ builder.AddLine(new Vector2(627.512024F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0726()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(621.067993F, -319.243988F));
+ builder.AddLine(new Vector2(621.067993F, -322.196014F));
+ builder.AddLine(new Vector2(609.403992F, -322.196014F));
+ builder.AddLine(new Vector2(609.403992F, -319.243988F));
+ builder.AddLine(new Vector2(621.067993F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(616.856018F, -305.096008F));
+ builder.AddLine(new Vector2(616.856018F, -329.359985F));
+ builder.AddLine(new Vector2(613.616028F, -329.359985F));
+ builder.AddLine(new Vector2(613.616028F, -305.096008F));
+ builder.AddLine(new Vector2(616.856018F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0727()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(606.05603F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(606.440002F, -326.605988F), new Vector2(606.632019F, -327.104004F), new Vector2(606.632019F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(606.632019F, -328.279999F), new Vector2(606.440002F, -328.765991F), new Vector2(606.05603F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(605.671997F, -329.558014F), new Vector2(605.179993F, -329.756012F), new Vector2(604.580017F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(603.97998F, -329.756012F), new Vector2(603.487976F, -329.558014F), new Vector2(603.104004F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(602.719971F, -328.765991F), new Vector2(602.528015F, -328.279999F), new Vector2(602.528015F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(602.528015F, -327.104004F), new Vector2(602.719971F, -326.605988F), new Vector2(603.104004F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(603.487976F, -325.813995F), new Vector2(603.97998F, -325.615997F), new Vector2(604.580017F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(605.179993F, -325.615997F), new Vector2(605.671997F, -325.813995F), new Vector2(606.05603F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(606.200012F, -305.096008F));
+ builder.AddLine(new Vector2(606.200012F, -322.196014F));
+ builder.AddLine(new Vector2(602.924011F, -322.196014F));
+ builder.AddLine(new Vector2(602.924011F, -305.096008F));
+ builder.AddLine(new Vector2(606.200012F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0728()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(596.822021F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(597.961975F, -305.996002F), new Vector2(598.927979F, -306.70401F), new Vector2(599.719971F, -307.615997F));
+ builder.AddLine(new Vector2(597.596008F, -309.776001F));
+ builder.AddCubicBezier(new Vector2(597.044006F, -309.152008F), new Vector2(596.390015F, -308.678009F), new Vector2(595.633972F, -308.354004F));
+ builder.AddCubicBezier(new Vector2(594.877991F, -308.029999F), new Vector2(594.044006F, -307.868011F), new Vector2(593.132019F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(592.052002F, -307.868011F), new Vector2(591.09198F, -308.119995F), new Vector2(590.252014F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(589.411987F, -309.127991F), new Vector2(588.752014F, -309.812012F), new Vector2(588.271973F, -310.675995F));
+ builder.AddCubicBezier(new Vector2(587.791992F, -311.540009F), new Vector2(587.552002F, -312.536011F), new Vector2(587.552002F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(587.552002F, -314.791992F), new Vector2(587.791992F, -315.787994F), new Vector2(588.271973F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(588.752014F, -317.515991F), new Vector2(589.411987F, -318.194F), new Vector2(590.252014F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(591.09198F, -319.178009F), new Vector2(592.052002F, -319.424011F), new Vector2(593.132019F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(594.02002F, -319.424011F), new Vector2(594.848022F, -319.261993F), new Vector2(595.616028F, -318.937988F));
+ builder.AddCubicBezier(new Vector2(596.383972F, -318.614014F), new Vector2(597.031982F, -318.140015F), new Vector2(597.559998F, -317.515991F));
+ builder.AddLine(new Vector2(599.719971F, -319.675995F));
+ builder.AddCubicBezier(new Vector2(598.903992F, -320.612F), new Vector2(597.932007F, -321.325989F), new Vector2(596.804016F, -321.817993F));
+ builder.AddCubicBezier(new Vector2(595.676025F, -322.309998F), new Vector2(594.452026F, -322.556F), new Vector2(593.132019F, -322.556F));
+ builder.AddCubicBezier(new Vector2(591.452026F, -322.556F), new Vector2(589.934021F, -322.165985F), new Vector2(588.578003F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(587.221985F, -320.605988F), new Vector2(586.153992F, -319.544006F), new Vector2(585.374023F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(584.593994F, -316.855988F), new Vector2(584.203979F, -315.343994F), new Vector2(584.203979F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(584.203979F, -312.007996F), new Vector2(584.593994F, -310.502014F), new Vector2(585.374023F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(586.153992F, -307.790009F), new Vector2(587.221985F, -306.716003F), new Vector2(588.578003F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(589.934021F, -305.131989F), new Vector2(591.452026F, -304.735992F), new Vector2(593.132019F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(594.452026F, -304.735992F), new Vector2(595.682007F, -304.988007F), new Vector2(596.822021F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0729()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(570.271973F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(571.447998F, -305.996002F), new Vector2(572.455994F, -306.727997F), new Vector2(573.296021F, -307.687988F));
+ builder.AddLine(new Vector2(571.208008F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(570.632019F, -309.140015F), new Vector2(569.942017F, -308.635986F), new Vector2(569.138F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(568.333984F, -307.963989F), new Vector2(567.452026F, -307.79599F), new Vector2(566.492004F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(565.340027F, -307.79599F), new Vector2(564.320007F, -308.041992F), new Vector2(563.432007F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(562.544006F, -309.026001F), new Vector2(561.859985F, -309.721985F), new Vector2(561.380005F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(560.900024F, -311.522003F), new Vector2(560.659973F, -312.571991F), new Vector2(560.659973F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(560.659973F, -314.947998F), new Vector2(560.888F, -315.967987F), new Vector2(561.343994F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(561.799988F, -317.696014F), new Vector2(562.447998F, -318.368011F), new Vector2(563.288025F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(564.127991F, -319.328003F), new Vector2(565.099976F, -319.567993F), new Vector2(566.203979F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(567.26001F, -319.567993F), new Vector2(568.159973F, -319.346008F), new Vector2(568.903992F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(569.64801F, -318.458008F), new Vector2(570.223999F, -317.834015F), new Vector2(570.632019F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(571.039978F, -316.226013F), new Vector2(571.244019F, -315.247986F), new Vector2(571.244019F, -314.096008F));
+ builder.AddLine(new Vector2(572.432007F, -315.140015F));
+ builder.AddLine(new Vector2(559.723999F, -315.140015F));
+ builder.AddLine(new Vector2(559.723999F, -312.440002F));
+ builder.AddLine(new Vector2(574.159973F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(574.231995F, -312.776001F), new Vector2(574.280029F, -313.082001F), new Vector2(574.304016F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(574.328003F, -313.634003F), new Vector2(574.340027F, -313.891998F), new Vector2(574.340027F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(574.340027F, -315.764008F), new Vector2(573.997986F, -317.216003F), new Vector2(573.314026F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(572.630005F, -319.76001F), new Vector2(571.676025F, -320.756012F), new Vector2(570.452026F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(569.228027F, -322.196014F), new Vector2(567.835999F, -322.556F), new Vector2(566.276001F, -322.556F));
+ builder.AddCubicBezier(new Vector2(564.619995F, -322.556F), new Vector2(563.125977F, -322.165985F), new Vector2(561.794006F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(560.461975F, -320.605988F), new Vector2(559.406006F, -319.544006F), new Vector2(558.625977F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(557.846008F, -316.855988F), new Vector2(557.455994F, -315.343994F), new Vector2(557.455994F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(557.455994F, -311.959991F), new Vector2(557.85199F, -310.436005F), new Vector2(558.643982F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(559.435974F, -307.747986F), new Vector2(560.51001F, -306.686005F), new Vector2(561.866028F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(563.221985F, -305.126007F), new Vector2(564.763977F, -304.735992F), new Vector2(566.492004F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(567.835999F, -304.735992F), new Vector2(569.096008F, -304.988007F), new Vector2(570.271973F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0730()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(542.083984F, -305.096008F));
+ builder.AddLine(new Vector2(542.083984F, -330.799988F));
+ builder.AddLine(new Vector2(538.843994F, -330.799988F));
+ builder.AddLine(new Vector2(538.843994F, -305.096008F));
+ builder.AddLine(new Vector2(542.083984F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(554.179993F, -305.096008F));
+ builder.AddLine(new Vector2(554.179993F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(554.179993F, -317.059998F), new Vector2(553.892029F, -318.247986F), new Vector2(553.315979F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(552.73999F, -320.312012F), new Vector2(551.953979F, -321.115997F), new Vector2(550.958008F, -321.691986F));
+ builder.AddCubicBezier(new Vector2(549.961975F, -322.268005F), new Vector2(548.815979F, -322.556F), new Vector2(547.52002F, -322.556F));
+ builder.AddCubicBezier(new Vector2(546.223999F, -322.556F), new Vector2(545.059998F, -322.261993F), new Vector2(544.028015F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(542.995972F, -321.085999F), new Vector2(542.192017F, -320.287994F), new Vector2(541.616028F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(541.039978F, -318.272003F), new Vector2(540.752014F, -317.119995F), new Vector2(540.752014F, -315.824005F));
+ builder.AddLine(new Vector2(542.083984F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(542.083984F, -315.932007F), new Vector2(542.276001F, -316.700012F), new Vector2(542.659973F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(543.044006F, -318.044006F), new Vector2(543.572021F, -318.571991F), new Vector2(544.244019F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(544.916016F, -319.339996F), new Vector2(545.684021F, -319.532013F), new Vector2(546.547974F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(547.843994F, -319.532013F), new Vector2(548.893982F, -319.112F), new Vector2(549.697998F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(550.502014F, -317.432007F), new Vector2(550.903992F, -316.364014F), new Vector2(550.903992F, -315.067993F));
+ builder.AddLine(new Vector2(550.903992F, -305.096008F));
+ builder.AddLine(new Vector2(554.179993F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0731()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(535.676025F, -319.243988F));
+ builder.AddLine(new Vector2(535.676025F, -322.196014F));
+ builder.AddLine(new Vector2(524.012024F, -322.196014F));
+ builder.AddLine(new Vector2(524.012024F, -319.243988F));
+ builder.AddLine(new Vector2(535.676025F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(531.463989F, -305.096008F));
+ builder.AddLine(new Vector2(531.463989F, -329.359985F));
+ builder.AddLine(new Vector2(528.223999F, -329.359985F));
+ builder.AddLine(new Vector2(528.223999F, -305.096008F));
+ builder.AddLine(new Vector2(531.463989F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0732()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(513.752014F, -305.096008F));
+ builder.AddLine(new Vector2(513.752014F, -316.075989F));
+ builder.AddCubicBezier(new Vector2(513.752014F, -317.420013F), new Vector2(513.458008F, -318.571991F), new Vector2(512.869995F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(512.281982F, -320.492004F), new Vector2(511.496002F, -321.235992F), new Vector2(510.511993F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(509.528015F, -322.291992F), new Vector2(508.411987F, -322.556F), new Vector2(507.164001F, -322.556F));
+ builder.AddCubicBezier(new Vector2(505.963989F, -322.556F), new Vector2(504.859985F, -322.286011F), new Vector2(503.85199F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(502.843994F, -321.205994F), new Vector2(502.022003F, -320.462006F), new Vector2(501.385986F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(500.75F, -318.56601F), new Vector2(500.395996F, -317.432007F), new Vector2(500.324005F, -316.112F));
+ builder.AddLine(new Vector2(502.160004F, -315.428009F));
+ builder.AddCubicBezier(new Vector2(502.160004F, -316.291992F), new Vector2(502.35199F, -317.023987F), new Vector2(502.735992F, -317.623993F));
+ builder.AddCubicBezier(new Vector2(503.119995F, -318.223999F), new Vector2(503.630005F, -318.691986F), new Vector2(504.265991F, -319.028015F));
+ builder.AddCubicBezier(new Vector2(504.902008F, -319.364014F), new Vector2(505.615997F, -319.532013F), new Vector2(506.40799F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(507.559998F, -319.532013F), new Vector2(508.526001F, -319.165985F), new Vector2(509.306F, -318.43399F));
+ builder.AddCubicBezier(new Vector2(510.085999F, -317.701996F), new Vector2(510.476013F, -316.700012F), new Vector2(510.476013F, -315.428009F));
+ builder.AddLine(new Vector2(510.476013F, -305.096008F));
+ builder.AddLine(new Vector2(513.752014F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(502.160004F, -305.096008F));
+ builder.AddLine(new Vector2(502.160004F, -316.112F));
+ builder.AddCubicBezier(new Vector2(502.160004F, -317.432007F), new Vector2(501.877991F, -318.571991F), new Vector2(501.313995F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(500.75F, -320.492004F), new Vector2(499.981995F, -321.235992F), new Vector2(499.01001F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(498.037994F, -322.291992F), new Vector2(496.951996F, -322.556F), new Vector2(495.752014F, -322.556F));
+ builder.AddCubicBezier(new Vector2(494.528015F, -322.556F), new Vector2(493.424011F, -322.286011F), new Vector2(492.440002F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(491.455994F, -321.205994F), new Vector2(490.682007F, -320.455994F), new Vector2(490.118011F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(489.553986F, -318.536011F), new Vector2(489.272003F, -317.40799F), new Vector2(489.272003F, -316.112F));
+ builder.AddLine(new Vector2(490.604004F, -315.428009F));
+ builder.AddCubicBezier(new Vector2(490.604004F, -316.291992F), new Vector2(490.79599F, -317.023987F), new Vector2(491.179993F, -317.623993F));
+ builder.AddCubicBezier(new Vector2(491.563995F, -318.223999F), new Vector2(492.067993F, -318.691986F), new Vector2(492.691986F, -319.028015F));
+ builder.AddCubicBezier(new Vector2(493.31601F, -319.364014F), new Vector2(494.023987F, -319.532013F), new Vector2(494.81601F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(495.992004F, -319.532013F), new Vector2(496.970001F, -319.165985F), new Vector2(497.75F, -318.43399F));
+ builder.AddCubicBezier(new Vector2(498.529999F, -317.701996F), new Vector2(498.920013F, -316.700012F), new Vector2(498.920013F, -315.428009F));
+ builder.AddLine(new Vector2(498.920013F, -305.096008F));
+ builder.AddLine(new Vector2(502.160004F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(490.604004F, -305.096008F));
+ builder.AddLine(new Vector2(490.604004F, -322.196014F));
+ builder.AddLine(new Vector2(487.364014F, -322.196014F));
+ builder.AddLine(new Vector2(487.364014F, -305.096008F));
+ builder.AddLine(new Vector2(490.604004F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0733()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(471.955994F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(471.115997F, -309.127991F), new Vector2(470.455994F, -309.817993F), new Vector2(469.976013F, -310.694F));
+ builder.AddCubicBezier(new Vector2(469.496002F, -311.570007F), new Vector2(469.256012F, -312.571991F), new Vector2(469.256012F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(469.256012F, -314.803986F), new Vector2(469.496002F, -315.787994F), new Vector2(469.976013F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(470.455994F, -317.515991F), new Vector2(471.115997F, -318.194F), new Vector2(471.955994F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(472.79599F, -319.178009F), new Vector2(473.743988F, -319.424011F), new Vector2(474.799988F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(475.903992F, -319.424011F), new Vector2(476.869995F, -319.178009F), new Vector2(477.697998F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(478.526001F, -318.194F), new Vector2(479.186005F, -317.515991F), new Vector2(479.678009F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(480.170013F, -315.787994F), new Vector2(480.415985F, -314.803986F), new Vector2(480.415985F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(480.415985F, -312.571991F), new Vector2(480.175995F, -311.570007F), new Vector2(479.696014F, -310.694F));
+ builder.AddCubicBezier(new Vector2(479.216003F, -309.817993F), new Vector2(478.556F, -309.127991F), new Vector2(477.716003F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(476.876007F, -308.119995F), new Vector2(475.903992F, -307.868011F), new Vector2(474.799988F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(473.743988F, -307.868011F), new Vector2(472.79599F, -308.119995F), new Vector2(471.955994F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(479.354004F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(480.709991F, -306.716003F), new Vector2(481.783997F, -307.790009F), new Vector2(482.575989F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(483.368011F, -310.502014F), new Vector2(483.764008F, -312.019989F), new Vector2(483.764008F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(483.764008F, -315.355988F), new Vector2(483.368011F, -316.855988F), new Vector2(482.575989F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(481.783997F, -319.544006F), new Vector2(480.709991F, -320.605988F), new Vector2(479.354004F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(477.997986F, -322.165985F), new Vector2(476.480011F, -322.556F), new Vector2(474.799988F, -322.556F));
+ builder.AddCubicBezier(new Vector2(473.144012F, -322.556F), new Vector2(471.644012F, -322.160004F), new Vector2(470.299988F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(468.955994F, -320.575989F), new Vector2(467.888F, -319.514008F), new Vector2(467.096008F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(466.303986F, -316.850006F), new Vector2(465.90799F, -315.355988F), new Vector2(465.90799F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(465.90799F, -312.019989F), new Vector2(466.303986F, -310.502014F), new Vector2(467.096008F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(467.888F, -307.790009F), new Vector2(468.955994F, -306.716003F), new Vector2(470.299988F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(471.644012F, -305.131989F), new Vector2(473.144012F, -304.735992F), new Vector2(474.799988F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(476.480011F, -304.735992F), new Vector2(477.997986F, -305.131989F), new Vector2(479.354004F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0734()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(457.519989F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(458.287994F, -319.112F), new Vector2(459.272003F, -319.496002F), new Vector2(460.471985F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(461.048004F, -319.496002F), new Vector2(461.552002F, -319.411987F), new Vector2(461.984009F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(462.415985F, -319.075989F), new Vector2(462.812012F, -318.799988F), new Vector2(463.171997F, -318.415985F));
+ builder.AddLine(new Vector2(465.29599F, -320.612F));
+ builder.AddCubicBezier(new Vector2(464.696014F, -321.308014F), new Vector2(464.048004F, -321.806F), new Vector2(463.35199F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(462.656006F, -322.406006F), new Vector2(461.876007F, -322.556F), new Vector2(461.011993F, -322.556F));
+ builder.AddCubicBezier(new Vector2(459.115997F, -322.556F), new Vector2(457.664001F, -321.90799F), new Vector2(456.656006F, -320.612F));
+ builder.AddCubicBezier(new Vector2(455.64801F, -319.31601F), new Vector2(455.144012F, -317.575989F), new Vector2(455.144012F, -315.391998F));
+ builder.AddLine(new Vector2(456.368011F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(456.368011F, -316.399994F), new Vector2(456.752014F, -317.575989F), new Vector2(457.519989F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(456.368011F, -305.096008F));
+ builder.AddLine(new Vector2(456.368011F, -322.196014F));
+ builder.AddLine(new Vector2(453.127991F, -322.196014F));
+ builder.AddLine(new Vector2(453.127991F, -305.096008F));
+ builder.AddLine(new Vector2(456.368011F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0735()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(450.536011F, -319.243988F));
+ builder.AddLine(new Vector2(450.536011F, -322.196014F));
+ builder.AddLine(new Vector2(437.64801F, -322.196014F));
+ builder.AddLine(new Vector2(437.64801F, -319.243988F));
+ builder.AddLine(new Vector2(450.536011F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(445.100006F, -305.096008F));
+ builder.AddLine(new Vector2(445.100006F, -324.752014F));
+ builder.AddCubicBezier(new Vector2(445.100006F, -325.808014F), new Vector2(445.381989F, -326.630005F), new Vector2(445.946014F, -327.217987F));
+ builder.AddCubicBezier(new Vector2(446.51001F, -327.806F), new Vector2(447.308014F, -328.100006F), new Vector2(448.339996F, -328.100006F));
+ builder.AddCubicBezier(new Vector2(448.891998F, -328.100006F), new Vector2(449.359985F, -328.015991F), new Vector2(449.743988F, -327.847992F));
+ builder.AddCubicBezier(new Vector2(450.127991F, -327.679993F), new Vector2(450.476013F, -327.428009F), new Vector2(450.787994F, -327.09201F));
+ builder.AddLine(new Vector2(452.911987F, -329.179993F));
+ builder.AddCubicBezier(new Vector2(452.312012F, -329.828003F), new Vector2(451.652008F, -330.320007F), new Vector2(450.932007F, -330.656006F));
+ builder.AddCubicBezier(new Vector2(450.212006F, -330.992004F), new Vector2(449.359985F, -331.160004F), new Vector2(448.376007F, -331.160004F));
+ builder.AddCubicBezier(new Vector2(447.079987F, -331.160004F), new Vector2(445.940002F, -330.884003F), new Vector2(444.955994F, -330.332001F));
+ builder.AddCubicBezier(new Vector2(443.971985F, -329.779999F), new Vector2(443.20401F, -329.023987F), new Vector2(442.652008F, -328.063995F));
+ builder.AddCubicBezier(new Vector2(442.100006F, -327.104004F), new Vector2(441.824005F, -326F), new Vector2(441.824005F, -324.752014F));
+ builder.AddLine(new Vector2(441.824005F, -305.096008F));
+ builder.AddLine(new Vector2(445.100006F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0736()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(421.268005F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(422.036011F, -319.112F), new Vector2(423.019989F, -319.496002F), new Vector2(424.220001F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(424.79599F, -319.496002F), new Vector2(425.299988F, -319.411987F), new Vector2(425.731995F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(426.164001F, -319.075989F), new Vector2(426.559998F, -318.799988F), new Vector2(426.920013F, -318.415985F));
+ builder.AddLine(new Vector2(429.044006F, -320.612F));
+ builder.AddCubicBezier(new Vector2(428.444F, -321.308014F), new Vector2(427.79599F, -321.806F), new Vector2(427.100006F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(426.403992F, -322.406006F), new Vector2(425.623993F, -322.556F), new Vector2(424.76001F, -322.556F));
+ builder.AddCubicBezier(new Vector2(422.864014F, -322.556F), new Vector2(421.411987F, -321.90799F), new Vector2(420.403992F, -320.612F));
+ builder.AddCubicBezier(new Vector2(419.395996F, -319.31601F), new Vector2(418.891998F, -317.575989F), new Vector2(418.891998F, -315.391998F));
+ builder.AddLine(new Vector2(420.115997F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(420.115997F, -316.399994F), new Vector2(420.5F, -317.575989F), new Vector2(421.268005F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(420.115997F, -305.096008F));
+ builder.AddLine(new Vector2(420.115997F, -322.196014F));
+ builder.AddLine(new Vector2(416.876007F, -322.196014F));
+ builder.AddLine(new Vector2(416.876007F, -305.096008F));
+ builder.AddLine(new Vector2(420.115997F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0737()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(409.279999F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(410.455994F, -305.996002F), new Vector2(411.463989F, -306.727997F), new Vector2(412.303986F, -307.687988F));
+ builder.AddLine(new Vector2(410.216003F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(409.640015F, -309.140015F), new Vector2(408.950012F, -308.635986F), new Vector2(408.145996F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(407.34201F, -307.963989F), new Vector2(406.459991F, -307.79599F), new Vector2(405.5F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(404.347992F, -307.79599F), new Vector2(403.328003F, -308.041992F), new Vector2(402.440002F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(401.552002F, -309.026001F), new Vector2(400.868011F, -309.721985F), new Vector2(400.388F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(399.90799F, -311.522003F), new Vector2(399.667999F, -312.571991F), new Vector2(399.667999F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(399.667999F, -314.947998F), new Vector2(399.895996F, -315.967987F), new Vector2(400.35199F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(400.808014F, -317.696014F), new Vector2(401.455994F, -318.368011F), new Vector2(402.29599F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(403.135986F, -319.328003F), new Vector2(404.108002F, -319.567993F), new Vector2(405.212006F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(406.268005F, -319.567993F), new Vector2(407.167999F, -319.346008F), new Vector2(407.911987F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(408.656006F, -318.458008F), new Vector2(409.231995F, -317.834015F), new Vector2(409.640015F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(410.048004F, -316.226013F), new Vector2(410.252014F, -315.247986F), new Vector2(410.252014F, -314.096008F));
+ builder.AddLine(new Vector2(411.440002F, -315.140015F));
+ builder.AddLine(new Vector2(398.731995F, -315.140015F));
+ builder.AddLine(new Vector2(398.731995F, -312.440002F));
+ builder.AddLine(new Vector2(413.167999F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(413.23999F, -312.776001F), new Vector2(413.287994F, -313.082001F), new Vector2(413.312012F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(413.335999F, -313.634003F), new Vector2(413.347992F, -313.891998F), new Vector2(413.347992F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(413.347992F, -315.764008F), new Vector2(413.006012F, -317.216003F), new Vector2(412.321991F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(411.638F, -319.76001F), new Vector2(410.68399F, -320.756012F), new Vector2(409.459991F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(408.235992F, -322.196014F), new Vector2(406.843994F, -322.556F), new Vector2(405.283997F, -322.556F));
+ builder.AddCubicBezier(new Vector2(403.627991F, -322.556F), new Vector2(402.134003F, -322.165985F), new Vector2(400.802002F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(399.470001F, -320.605988F), new Vector2(398.414001F, -319.544006F), new Vector2(397.634003F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(396.854004F, -316.855988F), new Vector2(396.463989F, -315.343994F), new Vector2(396.463989F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(396.463989F, -311.959991F), new Vector2(396.859985F, -310.436005F), new Vector2(397.652008F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(398.444F, -307.747986F), new Vector2(399.518005F, -306.686005F), new Vector2(400.873993F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(402.230011F, -305.126007F), new Vector2(403.772003F, -304.735992F), new Vector2(405.5F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(406.843994F, -304.735992F), new Vector2(408.104004F, -304.988007F), new Vector2(409.279999F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0738()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(381.649994F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(380.821991F, -309.614014F), new Vector2(380.174011F, -310.268005F), new Vector2(379.705994F, -311.108002F));
+ builder.AddCubicBezier(new Vector2(379.238007F, -311.947998F), new Vector2(379.003998F, -312.90799F), new Vector2(379.003998F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(379.003998F, -315.067993F), new Vector2(379.238007F, -316.022003F), new Vector2(379.705994F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(380.174011F, -317.678009F), new Vector2(380.81601F, -318.325989F), new Vector2(381.631989F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(382.447998F, -319.261993F), new Vector2(383.395996F, -319.496002F), new Vector2(384.476013F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(385.532013F, -319.496002F), new Vector2(386.462006F, -319.261993F), new Vector2(387.265991F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(388.070007F, -318.325989F), new Vector2(388.694F, -317.678009F), new Vector2(389.138F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(389.582001F, -316.022003F), new Vector2(389.803986F, -315.056F), new Vector2(389.803986F, -313.951996F));
+ builder.AddCubicBezier(new Vector2(389.803986F, -312.847992F), new Vector2(389.582001F, -311.881989F), new Vector2(389.138F, -311.053986F));
+ builder.AddCubicBezier(new Vector2(388.694F, -310.226013F), new Vector2(388.075989F, -309.584015F), new Vector2(387.283997F, -309.127991F));
+ builder.AddCubicBezier(new Vector2(386.492004F, -308.671997F), new Vector2(385.556F, -308.444F), new Vector2(384.476013F, -308.444F));
+ builder.AddCubicBezier(new Vector2(383.420013F, -308.444F), new Vector2(382.477997F, -308.678009F), new Vector2(381.649994F, -309.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(387.391998F, -306.175995F));
+ builder.AddCubicBezier(new Vector2(388.424011F, -306.70401F), new Vector2(389.246002F, -307.441986F), new Vector2(389.858002F, -308.390015F));
+ builder.AddCubicBezier(new Vector2(390.470001F, -309.338013F), new Vector2(390.812012F, -310.436005F), new Vector2(390.884003F, -311.68399F));
+ builder.AddLine(new Vector2(390.884003F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(390.812012F, -317.492004F), new Vector2(390.476013F, -318.60199F), new Vector2(389.876007F, -319.549988F));
+ builder.AddCubicBezier(new Vector2(389.276001F, -320.497986F), new Vector2(388.45401F, -321.235992F), new Vector2(387.410004F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(386.365997F, -322.291992F), new Vector2(385.171997F, -322.556F), new Vector2(383.828003F, -322.556F));
+ builder.AddCubicBezier(new Vector2(382.291992F, -322.556F), new Vector2(380.899994F, -322.178009F), new Vector2(379.652008F, -321.421997F));
+ builder.AddCubicBezier(new Vector2(378.403992F, -320.665985F), new Vector2(377.425995F, -319.645996F), new Vector2(376.717987F, -318.362F));
+ builder.AddCubicBezier(new Vector2(376.01001F, -317.078003F), new Vector2(375.656006F, -315.619995F), new Vector2(375.656006F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(375.656006F, -312.355988F), new Vector2(376.015991F, -310.885986F), new Vector2(376.735992F, -309.578003F));
+ builder.AddCubicBezier(new Vector2(377.455994F, -308.269989F), new Vector2(378.43399F, -307.243988F), new Vector2(379.670013F, -306.5F));
+ builder.AddCubicBezier(new Vector2(380.906006F, -305.756012F), new Vector2(382.303986F, -305.384003F), new Vector2(383.864014F, -305.384003F));
+ builder.AddCubicBezier(new Vector2(385.18399F, -305.384003F), new Vector2(386.359985F, -305.64801F), new Vector2(387.391998F, -306.175995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(388.562012F, -298.597992F));
+ builder.AddCubicBezier(new Vector2(389.917999F, -299.282013F), new Vector2(390.973999F, -300.242004F), new Vector2(391.730011F, -301.477997F));
+ builder.AddCubicBezier(new Vector2(392.485992F, -302.713989F), new Vector2(392.864014F, -304.14801F), new Vector2(392.864014F, -305.779999F));
+ builder.AddLine(new Vector2(392.864014F, -322.196014F));
+ builder.AddLine(new Vector2(389.623993F, -322.196014F));
+ builder.AddLine(new Vector2(389.623993F, -317.696014F));
+ builder.AddLine(new Vector2(390.200012F, -313.880005F));
+ builder.AddLine(new Vector2(389.623993F, -310.028015F));
+ builder.AddLine(new Vector2(389.623993F, -305.779999F));
+ builder.AddCubicBezier(new Vector2(389.623993F, -304.220001F), new Vector2(389.108002F, -302.977997F), new Vector2(388.075989F, -302.053986F));
+ builder.AddCubicBezier(new Vector2(387.044006F, -301.130005F), new Vector2(385.664001F, -300.667999F), new Vector2(383.936005F, -300.667999F));
+ builder.AddCubicBezier(new Vector2(382.615997F, -300.667999F), new Vector2(381.476013F, -300.902008F), new Vector2(380.515991F, -301.369995F));
+ builder.AddCubicBezier(new Vector2(379.556F, -301.838013F), new Vector2(378.727997F, -302.515991F), new Vector2(378.032013F, -303.403992F));
+ builder.AddLine(new Vector2(375.90799F, -301.279999F));
+ builder.AddCubicBezier(new Vector2(376.747986F, -300.104004F), new Vector2(377.839996F, -299.191986F), new Vector2(379.18399F, -298.544006F));
+ builder.AddCubicBezier(new Vector2(380.528015F, -297.895996F), new Vector2(382.088013F, -297.571991F), new Vector2(383.864014F, -297.571991F));
+ builder.AddCubicBezier(new Vector2(385.640015F, -297.571991F), new Vector2(387.205994F, -297.914001F), new Vector2(388.562012F, -298.597992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0739()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(360.283997F, -305.096008F));
+ builder.AddLine(new Vector2(360.283997F, -322.196014F));
+ builder.AddLine(new Vector2(357.044006F, -322.196014F));
+ builder.AddLine(new Vector2(357.044006F, -305.096008F));
+ builder.AddLine(new Vector2(360.283997F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(372.380005F, -305.096008F));
+ builder.AddLine(new Vector2(372.380005F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(372.380005F, -316.891998F), new Vector2(372.09201F, -318.002014F), new Vector2(371.515991F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(370.940002F, -320.089996F), new Vector2(370.153992F, -320.936005F), new Vector2(369.15799F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(368.161987F, -322.231995F), new Vector2(367.015991F, -322.556F), new Vector2(365.720001F, -322.556F));
+ builder.AddCubicBezier(new Vector2(364.424011F, -322.556F), new Vector2(363.26001F, -322.261993F), new Vector2(362.227997F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(361.196014F, -321.085999F), new Vector2(360.391998F, -320.287994F), new Vector2(359.81601F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(359.23999F, -318.272003F), new Vector2(358.951996F, -317.119995F), new Vector2(358.951996F, -315.824005F));
+ builder.AddLine(new Vector2(360.283997F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(360.283997F, -315.932007F), new Vector2(360.476013F, -316.700012F), new Vector2(360.859985F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(361.243988F, -318.044006F), new Vector2(361.772003F, -318.571991F), new Vector2(362.444F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(363.115997F, -319.339996F), new Vector2(363.884003F, -319.532013F), new Vector2(364.747986F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(366.044006F, -319.532013F), new Vector2(367.093994F, -319.112F), new Vector2(367.89801F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(368.701996F, -317.432007F), new Vector2(369.104004F, -316.364014F), new Vector2(369.104004F, -315.067993F));
+ builder.AddLine(new Vector2(369.104004F, -305.096008F));
+ builder.AddLine(new Vector2(372.380005F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0740()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(352.328003F, -305.096008F));
+ builder.AddLine(new Vector2(352.328003F, -322.196014F));
+ builder.AddLine(new Vector2(349.052002F, -322.196014F));
+ builder.AddLine(new Vector2(349.052002F, -318.019989F));
+ builder.AddLine(new Vector2(349.664001F, -313.880005F));
+ builder.AddLine(new Vector2(349.052002F, -309.70401F));
+ builder.AddLine(new Vector2(349.052002F, -305.096008F));
+ builder.AddLine(new Vector2(352.328003F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(341.023987F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(340.18399F, -309.056F), new Vector2(339.529999F, -309.746002F), new Vector2(339.062012F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(338.593994F, -311.497986F), new Vector2(338.359985F, -312.511993F), new Vector2(338.359985F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(338.359985F, -314.791992F), new Vector2(338.593994F, -315.794006F), new Vector2(339.062012F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(339.529999F, -317.54599F), new Vector2(340.178009F, -318.235992F), new Vector2(341.006012F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(341.834015F, -319.243988F), new Vector2(342.787994F, -319.496002F), new Vector2(343.868011F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(344.947998F, -319.496002F), new Vector2(345.890015F, -319.25F), new Vector2(346.694F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(347.497986F, -318.265991F), new Vector2(348.127991F, -317.575989F), new Vector2(348.584015F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(349.040009F, -315.799988F), new Vector2(349.268005F, -314.779999F), new Vector2(349.268005F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(349.268005F, -311.924011F), new Vector2(348.776001F, -310.526001F), new Vector2(347.791992F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(346.808014F, -308.34201F), new Vector2(345.511993F, -307.79599F), new Vector2(343.903992F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(342.824005F, -307.79599F), new Vector2(341.864014F, -308.048004F), new Vector2(341.023987F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(346.855988F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(347.888F, -306.085999F), new Vector2(348.709991F, -306.835999F), new Vector2(349.321991F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(349.93399F, -308.756012F), new Vector2(350.276001F, -309.847992F), new Vector2(350.347992F, -311.071991F));
+ builder.AddLine(new Vector2(350.347992F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(350.276001F, -317.467987F), new Vector2(349.928009F, -318.56601F), new Vector2(349.303986F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(348.679993F, -320.462006F), new Vector2(347.858002F, -321.205994F), new Vector2(346.838013F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(345.817993F, -322.286011F), new Vector2(344.660004F, -322.556F), new Vector2(343.364014F, -322.556F));
+ builder.AddCubicBezier(new Vector2(341.779999F, -322.556F), new Vector2(340.358002F, -322.160004F), new Vector2(339.097992F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(337.838013F, -320.575989F), new Vector2(336.84201F, -319.507996F), new Vector2(336.109985F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(335.377991F, -316.820007F), new Vector2(335.011993F, -315.308014F), new Vector2(335.011993F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(335.011993F, -311.947998F), new Vector2(335.377991F, -310.436005F), new Vector2(336.109985F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(336.84201F, -307.747986F), new Vector2(337.838013F, -306.686005F), new Vector2(339.097992F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(340.358002F, -305.126007F), new Vector2(341.779999F, -304.735992F), new Vector2(343.364014F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(344.660004F, -304.735992F), new Vector2(345.824005F, -305.006012F), new Vector2(346.855988F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0741()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(321.044006F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(322.220001F, -305.996002F), new Vector2(323.227997F, -306.727997F), new Vector2(324.067993F, -307.687988F));
+ builder.AddLine(new Vector2(321.980011F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(321.403992F, -309.140015F), new Vector2(320.713989F, -308.635986F), new Vector2(319.910004F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(319.105988F, -307.963989F), new Vector2(318.223999F, -307.79599F), new Vector2(317.264008F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(316.112F, -307.79599F), new Vector2(315.09201F, -308.041992F), new Vector2(314.20401F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(313.31601F, -309.026001F), new Vector2(312.631989F, -309.721985F), new Vector2(312.152008F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(311.671997F, -311.522003F), new Vector2(311.432007F, -312.571991F), new Vector2(311.432007F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(311.432007F, -314.947998F), new Vector2(311.660004F, -315.967987F), new Vector2(312.115997F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(312.571991F, -317.696014F), new Vector2(313.220001F, -318.368011F), new Vector2(314.059998F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(314.899994F, -319.328003F), new Vector2(315.872009F, -319.567993F), new Vector2(316.976013F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(318.032013F, -319.567993F), new Vector2(318.932007F, -319.346008F), new Vector2(319.675995F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(320.420013F, -318.458008F), new Vector2(320.996002F, -317.834015F), new Vector2(321.403992F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(321.812012F, -316.226013F), new Vector2(322.015991F, -315.247986F), new Vector2(322.015991F, -314.096008F));
+ builder.AddLine(new Vector2(323.20401F, -315.140015F));
+ builder.AddLine(new Vector2(310.496002F, -315.140015F));
+ builder.AddLine(new Vector2(310.496002F, -312.440002F));
+ builder.AddLine(new Vector2(324.932007F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(325.003998F, -312.776001F), new Vector2(325.052002F, -313.082001F), new Vector2(325.075989F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(325.100006F, -313.634003F), new Vector2(325.112F, -313.891998F), new Vector2(325.112F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(325.112F, -315.764008F), new Vector2(324.769989F, -317.216003F), new Vector2(324.085999F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(323.402008F, -319.76001F), new Vector2(322.447998F, -320.756012F), new Vector2(321.223999F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(320F, -322.196014F), new Vector2(318.608002F, -322.556F), new Vector2(317.048004F, -322.556F));
+ builder.AddCubicBezier(new Vector2(315.391998F, -322.556F), new Vector2(313.89801F, -322.165985F), new Vector2(312.56601F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(311.234009F, -320.605988F), new Vector2(310.178009F, -319.544006F), new Vector2(309.39801F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(308.618011F, -316.855988F), new Vector2(308.227997F, -315.343994F), new Vector2(308.227997F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(308.227997F, -311.959991F), new Vector2(308.623993F, -310.436005F), new Vector2(309.415985F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(310.208008F, -307.747986F), new Vector2(311.282013F, -306.686005F), new Vector2(312.638F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(313.993988F, -305.126007F), new Vector2(315.536011F, -304.735992F), new Vector2(317.264008F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(318.608002F, -304.735992F), new Vector2(319.868011F, -304.988007F), new Vector2(321.044006F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0742()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(293.414001F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(292.585999F, -309.614014F), new Vector2(291.937988F, -310.268005F), new Vector2(291.470001F, -311.108002F));
+ builder.AddCubicBezier(new Vector2(291.002014F, -311.947998F), new Vector2(290.768005F, -312.90799F), new Vector2(290.768005F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(290.768005F, -315.067993F), new Vector2(291.002014F, -316.022003F), new Vector2(291.470001F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(291.937988F, -317.678009F), new Vector2(292.579987F, -318.325989F), new Vector2(293.395996F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(294.212006F, -319.261993F), new Vector2(295.160004F, -319.496002F), new Vector2(296.23999F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(297.29599F, -319.496002F), new Vector2(298.226013F, -319.261993F), new Vector2(299.029999F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(299.834015F, -318.325989F), new Vector2(300.458008F, -317.678009F), new Vector2(300.902008F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(301.346008F, -316.022003F), new Vector2(301.567993F, -315.056F), new Vector2(301.567993F, -313.951996F));
+ builder.AddCubicBezier(new Vector2(301.567993F, -312.847992F), new Vector2(301.346008F, -311.881989F), new Vector2(300.902008F, -311.053986F));
+ builder.AddCubicBezier(new Vector2(300.458008F, -310.226013F), new Vector2(299.839996F, -309.584015F), new Vector2(299.048004F, -309.127991F));
+ builder.AddCubicBezier(new Vector2(298.256012F, -308.671997F), new Vector2(297.320007F, -308.444F), new Vector2(296.23999F, -308.444F));
+ builder.AddCubicBezier(new Vector2(295.18399F, -308.444F), new Vector2(294.242004F, -308.678009F), new Vector2(293.414001F, -309.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(299.156006F, -306.175995F));
+ builder.AddCubicBezier(new Vector2(300.187988F, -306.70401F), new Vector2(301.01001F, -307.441986F), new Vector2(301.622009F, -308.390015F));
+ builder.AddCubicBezier(new Vector2(302.234009F, -309.338013F), new Vector2(302.575989F, -310.436005F), new Vector2(302.64801F, -311.68399F));
+ builder.AddLine(new Vector2(302.64801F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(302.575989F, -317.492004F), new Vector2(302.23999F, -318.60199F), new Vector2(301.640015F, -319.549988F));
+ builder.AddCubicBezier(new Vector2(301.040009F, -320.497986F), new Vector2(300.217987F, -321.235992F), new Vector2(299.174011F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(298.130005F, -322.291992F), new Vector2(296.936005F, -322.556F), new Vector2(295.59201F, -322.556F));
+ builder.AddCubicBezier(new Vector2(294.056F, -322.556F), new Vector2(292.664001F, -322.178009F), new Vector2(291.415985F, -321.421997F));
+ builder.AddCubicBezier(new Vector2(290.167999F, -320.665985F), new Vector2(289.190002F, -319.645996F), new Vector2(288.481995F, -318.362F));
+ builder.AddCubicBezier(new Vector2(287.773987F, -317.078003F), new Vector2(287.420013F, -315.619995F), new Vector2(287.420013F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(287.420013F, -312.355988F), new Vector2(287.779999F, -310.885986F), new Vector2(288.5F, -309.578003F));
+ builder.AddCubicBezier(new Vector2(289.220001F, -308.269989F), new Vector2(290.197998F, -307.243988F), new Vector2(291.43399F, -306.5F));
+ builder.AddCubicBezier(new Vector2(292.670013F, -305.756012F), new Vector2(294.067993F, -305.384003F), new Vector2(295.627991F, -305.384003F));
+ builder.AddCubicBezier(new Vector2(296.947998F, -305.384003F), new Vector2(298.123993F, -305.64801F), new Vector2(299.156006F, -306.175995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(300.325989F, -298.597992F));
+ builder.AddCubicBezier(new Vector2(301.682007F, -299.282013F), new Vector2(302.738007F, -300.242004F), new Vector2(303.493988F, -301.477997F));
+ builder.AddCubicBezier(new Vector2(304.25F, -302.713989F), new Vector2(304.627991F, -304.14801F), new Vector2(304.627991F, -305.779999F));
+ builder.AddLine(new Vector2(304.627991F, -322.196014F));
+ builder.AddLine(new Vector2(301.388F, -322.196014F));
+ builder.AddLine(new Vector2(301.388F, -317.696014F));
+ builder.AddLine(new Vector2(301.963989F, -313.880005F));
+ builder.AddLine(new Vector2(301.388F, -310.028015F));
+ builder.AddLine(new Vector2(301.388F, -305.779999F));
+ builder.AddCubicBezier(new Vector2(301.388F, -304.220001F), new Vector2(300.872009F, -302.977997F), new Vector2(299.839996F, -302.053986F));
+ builder.AddCubicBezier(new Vector2(298.808014F, -301.130005F), new Vector2(297.428009F, -300.667999F), new Vector2(295.700012F, -300.667999F));
+ builder.AddCubicBezier(new Vector2(294.380005F, -300.667999F), new Vector2(293.23999F, -300.902008F), new Vector2(292.279999F, -301.369995F));
+ builder.AddCubicBezier(new Vector2(291.320007F, -301.838013F), new Vector2(290.492004F, -302.515991F), new Vector2(289.79599F, -303.403992F));
+ builder.AddLine(new Vector2(287.671997F, -301.279999F));
+ builder.AddCubicBezier(new Vector2(288.511993F, -300.104004F), new Vector2(289.604004F, -299.191986F), new Vector2(290.947998F, -298.544006F));
+ builder.AddCubicBezier(new Vector2(292.291992F, -297.895996F), new Vector2(293.85199F, -297.571991F), new Vector2(295.627991F, -297.571991F));
+ builder.AddCubicBezier(new Vector2(297.403992F, -297.571991F), new Vector2(298.970001F, -297.914001F), new Vector2(300.325989F, -298.597992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0743()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(272.048004F, -305.096008F));
+ builder.AddLine(new Vector2(272.048004F, -322.196014F));
+ builder.AddLine(new Vector2(268.808014F, -322.196014F));
+ builder.AddLine(new Vector2(268.808014F, -305.096008F));
+ builder.AddLine(new Vector2(272.048004F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(284.144012F, -305.096008F));
+ builder.AddLine(new Vector2(284.144012F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(284.144012F, -316.891998F), new Vector2(283.855988F, -318.002014F), new Vector2(283.279999F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(282.70401F, -320.089996F), new Vector2(281.917999F, -320.936005F), new Vector2(280.921997F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(279.925995F, -322.231995F), new Vector2(278.779999F, -322.556F), new Vector2(277.484009F, -322.556F));
+ builder.AddCubicBezier(new Vector2(276.187988F, -322.556F), new Vector2(275.023987F, -322.261993F), new Vector2(273.992004F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(272.959991F, -321.085999F), new Vector2(272.156006F, -320.287994F), new Vector2(271.579987F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(271.003998F, -318.272003F), new Vector2(270.716003F, -317.119995F), new Vector2(270.716003F, -315.824005F));
+ builder.AddLine(new Vector2(272.048004F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(272.048004F, -315.932007F), new Vector2(272.23999F, -316.700012F), new Vector2(272.623993F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(273.007996F, -318.044006F), new Vector2(273.536011F, -318.571991F), new Vector2(274.208008F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(274.880005F, -319.339996F), new Vector2(275.64801F, -319.532013F), new Vector2(276.511993F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(277.808014F, -319.532013F), new Vector2(278.858002F, -319.112F), new Vector2(279.661987F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(280.466003F, -317.432007F), new Vector2(280.868011F, -316.364014F), new Vector2(280.868011F, -315.067993F));
+ builder.AddLine(new Vector2(280.868011F, -305.096008F));
+ builder.AddLine(new Vector2(284.144012F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0744()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(264.09201F, -305.096008F));
+ builder.AddLine(new Vector2(264.09201F, -322.196014F));
+ builder.AddLine(new Vector2(260.81601F, -322.196014F));
+ builder.AddLine(new Vector2(260.81601F, -318.019989F));
+ builder.AddLine(new Vector2(261.428009F, -313.880005F));
+ builder.AddLine(new Vector2(260.81601F, -309.70401F));
+ builder.AddLine(new Vector2(260.81601F, -305.096008F));
+ builder.AddLine(new Vector2(264.09201F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(252.787994F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(251.947998F, -309.056F), new Vector2(251.294006F, -309.746002F), new Vector2(250.826004F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(250.358002F, -311.497986F), new Vector2(250.123993F, -312.511993F), new Vector2(250.123993F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(250.123993F, -314.791992F), new Vector2(250.358002F, -315.794006F), new Vector2(250.826004F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(251.294006F, -317.54599F), new Vector2(251.942001F, -318.235992F), new Vector2(252.770004F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(253.598007F, -319.243988F), new Vector2(254.552002F, -319.496002F), new Vector2(255.632004F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(256.712006F, -319.496002F), new Vector2(257.653992F, -319.25F), new Vector2(258.458008F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(259.261993F, -318.265991F), new Vector2(259.891998F, -317.575989F), new Vector2(260.347992F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(260.803986F, -315.799988F), new Vector2(261.032013F, -314.779999F), new Vector2(261.032013F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(261.032013F, -311.924011F), new Vector2(260.540009F, -310.526001F), new Vector2(259.556F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(258.571991F, -308.34201F), new Vector2(257.276001F, -307.79599F), new Vector2(255.667999F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(254.587997F, -307.79599F), new Vector2(253.628006F, -308.048004F), new Vector2(252.787994F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(258.619995F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(259.652008F, -306.085999F), new Vector2(260.473999F, -306.835999F), new Vector2(261.085999F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(261.697998F, -308.756012F), new Vector2(262.040009F, -309.847992F), new Vector2(262.112F, -311.071991F));
+ builder.AddLine(new Vector2(262.112F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(262.040009F, -317.467987F), new Vector2(261.691986F, -318.56601F), new Vector2(261.067993F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(260.444F, -320.462006F), new Vector2(259.622009F, -321.205994F), new Vector2(258.60199F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(257.582001F, -322.286011F), new Vector2(256.424011F, -322.556F), new Vector2(255.128006F, -322.556F));
+ builder.AddCubicBezier(new Vector2(253.544006F, -322.556F), new Vector2(252.121994F, -322.160004F), new Vector2(250.862F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(249.602005F, -320.575989F), new Vector2(248.606003F, -319.507996F), new Vector2(247.873993F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(247.141998F, -316.820007F), new Vector2(246.776001F, -315.308014F), new Vector2(246.776001F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(246.776001F, -311.947998F), new Vector2(247.141998F, -310.436005F), new Vector2(247.873993F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(248.606003F, -307.747986F), new Vector2(249.602005F, -306.686005F), new Vector2(250.862F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(252.121994F, -305.126007F), new Vector2(253.544006F, -304.735992F), new Vector2(255.128006F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(256.424011F, -304.735992F), new Vector2(257.588013F, -305.006012F), new Vector2(258.619995F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0745()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(238.352005F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(239.119995F, -319.112F), new Vector2(240.104004F, -319.496002F), new Vector2(241.304001F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(241.880005F, -319.496002F), new Vector2(242.384003F, -319.411987F), new Vector2(242.815994F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(243.248001F, -319.075989F), new Vector2(243.643997F, -318.799988F), new Vector2(244.003998F, -318.415985F));
+ builder.AddLine(new Vector2(246.128006F, -320.612F));
+ builder.AddCubicBezier(new Vector2(245.528F, -321.308014F), new Vector2(244.880005F, -321.806F), new Vector2(244.184006F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(243.488007F, -322.406006F), new Vector2(242.707993F, -322.556F), new Vector2(241.843994F, -322.556F));
+ builder.AddCubicBezier(new Vector2(239.947998F, -322.556F), new Vector2(238.496002F, -321.90799F), new Vector2(237.488007F, -320.612F));
+ builder.AddCubicBezier(new Vector2(236.479996F, -319.31601F), new Vector2(235.975998F, -317.575989F), new Vector2(235.975998F, -315.391998F));
+ builder.AddLine(new Vector2(237.199997F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(237.199997F, -316.399994F), new Vector2(237.584F, -317.575989F), new Vector2(238.352005F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(237.199997F, -305.096008F));
+ builder.AddLine(new Vector2(237.199997F, -322.196014F));
+ builder.AddLine(new Vector2(233.960007F, -322.196014F));
+ builder.AddLine(new Vector2(233.960007F, -305.096008F));
+ builder.AddLine(new Vector2(237.199997F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0746()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(226.363998F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(227.539993F, -305.996002F), new Vector2(228.548004F, -306.727997F), new Vector2(229.388F, -307.687988F));
+ builder.AddLine(new Vector2(227.300003F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(226.723999F, -309.140015F), new Vector2(226.033997F, -308.635986F), new Vector2(225.229996F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(224.425995F, -307.963989F), new Vector2(223.544006F, -307.79599F), new Vector2(222.584F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(221.432007F, -307.79599F), new Vector2(220.412003F, -308.041992F), new Vector2(219.524002F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(218.636002F, -309.026001F), new Vector2(217.951996F, -309.721985F), new Vector2(217.472F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(216.992004F, -311.522003F), new Vector2(216.751999F, -312.571991F), new Vector2(216.751999F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(216.751999F, -314.947998F), new Vector2(216.979996F, -315.967987F), new Vector2(217.436005F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(217.891998F, -317.696014F), new Vector2(218.539993F, -318.368011F), new Vector2(219.380005F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(220.220001F, -319.328003F), new Vector2(221.192001F, -319.567993F), new Vector2(222.296005F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(223.352005F, -319.567993F), new Vector2(224.251999F, -319.346008F), new Vector2(224.996002F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(225.740005F, -318.458008F), new Vector2(226.315994F, -317.834015F), new Vector2(226.723999F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(227.132004F, -316.226013F), new Vector2(227.335999F, -315.247986F), new Vector2(227.335999F, -314.096008F));
+ builder.AddLine(new Vector2(228.524002F, -315.140015F));
+ builder.AddLine(new Vector2(215.815994F, -315.140015F));
+ builder.AddLine(new Vector2(215.815994F, -312.440002F));
+ builder.AddLine(new Vector2(230.251999F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(230.324005F, -312.776001F), new Vector2(230.371994F, -313.082001F), new Vector2(230.395996F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(230.419998F, -313.634003F), new Vector2(230.432007F, -313.891998F), new Vector2(230.432007F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(230.432007F, -315.764008F), new Vector2(230.089996F, -317.216003F), new Vector2(229.406006F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(228.722F, -319.76001F), new Vector2(227.768005F, -320.756012F), new Vector2(226.544006F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(225.320007F, -322.196014F), new Vector2(223.927994F, -322.556F), new Vector2(222.367996F, -322.556F));
+ builder.AddCubicBezier(new Vector2(220.712006F, -322.556F), new Vector2(219.218002F, -322.165985F), new Vector2(217.886002F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(216.554001F, -320.605988F), new Vector2(215.498001F, -319.544006F), new Vector2(214.718002F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(213.938004F, -316.855988F), new Vector2(213.548004F, -315.343994F), new Vector2(213.548004F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(213.548004F, -311.959991F), new Vector2(213.944F, -310.436005F), new Vector2(214.735992F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(215.528F, -307.747986F), new Vector2(216.602005F, -306.686005F), new Vector2(217.957993F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(219.313995F, -305.126007F), new Vector2(220.856003F, -304.735992F), new Vector2(222.584F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(223.927994F, -304.735992F), new Vector2(225.188004F, -304.988007F), new Vector2(226.363998F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0747()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(209.947998F, -330.799988F));
+ builder.AddLine(new Vector2(206.671997F, -330.799988F));
+ builder.AddLine(new Vector2(206.671997F, -318.019989F));
+ builder.AddLine(new Vector2(207.283997F, -313.880005F));
+ builder.AddLine(new Vector2(206.671997F, -309.70401F));
+ builder.AddLine(new Vector2(206.671997F, -305.096008F));
+ builder.AddLine(new Vector2(209.947998F, -305.096008F));
+ builder.AddLine(new Vector2(209.947998F, -330.799988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(198.626007F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(197.798004F, -309.026001F), new Vector2(197.149994F, -309.716003F), new Vector2(196.682007F, -310.604004F));
+ builder.AddCubicBezier(new Vector2(196.214005F, -311.492004F), new Vector2(195.979996F, -312.511993F), new Vector2(195.979996F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(195.979996F, -314.81601F), new Vector2(196.214005F, -315.829987F), new Vector2(196.682007F, -316.705994F));
+ builder.AddCubicBezier(new Vector2(197.149994F, -317.582001F), new Vector2(197.792007F, -318.265991F), new Vector2(198.608002F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(199.423996F, -319.25F), new Vector2(200.371994F, -319.496002F), new Vector2(201.451996F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(202.531998F, -319.496002F), new Vector2(203.479996F, -319.243988F), new Vector2(204.296005F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(205.112F, -318.235992F), new Vector2(205.748001F, -317.54599F), new Vector2(206.203995F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(206.660004F, -315.794006F), new Vector2(206.888F, -314.779999F), new Vector2(206.888F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(206.888F, -312.5F), new Vector2(206.660004F, -311.497986F), new Vector2(206.203995F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(205.748001F, -309.746002F), new Vector2(205.112F, -309.056F), new Vector2(204.296005F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(203.479996F, -308.048004F), new Vector2(202.531998F, -307.79599F), new Vector2(201.451996F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(200.395996F, -307.79599F), new Vector2(199.453995F, -308.041992F), new Vector2(198.626007F, -308.533997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(204.440002F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(205.472F, -306.085999F), new Vector2(206.300003F, -306.835999F), new Vector2(206.923996F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(207.548004F, -308.756012F), new Vector2(207.895996F, -309.847992F), new Vector2(207.968002F, -311.071991F));
+ builder.AddLine(new Vector2(207.968002F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(207.895996F, -317.467987F), new Vector2(207.542007F, -318.56601F), new Vector2(206.906006F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(206.270004F, -320.462006F), new Vector2(205.436005F, -321.205994F), new Vector2(204.404007F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(203.371994F, -322.286011F), new Vector2(202.207993F, -322.556F), new Vector2(200.912003F, -322.556F));
+ builder.AddCubicBezier(new Vector2(199.352005F, -322.556F), new Vector2(197.947998F, -322.160004F), new Vector2(196.699997F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(195.451996F, -320.575989F), new Vector2(194.462006F, -319.507996F), new Vector2(193.729996F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(192.998001F, -316.820007F), new Vector2(192.632004F, -315.308014F), new Vector2(192.632004F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(192.632004F, -311.947998F), new Vector2(192.998001F, -310.436005F), new Vector2(193.729996F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(194.462006F, -307.747986F), new Vector2(195.451996F, -306.686005F), new Vector2(196.699997F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(197.947998F, -305.126007F), new Vector2(199.352005F, -304.735992F), new Vector2(200.912003F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(202.231995F, -304.735992F), new Vector2(203.408005F, -305.006012F), new Vector2(204.440002F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0748()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(188.779999F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(189.164001F, -326.605988F), new Vector2(189.356003F, -327.104004F), new Vector2(189.356003F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(189.356003F, -328.279999F), new Vector2(189.164001F, -328.765991F), new Vector2(188.779999F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(188.395996F, -329.558014F), new Vector2(187.904007F, -329.756012F), new Vector2(187.304001F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(186.703995F, -329.756012F), new Vector2(186.212006F, -329.558014F), new Vector2(185.828003F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(185.444F, -328.765991F), new Vector2(185.251999F, -328.279999F), new Vector2(185.251999F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(185.251999F, -327.104004F), new Vector2(185.444F, -326.605988F), new Vector2(185.828003F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(186.212006F, -325.813995F), new Vector2(186.703995F, -325.615997F), new Vector2(187.304001F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(187.904007F, -325.615997F), new Vector2(188.395996F, -325.813995F), new Vector2(188.779999F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(188.923996F, -305.096008F));
+ builder.AddLine(new Vector2(188.923996F, -322.196014F));
+ builder.AddLine(new Vector2(185.647995F, -322.196014F));
+ builder.AddLine(new Vector2(185.647995F, -305.096008F));
+ builder.AddLine(new Vector2(188.923996F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0749()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(165.703995F, -305.096008F));
+ builder.AddLine(new Vector2(170.671997F, -317.984009F));
+ builder.AddLine(new Vector2(169.483994F, -317.984009F));
+ builder.AddLine(new Vector2(174.416F, -305.096008F));
+ builder.AddLine(new Vector2(176.324005F, -305.096008F));
+ builder.AddLine(new Vector2(183.056F, -322.196014F));
+ builder.AddLine(new Vector2(179.671997F, -322.196014F));
+ builder.AddLine(new Vector2(174.776001F, -308.876007F));
+ builder.AddLine(new Vector2(175.856003F, -308.876007F));
+ builder.AddLine(new Vector2(170.996002F, -322.196014F));
+ builder.AddLine(new Vector2(169.123993F, -322.196014F));
+ builder.AddLine(new Vector2(164.264008F, -308.876007F));
+ builder.AddLine(new Vector2(165.343994F, -308.876007F));
+ builder.AddLine(new Vector2(160.447998F, -322.196014F));
+ builder.AddLine(new Vector2(157.063995F, -322.196014F));
+ builder.AddLine(new Vector2(163.796005F, -305.096008F));
+ builder.AddLine(new Vector2(165.703995F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0750()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(146.768005F, -305.096008F));
+ builder.AddLine(new Vector2(146.768005F, -322.196014F));
+ builder.AddLine(new Vector2(143.492004F, -322.196014F));
+ builder.AddLine(new Vector2(143.492004F, -318.019989F));
+ builder.AddLine(new Vector2(144.104004F, -313.880005F));
+ builder.AddLine(new Vector2(143.492004F, -309.70401F));
+ builder.AddLine(new Vector2(143.492004F, -305.096008F));
+ builder.AddLine(new Vector2(146.768005F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(135.464005F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(134.623993F, -309.056F), new Vector2(133.970001F, -309.746002F), new Vector2(133.501999F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(133.033997F, -311.497986F), new Vector2(132.800003F, -312.511993F), new Vector2(132.800003F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(132.800003F, -314.791992F), new Vector2(133.033997F, -315.794006F), new Vector2(133.501999F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(133.970001F, -317.54599F), new Vector2(134.617996F, -318.235992F), new Vector2(135.445999F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(136.274002F, -319.243988F), new Vector2(137.227997F, -319.496002F), new Vector2(138.307999F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(139.388F, -319.496002F), new Vector2(140.330002F, -319.25F), new Vector2(141.134003F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(141.938004F, -318.265991F), new Vector2(142.567993F, -317.575989F), new Vector2(143.024002F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(143.479996F, -315.799988F), new Vector2(143.707993F, -314.779999F), new Vector2(143.707993F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(143.707993F, -311.924011F), new Vector2(143.216003F, -310.526001F), new Vector2(142.231995F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(141.248001F, -308.34201F), new Vector2(139.951996F, -307.79599F), new Vector2(138.343994F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(137.264008F, -307.79599F), new Vector2(136.304001F, -308.048004F), new Vector2(135.464005F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(141.296005F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(142.328003F, -306.085999F), new Vector2(143.149994F, -306.835999F), new Vector2(143.761993F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(144.373993F, -308.756012F), new Vector2(144.716003F, -309.847992F), new Vector2(144.787994F, -311.071991F));
+ builder.AddLine(new Vector2(144.787994F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(144.716003F, -317.467987F), new Vector2(144.367996F, -318.56601F), new Vector2(143.744003F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(143.119995F, -320.462006F), new Vector2(142.298004F, -321.205994F), new Vector2(141.278F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(140.257996F, -322.286011F), new Vector2(139.100006F, -322.556F), new Vector2(137.804001F, -322.556F));
+ builder.AddCubicBezier(new Vector2(136.220001F, -322.556F), new Vector2(134.798004F, -322.160004F), new Vector2(133.537994F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(132.278F, -320.575989F), new Vector2(131.281998F, -319.507996F), new Vector2(130.550003F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(129.817993F, -316.820007F), new Vector2(129.451996F, -315.308014F), new Vector2(129.451996F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(129.451996F, -311.947998F), new Vector2(129.817993F, -310.436005F), new Vector2(130.550003F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(131.281998F, -307.747986F), new Vector2(132.278F, -306.686005F), new Vector2(133.537994F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(134.798004F, -305.126007F), new Vector2(136.220001F, -304.735992F), new Vector2(137.804001F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(139.100006F, -304.735992F), new Vector2(140.264008F, -305.006012F), new Vector2(141.296005F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0751()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(106.592003F, -305.096008F));
+ builder.AddLine(new Vector2(106.592003F, -322.196014F));
+ builder.AddLine(new Vector2(103.351997F, -322.196014F));
+ builder.AddLine(new Vector2(103.351997F, -305.096008F));
+ builder.AddLine(new Vector2(106.592003F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(118.688004F, -305.096008F));
+ builder.AddLine(new Vector2(118.688004F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(118.688004F, -316.891998F), new Vector2(118.400002F, -318.002014F), new Vector2(117.823997F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(117.248001F, -320.089996F), new Vector2(116.461998F, -320.936005F), new Vector2(115.466003F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(114.470001F, -322.231995F), new Vector2(113.323997F, -322.556F), new Vector2(112.028F, -322.556F));
+ builder.AddCubicBezier(new Vector2(110.732002F, -322.556F), new Vector2(109.568001F, -322.261993F), new Vector2(108.536003F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(107.503998F, -321.085999F), new Vector2(106.699997F, -320.287994F), new Vector2(106.124001F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(105.547997F, -318.272003F), new Vector2(105.260002F, -317.119995F), new Vector2(105.260002F, -315.824005F));
+ builder.AddLine(new Vector2(106.592003F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(106.592003F, -315.932007F), new Vector2(106.783997F, -316.700012F), new Vector2(107.167999F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(107.552002F, -318.044006F), new Vector2(108.080002F, -318.571991F), new Vector2(108.751999F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(109.424004F, -319.339996F), new Vector2(110.192001F, -319.532013F), new Vector2(111.056F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(112.351997F, -319.532013F), new Vector2(113.402F, -319.112F), new Vector2(114.206001F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(115.010002F, -317.432007F), new Vector2(115.412003F, -316.364014F), new Vector2(115.412003F, -315.067993F));
+ builder.AddLine(new Vector2(115.412003F, -305.096008F));
+ builder.AddLine(new Vector2(118.688004F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0752()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(98.4199982F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(98.8040009F, -326.605988F), new Vector2(98.9960022F, -327.104004F), new Vector2(98.9960022F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(98.9960022F, -328.279999F), new Vector2(98.8040009F, -328.765991F), new Vector2(98.4199982F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(98.0360031F, -329.558014F), new Vector2(97.5439987F, -329.756012F), new Vector2(96.9440002F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(96.3440018F, -329.756012F), new Vector2(95.8519974F, -329.558014F), new Vector2(95.4680023F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(95.0839996F, -328.765991F), new Vector2(94.8919983F, -328.279999F), new Vector2(94.8919983F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(94.8919983F, -327.104004F), new Vector2(95.0839996F, -326.605988F), new Vector2(95.4680023F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(95.8519974F, -325.813995F), new Vector2(96.3440018F, -325.615997F), new Vector2(96.9440002F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(97.5439987F, -325.615997F), new Vector2(98.0360031F, -325.813995F), new Vector2(98.4199982F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(98.564003F, -305.096008F));
+ builder.AddLine(new Vector2(98.564003F, -322.196014F));
+ builder.AddLine(new Vector2(95.288002F, -322.196014F));
+ builder.AddLine(new Vector2(95.288002F, -305.096008F));
+ builder.AddLine(new Vector2(98.564003F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0753()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(82.4899979F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(83.6299973F, -307.075989F), new Vector2(84.1999969F, -308.347992F), new Vector2(84.1999969F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(84.1999969F, -311.011993F), new Vector2(83.9779968F, -311.864014F), new Vector2(83.5339966F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(83.0899963F, -313.160004F), new Vector2(82.5199966F, -313.675995F), new Vector2(81.8239975F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(81.1279984F, -314.444F), new Vector2(80.3960037F, -314.75F), new Vector2(79.6279984F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(78.8600006F, -315.205994F), new Vector2(78.1220016F, -315.428009F), new Vector2(77.4140015F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(76.7060013F, -315.859985F), new Vector2(76.1360016F, -316.123993F), new Vector2(75.7040024F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(75.2720032F, -316.747986F), new Vector2(75.0559998F, -317.191986F), new Vector2(75.0559998F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(75.0559998F, -318.320007F), new Vector2(75.302002F, -318.764008F), new Vector2(75.7939987F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(76.2860031F, -319.436005F), new Vector2(77F, -319.604004F), new Vector2(77.935997F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(78.8239975F, -319.604004F), new Vector2(79.6159973F, -319.436005F), new Vector2(80.3119965F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(81.0080032F, -318.764008F), new Vector2(81.6080017F, -318.283997F), new Vector2(82.1119995F, -317.660004F));
+ builder.AddLine(new Vector2(84.1999969F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(83.5279999F, -320.68399F), new Vector2(82.6699982F, -321.385986F), new Vector2(81.6259995F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(80.5820007F, -322.321991F), new Vector2(79.3880005F, -322.556F), new Vector2(78.0439987F, -322.556F));
+ builder.AddCubicBezier(new Vector2(76.7720032F, -322.556F), new Vector2(75.6800003F, -322.35199F), new Vector2(74.7679977F, -321.944F));
+ builder.AddCubicBezier(new Vector2(73.8560028F, -321.536011F), new Vector2(73.1539993F, -320.95401F), new Vector2(72.6620026F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(72.1699982F, -319.441986F), new Vector2(71.9240036F, -318.548004F), new Vector2(71.9240036F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(71.9240036F, -316.484009F), new Vector2(72.1460037F, -315.649994F), new Vector2(72.5899963F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(73.0339966F, -314.377991F), new Vector2(73.6039963F, -313.880005F), new Vector2(74.3000031F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(74.9960022F, -313.160004F), new Vector2(75.7340012F, -312.872009F), new Vector2(76.5139999F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(77.2939987F, -312.440002F), new Vector2(78.0319977F, -312.217987F), new Vector2(78.7279968F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(79.4240036F, -311.761993F), new Vector2(79.9940033F, -311.473999F), new Vector2(80.4380035F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(80.8820038F, -310.778015F), new Vector2(81.1039963F, -310.291992F), new Vector2(81.1039963F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(81.1039963F, -309.044006F), new Vector2(80.8280029F, -308.558014F), new Vector2(80.276001F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(79.723999F, -307.862F), new Vector2(78.9440002F, -307.687988F), new Vector2(77.935997F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(76.9280014F, -307.687988F), new Vector2(76.0159988F, -307.873993F), new Vector2(75.1999969F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(74.3840027F, -308.618011F), new Vector2(73.6640015F, -309.187988F), new Vector2(73.0400009F, -309.955994F));
+ builder.AddLine(new Vector2(70.9520035F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(71.4800034F, -307.220001F), new Vector2(72.0979996F, -306.661987F), new Vector2(72.8059998F, -306.194F));
+ builder.AddCubicBezier(new Vector2(73.5139999F, -305.726013F), new Vector2(74.3000031F, -305.365997F), new Vector2(75.1640015F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(76.0279999F, -304.862F), new Vector2(76.9400024F, -304.735992F), new Vector2(77.9000015F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(79.8199997F, -304.735992F), new Vector2(81.3499985F, -305.20401F), new Vector2(82.4899979F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0754()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(69.6559982F, -319.243988F));
+ builder.AddLine(new Vector2(69.6559982F, -322.196014F));
+ builder.AddLine(new Vector2(57.9920006F, -322.196014F));
+ builder.AddLine(new Vector2(57.9920006F, -319.243988F));
+ builder.AddLine(new Vector2(69.6559982F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(65.4440002F, -305.096008F));
+ builder.AddLine(new Vector2(65.4440002F, -329.359985F));
+ builder.AddLine(new Vector2(62.2039986F, -329.359985F));
+ builder.AddLine(new Vector2(62.2039986F, -305.096008F));
+ builder.AddLine(new Vector2(65.4440002F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0755()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(54.8240013F, -305.096008F));
+ builder.AddLine(new Vector2(54.8240013F, -330.799988F));
+ builder.AddLine(new Vector2(51.5839996F, -330.799988F));
+ builder.AddLine(new Vector2(51.5839996F, -305.096008F));
+ builder.AddLine(new Vector2(54.8240013F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0756()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(43.7000008F, -305.726013F));
+ builder.AddCubicBezier(new Vector2(44.8040009F, -306.338013F), new Vector2(45.6679993F, -307.208008F), new Vector2(46.2919998F, -308.335999F));
+ builder.AddCubicBezier(new Vector2(46.9160004F, -309.463989F), new Vector2(47.2280006F, -310.772003F), new Vector2(47.2280006F, -312.26001F));
+ builder.AddLine(new Vector2(47.2280006F, -322.196014F));
+ builder.AddLine(new Vector2(43.987999F, -322.196014F));
+ builder.AddLine(new Vector2(43.987999F, -312.403992F));
+ builder.AddCubicBezier(new Vector2(43.987999F, -310.988007F), new Vector2(43.6279984F, -309.877991F), new Vector2(42.9080009F, -309.074005F));
+ builder.AddCubicBezier(new Vector2(42.1879997F, -308.269989F), new Vector2(41.1920013F, -307.868011F), new Vector2(39.9199982F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(39.0800018F, -307.868011F), new Vector2(38.3479996F, -308.048004F), new Vector2(37.723999F, -308.40799F));
+ builder.AddCubicBezier(new Vector2(37.0999985F, -308.768005F), new Vector2(36.6259995F, -309.290009F), new Vector2(36.3019981F, -309.973999F));
+ builder.AddCubicBezier(new Vector2(35.9780006F, -310.65799F), new Vector2(35.8160019F, -311.467987F), new Vector2(35.8160019F, -312.403992F));
+ builder.AddLine(new Vector2(35.8160019F, -322.196014F));
+ builder.AddLine(new Vector2(32.5760002F, -322.196014F));
+ builder.AddLine(new Vector2(32.5760002F, -312.26001F));
+ builder.AddCubicBezier(new Vector2(32.5760002F, -310.772003F), new Vector2(32.8880005F, -309.463989F), new Vector2(33.512001F, -308.335999F));
+ builder.AddCubicBezier(new Vector2(34.1360016F, -307.208008F), new Vector2(35.0060005F, -306.338013F), new Vector2(36.1220016F, -305.726013F));
+ builder.AddCubicBezier(new Vector2(37.237999F, -305.114014F), new Vector2(38.5040016F, -304.808014F), new Vector2(39.9199982F, -304.808014F));
+ builder.AddCubicBezier(new Vector2(41.3359985F, -304.808014F), new Vector2(42.5960007F, -305.114014F), new Vector2(43.7000008F, -305.726013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0757()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(27.6620007F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(28.802F, -307.075989F), new Vector2(29.3719997F, -308.347992F), new Vector2(29.3719997F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(29.3719997F, -311.011993F), new Vector2(29.1499996F, -311.864014F), new Vector2(28.7059994F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(28.2619991F, -313.160004F), new Vector2(27.6919994F, -313.675995F), new Vector2(26.9960003F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(26.2999992F, -314.444F), new Vector2(25.5680008F, -314.75F), new Vector2(24.7999992F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(24.0319996F, -315.205994F), new Vector2(23.2940006F, -315.428009F), new Vector2(22.5860004F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(21.8780003F, -315.859985F), new Vector2(21.3080006F, -316.123993F), new Vector2(20.8759995F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(20.4440002F, -316.747986F), new Vector2(20.2280006F, -317.191986F), new Vector2(20.2280006F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(20.2280006F, -318.320007F), new Vector2(20.4740009F, -318.764008F), new Vector2(20.9659996F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(21.4580002F, -319.436005F), new Vector2(22.1720009F, -319.604004F), new Vector2(23.1079998F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(23.9960003F, -319.604004F), new Vector2(24.7880001F, -319.436005F), new Vector2(25.4839993F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(26.1800003F, -318.764008F), new Vector2(26.7800007F, -318.283997F), new Vector2(27.2840004F, -317.660004F));
+ builder.AddLine(new Vector2(29.3719997F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(28.7000008F, -320.68399F), new Vector2(27.8419991F, -321.385986F), new Vector2(26.7980003F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(25.7539997F, -322.321991F), new Vector2(24.5599995F, -322.556F), new Vector2(23.2159996F, -322.556F));
+ builder.AddCubicBezier(new Vector2(21.9440002F, -322.556F), new Vector2(20.8519993F, -322.35199F), new Vector2(19.9400005F, -321.944F));
+ builder.AddCubicBezier(new Vector2(19.0279999F, -321.536011F), new Vector2(18.3260002F, -320.95401F), new Vector2(17.8339996F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(17.3419991F, -319.441986F), new Vector2(17.0960007F, -318.548004F), new Vector2(17.0960007F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(17.0960007F, -316.484009F), new Vector2(17.3180008F, -315.649994F), new Vector2(17.7619991F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(18.2059994F, -314.377991F), new Vector2(18.7759991F, -313.880005F), new Vector2(19.4720001F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(20.1679993F, -313.160004F), new Vector2(20.9060001F, -312.872009F), new Vector2(21.6860008F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(22.4659996F, -312.440002F), new Vector2(23.2040005F, -312.217987F), new Vector2(23.8999996F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(24.5960007F, -311.761993F), new Vector2(25.1660004F, -311.473999F), new Vector2(25.6100006F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(26.0540009F, -310.778015F), new Vector2(26.2759991F, -310.291992F), new Vector2(26.2759991F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(26.2759991F, -309.044006F), new Vector2(26F, -308.558014F), new Vector2(25.448F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(24.8959999F, -307.862F), new Vector2(24.1159992F, -307.687988F), new Vector2(23.1079998F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(22.1000004F, -307.687988F), new Vector2(21.1879997F, -307.873993F), new Vector2(20.3719997F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(19.5559998F, -308.618011F), new Vector2(18.8360004F, -309.187988F), new Vector2(18.2119999F, -309.955994F));
+ builder.AddLine(new Vector2(16.1240005F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(16.6520004F, -307.220001F), new Vector2(17.2700005F, -306.661987F), new Vector2(17.9780006F, -306.194F));
+ builder.AddCubicBezier(new Vector2(18.6860008F, -305.726013F), new Vector2(19.4720001F, -305.365997F), new Vector2(20.3360004F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(21.2000008F, -304.862F), new Vector2(22.1119995F, -304.735992F), new Vector2(23.0720005F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(24.9920006F, -304.735992F), new Vector2(26.5219994F, -305.20401F), new Vector2(27.6620007F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0758()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(10.04F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(11.2159996F, -305.996002F), new Vector2(12.224F, -306.727997F), new Vector2(13.0640001F, -307.687988F));
+ builder.AddLine(new Vector2(10.9759998F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(10.3999996F, -309.140015F), new Vector2(9.71000004F, -308.635986F), new Vector2(8.90600014F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(8.10200024F, -307.963989F), new Vector2(7.21999979F, -307.79599F), new Vector2(6.26000023F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(5.1079998F, -307.79599F), new Vector2(4.08799982F, -308.041992F), new Vector2(3.20000005F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(2.31200004F, -309.026001F), new Vector2(1.62800002F, -309.721985F), new Vector2(1.148F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(0.667999983F, -311.522003F), new Vector2(0.428000003F, -312.571991F), new Vector2(0.428000003F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(0.428000003F, -314.947998F), new Vector2(0.656000018F, -315.967987F), new Vector2(1.11199999F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(1.56799996F, -317.696014F), new Vector2(2.21600008F, -318.368011F), new Vector2(3.05599999F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(3.89599991F, -319.328003F), new Vector2(4.86800003F, -319.567993F), new Vector2(5.97200012F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(7.02799988F, -319.567993F), new Vector2(7.92799997F, -319.346008F), new Vector2(8.67199993F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(9.41600037F, -318.458008F), new Vector2(9.99199963F, -317.834015F), new Vector2(10.3999996F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(10.8079996F, -316.226013F), new Vector2(11.0120001F, -315.247986F), new Vector2(11.0120001F, -314.096008F));
+ builder.AddLine(new Vector2(12.1999998F, -315.140015F));
+ builder.AddLine(new Vector2(-0.508000016F, -315.140015F));
+ builder.AddLine(new Vector2(-0.508000016F, -312.440002F));
+ builder.AddLine(new Vector2(13.9280005F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(14F, -312.776001F), new Vector2(14.0480003F, -313.082001F), new Vector2(14.0719995F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(14.0959997F, -313.634003F), new Vector2(14.1079998F, -313.891998F), new Vector2(14.1079998F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(14.1079998F, -315.764008F), new Vector2(13.7659998F, -317.216003F), new Vector2(13.0819998F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(12.3979998F, -319.76001F), new Vector2(11.4440002F, -320.756012F), new Vector2(10.2200003F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(8.99600029F, -322.196014F), new Vector2(7.60400009F, -322.556F), new Vector2(6.04400015F, -322.556F));
+ builder.AddCubicBezier(new Vector2(4.38800001F, -322.556F), new Vector2(2.89400005F, -322.165985F), new Vector2(1.56200004F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(0.230000004F, -320.605988F), new Vector2(-0.825999975F, -319.544006F), new Vector2(-1.60599995F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-2.38599992F, -316.855988F), new Vector2(-2.77600002F, -315.343994F), new Vector2(-2.77600002F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-2.77600002F, -311.959991F), new Vector2(-2.38000011F, -310.436005F), new Vector2(-1.58800006F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-0.796000004F, -307.747986F), new Vector2(0.277999997F, -306.686005F), new Vector2(1.63399994F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(2.99000001F, -305.126007F), new Vector2(4.53200006F, -304.735992F), new Vector2(6.26000023F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(7.60400009F, -304.735992F), new Vector2(8.86400032F, -304.988007F), new Vector2(10.04F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0759()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-11.1639996F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-10.3959999F, -319.112F), new Vector2(-9.4119997F, -319.496002F), new Vector2(-8.21199989F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-7.63600016F, -319.496002F), new Vector2(-7.13199997F, -319.411987F), new Vector2(-6.69999981F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-6.26800013F, -319.075989F), new Vector2(-5.87200022F, -318.799988F), new Vector2(-5.51200008F, -318.415985F));
+ builder.AddLine(new Vector2(-3.38800001F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-3.98799992F, -321.308014F), new Vector2(-4.63600016F, -321.806F), new Vector2(-5.33199978F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-6.02799988F, -322.406006F), new Vector2(-6.80800009F, -322.556F), new Vector2(-7.67199993F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-9.56799984F, -322.556F), new Vector2(-11.0200005F, -321.90799F), new Vector2(-12.0279999F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-13.0360003F, -319.31601F), new Vector2(-13.54F, -317.575989F), new Vector2(-13.54F, -315.391998F));
+ builder.AddLine(new Vector2(-12.316F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-12.316F, -316.399994F), new Vector2(-11.9320002F, -317.575989F), new Vector2(-11.1639996F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-12.316F, -305.096008F));
+ builder.AddLine(new Vector2(-12.316F, -322.196014F));
+ builder.AddLine(new Vector2(-15.5559998F, -322.196014F));
+ builder.AddLine(new Vector2(-15.5559998F, -305.096008F));
+ builder.AddLine(new Vector2(-12.316F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0760()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-28.3540001F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(-27.2140007F, -307.075989F), new Vector2(-26.6439991F, -308.347992F), new Vector2(-26.6439991F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(-26.6439991F, -311.011993F), new Vector2(-26.8659992F, -311.864014F), new Vector2(-27.3099995F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(-27.7539997F, -313.160004F), new Vector2(-28.3239994F, -313.675995F), new Vector2(-29.0200005F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(-29.7159996F, -314.444F), new Vector2(-30.448F, -314.75F), new Vector2(-31.2159996F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(-31.9839993F, -315.205994F), new Vector2(-32.7220001F, -315.428009F), new Vector2(-33.4300003F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(-34.1380005F, -315.859985F), new Vector2(-34.7080002F, -316.123993F), new Vector2(-35.1399994F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(-35.5719986F, -316.747986F), new Vector2(-35.7879982F, -317.191986F), new Vector2(-35.7879982F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(-35.7879982F, -318.320007F), new Vector2(-35.5419998F, -318.764008F), new Vector2(-35.0499992F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-34.5579987F, -319.436005F), new Vector2(-33.8440018F, -319.604004F), new Vector2(-32.9080009F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(-32.0200005F, -319.604004F), new Vector2(-31.2280006F, -319.436005F), new Vector2(-30.5319996F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-29.8360004F, -318.764008F), new Vector2(-29.2360001F, -318.283997F), new Vector2(-28.7320004F, -317.660004F));
+ builder.AddLine(new Vector2(-26.6439991F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(-27.316F, -320.68399F), new Vector2(-28.1739998F, -321.385986F), new Vector2(-29.2180004F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(-30.2619991F, -322.321991F), new Vector2(-31.4559994F, -322.556F), new Vector2(-32.7999992F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-34.0719986F, -322.556F), new Vector2(-35.1640015F, -322.35199F), new Vector2(-36.0760002F, -321.944F));
+ builder.AddCubicBezier(new Vector2(-36.987999F, -321.536011F), new Vector2(-37.6899986F, -320.95401F), new Vector2(-38.1819992F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(-38.6739998F, -319.441986F), new Vector2(-38.9199982F, -318.548004F), new Vector2(-38.9199982F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(-38.9199982F, -316.484009F), new Vector2(-38.6980019F, -315.649994F), new Vector2(-38.2540016F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(-37.8100014F, -314.377991F), new Vector2(-37.2400017F, -313.880005F), new Vector2(-36.5439987F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(-35.8479996F, -313.160004F), new Vector2(-35.1100006F, -312.872009F), new Vector2(-34.3300018F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(-33.5499992F, -312.440002F), new Vector2(-32.8120003F, -312.217987F), new Vector2(-32.1160011F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(-31.4200001F, -311.761993F), new Vector2(-30.8500004F, -311.473999F), new Vector2(-30.4060001F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(-29.9619999F, -310.778015F), new Vector2(-29.7399998F, -310.291992F), new Vector2(-29.7399998F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(-29.7399998F, -309.044006F), new Vector2(-30.0160007F, -308.558014F), new Vector2(-30.5680008F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(-31.1200008F, -307.862F), new Vector2(-31.8999996F, -307.687988F), new Vector2(-32.9080009F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(-33.9160004F, -307.687988F), new Vector2(-34.8279991F, -307.873993F), new Vector2(-35.644001F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(-36.4599991F, -308.618011F), new Vector2(-37.1800003F, -309.187988F), new Vector2(-37.8040009F, -309.955994F));
+ builder.AddLine(new Vector2(-39.8919983F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-39.3639984F, -307.220001F), new Vector2(-38.7459984F, -306.661987F), new Vector2(-38.0379982F, -306.194F));
+ builder.AddCubicBezier(new Vector2(-37.3300018F, -305.726013F), new Vector2(-36.5439987F, -305.365997F), new Vector2(-35.6800003F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(-34.8160019F, -304.862F), new Vector2(-33.9039993F, -304.735992F), new Vector2(-32.9440002F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-31.0240002F, -304.735992F), new Vector2(-29.4939995F, -305.20401F), new Vector2(-28.3540001F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0761()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-43.3120003F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-42.9280014F, -326.605988F), new Vector2(-42.7360001F, -327.104004F), new Vector2(-42.7360001F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-42.7360001F, -328.279999F), new Vector2(-42.9280014F, -328.765991F), new Vector2(-43.3120003F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-43.6959991F, -329.558014F), new Vector2(-44.1879997F, -329.756012F), new Vector2(-44.7879982F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-45.3880005F, -329.756012F), new Vector2(-45.8800011F, -329.558014F), new Vector2(-46.2639999F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-46.6479988F, -328.765991F), new Vector2(-46.8400002F, -328.279999F), new Vector2(-46.8400002F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-46.8400002F, -327.104004F), new Vector2(-46.6479988F, -326.605988F), new Vector2(-46.2639999F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-45.8800011F, -325.813995F), new Vector2(-45.3880005F, -325.615997F), new Vector2(-44.7879982F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-44.1879997F, -325.615997F), new Vector2(-43.6959991F, -325.813995F), new Vector2(-43.3120003F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-43.1679993F, -305.096008F));
+ builder.AddLine(new Vector2(-43.1679993F, -322.196014F));
+ builder.AddLine(new Vector2(-46.4440002F, -322.196014F));
+ builder.AddLine(new Vector2(-46.4440002F, -305.096008F));
+ builder.AddLine(new Vector2(-43.1679993F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0762()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-62.9319992F, -305.096008F));
+ builder.AddLine(new Vector2(-62.9319992F, -330.799988F));
+ builder.AddLine(new Vector2(-66.1719971F, -330.799988F));
+ builder.AddLine(new Vector2(-66.1719971F, -305.096008F));
+ builder.AddLine(new Vector2(-62.9319992F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-50.8359985F, -305.096008F));
+ builder.AddLine(new Vector2(-50.8359985F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-50.8359985F, -317.059998F), new Vector2(-51.1240005F, -318.247986F), new Vector2(-51.7000008F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-52.276001F, -320.312012F), new Vector2(-53.0620003F, -321.115997F), new Vector2(-54.0579987F, -321.691986F));
+ builder.AddCubicBezier(new Vector2(-55.0540009F, -322.268005F), new Vector2(-56.2000008F, -322.556F), new Vector2(-57.4959984F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-58.7919998F, -322.556F), new Vector2(-59.9560013F, -322.261993F), new Vector2(-60.987999F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-62.0200005F, -321.085999F), new Vector2(-62.8240013F, -320.287994F), new Vector2(-63.4000015F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-63.9760017F, -318.272003F), new Vector2(-64.2639999F, -317.119995F), new Vector2(-64.2639999F, -315.824005F));
+ builder.AddLine(new Vector2(-62.9319992F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-62.9319992F, -315.932007F), new Vector2(-62.7400017F, -316.700012F), new Vector2(-62.355999F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-61.9720001F, -318.044006F), new Vector2(-61.4440002F, -318.571991F), new Vector2(-60.7719994F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-60.0999985F, -319.339996F), new Vector2(-59.3320007F, -319.532013F), new Vector2(-58.4679985F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-57.1720009F, -319.532013F), new Vector2(-56.1220016F, -319.112F), new Vector2(-55.3180008F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-54.5139999F, -317.432007F), new Vector2(-54.1119995F, -316.364014F), new Vector2(-54.1119995F, -315.067993F));
+ builder.AddLine(new Vector2(-54.1119995F, -305.096008F));
+ builder.AddLine(new Vector2(-50.8359985F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0763()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-69.6279984F, -326.984009F));
+ builder.AddLine(new Vector2(-69.6279984F, -330.079987F));
+ builder.AddLine(new Vector2(-89.9680023F, -330.079987F));
+ builder.AddLine(new Vector2(-89.9680023F, -326.984009F));
+ builder.AddLine(new Vector2(-69.6279984F, -326.984009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-78.0879974F, -305.096008F));
+ builder.AddLine(new Vector2(-78.0879974F, -329.359985F));
+ builder.AddLine(new Vector2(-81.5080032F, -329.359985F));
+ builder.AddLine(new Vector2(-81.5080032F, -305.096008F));
+ builder.AddLine(new Vector2(-78.0879974F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0764()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-101.470001F, -305.437988F));
+ builder.AddCubicBezier(new Vector2(-101.026001F, -305.906006F), new Vector2(-100.804001F, -306.463989F), new Vector2(-100.804001F, -307.112F));
+ builder.AddCubicBezier(new Vector2(-100.804001F, -307.783997F), new Vector2(-101.026001F, -308.34201F), new Vector2(-101.470001F, -308.786011F));
+ builder.AddCubicBezier(new Vector2(-101.914001F, -309.230011F), new Vector2(-102.472F, -309.451996F), new Vector2(-103.143997F, -309.451996F));
+ builder.AddCubicBezier(new Vector2(-103.839996F, -309.451996F), new Vector2(-104.403999F, -309.230011F), new Vector2(-104.835999F, -308.786011F));
+ builder.AddCubicBezier(new Vector2(-105.267998F, -308.34201F), new Vector2(-105.484001F, -307.783997F), new Vector2(-105.484001F, -307.112F));
+ builder.AddCubicBezier(new Vector2(-105.484001F, -306.463989F), new Vector2(-105.267998F, -305.906006F), new Vector2(-104.835999F, -305.437988F));
+ builder.AddCubicBezier(new Vector2(-104.403999F, -304.970001F), new Vector2(-103.839996F, -304.735992F), new Vector2(-103.143997F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-102.472F, -304.735992F), new Vector2(-101.914001F, -304.970001F), new Vector2(-101.470001F, -305.437988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0765()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-113.584F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-112.407997F, -305.996002F), new Vector2(-111.400002F, -306.727997F), new Vector2(-110.559998F, -307.687988F));
+ builder.AddLine(new Vector2(-112.648003F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-113.223999F, -309.140015F), new Vector2(-113.914001F, -308.635986F), new Vector2(-114.718002F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-115.522003F, -307.963989F), new Vector2(-116.403999F, -307.79599F), new Vector2(-117.363998F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-118.515999F, -307.79599F), new Vector2(-119.536003F, -308.041992F), new Vector2(-120.424004F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-121.311996F, -309.026001F), new Vector2(-121.996002F, -309.721985F), new Vector2(-122.475998F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-122.956001F, -311.522003F), new Vector2(-123.195999F, -312.571991F), new Vector2(-123.195999F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-123.195999F, -314.947998F), new Vector2(-122.968002F, -315.967987F), new Vector2(-122.512001F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-122.056F, -317.696014F), new Vector2(-121.407997F, -318.368011F), new Vector2(-120.568001F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-119.727997F, -319.328003F), new Vector2(-118.755997F, -319.567993F), new Vector2(-117.652F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-116.596001F, -319.567993F), new Vector2(-115.695999F, -319.346008F), new Vector2(-114.952003F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-114.208F, -318.458008F), new Vector2(-113.632004F, -317.834015F), new Vector2(-113.223999F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-112.816002F, -316.226013F), new Vector2(-112.612F, -315.247986F), new Vector2(-112.612F, -314.096008F));
+ builder.AddLine(new Vector2(-111.424004F, -315.140015F));
+ builder.AddLine(new Vector2(-124.132004F, -315.140015F));
+ builder.AddLine(new Vector2(-124.132004F, -312.440002F));
+ builder.AddLine(new Vector2(-109.695999F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-109.624001F, -312.776001F), new Vector2(-109.575996F, -313.082001F), new Vector2(-109.552002F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-109.528F, -313.634003F), new Vector2(-109.515999F, -313.891998F), new Vector2(-109.515999F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-109.515999F, -315.764008F), new Vector2(-109.858002F, -317.216003F), new Vector2(-110.542F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-111.225998F, -319.76001F), new Vector2(-112.18F, -320.756012F), new Vector2(-113.403999F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-114.627998F, -322.196014F), new Vector2(-116.019997F, -322.556F), new Vector2(-117.580002F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-119.236F, -322.556F), new Vector2(-120.730003F, -322.165985F), new Vector2(-122.061996F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-123.393997F, -320.605988F), new Vector2(-124.449997F, -319.544006F), new Vector2(-125.230003F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-126.010002F, -316.855988F), new Vector2(-126.400002F, -315.343994F), new Vector2(-126.400002F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-126.400002F, -311.959991F), new Vector2(-126.003998F, -310.436005F), new Vector2(-125.211998F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-124.419998F, -307.747986F), new Vector2(-123.346001F, -306.686005F), new Vector2(-121.989998F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-120.634003F, -305.126007F), new Vector2(-119.092003F, -304.735992F), new Vector2(-117.363998F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-116.019997F, -304.735992F), new Vector2(-114.760002F, -304.988007F), new Vector2(-113.584F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0766()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-131.061996F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-129.921997F, -305.996002F), new Vector2(-128.955994F, -306.70401F), new Vector2(-128.164001F, -307.615997F));
+ builder.AddLine(new Vector2(-130.287994F, -309.776001F));
+ builder.AddCubicBezier(new Vector2(-130.839996F, -309.152008F), new Vector2(-131.494003F, -308.678009F), new Vector2(-132.25F, -308.354004F));
+ builder.AddCubicBezier(new Vector2(-133.005997F, -308.029999F), new Vector2(-133.839996F, -307.868011F), new Vector2(-134.751999F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-135.832001F, -307.868011F), new Vector2(-136.792007F, -308.119995F), new Vector2(-137.632004F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-138.472F, -309.127991F), new Vector2(-139.132004F, -309.812012F), new Vector2(-139.612F, -310.675995F));
+ builder.AddCubicBezier(new Vector2(-140.091995F, -311.540009F), new Vector2(-140.332001F, -312.536011F), new Vector2(-140.332001F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-140.332001F, -314.791992F), new Vector2(-140.091995F, -315.787994F), new Vector2(-139.612F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-139.132004F, -317.515991F), new Vector2(-138.472F, -318.194F), new Vector2(-137.632004F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-136.792007F, -319.178009F), new Vector2(-135.832001F, -319.424011F), new Vector2(-134.751999F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-133.863998F, -319.424011F), new Vector2(-133.035995F, -319.261993F), new Vector2(-132.268005F, -318.937988F));
+ builder.AddCubicBezier(new Vector2(-131.5F, -318.614014F), new Vector2(-130.852005F, -318.140015F), new Vector2(-130.324005F, -317.515991F));
+ builder.AddLine(new Vector2(-128.164001F, -319.675995F));
+ builder.AddCubicBezier(new Vector2(-128.979996F, -320.612F), new Vector2(-129.951996F, -321.325989F), new Vector2(-131.080002F, -321.817993F));
+ builder.AddCubicBezier(new Vector2(-132.207993F, -322.309998F), new Vector2(-133.432007F, -322.556F), new Vector2(-134.751999F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-136.432007F, -322.556F), new Vector2(-137.949997F, -322.165985F), new Vector2(-139.306F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-140.662003F, -320.605988F), new Vector2(-141.729996F, -319.544006F), new Vector2(-142.509995F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-143.289993F, -316.855988F), new Vector2(-143.679993F, -315.343994F), new Vector2(-143.679993F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-143.679993F, -312.007996F), new Vector2(-143.289993F, -310.502014F), new Vector2(-142.509995F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-141.729996F, -307.790009F), new Vector2(-140.662003F, -306.716003F), new Vector2(-139.306F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-137.949997F, -305.131989F), new Vector2(-136.432007F, -304.735992F), new Vector2(-134.751999F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-133.432007F, -304.735992F), new Vector2(-132.201996F, -304.988007F), new Vector2(-131.061996F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0767()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-147.496002F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-147.112F, -326.605988F), new Vector2(-146.919998F, -327.104004F), new Vector2(-146.919998F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-146.919998F, -328.279999F), new Vector2(-147.112F, -328.765991F), new Vector2(-147.496002F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-147.880005F, -329.558014F), new Vector2(-148.371994F, -329.756012F), new Vector2(-148.972F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-149.572006F, -329.756012F), new Vector2(-150.063995F, -329.558014F), new Vector2(-150.447998F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-150.832001F, -328.765991F), new Vector2(-151.024002F, -328.279999F), new Vector2(-151.024002F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-151.024002F, -327.104004F), new Vector2(-150.832001F, -326.605988F), new Vector2(-150.447998F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-150.063995F, -325.813995F), new Vector2(-149.572006F, -325.615997F), new Vector2(-148.972F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-148.371994F, -325.615997F), new Vector2(-147.880005F, -325.813995F), new Vector2(-147.496002F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-147.352005F, -305.096008F));
+ builder.AddLine(new Vector2(-147.352005F, -322.196014F));
+ builder.AddLine(new Vector2(-150.628006F, -322.196014F));
+ builder.AddLine(new Vector2(-150.628006F, -305.096008F));
+ builder.AddLine(new Vector2(-147.352005F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0768()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-155.380005F, -305.096008F));
+ builder.AddLine(new Vector2(-155.380005F, -330.799988F));
+ builder.AddLine(new Vector2(-158.619995F, -330.799988F));
+ builder.AddLine(new Vector2(-158.619995F, -305.096008F));
+ builder.AddLine(new Vector2(-155.380005F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0769()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-174.028F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-174.867996F, -309.127991F), new Vector2(-175.528F, -309.817993F), new Vector2(-176.007996F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-176.488007F, -311.570007F), new Vector2(-176.727997F, -312.571991F), new Vector2(-176.727997F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-176.727997F, -314.803986F), new Vector2(-176.488007F, -315.787994F), new Vector2(-176.007996F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-175.528F, -317.515991F), new Vector2(-174.867996F, -318.194F), new Vector2(-174.028F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-173.188004F, -319.178009F), new Vector2(-172.240005F, -319.424011F), new Vector2(-171.184006F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-170.080002F, -319.424011F), new Vector2(-169.113998F, -319.178009F), new Vector2(-168.285995F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-167.457993F, -318.194F), new Vector2(-166.798004F, -317.515991F), new Vector2(-166.306F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-165.813995F, -315.787994F), new Vector2(-165.567993F, -314.803986F), new Vector2(-165.567993F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-165.567993F, -312.571991F), new Vector2(-165.807999F, -311.570007F), new Vector2(-166.287994F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-166.768005F, -309.817993F), new Vector2(-167.427994F, -309.127991F), new Vector2(-168.268005F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-169.108002F, -308.119995F), new Vector2(-170.080002F, -307.868011F), new Vector2(-171.184006F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-172.240005F, -307.868011F), new Vector2(-173.188004F, -308.119995F), new Vector2(-174.028F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-166.630005F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-165.274002F, -306.716003F), new Vector2(-164.199997F, -307.790009F), new Vector2(-163.408005F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-162.615997F, -310.502014F), new Vector2(-162.220001F, -312.019989F), new Vector2(-162.220001F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-162.220001F, -315.355988F), new Vector2(-162.615997F, -316.855988F), new Vector2(-163.408005F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-164.199997F, -319.544006F), new Vector2(-165.274002F, -320.605988F), new Vector2(-166.630005F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-167.985992F, -322.165985F), new Vector2(-169.503998F, -322.556F), new Vector2(-171.184006F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-172.839996F, -322.556F), new Vector2(-174.339996F, -322.160004F), new Vector2(-175.684006F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-177.028F, -320.575989F), new Vector2(-178.095993F, -319.514008F), new Vector2(-178.888F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-179.679993F, -316.850006F), new Vector2(-180.076004F, -315.355988F), new Vector2(-180.076004F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-180.076004F, -312.019989F), new Vector2(-179.679993F, -310.502014F), new Vector2(-178.888F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-178.095993F, -307.790009F), new Vector2(-177.028F, -306.716003F), new Vector2(-175.684006F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-174.339996F, -305.131989F), new Vector2(-172.839996F, -304.735992F), new Vector2(-171.184006F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-169.503998F, -304.735992F), new Vector2(-167.985992F, -305.131989F), new Vector2(-166.630005F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0770()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-194.278F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-195.106003F, -309.056F), new Vector2(-195.742004F, -309.746002F), new Vector2(-196.186005F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-196.630005F, -311.497986F), new Vector2(-196.852005F, -312.5F), new Vector2(-196.852005F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-196.852005F, -314.779999F), new Vector2(-196.623993F, -315.794006F), new Vector2(-196.167999F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-195.712006F, -317.54599F), new Vector2(-195.076004F, -318.235992F), new Vector2(-194.259995F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-193.444F, -319.243988F), new Vector2(-192.507996F, -319.496002F), new Vector2(-191.451996F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-190.371994F, -319.496002F), new Vector2(-189.423996F, -319.243988F), new Vector2(-188.608002F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-187.792007F, -318.235992F), new Vector2(-187.149994F, -317.54599F), new Vector2(-186.682007F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-186.214005F, -315.794006F), new Vector2(-185.979996F, -314.791992F), new Vector2(-185.979996F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-185.979996F, -312.511993F), new Vector2(-186.214005F, -311.497986F), new Vector2(-186.682007F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-187.149994F, -309.746002F), new Vector2(-187.792007F, -309.056F), new Vector2(-188.608002F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-189.423996F, -308.048004F), new Vector2(-190.371994F, -307.79599F), new Vector2(-191.451996F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-192.507996F, -307.79599F), new Vector2(-193.449997F, -308.048004F), new Vector2(-194.278F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-196.671997F, -297.932007F));
+ builder.AddLine(new Vector2(-196.671997F, -309.380005F));
+ builder.AddLine(new Vector2(-197.283997F, -313.556F));
+ builder.AddLine(new Vector2(-196.671997F, -317.696014F));
+ builder.AddLine(new Vector2(-196.671997F, -322.196014F));
+ builder.AddLine(new Vector2(-199.912003F, -322.196014F));
+ builder.AddLine(new Vector2(-199.912003F, -297.932007F));
+ builder.AddLine(new Vector2(-196.671997F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-186.682007F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-185.421997F, -306.686005F), new Vector2(-184.432007F, -307.747986F), new Vector2(-183.712006F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-182.992004F, -310.436005F), new Vector2(-182.632004F, -311.947998F), new Vector2(-182.632004F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-182.632004F, -315.308014F), new Vector2(-182.992004F, -316.820007F), new Vector2(-183.712006F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-184.432007F, -319.507996F), new Vector2(-185.421997F, -320.575989F), new Vector2(-186.682007F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-187.942001F, -322.160004F), new Vector2(-189.352005F, -322.556F), new Vector2(-190.912003F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-192.184006F, -322.556F), new Vector2(-193.341995F, -322.286011F), new Vector2(-194.386002F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-195.429993F, -321.205994F), new Vector2(-196.270004F, -320.462006F), new Vector2(-196.906006F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-197.542007F, -318.56601F), new Vector2(-197.895996F, -317.467987F), new Vector2(-197.968002F, -316.220001F));
+ builder.AddLine(new Vector2(-197.968002F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(-197.895996F, -309.847992F), new Vector2(-197.548004F, -308.756012F), new Vector2(-196.923996F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-196.300003F, -306.835999F), new Vector2(-195.466003F, -306.085999F), new Vector2(-194.421997F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-193.378006F, -305.006012F), new Vector2(-192.207993F, -304.735992F), new Vector2(-190.912003F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-189.352005F, -304.735992F), new Vector2(-187.942001F, -305.126007F), new Vector2(-186.682007F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0771()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-214.960007F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-213.783997F, -305.996002F), new Vector2(-212.776001F, -306.727997F), new Vector2(-211.936005F, -307.687988F));
+ builder.AddLine(new Vector2(-214.024002F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-214.600006F, -309.140015F), new Vector2(-215.289993F, -308.635986F), new Vector2(-216.093994F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-216.897995F, -307.963989F), new Vector2(-217.779999F, -307.79599F), new Vector2(-218.740005F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-219.891998F, -307.79599F), new Vector2(-220.912003F, -308.041992F), new Vector2(-221.800003F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-222.688004F, -309.026001F), new Vector2(-223.371994F, -309.721985F), new Vector2(-223.852005F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-224.332001F, -311.522003F), new Vector2(-224.572006F, -312.571991F), new Vector2(-224.572006F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-224.572006F, -314.947998F), new Vector2(-224.343994F, -315.967987F), new Vector2(-223.888F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-223.432007F, -317.696014F), new Vector2(-222.783997F, -318.368011F), new Vector2(-221.944F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-221.104004F, -319.328003F), new Vector2(-220.132004F, -319.567993F), new Vector2(-219.028F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-217.972F, -319.567993F), new Vector2(-217.072006F, -319.346008F), new Vector2(-216.328003F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-215.584F, -318.458008F), new Vector2(-215.007996F, -317.834015F), new Vector2(-214.600006F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-214.192001F, -316.226013F), new Vector2(-213.988007F, -315.247986F), new Vector2(-213.988007F, -314.096008F));
+ builder.AddLine(new Vector2(-212.800003F, -315.140015F));
+ builder.AddLine(new Vector2(-225.507996F, -315.140015F));
+ builder.AddLine(new Vector2(-225.507996F, -312.440002F));
+ builder.AddLine(new Vector2(-211.072006F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-211F, -312.776001F), new Vector2(-210.951996F, -313.082001F), new Vector2(-210.927994F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-210.904007F, -313.634003F), new Vector2(-210.891998F, -313.891998F), new Vector2(-210.891998F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-210.891998F, -315.764008F), new Vector2(-211.233994F, -317.216003F), new Vector2(-211.917999F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-212.602005F, -319.76001F), new Vector2(-213.556F, -320.756012F), new Vector2(-214.779999F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-216.003998F, -322.196014F), new Vector2(-217.395996F, -322.556F), new Vector2(-218.955994F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-220.612F, -322.556F), new Vector2(-222.106003F, -322.165985F), new Vector2(-223.438004F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-224.770004F, -320.605988F), new Vector2(-225.826004F, -319.544006F), new Vector2(-226.606003F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-227.386002F, -316.855988F), new Vector2(-227.776001F, -315.343994F), new Vector2(-227.776001F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-227.776001F, -311.959991F), new Vector2(-227.380005F, -310.436005F), new Vector2(-226.587997F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-225.796005F, -307.747986F), new Vector2(-224.722F, -306.686005F), new Vector2(-223.365997F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-222.009995F, -305.126007F), new Vector2(-220.468002F, -304.735992F), new Vector2(-218.740005F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-217.395996F, -304.735992F), new Vector2(-216.136002F, -304.988007F), new Vector2(-214.960007F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0772()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-243.147995F, -305.096008F));
+ builder.AddLine(new Vector2(-243.147995F, -330.799988F));
+ builder.AddLine(new Vector2(-246.388F, -330.799988F));
+ builder.AddLine(new Vector2(-246.388F, -305.096008F));
+ builder.AddLine(new Vector2(-243.147995F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-231.052002F, -305.096008F));
+ builder.AddLine(new Vector2(-231.052002F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-231.052002F, -317.059998F), new Vector2(-231.339996F, -318.247986F), new Vector2(-231.916F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-232.492004F, -320.312012F), new Vector2(-233.278F, -321.115997F), new Vector2(-234.274002F, -321.691986F));
+ builder.AddCubicBezier(new Vector2(-235.270004F, -322.268005F), new Vector2(-236.416F, -322.556F), new Vector2(-237.712006F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-239.007996F, -322.556F), new Vector2(-240.171997F, -322.261993F), new Vector2(-241.203995F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-242.235992F, -321.085999F), new Vector2(-243.039993F, -320.287994F), new Vector2(-243.615997F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-244.192001F, -318.272003F), new Vector2(-244.479996F, -317.119995F), new Vector2(-244.479996F, -315.824005F));
+ builder.AddLine(new Vector2(-243.147995F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-243.147995F, -315.932007F), new Vector2(-242.955994F, -316.700012F), new Vector2(-242.572006F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-242.188004F, -318.044006F), new Vector2(-241.660004F, -318.571991F), new Vector2(-240.988007F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-240.315994F, -319.339996F), new Vector2(-239.548004F, -319.532013F), new Vector2(-238.684006F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-237.388F, -319.532013F), new Vector2(-236.337997F, -319.112F), new Vector2(-235.533997F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-234.729996F, -317.432007F), new Vector2(-234.328003F, -316.364014F), new Vector2(-234.328003F, -315.067993F));
+ builder.AddLine(new Vector2(-234.328003F, -305.096008F));
+ builder.AddLine(new Vector2(-231.052002F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0773()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-249.556F, -319.243988F));
+ builder.AddLine(new Vector2(-249.556F, -322.196014F));
+ builder.AddLine(new Vector2(-261.220001F, -322.196014F));
+ builder.AddLine(new Vector2(-261.220001F, -319.243988F));
+ builder.AddLine(new Vector2(-249.556F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-253.768005F, -305.096008F));
+ builder.AddLine(new Vector2(-253.768005F, -329.359985F));
+ builder.AddLine(new Vector2(-257.007996F, -329.359985F));
+ builder.AddLine(new Vector2(-257.007996F, -305.096008F));
+ builder.AddLine(new Vector2(-253.768005F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0774()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-281.272003F, -297.932007F));
+ builder.AddLine(new Vector2(-278.032013F, -304.951996F));
+ builder.AddLine(new Vector2(-279.868011F, -308.264008F));
+ builder.AddLine(new Vector2(-284.872009F, -297.932007F));
+ builder.AddLine(new Vector2(-281.272003F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-278.032013F, -304.951996F));
+ builder.AddLine(new Vector2(-270.040009F, -322.196014F));
+ builder.AddLine(new Vector2(-273.640015F, -322.196014F));
+ builder.AddLine(new Vector2(-279.436005F, -308.696014F));
+ builder.AddLine(new Vector2(-278.283997F, -308.696014F));
+ builder.AddLine(new Vector2(-283.791992F, -322.196014F));
+ builder.AddLine(new Vector2(-287.391998F, -322.196014F));
+ builder.AddLine(new Vector2(-279.976013F, -304.951996F));
+ builder.AddLine(new Vector2(-278.032013F, -304.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0775()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-300.261993F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-301.089996F, -309.056F), new Vector2(-301.726013F, -309.746002F), new Vector2(-302.170013F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-302.614014F, -311.497986F), new Vector2(-302.835999F, -312.5F), new Vector2(-302.835999F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-302.835999F, -314.779999F), new Vector2(-302.608002F, -315.794006F), new Vector2(-302.152008F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-301.696014F, -317.54599F), new Vector2(-301.059998F, -318.235992F), new Vector2(-300.243988F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-299.428009F, -319.243988F), new Vector2(-298.492004F, -319.496002F), new Vector2(-297.436005F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-296.355988F, -319.496002F), new Vector2(-295.40799F, -319.243988F), new Vector2(-294.59201F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-293.776001F, -318.235992F), new Vector2(-293.134003F, -317.54599F), new Vector2(-292.665985F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-292.197998F, -315.794006F), new Vector2(-291.963989F, -314.791992F), new Vector2(-291.963989F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-291.963989F, -312.511993F), new Vector2(-292.197998F, -311.497986F), new Vector2(-292.665985F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-293.134003F, -309.746002F), new Vector2(-293.776001F, -309.056F), new Vector2(-294.59201F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-295.40799F, -308.048004F), new Vector2(-296.355988F, -307.79599F), new Vector2(-297.436005F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-298.492004F, -307.79599F), new Vector2(-299.43399F, -308.048004F), new Vector2(-300.261993F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-302.656006F, -305.096008F));
+ builder.AddLine(new Vector2(-302.656006F, -309.70401F));
+ builder.AddLine(new Vector2(-303.268005F, -313.880005F));
+ builder.AddLine(new Vector2(-302.656006F, -318.019989F));
+ builder.AddLine(new Vector2(-302.656006F, -330.799988F));
+ builder.AddLine(new Vector2(-305.895996F, -330.799988F));
+ builder.AddLine(new Vector2(-305.895996F, -305.096008F));
+ builder.AddLine(new Vector2(-302.656006F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-292.665985F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-291.406006F, -306.686005F), new Vector2(-290.415985F, -307.747986F), new Vector2(-289.696014F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-288.976013F, -310.436005F), new Vector2(-288.615997F, -311.947998F), new Vector2(-288.615997F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-288.615997F, -315.308014F), new Vector2(-288.976013F, -316.820007F), new Vector2(-289.696014F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-290.415985F, -319.507996F), new Vector2(-291.406006F, -320.575989F), new Vector2(-292.665985F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-293.925995F, -322.160004F), new Vector2(-295.335999F, -322.556F), new Vector2(-296.895996F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-298.167999F, -322.556F), new Vector2(-299.325989F, -322.286011F), new Vector2(-300.369995F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-301.414001F, -321.205994F), new Vector2(-302.253998F, -320.462006F), new Vector2(-302.890015F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-303.526001F, -318.56601F), new Vector2(-303.880005F, -317.467987F), new Vector2(-303.951996F, -316.220001F));
+ builder.AddLine(new Vector2(-303.951996F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(-303.880005F, -309.847992F), new Vector2(-303.532013F, -308.756012F), new Vector2(-302.90799F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-302.283997F, -306.835999F), new Vector2(-301.450012F, -306.085999F), new Vector2(-300.406006F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-299.362F, -305.006012F), new Vector2(-298.191986F, -304.735992F), new Vector2(-296.895996F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-295.335999F, -304.735992F), new Vector2(-293.925995F, -305.126007F), new Vector2(-292.665985F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0776()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-320.944F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-319.768005F, -305.996002F), new Vector2(-318.76001F, -306.727997F), new Vector2(-317.920013F, -307.687988F));
+ builder.AddLine(new Vector2(-320.007996F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-320.584015F, -309.140015F), new Vector2(-321.273987F, -308.635986F), new Vector2(-322.078003F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-322.881989F, -307.963989F), new Vector2(-323.764008F, -307.79599F), new Vector2(-324.723999F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-325.876007F, -307.79599F), new Vector2(-326.895996F, -308.041992F), new Vector2(-327.783997F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-328.671997F, -309.026001F), new Vector2(-329.355988F, -309.721985F), new Vector2(-329.835999F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-330.31601F, -311.522003F), new Vector2(-330.556F, -312.571991F), new Vector2(-330.556F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-330.556F, -314.947998F), new Vector2(-330.328003F, -315.967987F), new Vector2(-329.872009F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-329.415985F, -317.696014F), new Vector2(-328.768005F, -318.368011F), new Vector2(-327.928009F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-327.088013F, -319.328003F), new Vector2(-326.115997F, -319.567993F), new Vector2(-325.011993F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-323.955994F, -319.567993F), new Vector2(-323.056F, -319.346008F), new Vector2(-322.312012F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-321.567993F, -318.458008F), new Vector2(-320.992004F, -317.834015F), new Vector2(-320.584015F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-320.175995F, -316.226013F), new Vector2(-319.971985F, -315.247986F), new Vector2(-319.971985F, -314.096008F));
+ builder.AddLine(new Vector2(-318.783997F, -315.140015F));
+ builder.AddLine(new Vector2(-331.492004F, -315.140015F));
+ builder.AddLine(new Vector2(-331.492004F, -312.440002F));
+ builder.AddLine(new Vector2(-317.056F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-316.984009F, -312.776001F), new Vector2(-316.936005F, -313.082001F), new Vector2(-316.911987F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-316.888F, -313.634003F), new Vector2(-316.876007F, -313.891998F), new Vector2(-316.876007F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-316.876007F, -315.764008F), new Vector2(-317.217987F, -317.216003F), new Vector2(-317.902008F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-318.585999F, -319.76001F), new Vector2(-319.540009F, -320.756012F), new Vector2(-320.764008F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-321.988007F, -322.196014F), new Vector2(-323.380005F, -322.556F), new Vector2(-324.940002F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-326.596008F, -322.556F), new Vector2(-328.089996F, -322.165985F), new Vector2(-329.421997F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-330.753998F, -320.605988F), new Vector2(-331.809998F, -319.544006F), new Vector2(-332.589996F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-333.369995F, -316.855988F), new Vector2(-333.76001F, -315.343994F), new Vector2(-333.76001F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-333.76001F, -311.959991F), new Vector2(-333.364014F, -310.436005F), new Vector2(-332.571991F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-331.779999F, -307.747986F), new Vector2(-330.705994F, -306.686005F), new Vector2(-329.350006F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-327.993988F, -305.126007F), new Vector2(-326.451996F, -304.735992F), new Vector2(-324.723999F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-323.380005F, -304.735992F), new Vector2(-322.119995F, -304.988007F), new Vector2(-320.944F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0777()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-338.421997F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-337.282013F, -305.996002F), new Vector2(-336.31601F, -306.70401F), new Vector2(-335.523987F, -307.615997F));
+ builder.AddLine(new Vector2(-337.64801F, -309.776001F));
+ builder.AddCubicBezier(new Vector2(-338.200012F, -309.152008F), new Vector2(-338.854004F, -308.678009F), new Vector2(-339.609985F, -308.354004F));
+ builder.AddCubicBezier(new Vector2(-340.365997F, -308.029999F), new Vector2(-341.200012F, -307.868011F), new Vector2(-342.112F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-343.191986F, -307.868011F), new Vector2(-344.152008F, -308.119995F), new Vector2(-344.992004F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-345.832001F, -309.127991F), new Vector2(-346.492004F, -309.812012F), new Vector2(-346.971985F, -310.675995F));
+ builder.AddCubicBezier(new Vector2(-347.451996F, -311.540009F), new Vector2(-347.691986F, -312.536011F), new Vector2(-347.691986F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-347.691986F, -314.791992F), new Vector2(-347.451996F, -315.787994F), new Vector2(-346.971985F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-346.492004F, -317.515991F), new Vector2(-345.832001F, -318.194F), new Vector2(-344.992004F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-344.152008F, -319.178009F), new Vector2(-343.191986F, -319.424011F), new Vector2(-342.112F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-341.223999F, -319.424011F), new Vector2(-340.395996F, -319.261993F), new Vector2(-339.627991F, -318.937988F));
+ builder.AddCubicBezier(new Vector2(-338.859985F, -318.614014F), new Vector2(-338.212006F, -318.140015F), new Vector2(-337.68399F, -317.515991F));
+ builder.AddLine(new Vector2(-335.523987F, -319.675995F));
+ builder.AddCubicBezier(new Vector2(-336.339996F, -320.612F), new Vector2(-337.312012F, -321.325989F), new Vector2(-338.440002F, -321.817993F));
+ builder.AddCubicBezier(new Vector2(-339.567993F, -322.309998F), new Vector2(-340.791992F, -322.556F), new Vector2(-342.112F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-343.791992F, -322.556F), new Vector2(-345.309998F, -322.165985F), new Vector2(-346.665985F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-348.022003F, -320.605988F), new Vector2(-349.089996F, -319.544006F), new Vector2(-349.869995F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-350.649994F, -316.855988F), new Vector2(-351.040009F, -315.343994F), new Vector2(-351.040009F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-351.040009F, -312.007996F), new Vector2(-350.649994F, -310.502014F), new Vector2(-349.869995F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-349.089996F, -307.790009F), new Vector2(-348.022003F, -306.716003F), new Vector2(-346.665985F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-345.309998F, -305.131989F), new Vector2(-343.791992F, -304.735992F), new Vector2(-342.112F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-340.791992F, -304.735992F), new Vector2(-339.562012F, -304.988007F), new Vector2(-338.421997F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0778()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-366.411987F, -305.096008F));
+ builder.AddLine(new Vector2(-366.411987F, -322.196014F));
+ builder.AddLine(new Vector2(-369.652008F, -322.196014F));
+ builder.AddLine(new Vector2(-369.652008F, -305.096008F));
+ builder.AddLine(new Vector2(-366.411987F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-354.31601F, -305.096008F));
+ builder.AddLine(new Vector2(-354.31601F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-354.31601F, -316.891998F), new Vector2(-354.604004F, -318.002014F), new Vector2(-355.179993F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-355.756012F, -320.089996F), new Vector2(-356.541992F, -320.936005F), new Vector2(-357.537994F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-358.533997F, -322.231995F), new Vector2(-359.679993F, -322.556F), new Vector2(-360.976013F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-362.272003F, -322.556F), new Vector2(-363.436005F, -322.261993F), new Vector2(-364.467987F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-365.5F, -321.085999F), new Vector2(-366.303986F, -320.287994F), new Vector2(-366.880005F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-367.455994F, -318.272003F), new Vector2(-367.743988F, -317.119995F), new Vector2(-367.743988F, -315.824005F));
+ builder.AddLine(new Vector2(-366.411987F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-366.411987F, -315.932007F), new Vector2(-366.220001F, -316.700012F), new Vector2(-365.835999F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-365.451996F, -318.044006F), new Vector2(-364.924011F, -318.571991F), new Vector2(-364.252014F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-363.579987F, -319.339996F), new Vector2(-362.812012F, -319.532013F), new Vector2(-361.947998F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-360.652008F, -319.532013F), new Vector2(-359.60199F, -319.112F), new Vector2(-358.798004F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-357.993988F, -317.432007F), new Vector2(-357.59201F, -316.364014F), new Vector2(-357.59201F, -315.067993F));
+ builder.AddLine(new Vector2(-357.59201F, -305.096008F));
+ builder.AddLine(new Vector2(-354.31601F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0779()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-377.247986F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-376.071991F, -305.996002F), new Vector2(-375.063995F, -306.727997F), new Vector2(-374.223999F, -307.687988F));
+ builder.AddLine(new Vector2(-376.312012F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-376.888F, -309.140015F), new Vector2(-377.578003F, -308.635986F), new Vector2(-378.381989F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-379.186005F, -307.963989F), new Vector2(-380.067993F, -307.79599F), new Vector2(-381.028015F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-382.179993F, -307.79599F), new Vector2(-383.200012F, -308.041992F), new Vector2(-384.088013F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-384.976013F, -309.026001F), new Vector2(-385.660004F, -309.721985F), new Vector2(-386.140015F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-386.619995F, -311.522003F), new Vector2(-386.859985F, -312.571991F), new Vector2(-386.859985F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-386.859985F, -314.947998F), new Vector2(-386.631989F, -315.967987F), new Vector2(-386.175995F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-385.720001F, -317.696014F), new Vector2(-385.071991F, -318.368011F), new Vector2(-384.231995F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-383.391998F, -319.328003F), new Vector2(-382.420013F, -319.567993F), new Vector2(-381.31601F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-380.26001F, -319.567993F), new Vector2(-379.359985F, -319.346008F), new Vector2(-378.615997F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-377.872009F, -318.458008F), new Vector2(-377.29599F, -317.834015F), new Vector2(-376.888F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-376.480011F, -316.226013F), new Vector2(-376.276001F, -315.247986F), new Vector2(-376.276001F, -314.096008F));
+ builder.AddLine(new Vector2(-375.088013F, -315.140015F));
+ builder.AddLine(new Vector2(-387.79599F, -315.140015F));
+ builder.AddLine(new Vector2(-387.79599F, -312.440002F));
+ builder.AddLine(new Vector2(-373.359985F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-373.287994F, -312.776001F), new Vector2(-373.23999F, -313.082001F), new Vector2(-373.216003F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-373.191986F, -313.634003F), new Vector2(-373.179993F, -313.891998F), new Vector2(-373.179993F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-373.179993F, -315.764008F), new Vector2(-373.522003F, -317.216003F), new Vector2(-374.205994F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-374.890015F, -319.76001F), new Vector2(-375.843994F, -320.756012F), new Vector2(-377.067993F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-378.291992F, -322.196014F), new Vector2(-379.68399F, -322.556F), new Vector2(-381.243988F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-382.899994F, -322.556F), new Vector2(-384.394012F, -322.165985F), new Vector2(-385.726013F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-387.058014F, -320.605988F), new Vector2(-388.114014F, -319.544006F), new Vector2(-388.894012F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-389.674011F, -316.855988F), new Vector2(-390.063995F, -315.343994F), new Vector2(-390.063995F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-390.063995F, -311.959991F), new Vector2(-389.667999F, -310.436005F), new Vector2(-388.876007F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-388.084015F, -307.747986F), new Vector2(-387.01001F, -306.686005F), new Vector2(-385.653992F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-384.298004F, -305.126007F), new Vector2(-382.756012F, -304.735992F), new Vector2(-381.028015F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-379.68399F, -304.735992F), new Vector2(-378.424011F, -304.988007F), new Vector2(-377.247986F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0780()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-393.700012F, -305.096008F));
+ builder.AddLine(new Vector2(-393.700012F, -330.799988F));
+ builder.AddLine(new Vector2(-396.940002F, -330.799988F));
+ builder.AddLine(new Vector2(-396.940002F, -305.096008F));
+ builder.AddLine(new Vector2(-393.700012F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0781()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-412.347992F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-413.187988F, -309.127991F), new Vector2(-413.847992F, -309.817993F), new Vector2(-414.328003F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-414.808014F, -311.570007F), new Vector2(-415.048004F, -312.571991F), new Vector2(-415.048004F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-415.048004F, -314.803986F), new Vector2(-414.808014F, -315.787994F), new Vector2(-414.328003F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-413.847992F, -317.515991F), new Vector2(-413.187988F, -318.194F), new Vector2(-412.347992F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-411.507996F, -319.178009F), new Vector2(-410.559998F, -319.424011F), new Vector2(-409.503998F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-408.399994F, -319.424011F), new Vector2(-407.43399F, -319.178009F), new Vector2(-406.605988F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-405.778015F, -318.194F), new Vector2(-405.118011F, -317.515991F), new Vector2(-404.626007F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-404.134003F, -315.787994F), new Vector2(-403.888F, -314.803986F), new Vector2(-403.888F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-403.888F, -312.571991F), new Vector2(-404.127991F, -311.570007F), new Vector2(-404.608002F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-405.088013F, -309.817993F), new Vector2(-405.747986F, -309.127991F), new Vector2(-406.588013F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-407.428009F, -308.119995F), new Vector2(-408.399994F, -307.868011F), new Vector2(-409.503998F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-410.559998F, -307.868011F), new Vector2(-411.507996F, -308.119995F), new Vector2(-412.347992F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-404.950012F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-403.593994F, -306.716003F), new Vector2(-402.519989F, -307.790009F), new Vector2(-401.727997F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-400.936005F, -310.502014F), new Vector2(-400.540009F, -312.019989F), new Vector2(-400.540009F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-400.540009F, -315.355988F), new Vector2(-400.936005F, -316.855988F), new Vector2(-401.727997F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-402.519989F, -319.544006F), new Vector2(-403.593994F, -320.605988F), new Vector2(-404.950012F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-406.306F, -322.165985F), new Vector2(-407.824005F, -322.556F), new Vector2(-409.503998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-411.160004F, -322.556F), new Vector2(-412.660004F, -322.160004F), new Vector2(-414.003998F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-415.347992F, -320.575989F), new Vector2(-416.415985F, -319.514008F), new Vector2(-417.208008F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-418F, -316.850006F), new Vector2(-418.395996F, -315.355988F), new Vector2(-418.395996F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-418.395996F, -312.019989F), new Vector2(-418F, -310.502014F), new Vector2(-417.208008F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-416.415985F, -307.790009F), new Vector2(-415.347992F, -306.716003F), new Vector2(-414.003998F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-412.660004F, -305.131989F), new Vector2(-411.160004F, -304.735992F), new Vector2(-409.503998F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-407.824005F, -304.735992F), new Vector2(-406.306F, -305.131989F), new Vector2(-404.950012F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0782()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-422.212006F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-421.828003F, -326.605988F), new Vector2(-421.635986F, -327.104004F), new Vector2(-421.635986F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-421.635986F, -328.279999F), new Vector2(-421.828003F, -328.765991F), new Vector2(-422.212006F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-422.596008F, -329.558014F), new Vector2(-423.088013F, -329.756012F), new Vector2(-423.687988F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-424.287994F, -329.756012F), new Vector2(-424.779999F, -329.558014F), new Vector2(-425.164001F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-425.548004F, -328.765991F), new Vector2(-425.73999F, -328.279999F), new Vector2(-425.73999F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-425.73999F, -327.104004F), new Vector2(-425.548004F, -326.605988F), new Vector2(-425.164001F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-424.779999F, -325.813995F), new Vector2(-424.287994F, -325.615997F), new Vector2(-423.687988F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-423.088013F, -325.615997F), new Vector2(-422.596008F, -325.813995F), new Vector2(-422.212006F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-422.067993F, -305.096008F));
+ builder.AddLine(new Vector2(-422.067993F, -322.196014F));
+ builder.AddLine(new Vector2(-425.343994F, -322.196014F));
+ builder.AddLine(new Vector2(-425.343994F, -305.096008F));
+ builder.AddLine(new Vector2(-422.067993F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0783()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-435.963989F, -305.096008F));
+ builder.AddLine(new Vector2(-428.115997F, -322.196014F));
+ builder.AddLine(new Vector2(-431.571991F, -322.196014F));
+ builder.AddLine(new Vector2(-437.90799F, -307.76001F));
+ builder.AddLine(new Vector2(-435.820007F, -307.76001F));
+ builder.AddLine(new Vector2(-442.119995F, -322.196014F));
+ builder.AddLine(new Vector2(-445.720001F, -322.196014F));
+ builder.AddLine(new Vector2(-437.872009F, -305.096008F));
+ builder.AddLine(new Vector2(-435.963989F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0784()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-455.90799F, -330.799988F));
+ builder.AddLine(new Vector2(-459.18399F, -330.799988F));
+ builder.AddLine(new Vector2(-459.18399F, -318.019989F));
+ builder.AddLine(new Vector2(-458.571991F, -313.880005F));
+ builder.AddLine(new Vector2(-459.18399F, -309.70401F));
+ builder.AddLine(new Vector2(-459.18399F, -305.096008F));
+ builder.AddLine(new Vector2(-455.90799F, -305.096008F));
+ builder.AddLine(new Vector2(-455.90799F, -330.799988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-467.230011F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-468.058014F, -309.026001F), new Vector2(-468.705994F, -309.716003F), new Vector2(-469.174011F, -310.604004F));
+ builder.AddCubicBezier(new Vector2(-469.641998F, -311.492004F), new Vector2(-469.876007F, -312.511993F), new Vector2(-469.876007F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-469.876007F, -314.81601F), new Vector2(-469.641998F, -315.829987F), new Vector2(-469.174011F, -316.705994F));
+ builder.AddCubicBezier(new Vector2(-468.705994F, -317.582001F), new Vector2(-468.063995F, -318.265991F), new Vector2(-467.247986F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(-466.432007F, -319.25F), new Vector2(-465.484009F, -319.496002F), new Vector2(-464.403992F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-463.324005F, -319.496002F), new Vector2(-462.376007F, -319.243988F), new Vector2(-461.559998F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-460.743988F, -318.235992F), new Vector2(-460.108002F, -317.54599F), new Vector2(-459.652008F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-459.196014F, -315.794006F), new Vector2(-458.967987F, -314.779999F), new Vector2(-458.967987F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-458.967987F, -312.5F), new Vector2(-459.196014F, -311.497986F), new Vector2(-459.652008F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-460.108002F, -309.746002F), new Vector2(-460.743988F, -309.056F), new Vector2(-461.559998F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-462.376007F, -308.048004F), new Vector2(-463.324005F, -307.79599F), new Vector2(-464.403992F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-465.459991F, -307.79599F), new Vector2(-466.402008F, -308.041992F), new Vector2(-467.230011F, -308.533997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-461.415985F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-460.384003F, -306.085999F), new Vector2(-459.556F, -306.835999F), new Vector2(-458.932007F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-458.308014F, -308.756012F), new Vector2(-457.959991F, -309.847992F), new Vector2(-457.888F, -311.071991F));
+ builder.AddLine(new Vector2(-457.888F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-457.959991F, -317.467987F), new Vector2(-458.313995F, -318.56601F), new Vector2(-458.950012F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-459.585999F, -320.462006F), new Vector2(-460.420013F, -321.205994F), new Vector2(-461.451996F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-462.484009F, -322.286011F), new Vector2(-463.64801F, -322.556F), new Vector2(-464.944F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-466.503998F, -322.556F), new Vector2(-467.90799F, -322.160004F), new Vector2(-469.156006F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-470.403992F, -320.575989F), new Vector2(-471.394012F, -319.507996F), new Vector2(-472.126007F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-472.858002F, -316.820007F), new Vector2(-473.223999F, -315.308014F), new Vector2(-473.223999F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-473.223999F, -311.947998F), new Vector2(-472.858002F, -310.436005F), new Vector2(-472.126007F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-471.394012F, -307.747986F), new Vector2(-470.403992F, -306.686005F), new Vector2(-469.156006F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-467.90799F, -305.126007F), new Vector2(-466.503998F, -304.735992F), new Vector2(-464.944F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-463.623993F, -304.735992F), new Vector2(-462.447998F, -305.006012F), new Vector2(-461.415985F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0785()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-488.631989F, -305.096008F));
+ builder.AddLine(new Vector2(-488.631989F, -322.196014F));
+ builder.AddLine(new Vector2(-491.872009F, -322.196014F));
+ builder.AddLine(new Vector2(-491.872009F, -305.096008F));
+ builder.AddLine(new Vector2(-488.631989F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-476.536011F, -305.096008F));
+ builder.AddLine(new Vector2(-476.536011F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-476.536011F, -316.891998F), new Vector2(-476.824005F, -318.002014F), new Vector2(-477.399994F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-477.976013F, -320.089996F), new Vector2(-478.761993F, -320.936005F), new Vector2(-479.757996F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-480.753998F, -322.231995F), new Vector2(-481.899994F, -322.556F), new Vector2(-483.196014F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-484.492004F, -322.556F), new Vector2(-485.656006F, -322.261993F), new Vector2(-486.687988F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-487.720001F, -321.085999F), new Vector2(-488.523987F, -320.287994F), new Vector2(-489.100006F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-489.675995F, -318.272003F), new Vector2(-489.963989F, -317.119995F), new Vector2(-489.963989F, -315.824005F));
+ builder.AddLine(new Vector2(-488.631989F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-488.631989F, -315.932007F), new Vector2(-488.440002F, -316.700012F), new Vector2(-488.056F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-487.671997F, -318.044006F), new Vector2(-487.144012F, -318.571991F), new Vector2(-486.471985F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-485.799988F, -319.339996F), new Vector2(-485.032013F, -319.532013F), new Vector2(-484.167999F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-482.872009F, -319.532013F), new Vector2(-481.821991F, -319.112F), new Vector2(-481.018005F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-480.213989F, -317.432007F), new Vector2(-479.812012F, -316.364014F), new Vector2(-479.812012F, -315.067993F));
+ builder.AddLine(new Vector2(-479.812012F, -305.096008F));
+ builder.AddLine(new Vector2(-476.536011F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0786()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-496.588013F, -305.096008F));
+ builder.AddLine(new Vector2(-496.588013F, -322.196014F));
+ builder.AddLine(new Vector2(-499.864014F, -322.196014F));
+ builder.AddLine(new Vector2(-499.864014F, -318.019989F));
+ builder.AddLine(new Vector2(-499.252014F, -313.880005F));
+ builder.AddLine(new Vector2(-499.864014F, -309.70401F));
+ builder.AddLine(new Vector2(-499.864014F, -305.096008F));
+ builder.AddLine(new Vector2(-496.588013F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-507.891998F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-508.731995F, -309.056F), new Vector2(-509.385986F, -309.746002F), new Vector2(-509.854004F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-510.321991F, -311.497986F), new Vector2(-510.556F, -312.511993F), new Vector2(-510.556F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-510.556F, -314.791992F), new Vector2(-510.321991F, -315.794006F), new Vector2(-509.854004F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-509.385986F, -317.54599F), new Vector2(-508.738007F, -318.235992F), new Vector2(-507.910004F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-507.082001F, -319.243988F), new Vector2(-506.127991F, -319.496002F), new Vector2(-505.048004F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-503.967987F, -319.496002F), new Vector2(-503.026001F, -319.25F), new Vector2(-502.221985F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(-501.417999F, -318.265991F), new Vector2(-500.787994F, -317.575989F), new Vector2(-500.332001F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(-499.876007F, -315.799988F), new Vector2(-499.64801F, -314.779999F), new Vector2(-499.64801F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-499.64801F, -311.924011F), new Vector2(-500.140015F, -310.526001F), new Vector2(-501.123993F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(-502.108002F, -308.34201F), new Vector2(-503.403992F, -307.79599F), new Vector2(-505.011993F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-506.09201F, -307.79599F), new Vector2(-507.052002F, -308.048004F), new Vector2(-507.891998F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-502.059998F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-501.028015F, -306.085999F), new Vector2(-500.205994F, -306.835999F), new Vector2(-499.593994F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-498.981995F, -308.756012F), new Vector2(-498.640015F, -309.847992F), new Vector2(-498.567993F, -311.071991F));
+ builder.AddLine(new Vector2(-498.567993F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-498.640015F, -317.467987F), new Vector2(-498.988007F, -318.56601F), new Vector2(-499.612F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-500.235992F, -320.462006F), new Vector2(-501.058014F, -321.205994F), new Vector2(-502.078003F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-503.097992F, -322.286011F), new Vector2(-504.256012F, -322.556F), new Vector2(-505.552002F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-507.135986F, -322.556F), new Vector2(-508.558014F, -322.160004F), new Vector2(-509.817993F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-511.078003F, -320.575989F), new Vector2(-512.073975F, -319.507996F), new Vector2(-512.80603F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-513.538025F, -316.820007F), new Vector2(-513.903992F, -315.308014F), new Vector2(-513.903992F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-513.903992F, -311.947998F), new Vector2(-513.538025F, -310.436005F), new Vector2(-512.80603F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-512.073975F, -307.747986F), new Vector2(-511.078003F, -306.686005F), new Vector2(-509.817993F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-508.558014F, -305.126007F), new Vector2(-507.135986F, -304.735992F), new Vector2(-505.552002F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-504.256012F, -304.735992F), new Vector2(-503.09201F, -305.006012F), new Vector2(-502.059998F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0787()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-536.763977F, -305.096008F));
+ builder.AddLine(new Vector2(-536.763977F, -322.196014F));
+ builder.AddLine(new Vector2(-540.004028F, -322.196014F));
+ builder.AddLine(new Vector2(-540.004028F, -305.096008F));
+ builder.AddLine(new Vector2(-536.763977F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-524.66803F, -305.096008F));
+ builder.AddLine(new Vector2(-524.66803F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-524.66803F, -316.891998F), new Vector2(-524.955994F, -318.002014F), new Vector2(-525.531982F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-526.107971F, -320.089996F), new Vector2(-526.893982F, -320.936005F), new Vector2(-527.890015F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-528.885986F, -322.231995F), new Vector2(-530.031982F, -322.556F), new Vector2(-531.328003F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-532.624023F, -322.556F), new Vector2(-533.788025F, -322.261993F), new Vector2(-534.820007F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-535.85199F, -321.085999F), new Vector2(-536.656006F, -320.287994F), new Vector2(-537.231995F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-537.807983F, -318.272003F), new Vector2(-538.096008F, -317.119995F), new Vector2(-538.096008F, -315.824005F));
+ builder.AddLine(new Vector2(-536.763977F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-536.763977F, -315.932007F), new Vector2(-536.572021F, -316.700012F), new Vector2(-536.187988F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-535.804016F, -318.044006F), new Vector2(-535.276001F, -318.571991F), new Vector2(-534.604004F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-533.932007F, -319.339996F), new Vector2(-533.164001F, -319.532013F), new Vector2(-532.299988F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-531.004028F, -319.532013F), new Vector2(-529.953979F, -319.112F), new Vector2(-529.150024F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-528.346008F, -317.432007F), new Vector2(-527.94397F, -316.364014F), new Vector2(-527.94397F, -315.067993F));
+ builder.AddLine(new Vector2(-527.94397F, -305.096008F));
+ builder.AddLine(new Vector2(-524.66803F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0788()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-555.411987F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-556.252014F, -309.127991F), new Vector2(-556.911987F, -309.817993F), new Vector2(-557.392029F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-557.872009F, -311.570007F), new Vector2(-558.112F, -312.571991F), new Vector2(-558.112F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-558.112F, -314.803986F), new Vector2(-557.872009F, -315.787994F), new Vector2(-557.392029F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-556.911987F, -317.515991F), new Vector2(-556.252014F, -318.194F), new Vector2(-555.411987F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-554.572021F, -319.178009F), new Vector2(-553.624023F, -319.424011F), new Vector2(-552.567993F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-551.463989F, -319.424011F), new Vector2(-550.497986F, -319.178009F), new Vector2(-549.669983F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-548.84198F, -318.194F), new Vector2(-548.182007F, -317.515991F), new Vector2(-547.690002F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-547.197998F, -315.787994F), new Vector2(-546.952026F, -314.803986F), new Vector2(-546.952026F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-546.952026F, -312.571991F), new Vector2(-547.192017F, -311.570007F), new Vector2(-547.671997F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-548.151978F, -309.817993F), new Vector2(-548.812012F, -309.127991F), new Vector2(-549.651978F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-550.492004F, -308.119995F), new Vector2(-551.463989F, -307.868011F), new Vector2(-552.567993F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-553.624023F, -307.868011F), new Vector2(-554.572021F, -308.119995F), new Vector2(-555.411987F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-548.013977F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-546.65802F, -306.716003F), new Vector2(-545.583984F, -307.790009F), new Vector2(-544.791992F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-544F, -310.502014F), new Vector2(-543.604004F, -312.019989F), new Vector2(-543.604004F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-543.604004F, -315.355988F), new Vector2(-544F, -316.855988F), new Vector2(-544.791992F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-545.583984F, -319.544006F), new Vector2(-546.65802F, -320.605988F), new Vector2(-548.013977F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-549.369995F, -322.165985F), new Vector2(-550.888F, -322.556F), new Vector2(-552.567993F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-554.223999F, -322.556F), new Vector2(-555.723999F, -322.160004F), new Vector2(-557.067993F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-558.411987F, -320.575989F), new Vector2(-559.47998F, -319.514008F), new Vector2(-560.271973F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-561.064026F, -316.850006F), new Vector2(-561.460022F, -315.355988F), new Vector2(-561.460022F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-561.460022F, -312.019989F), new Vector2(-561.064026F, -310.502014F), new Vector2(-560.271973F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-559.47998F, -307.790009F), new Vector2(-558.411987F, -306.716003F), new Vector2(-557.067993F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-555.723999F, -305.131989F), new Vector2(-554.223999F, -304.735992F), new Vector2(-552.567993F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-550.888F, -304.735992F), new Vector2(-549.369995F, -305.131989F), new Vector2(-548.013977F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0789()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-565.276001F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-564.892029F, -326.605988F), new Vector2(-564.700012F, -327.104004F), new Vector2(-564.700012F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-564.700012F, -328.279999F), new Vector2(-564.892029F, -328.765991F), new Vector2(-565.276001F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-565.659973F, -329.558014F), new Vector2(-566.151978F, -329.756012F), new Vector2(-566.752014F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-567.35199F, -329.756012F), new Vector2(-567.843994F, -329.558014F), new Vector2(-568.228027F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-568.612F, -328.765991F), new Vector2(-568.804016F, -328.279999F), new Vector2(-568.804016F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-568.804016F, -327.104004F), new Vector2(-568.612F, -326.605988F), new Vector2(-568.228027F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-567.843994F, -325.813995F), new Vector2(-567.35199F, -325.615997F), new Vector2(-566.752014F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-566.151978F, -325.615997F), new Vector2(-565.659973F, -325.813995F), new Vector2(-565.276001F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-565.132019F, -305.096008F));
+ builder.AddLine(new Vector2(-565.132019F, -322.196014F));
+ builder.AddLine(new Vector2(-568.40802F, -322.196014F));
+ builder.AddLine(new Vector2(-568.40802F, -305.096008F));
+ builder.AddLine(new Vector2(-565.132019F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0790()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-573.754028F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(-572.614014F, -307.075989F), new Vector2(-572.044006F, -308.347992F), new Vector2(-572.044006F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(-572.044006F, -311.011993F), new Vector2(-572.265991F, -311.864014F), new Vector2(-572.710022F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(-573.153992F, -313.160004F), new Vector2(-573.723999F, -313.675995F), new Vector2(-574.419983F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(-575.116028F, -314.444F), new Vector2(-575.848022F, -314.75F), new Vector2(-576.616028F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(-577.383972F, -315.205994F), new Vector2(-578.122009F, -315.428009F), new Vector2(-578.830017F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(-579.538025F, -315.859985F), new Vector2(-580.107971F, -316.123993F), new Vector2(-580.539978F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(-580.971985F, -316.747986F), new Vector2(-581.187988F, -317.191986F), new Vector2(-581.187988F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(-581.187988F, -318.320007F), new Vector2(-580.942017F, -318.764008F), new Vector2(-580.450012F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-579.958008F, -319.436005F), new Vector2(-579.244019F, -319.604004F), new Vector2(-578.307983F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(-577.419983F, -319.604004F), new Vector2(-576.627991F, -319.436005F), new Vector2(-575.932007F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-575.236023F, -318.764008F), new Vector2(-574.635986F, -318.283997F), new Vector2(-574.132019F, -317.660004F));
+ builder.AddLine(new Vector2(-572.044006F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(-572.716003F, -320.68399F), new Vector2(-573.573975F, -321.385986F), new Vector2(-574.617981F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(-575.661987F, -322.321991F), new Vector2(-576.856018F, -322.556F), new Vector2(-578.200012F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-579.471985F, -322.556F), new Vector2(-580.564026F, -322.35199F), new Vector2(-581.476013F, -321.944F));
+ builder.AddCubicBezier(new Vector2(-582.388F, -321.536011F), new Vector2(-583.090027F, -320.95401F), new Vector2(-583.58197F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(-584.073975F, -319.441986F), new Vector2(-584.320007F, -318.548004F), new Vector2(-584.320007F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(-584.320007F, -316.484009F), new Vector2(-584.098022F, -315.649994F), new Vector2(-583.653992F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(-583.210022F, -314.377991F), new Vector2(-582.640015F, -313.880005F), new Vector2(-581.94397F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(-581.247986F, -313.160004F), new Vector2(-580.51001F, -312.872009F), new Vector2(-579.72998F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(-578.950012F, -312.440002F), new Vector2(-578.211975F, -312.217987F), new Vector2(-577.515991F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(-576.820007F, -311.761993F), new Vector2(-576.25F, -311.473999F), new Vector2(-575.80603F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(-575.362F, -310.778015F), new Vector2(-575.140015F, -310.291992F), new Vector2(-575.140015F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(-575.140015F, -309.044006F), new Vector2(-575.416016F, -308.558014F), new Vector2(-575.968018F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(-576.52002F, -307.862F), new Vector2(-577.299988F, -307.687988F), new Vector2(-578.307983F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(-579.315979F, -307.687988F), new Vector2(-580.228027F, -307.873993F), new Vector2(-581.044006F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(-581.859985F, -308.618011F), new Vector2(-582.580017F, -309.187988F), new Vector2(-583.203979F, -309.955994F));
+ builder.AddLine(new Vector2(-585.291992F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-584.763977F, -307.220001F), new Vector2(-584.145996F, -306.661987F), new Vector2(-583.437988F, -306.194F));
+ builder.AddCubicBezier(new Vector2(-582.72998F, -305.726013F), new Vector2(-581.94397F, -305.365997F), new Vector2(-581.080017F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(-580.216003F, -304.862F), new Vector2(-579.304016F, -304.735992F), new Vector2(-578.343994F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-576.424011F, -304.735992F), new Vector2(-574.893982F, -305.20401F), new Vector2(-573.754028F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0791()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-589.125977F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(-587.986023F, -307.075989F), new Vector2(-587.416016F, -308.347992F), new Vector2(-587.416016F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(-587.416016F, -311.011993F), new Vector2(-587.638F, -311.864014F), new Vector2(-588.08197F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(-588.526001F, -313.160004F), new Vector2(-589.096008F, -313.675995F), new Vector2(-589.791992F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(-590.487976F, -314.444F), new Vector2(-591.219971F, -314.75F), new Vector2(-591.987976F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(-592.755981F, -315.205994F), new Vector2(-593.494019F, -315.428009F), new Vector2(-594.202026F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(-594.909973F, -315.859985F), new Vector2(-595.47998F, -316.123993F), new Vector2(-595.911987F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(-596.343994F, -316.747986F), new Vector2(-596.559998F, -317.191986F), new Vector2(-596.559998F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(-596.559998F, -318.320007F), new Vector2(-596.314026F, -318.764008F), new Vector2(-595.822021F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-595.330017F, -319.436005F), new Vector2(-594.616028F, -319.604004F), new Vector2(-593.679993F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(-592.791992F, -319.604004F), new Vector2(-592F, -319.436005F), new Vector2(-591.304016F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-590.607971F, -318.764008F), new Vector2(-590.007996F, -318.283997F), new Vector2(-589.504028F, -317.660004F));
+ builder.AddLine(new Vector2(-587.416016F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(-588.088013F, -320.68399F), new Vector2(-588.945984F, -321.385986F), new Vector2(-589.98999F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(-591.033997F, -322.321991F), new Vector2(-592.228027F, -322.556F), new Vector2(-593.572021F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-594.843994F, -322.556F), new Vector2(-595.935974F, -322.35199F), new Vector2(-596.848022F, -321.944F));
+ builder.AddCubicBezier(new Vector2(-597.76001F, -321.536011F), new Vector2(-598.461975F, -320.95401F), new Vector2(-598.953979F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(-599.445984F, -319.441986F), new Vector2(-599.692017F, -318.548004F), new Vector2(-599.692017F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(-599.692017F, -316.484009F), new Vector2(-599.469971F, -315.649994F), new Vector2(-599.026001F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(-598.58197F, -314.377991F), new Vector2(-598.012024F, -313.880005F), new Vector2(-597.315979F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(-596.619995F, -313.160004F), new Vector2(-595.882019F, -312.872009F), new Vector2(-595.10199F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(-594.322021F, -312.440002F), new Vector2(-593.583984F, -312.217987F), new Vector2(-592.888F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(-592.192017F, -311.761993F), new Vector2(-591.622009F, -311.473999F), new Vector2(-591.177979F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(-590.734009F, -310.778015F), new Vector2(-590.512024F, -310.291992F), new Vector2(-590.512024F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(-590.512024F, -309.044006F), new Vector2(-590.788025F, -308.558014F), new Vector2(-591.340027F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(-591.892029F, -307.862F), new Vector2(-592.671997F, -307.687988F), new Vector2(-593.679993F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(-594.687988F, -307.687988F), new Vector2(-595.599976F, -307.873993F), new Vector2(-596.416016F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(-597.231995F, -308.618011F), new Vector2(-597.952026F, -309.187988F), new Vector2(-598.575989F, -309.955994F));
+ builder.AddLine(new Vector2(-600.664001F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-600.135986F, -307.220001F), new Vector2(-599.518005F, -306.661987F), new Vector2(-598.809998F, -306.194F));
+ builder.AddCubicBezier(new Vector2(-598.10199F, -305.726013F), new Vector2(-597.315979F, -305.365997F), new Vector2(-596.452026F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(-595.588013F, -304.862F), new Vector2(-594.676025F, -304.735992F), new Vector2(-593.716003F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-591.796021F, -304.735992F), new Vector2(-590.265991F, -305.20401F), new Vector2(-589.125977F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0792()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-606.747986F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-605.572021F, -305.996002F), new Vector2(-604.564026F, -306.727997F), new Vector2(-603.723999F, -307.687988F));
+ builder.AddLine(new Vector2(-605.812012F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-606.388F, -309.140015F), new Vector2(-607.078003F, -308.635986F), new Vector2(-607.882019F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-608.685974F, -307.963989F), new Vector2(-609.567993F, -307.79599F), new Vector2(-610.528015F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-611.679993F, -307.79599F), new Vector2(-612.700012F, -308.041992F), new Vector2(-613.588013F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-614.476013F, -309.026001F), new Vector2(-615.159973F, -309.721985F), new Vector2(-615.640015F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-616.119995F, -311.522003F), new Vector2(-616.359985F, -312.571991F), new Vector2(-616.359985F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-616.359985F, -314.947998F), new Vector2(-616.132019F, -315.967987F), new Vector2(-615.676025F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-615.219971F, -317.696014F), new Vector2(-614.572021F, -318.368011F), new Vector2(-613.731995F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-612.892029F, -319.328003F), new Vector2(-611.919983F, -319.567993F), new Vector2(-610.815979F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-609.76001F, -319.567993F), new Vector2(-608.859985F, -319.346008F), new Vector2(-608.116028F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-607.372009F, -318.458008F), new Vector2(-606.796021F, -317.834015F), new Vector2(-606.388F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-605.97998F, -316.226013F), new Vector2(-605.776001F, -315.247986F), new Vector2(-605.776001F, -314.096008F));
+ builder.AddLine(new Vector2(-604.588013F, -315.140015F));
+ builder.AddLine(new Vector2(-617.296021F, -315.140015F));
+ builder.AddLine(new Vector2(-617.296021F, -312.440002F));
+ builder.AddLine(new Vector2(-602.859985F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-602.788025F, -312.776001F), new Vector2(-602.73999F, -313.082001F), new Vector2(-602.716003F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-602.692017F, -313.634003F), new Vector2(-602.679993F, -313.891998F), new Vector2(-602.679993F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-602.679993F, -315.764008F), new Vector2(-603.021973F, -317.216003F), new Vector2(-603.705994F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-604.390015F, -319.76001F), new Vector2(-605.343994F, -320.756012F), new Vector2(-606.567993F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-607.791992F, -322.196014F), new Vector2(-609.184021F, -322.556F), new Vector2(-610.744019F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-612.400024F, -322.556F), new Vector2(-613.893982F, -322.165985F), new Vector2(-615.226013F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-616.557983F, -320.605988F), new Vector2(-617.614014F, -319.544006F), new Vector2(-618.393982F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-619.174011F, -316.855988F), new Vector2(-619.564026F, -315.343994F), new Vector2(-619.564026F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-619.564026F, -311.959991F), new Vector2(-619.16803F, -310.436005F), new Vector2(-618.375977F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-617.583984F, -307.747986F), new Vector2(-616.51001F, -306.686005F), new Vector2(-615.153992F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-613.797974F, -305.126007F), new Vector2(-612.255981F, -304.735992F), new Vector2(-610.528015F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-609.184021F, -304.735992F), new Vector2(-607.924011F, -304.988007F), new Vector2(-606.747986F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0793()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-627.952026F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-627.184021F, -319.112F), new Vector2(-626.200012F, -319.496002F), new Vector2(-625F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-624.424011F, -319.496002F), new Vector2(-623.919983F, -319.411987F), new Vector2(-623.487976F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-623.05603F, -319.075989F), new Vector2(-622.659973F, -318.799988F), new Vector2(-622.299988F, -318.415985F));
+ builder.AddLine(new Vector2(-620.176025F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-620.776001F, -321.308014F), new Vector2(-621.424011F, -321.806F), new Vector2(-622.119995F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-622.815979F, -322.406006F), new Vector2(-623.596008F, -322.556F), new Vector2(-624.460022F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-626.356018F, -322.556F), new Vector2(-627.807983F, -321.90799F), new Vector2(-628.815979F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-629.823975F, -319.31601F), new Vector2(-630.328003F, -317.575989F), new Vector2(-630.328003F, -315.391998F));
+ builder.AddLine(new Vector2(-629.104004F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-629.104004F, -316.399994F), new Vector2(-628.719971F, -317.575989F), new Vector2(-627.952026F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-629.104004F, -305.096008F));
+ builder.AddLine(new Vector2(-629.104004F, -322.196014F));
+ builder.AddLine(new Vector2(-632.343994F, -322.196014F));
+ builder.AddLine(new Vector2(-632.343994F, -305.096008F));
+ builder.AddLine(new Vector2(-629.104004F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0794()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-647.661987F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-648.48999F, -309.056F), new Vector2(-649.125977F, -309.746002F), new Vector2(-649.570007F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-650.013977F, -311.497986F), new Vector2(-650.236023F, -312.5F), new Vector2(-650.236023F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-650.236023F, -314.779999F), new Vector2(-650.007996F, -315.794006F), new Vector2(-649.552002F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-649.096008F, -317.54599F), new Vector2(-648.460022F, -318.235992F), new Vector2(-647.643982F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-646.828003F, -319.243988F), new Vector2(-645.892029F, -319.496002F), new Vector2(-644.835999F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-643.755981F, -319.496002F), new Vector2(-642.807983F, -319.243988F), new Vector2(-641.992004F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-641.176025F, -318.235992F), new Vector2(-640.533997F, -317.54599F), new Vector2(-640.065979F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-639.598022F, -315.794006F), new Vector2(-639.364014F, -314.791992F), new Vector2(-639.364014F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-639.364014F, -312.511993F), new Vector2(-639.598022F, -311.497986F), new Vector2(-640.065979F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-640.533997F, -309.746002F), new Vector2(-641.176025F, -309.056F), new Vector2(-641.992004F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-642.807983F, -308.048004F), new Vector2(-643.755981F, -307.79599F), new Vector2(-644.835999F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-645.892029F, -307.79599F), new Vector2(-646.833984F, -308.048004F), new Vector2(-647.661987F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-650.05603F, -297.932007F));
+ builder.AddLine(new Vector2(-650.05603F, -309.380005F));
+ builder.AddLine(new Vector2(-650.66803F, -313.556F));
+ builder.AddLine(new Vector2(-650.05603F, -317.696014F));
+ builder.AddLine(new Vector2(-650.05603F, -322.196014F));
+ builder.AddLine(new Vector2(-653.296021F, -322.196014F));
+ builder.AddLine(new Vector2(-653.296021F, -297.932007F));
+ builder.AddLine(new Vector2(-650.05603F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-640.065979F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-638.80603F, -306.686005F), new Vector2(-637.815979F, -307.747986F), new Vector2(-637.096008F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-636.375977F, -310.436005F), new Vector2(-636.015991F, -311.947998F), new Vector2(-636.015991F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-636.015991F, -315.308014F), new Vector2(-636.375977F, -316.820007F), new Vector2(-637.096008F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-637.815979F, -319.507996F), new Vector2(-638.80603F, -320.575989F), new Vector2(-640.065979F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-641.325989F, -322.160004F), new Vector2(-642.736023F, -322.556F), new Vector2(-644.296021F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-645.567993F, -322.556F), new Vector2(-646.726013F, -322.286011F), new Vector2(-647.77002F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-648.814026F, -321.205994F), new Vector2(-649.653992F, -320.462006F), new Vector2(-650.289978F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-650.926025F, -318.56601F), new Vector2(-651.280029F, -317.467987F), new Vector2(-651.35199F, -316.220001F));
+ builder.AddLine(new Vector2(-651.35199F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(-651.280029F, -309.847992F), new Vector2(-650.932007F, -308.756012F), new Vector2(-650.307983F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-649.684021F, -306.835999F), new Vector2(-648.849976F, -306.085999F), new Vector2(-647.80603F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-646.762024F, -305.006012F), new Vector2(-645.59198F, -304.735992F), new Vector2(-644.296021F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-642.736023F, -304.735992F), new Vector2(-641.325989F, -305.126007F), new Vector2(-640.065979F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0795()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-668.614014F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-669.442017F, -309.056F), new Vector2(-670.078003F, -309.746002F), new Vector2(-670.521973F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-670.966003F, -311.497986F), new Vector2(-671.187988F, -312.5F), new Vector2(-671.187988F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-671.187988F, -314.779999F), new Vector2(-670.960022F, -315.794006F), new Vector2(-670.504028F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-670.047974F, -317.54599F), new Vector2(-669.411987F, -318.235992F), new Vector2(-668.596008F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-667.780029F, -319.243988F), new Vector2(-666.843994F, -319.496002F), new Vector2(-665.788025F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-664.708008F, -319.496002F), new Vector2(-663.76001F, -319.243988F), new Vector2(-662.94397F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-662.127991F, -318.235992F), new Vector2(-661.486023F, -317.54599F), new Vector2(-661.018005F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-660.549988F, -315.794006F), new Vector2(-660.315979F, -314.791992F), new Vector2(-660.315979F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-660.315979F, -312.511993F), new Vector2(-660.549988F, -311.497986F), new Vector2(-661.018005F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-661.486023F, -309.746002F), new Vector2(-662.127991F, -309.056F), new Vector2(-662.94397F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-663.76001F, -308.048004F), new Vector2(-664.708008F, -307.79599F), new Vector2(-665.788025F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-666.843994F, -307.79599F), new Vector2(-667.786011F, -308.048004F), new Vector2(-668.614014F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-671.007996F, -297.932007F));
+ builder.AddLine(new Vector2(-671.007996F, -309.380005F));
+ builder.AddLine(new Vector2(-671.619995F, -313.556F));
+ builder.AddLine(new Vector2(-671.007996F, -317.696014F));
+ builder.AddLine(new Vector2(-671.007996F, -322.196014F));
+ builder.AddLine(new Vector2(-674.247986F, -322.196014F));
+ builder.AddLine(new Vector2(-674.247986F, -297.932007F));
+ builder.AddLine(new Vector2(-671.007996F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-661.018005F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-659.757996F, -306.686005F), new Vector2(-658.768005F, -307.747986F), new Vector2(-658.047974F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-657.328003F, -310.436005F), new Vector2(-656.968018F, -311.947998F), new Vector2(-656.968018F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-656.968018F, -315.308014F), new Vector2(-657.328003F, -316.820007F), new Vector2(-658.047974F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-658.768005F, -319.507996F), new Vector2(-659.757996F, -320.575989F), new Vector2(-661.018005F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-662.278015F, -322.160004F), new Vector2(-663.687988F, -322.556F), new Vector2(-665.247986F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-666.52002F, -322.556F), new Vector2(-667.677979F, -322.286011F), new Vector2(-668.721985F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-669.765991F, -321.205994F), new Vector2(-670.606018F, -320.462006F), new Vector2(-671.242004F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-671.877991F, -318.56601F), new Vector2(-672.231995F, -317.467987F), new Vector2(-672.304016F, -316.220001F));
+ builder.AddLine(new Vector2(-672.304016F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(-672.231995F, -309.847992F), new Vector2(-671.883972F, -308.756012F), new Vector2(-671.26001F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-670.635986F, -306.835999F), new Vector2(-669.802002F, -306.085999F), new Vector2(-668.757996F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-667.713989F, -305.006012F), new Vector2(-666.544006F, -304.735992F), new Vector2(-665.247986F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-663.687988F, -304.735992F), new Vector2(-662.278015F, -305.126007F), new Vector2(-661.018005F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0796()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-689.656006F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-690.495972F, -309.127991F), new Vector2(-691.156006F, -309.817993F), new Vector2(-691.635986F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-692.116028F, -311.570007F), new Vector2(-692.356018F, -312.571991F), new Vector2(-692.356018F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-692.356018F, -314.803986F), new Vector2(-692.116028F, -315.787994F), new Vector2(-691.635986F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-691.156006F, -317.515991F), new Vector2(-690.495972F, -318.194F), new Vector2(-689.656006F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-688.815979F, -319.178009F), new Vector2(-687.867981F, -319.424011F), new Vector2(-686.812012F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-685.708008F, -319.424011F), new Vector2(-684.742004F, -319.178009F), new Vector2(-683.914001F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-683.085999F, -318.194F), new Vector2(-682.426025F, -317.515991F), new Vector2(-681.934021F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-681.442017F, -315.787994F), new Vector2(-681.195984F, -314.803986F), new Vector2(-681.195984F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-681.195984F, -312.571991F), new Vector2(-681.435974F, -311.570007F), new Vector2(-681.916016F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-682.395996F, -309.817993F), new Vector2(-683.05603F, -309.127991F), new Vector2(-683.895996F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-684.736023F, -308.119995F), new Vector2(-685.708008F, -307.868011F), new Vector2(-686.812012F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-687.867981F, -307.868011F), new Vector2(-688.815979F, -308.119995F), new Vector2(-689.656006F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-682.257996F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-680.901978F, -306.716003F), new Vector2(-679.828003F, -307.790009F), new Vector2(-679.036011F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-678.244019F, -310.502014F), new Vector2(-677.848022F, -312.019989F), new Vector2(-677.848022F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-677.848022F, -315.355988F), new Vector2(-678.244019F, -316.855988F), new Vector2(-679.036011F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-679.828003F, -319.544006F), new Vector2(-680.901978F, -320.605988F), new Vector2(-682.257996F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-683.614014F, -322.165985F), new Vector2(-685.132019F, -322.556F), new Vector2(-686.812012F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-688.468018F, -322.556F), new Vector2(-689.968018F, -322.160004F), new Vector2(-691.312012F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-692.656006F, -320.575989F), new Vector2(-693.723999F, -319.514008F), new Vector2(-694.515991F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-695.307983F, -316.850006F), new Vector2(-695.703979F, -315.355988F), new Vector2(-695.703979F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-695.703979F, -312.019989F), new Vector2(-695.307983F, -310.502014F), new Vector2(-694.515991F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-693.723999F, -307.790009F), new Vector2(-692.656006F, -306.716003F), new Vector2(-691.312012F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-689.968018F, -305.131989F), new Vector2(-688.468018F, -304.735992F), new Vector2(-686.812012F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-685.132019F, -304.735992F), new Vector2(-683.614014F, -305.131989F), new Vector2(-682.257996F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0797()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-709.924011F, -300.127991F));
+ builder.AddLine(new Vector2(-707.512024F, -304.59201F));
+ builder.AddCubicBezier(new Vector2(-707.200012F, -305.191986F), new Vector2(-706.98999F, -305.678009F), new Vector2(-706.882019F, -306.049988F));
+ builder.AddCubicBezier(new Vector2(-706.773987F, -306.421997F), new Vector2(-706.719971F, -306.73999F), new Vector2(-706.719971F, -307.003998F));
+ builder.AddCubicBezier(new Vector2(-706.719971F, -307.700012F), new Vector2(-706.960022F, -308.282013F), new Vector2(-707.440002F, -308.75F));
+ builder.AddCubicBezier(new Vector2(-707.919983F, -309.217987F), new Vector2(-708.471985F, -309.451996F), new Vector2(-709.096008F, -309.451996F));
+ builder.AddCubicBezier(new Vector2(-709.791992F, -309.451996F), new Vector2(-710.367981F, -309.217987F), new Vector2(-710.823975F, -308.75F));
+ builder.AddCubicBezier(new Vector2(-711.280029F, -308.282013F), new Vector2(-711.507996F, -307.700012F), new Vector2(-711.507996F, -307.003998F));
+ builder.AddCubicBezier(new Vector2(-711.507996F, -306.380005F), new Vector2(-711.297974F, -305.858002F), new Vector2(-710.877991F, -305.437988F));
+ builder.AddCubicBezier(new Vector2(-710.458008F, -305.018005F), new Vector2(-709.995972F, -304.808014F), new Vector2(-709.492004F, -304.808014F));
+ builder.AddCubicBezier(new Vector2(-709.252014F, -304.808014F), new Vector2(-709.036011F, -304.891998F), new Vector2(-708.843994F, -305.059998F));
+ builder.AddCubicBezier(new Vector2(-708.651978F, -305.227997F), new Vector2(-708.495972F, -305.444F), new Vector2(-708.375977F, -305.708008F));
+ builder.AddLine(new Vector2(-709.528015F, -305.420013F));
+ builder.AddLine(new Vector2(-711.76001F, -301.135986F));
+ builder.AddLine(new Vector2(-709.924011F, -300.127991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0798()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-717.286011F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(-716.145996F, -307.075989F), new Vector2(-715.575989F, -308.347992F), new Vector2(-715.575989F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(-715.575989F, -311.011993F), new Vector2(-715.797974F, -311.864014F), new Vector2(-716.242004F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(-716.685974F, -313.160004F), new Vector2(-717.255981F, -313.675995F), new Vector2(-717.952026F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(-718.64801F, -314.444F), new Vector2(-719.380005F, -314.75F), new Vector2(-720.14801F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(-720.916016F, -315.205994F), new Vector2(-721.653992F, -315.428009F), new Vector2(-722.362F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(-723.070007F, -315.859985F), new Vector2(-723.640015F, -316.123993F), new Vector2(-724.072021F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(-724.504028F, -316.747986F), new Vector2(-724.719971F, -317.191986F), new Vector2(-724.719971F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(-724.719971F, -318.320007F), new Vector2(-724.473999F, -318.764008F), new Vector2(-723.981995F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-723.48999F, -319.436005F), new Vector2(-722.776001F, -319.604004F), new Vector2(-721.840027F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(-720.952026F, -319.604004F), new Vector2(-720.159973F, -319.436005F), new Vector2(-719.463989F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-718.768005F, -318.764008F), new Vector2(-718.16803F, -318.283997F), new Vector2(-717.664001F, -317.660004F));
+ builder.AddLine(new Vector2(-715.575989F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(-716.247986F, -320.68399F), new Vector2(-717.106018F, -321.385986F), new Vector2(-718.150024F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(-719.19397F, -322.321991F), new Vector2(-720.388F, -322.556F), new Vector2(-721.731995F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-723.004028F, -322.556F), new Vector2(-724.096008F, -322.35199F), new Vector2(-725.007996F, -321.944F));
+ builder.AddCubicBezier(new Vector2(-725.919983F, -321.536011F), new Vector2(-726.622009F, -320.95401F), new Vector2(-727.114014F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(-727.606018F, -319.441986F), new Vector2(-727.85199F, -318.548004F), new Vector2(-727.85199F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(-727.85199F, -316.484009F), new Vector2(-727.630005F, -315.649994F), new Vector2(-727.185974F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(-726.742004F, -314.377991F), new Vector2(-726.171997F, -313.880005F), new Vector2(-725.476013F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(-724.780029F, -313.160004F), new Vector2(-724.041992F, -312.872009F), new Vector2(-723.262024F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(-722.481995F, -312.440002F), new Vector2(-721.744019F, -312.217987F), new Vector2(-721.047974F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(-720.35199F, -311.761993F), new Vector2(-719.781982F, -311.473999F), new Vector2(-719.338013F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(-718.893982F, -310.778015F), new Vector2(-718.671997F, -310.291992F), new Vector2(-718.671997F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(-718.671997F, -309.044006F), new Vector2(-718.947998F, -308.558014F), new Vector2(-719.5F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(-720.052002F, -307.862F), new Vector2(-720.83197F, -307.687988F), new Vector2(-721.840027F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(-722.848022F, -307.687988F), new Vector2(-723.76001F, -307.873993F), new Vector2(-724.575989F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(-725.392029F, -308.618011F), new Vector2(-726.112F, -309.187988F), new Vector2(-726.736023F, -309.955994F));
+ builder.AddLine(new Vector2(-728.823975F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-728.296021F, -307.220001F), new Vector2(-727.677979F, -306.661987F), new Vector2(-726.969971F, -306.194F));
+ builder.AddCubicBezier(new Vector2(-726.262024F, -305.726013F), new Vector2(-725.476013F, -305.365997F), new Vector2(-724.612F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(-723.747986F, -304.862F), new Vector2(-722.835999F, -304.735992F), new Vector2(-721.875977F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-719.955994F, -304.735992F), new Vector2(-718.426025F, -305.20401F), new Vector2(-717.286011F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0799()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-734.90802F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-733.731995F, -305.996002F), new Vector2(-732.723999F, -306.727997F), new Vector2(-731.883972F, -307.687988F));
+ builder.AddLine(new Vector2(-733.971985F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-734.547974F, -309.140015F), new Vector2(-735.237976F, -308.635986F), new Vector2(-736.041992F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-736.846008F, -307.963989F), new Vector2(-737.728027F, -307.79599F), new Vector2(-738.687988F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-739.840027F, -307.79599F), new Vector2(-740.859985F, -308.041992F), new Vector2(-741.747986F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-742.635986F, -309.026001F), new Vector2(-743.320007F, -309.721985F), new Vector2(-743.799988F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-744.280029F, -311.522003F), new Vector2(-744.52002F, -312.571991F), new Vector2(-744.52002F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-744.52002F, -314.947998F), new Vector2(-744.291992F, -315.967987F), new Vector2(-743.835999F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-743.380005F, -317.696014F), new Vector2(-742.731995F, -318.368011F), new Vector2(-741.892029F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-741.052002F, -319.328003F), new Vector2(-740.080017F, -319.567993F), new Vector2(-738.976013F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-737.919983F, -319.567993F), new Vector2(-737.02002F, -319.346008F), new Vector2(-736.276001F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-735.531982F, -318.458008F), new Vector2(-734.955994F, -317.834015F), new Vector2(-734.547974F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-734.140015F, -316.226013F), new Vector2(-733.935974F, -315.247986F), new Vector2(-733.935974F, -314.096008F));
+ builder.AddLine(new Vector2(-732.747986F, -315.140015F));
+ builder.AddLine(new Vector2(-745.455994F, -315.140015F));
+ builder.AddLine(new Vector2(-745.455994F, -312.440002F));
+ builder.AddLine(new Vector2(-731.02002F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-730.947998F, -312.776001F), new Vector2(-730.900024F, -313.082001F), new Vector2(-730.875977F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-730.85199F, -313.634003F), new Vector2(-730.840027F, -313.891998F), new Vector2(-730.840027F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-730.840027F, -315.764008F), new Vector2(-731.182007F, -317.216003F), new Vector2(-731.866028F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-732.549988F, -319.76001F), new Vector2(-733.504028F, -320.756012F), new Vector2(-734.728027F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-735.952026F, -322.196014F), new Vector2(-737.343994F, -322.556F), new Vector2(-738.903992F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-740.559998F, -322.556F), new Vector2(-742.054016F, -322.165985F), new Vector2(-743.385986F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-744.718018F, -320.605988F), new Vector2(-745.773987F, -319.544006F), new Vector2(-746.554016F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-747.333984F, -316.855988F), new Vector2(-747.723999F, -315.343994F), new Vector2(-747.723999F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-747.723999F, -311.959991F), new Vector2(-747.328003F, -310.436005F), new Vector2(-746.536011F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-745.744019F, -307.747986F), new Vector2(-744.669983F, -306.686005F), new Vector2(-743.314026F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-741.958008F, -305.126007F), new Vector2(-740.416016F, -304.735992F), new Vector2(-738.687988F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-737.343994F, -304.735992F), new Vector2(-736.083984F, -304.988007F), new Vector2(-734.90802F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0800()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-751.539978F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-751.156006F, -326.605988F), new Vector2(-750.963989F, -327.104004F), new Vector2(-750.963989F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-750.963989F, -328.279999F), new Vector2(-751.156006F, -328.765991F), new Vector2(-751.539978F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-751.924011F, -329.558014F), new Vector2(-752.416016F, -329.756012F), new Vector2(-753.015991F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-753.616028F, -329.756012F), new Vector2(-754.107971F, -329.558014F), new Vector2(-754.492004F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-754.875977F, -328.765991F), new Vector2(-755.067993F, -328.279999F), new Vector2(-755.067993F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-755.067993F, -327.104004F), new Vector2(-754.875977F, -326.605988F), new Vector2(-754.492004F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-754.107971F, -325.813995F), new Vector2(-753.616028F, -325.615997F), new Vector2(-753.015991F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-752.416016F, -325.615997F), new Vector2(-751.924011F, -325.813995F), new Vector2(-751.539978F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-751.395996F, -305.096008F));
+ builder.AddLine(new Vector2(-751.395996F, -322.196014F));
+ builder.AddLine(new Vector2(-754.671997F, -322.196014F));
+ builder.AddLine(new Vector2(-754.671997F, -305.096008F));
+ builder.AddLine(new Vector2(-751.395996F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0801()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-760.773987F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-759.633972F, -305.996002F), new Vector2(-758.66803F, -306.70401F), new Vector2(-757.875977F, -307.615997F));
+ builder.AddLine(new Vector2(-760F, -309.776001F));
+ builder.AddCubicBezier(new Vector2(-760.552002F, -309.152008F), new Vector2(-761.205994F, -308.678009F), new Vector2(-761.961975F, -308.354004F));
+ builder.AddCubicBezier(new Vector2(-762.718018F, -308.029999F), new Vector2(-763.552002F, -307.868011F), new Vector2(-764.463989F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-765.544006F, -307.868011F), new Vector2(-766.504028F, -308.119995F), new Vector2(-767.343994F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-768.184021F, -309.127991F), new Vector2(-768.843994F, -309.812012F), new Vector2(-769.323975F, -310.675995F));
+ builder.AddCubicBezier(new Vector2(-769.804016F, -311.540009F), new Vector2(-770.044006F, -312.536011F), new Vector2(-770.044006F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-770.044006F, -314.791992F), new Vector2(-769.804016F, -315.787994F), new Vector2(-769.323975F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-768.843994F, -317.515991F), new Vector2(-768.184021F, -318.194F), new Vector2(-767.343994F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-766.504028F, -319.178009F), new Vector2(-765.544006F, -319.424011F), new Vector2(-764.463989F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-763.575989F, -319.424011F), new Vector2(-762.747986F, -319.261993F), new Vector2(-761.97998F, -318.937988F));
+ builder.AddCubicBezier(new Vector2(-761.211975F, -318.614014F), new Vector2(-760.564026F, -318.140015F), new Vector2(-760.036011F, -317.515991F));
+ builder.AddLine(new Vector2(-757.875977F, -319.675995F));
+ builder.AddCubicBezier(new Vector2(-758.692017F, -320.612F), new Vector2(-759.664001F, -321.325989F), new Vector2(-760.791992F, -321.817993F));
+ builder.AddCubicBezier(new Vector2(-761.919983F, -322.309998F), new Vector2(-763.143982F, -322.556F), new Vector2(-764.463989F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-766.143982F, -322.556F), new Vector2(-767.661987F, -322.165985F), new Vector2(-769.018005F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-770.374023F, -320.605988F), new Vector2(-771.442017F, -319.544006F), new Vector2(-772.221985F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-773.002014F, -316.855988F), new Vector2(-773.392029F, -315.343994F), new Vector2(-773.392029F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-773.392029F, -312.007996F), new Vector2(-773.002014F, -310.502014F), new Vector2(-772.221985F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-771.442017F, -307.790009F), new Vector2(-770.374023F, -306.716003F), new Vector2(-769.018005F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-767.661987F, -305.131989F), new Vector2(-766.143982F, -304.735992F), new Vector2(-764.463989F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-763.143982F, -304.735992F), new Vector2(-761.914001F, -304.988007F), new Vector2(-760.773987F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0802()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-777.208008F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-776.823975F, -326.605988F), new Vector2(-776.632019F, -327.104004F), new Vector2(-776.632019F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-776.632019F, -328.279999F), new Vector2(-776.823975F, -328.765991F), new Vector2(-777.208008F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-777.59198F, -329.558014F), new Vector2(-778.083984F, -329.756012F), new Vector2(-778.684021F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-779.283997F, -329.756012F), new Vector2(-779.776001F, -329.558014F), new Vector2(-780.159973F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-780.544006F, -328.765991F), new Vector2(-780.736023F, -328.279999F), new Vector2(-780.736023F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-780.736023F, -327.104004F), new Vector2(-780.544006F, -326.605988F), new Vector2(-780.159973F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-779.776001F, -325.813995F), new Vector2(-779.283997F, -325.615997F), new Vector2(-778.684021F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-778.083984F, -325.615997F), new Vector2(-777.59198F, -325.813995F), new Vector2(-777.208008F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-777.064026F, -305.096008F));
+ builder.AddLine(new Vector2(-777.064026F, -322.196014F));
+ builder.AddLine(new Vector2(-780.340027F, -322.196014F));
+ builder.AddLine(new Vector2(-780.340027F, -305.096008F));
+ builder.AddLine(new Vector2(-777.064026F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0803()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-785.09198F, -305.096008F));
+ builder.AddLine(new Vector2(-785.09198F, -330.799988F));
+ builder.AddLine(new Vector2(-788.33197F, -330.799988F));
+ builder.AddLine(new Vector2(-788.33197F, -305.096008F));
+ builder.AddLine(new Vector2(-785.09198F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0804()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-803.73999F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-804.580017F, -309.127991F), new Vector2(-805.23999F, -309.817993F), new Vector2(-805.719971F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-806.200012F, -311.570007F), new Vector2(-806.440002F, -312.571991F), new Vector2(-806.440002F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-806.440002F, -314.803986F), new Vector2(-806.200012F, -315.787994F), new Vector2(-805.719971F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-805.23999F, -317.515991F), new Vector2(-804.580017F, -318.194F), new Vector2(-803.73999F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-802.900024F, -319.178009F), new Vector2(-801.952026F, -319.424011F), new Vector2(-800.895996F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-799.791992F, -319.424011F), new Vector2(-798.825989F, -319.178009F), new Vector2(-797.997986F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-797.169983F, -318.194F), new Vector2(-796.51001F, -317.515991F), new Vector2(-796.018005F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-795.526001F, -315.787994F), new Vector2(-795.280029F, -314.803986F), new Vector2(-795.280029F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-795.280029F, -312.571991F), new Vector2(-795.52002F, -311.570007F), new Vector2(-796F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-796.47998F, -309.817993F), new Vector2(-797.140015F, -309.127991F), new Vector2(-797.97998F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-798.820007F, -308.119995F), new Vector2(-799.791992F, -307.868011F), new Vector2(-800.895996F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-801.952026F, -307.868011F), new Vector2(-802.900024F, -308.119995F), new Vector2(-803.73999F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-796.34198F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-794.986023F, -306.716003F), new Vector2(-793.911987F, -307.790009F), new Vector2(-793.119995F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-792.328003F, -310.502014F), new Vector2(-791.932007F, -312.019989F), new Vector2(-791.932007F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-791.932007F, -315.355988F), new Vector2(-792.328003F, -316.855988F), new Vector2(-793.119995F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-793.911987F, -319.544006F), new Vector2(-794.986023F, -320.605988F), new Vector2(-796.34198F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-797.697998F, -322.165985F), new Vector2(-799.216003F, -322.556F), new Vector2(-800.895996F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-802.552002F, -322.556F), new Vector2(-804.052002F, -322.160004F), new Vector2(-805.395996F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-806.73999F, -320.575989F), new Vector2(-807.807983F, -319.514008F), new Vector2(-808.599976F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-809.392029F, -316.850006F), new Vector2(-809.788025F, -315.355988F), new Vector2(-809.788025F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-809.788025F, -312.019989F), new Vector2(-809.392029F, -310.502014F), new Vector2(-808.599976F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-807.807983F, -307.790009F), new Vector2(-806.73999F, -306.716003F), new Vector2(-805.395996F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-804.052002F, -305.131989F), new Vector2(-802.552002F, -304.735992F), new Vector2(-800.895996F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-799.216003F, -304.735992F), new Vector2(-797.697998F, -305.131989F), new Vector2(-796.34198F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0805()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-823.98999F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-824.817993F, -309.056F), new Vector2(-825.453979F, -309.746002F), new Vector2(-825.89801F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-826.34198F, -311.497986F), new Vector2(-826.564026F, -312.5F), new Vector2(-826.564026F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-826.564026F, -314.779999F), new Vector2(-826.335999F, -315.794006F), new Vector2(-825.880005F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-825.424011F, -317.54599F), new Vector2(-824.788025F, -318.235992F), new Vector2(-823.971985F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-823.156006F, -319.243988F), new Vector2(-822.219971F, -319.496002F), new Vector2(-821.164001F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-820.083984F, -319.496002F), new Vector2(-819.135986F, -319.243988F), new Vector2(-818.320007F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-817.504028F, -318.235992F), new Vector2(-816.862F, -317.54599F), new Vector2(-816.393982F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-815.926025F, -315.794006F), new Vector2(-815.692017F, -314.791992F), new Vector2(-815.692017F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-815.692017F, -312.511993F), new Vector2(-815.926025F, -311.497986F), new Vector2(-816.393982F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-816.862F, -309.746002F), new Vector2(-817.504028F, -309.056F), new Vector2(-818.320007F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-819.135986F, -308.048004F), new Vector2(-820.083984F, -307.79599F), new Vector2(-821.164001F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-822.219971F, -307.79599F), new Vector2(-823.161987F, -308.048004F), new Vector2(-823.98999F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-826.383972F, -297.932007F));
+ builder.AddLine(new Vector2(-826.383972F, -309.380005F));
+ builder.AddLine(new Vector2(-826.995972F, -313.556F));
+ builder.AddLine(new Vector2(-826.383972F, -317.696014F));
+ builder.AddLine(new Vector2(-826.383972F, -322.196014F));
+ builder.AddLine(new Vector2(-829.624023F, -322.196014F));
+ builder.AddLine(new Vector2(-829.624023F, -297.932007F));
+ builder.AddLine(new Vector2(-826.383972F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-816.393982F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-815.133972F, -306.686005F), new Vector2(-814.143982F, -307.747986F), new Vector2(-813.424011F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-812.703979F, -310.436005F), new Vector2(-812.343994F, -311.947998F), new Vector2(-812.343994F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-812.343994F, -315.308014F), new Vector2(-812.703979F, -316.820007F), new Vector2(-813.424011F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-814.143982F, -319.507996F), new Vector2(-815.133972F, -320.575989F), new Vector2(-816.393982F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-817.653992F, -322.160004F), new Vector2(-819.064026F, -322.556F), new Vector2(-820.624023F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-821.895996F, -322.556F), new Vector2(-823.054016F, -322.286011F), new Vector2(-824.098022F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-825.142029F, -321.205994F), new Vector2(-825.981995F, -320.462006F), new Vector2(-826.617981F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-827.254028F, -318.56601F), new Vector2(-827.607971F, -317.467987F), new Vector2(-827.679993F, -316.220001F));
+ builder.AddLine(new Vector2(-827.679993F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(-827.607971F, -309.847992F), new Vector2(-827.26001F, -308.756012F), new Vector2(-826.635986F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-826.012024F, -306.835999F), new Vector2(-825.177979F, -306.085999F), new Vector2(-824.133972F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-823.090027F, -305.006012F), new Vector2(-821.919983F, -304.735992F), new Vector2(-820.624023F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-819.064026F, -304.735992F), new Vector2(-817.653992F, -305.126007F), new Vector2(-816.393982F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0806()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(783.572021F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(784.340027F, -362.312012F), new Vector2(785.323975F, -362.696014F), new Vector2(786.523987F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(787.099976F, -362.696014F), new Vector2(787.604004F, -362.612F), new Vector2(788.036011F, -362.444F));
+ builder.AddCubicBezier(new Vector2(788.468018F, -362.276001F), new Vector2(788.864014F, -362F), new Vector2(789.223999F, -361.615997F));
+ builder.AddLine(new Vector2(791.348022F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(790.747986F, -364.507996F), new Vector2(790.099976F, -365.006012F), new Vector2(789.403992F, -365.306F));
+ builder.AddCubicBezier(new Vector2(788.708008F, -365.605988F), new Vector2(787.927979F, -365.756012F), new Vector2(787.064026F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(785.16803F, -365.756012F), new Vector2(783.716003F, -365.108002F), new Vector2(782.708008F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(781.700012F, -362.515991F), new Vector2(781.195984F, -360.776001F), new Vector2(781.195984F, -358.59201F));
+ builder.AddLine(new Vector2(782.419983F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(782.419983F, -359.600006F), new Vector2(782.804016F, -360.776001F), new Vector2(783.572021F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(782.419983F, -348.29599F));
+ builder.AddLine(new Vector2(782.419983F, -365.395996F));
+ builder.AddLine(new Vector2(779.179993F, -365.395996F));
+ builder.AddLine(new Vector2(779.179993F, -348.29599F));
+ builder.AddLine(new Vector2(782.419983F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0807()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(774.247986F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(774.632019F, -369.806F), new Vector2(774.823975F, -370.303986F), new Vector2(774.823975F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(774.823975F, -371.480011F), new Vector2(774.632019F, -371.966003F), new Vector2(774.247986F, -372.362F));
+ builder.AddCubicBezier(new Vector2(773.864014F, -372.757996F), new Vector2(773.372009F, -372.955994F), new Vector2(772.771973F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(772.171997F, -372.955994F), new Vector2(771.679993F, -372.757996F), new Vector2(771.296021F, -372.362F));
+ builder.AddCubicBezier(new Vector2(770.911987F, -371.966003F), new Vector2(770.719971F, -371.480011F), new Vector2(770.719971F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(770.719971F, -370.303986F), new Vector2(770.911987F, -369.806F), new Vector2(771.296021F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(771.679993F, -369.014008F), new Vector2(772.171997F, -368.81601F), new Vector2(772.771973F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(773.372009F, -368.81601F), new Vector2(773.864014F, -369.014008F), new Vector2(774.247986F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(774.392029F, -348.29599F));
+ builder.AddLine(new Vector2(774.392029F, -365.395996F));
+ builder.AddLine(new Vector2(771.116028F, -365.395996F));
+ builder.AddLine(new Vector2(771.116028F, -348.29599F));
+ builder.AddLine(new Vector2(774.392029F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0808()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(766.400024F, -348.29599F));
+ builder.AddLine(new Vector2(766.400024F, -365.395996F));
+ builder.AddLine(new Vector2(763.124023F, -365.395996F));
+ builder.AddLine(new Vector2(763.124023F, -361.220001F));
+ builder.AddLine(new Vector2(763.736023F, -357.079987F));
+ builder.AddLine(new Vector2(763.124023F, -352.903992F));
+ builder.AddLine(new Vector2(763.124023F, -348.29599F));
+ builder.AddLine(new Vector2(766.400024F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(755.096008F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(754.255981F, -352.256012F), new Vector2(753.60199F, -352.946014F), new Vector2(753.133972F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(752.666016F, -354.697998F), new Vector2(752.432007F, -355.712006F), new Vector2(752.432007F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(752.432007F, -357.992004F), new Vector2(752.666016F, -358.993988F), new Vector2(753.133972F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(753.60199F, -360.746002F), new Vector2(754.25F, -361.436005F), new Vector2(755.078003F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(755.906006F, -362.444F), new Vector2(756.859985F, -362.696014F), new Vector2(757.940002F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(759.02002F, -362.696014F), new Vector2(759.961975F, -362.450012F), new Vector2(760.765991F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(761.570007F, -361.466003F), new Vector2(762.200012F, -360.776001F), new Vector2(762.656006F, -359.888F));
+ builder.AddCubicBezier(new Vector2(763.112F, -359F), new Vector2(763.340027F, -357.980011F), new Vector2(763.340027F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(763.340027F, -355.123993F), new Vector2(762.848022F, -353.726013F), new Vector2(761.864014F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(760.880005F, -351.541992F), new Vector2(759.583984F, -350.996002F), new Vector2(757.976013F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(756.895996F, -350.996002F), new Vector2(755.935974F, -351.247986F), new Vector2(755.096008F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(760.927979F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(761.960022F, -349.286011F), new Vector2(762.781982F, -350.036011F), new Vector2(763.393982F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(764.005981F, -351.955994F), new Vector2(764.348022F, -353.048004F), new Vector2(764.419983F, -354.272003F));
+ builder.AddLine(new Vector2(764.419983F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(764.348022F, -360.667999F), new Vector2(764F, -361.765991F), new Vector2(763.375977F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(762.752014F, -363.661987F), new Vector2(761.929993F, -364.406006F), new Vector2(760.909973F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(759.890015F, -365.485992F), new Vector2(758.731995F, -365.756012F), new Vector2(757.435974F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(755.85199F, -365.756012F), new Vector2(754.429993F, -365.359985F), new Vector2(753.169983F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(751.909973F, -363.776001F), new Vector2(750.914001F, -362.708008F), new Vector2(750.182007F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(749.450012F, -360.019989F), new Vector2(749.083984F, -358.507996F), new Vector2(749.083984F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(749.083984F, -355.14801F), new Vector2(749.450012F, -353.635986F), new Vector2(750.182007F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(750.914001F, -350.947998F), new Vector2(751.909973F, -349.885986F), new Vector2(753.169983F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(754.429993F, -348.325989F), new Vector2(755.85199F, -347.936005F), new Vector2(757.435974F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(758.731995F, -347.936005F), new Vector2(759.895996F, -348.205994F), new Vector2(760.927979F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0809()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(747.895996F, -362.444F));
+ builder.AddLine(new Vector2(747.895996F, -365.395996F));
+ builder.AddLine(new Vector2(735.007996F, -365.395996F));
+ builder.AddLine(new Vector2(735.007996F, -362.444F));
+ builder.AddLine(new Vector2(747.895996F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(742.460022F, -348.29599F));
+ builder.AddLine(new Vector2(742.460022F, -367.951996F));
+ builder.AddCubicBezier(new Vector2(742.460022F, -369.007996F), new Vector2(742.742004F, -369.829987F), new Vector2(743.30603F, -370.417999F));
+ builder.AddCubicBezier(new Vector2(743.869995F, -371.006012F), new Vector2(744.66803F, -371.299988F), new Vector2(745.700012F, -371.299988F));
+ builder.AddCubicBezier(new Vector2(746.252014F, -371.299988F), new Vector2(746.719971F, -371.216003F), new Vector2(747.104004F, -371.048004F));
+ builder.AddCubicBezier(new Vector2(747.487976F, -370.880005F), new Vector2(747.835999F, -370.627991F), new Vector2(748.14801F, -370.291992F));
+ builder.AddLine(new Vector2(750.271973F, -372.380005F));
+ builder.AddCubicBezier(new Vector2(749.671997F, -373.028015F), new Vector2(749.012024F, -373.519989F), new Vector2(748.291992F, -373.855988F));
+ builder.AddCubicBezier(new Vector2(747.572021F, -374.191986F), new Vector2(746.719971F, -374.359985F), new Vector2(745.736023F, -374.359985F));
+ builder.AddCubicBezier(new Vector2(744.440002F, -374.359985F), new Vector2(743.299988F, -374.084015F), new Vector2(742.315979F, -373.532013F));
+ builder.AddCubicBezier(new Vector2(741.33197F, -372.980011F), new Vector2(740.564026F, -372.223999F), new Vector2(740.012024F, -371.264008F));
+ builder.AddCubicBezier(new Vector2(739.460022F, -370.303986F), new Vector2(739.184021F, -369.200012F), new Vector2(739.184021F, -367.951996F));
+ builder.AddLine(new Vector2(739.184021F, -348.29599F));
+ builder.AddLine(new Vector2(742.460022F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0810()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(720.5F, -348.29599F));
+ builder.AddLine(new Vector2(720.5F, -365.395996F));
+ builder.AddLine(new Vector2(717.26001F, -365.395996F));
+ builder.AddLine(new Vector2(717.26001F, -348.29599F));
+ builder.AddLine(new Vector2(720.5F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(732.596008F, -348.29599F));
+ builder.AddLine(new Vector2(732.596008F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(732.596008F, -360.09201F), new Vector2(732.307983F, -361.201996F), new Vector2(731.731995F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(731.156006F, -363.290009F), new Vector2(730.369995F, -364.135986F), new Vector2(729.374023F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(728.377991F, -365.432007F), new Vector2(727.231995F, -365.756012F), new Vector2(725.935974F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(724.640015F, -365.756012F), new Vector2(723.476013F, -365.462006F), new Vector2(722.44397F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(721.411987F, -364.286011F), new Vector2(720.607971F, -363.488007F), new Vector2(720.031982F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(719.455994F, -361.471985F), new Vector2(719.16803F, -360.320007F), new Vector2(719.16803F, -359.023987F));
+ builder.AddLine(new Vector2(720.5F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(720.5F, -359.131989F), new Vector2(720.692017F, -359.899994F), new Vector2(721.075989F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(721.460022F, -361.243988F), new Vector2(721.987976F, -361.772003F), new Vector2(722.659973F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(723.33197F, -362.540009F), new Vector2(724.099976F, -362.731995F), new Vector2(724.963989F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(726.26001F, -362.731995F), new Vector2(727.309998F, -362.312012F), new Vector2(728.114014F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(728.91803F, -360.631989F), new Vector2(729.320007F, -359.563995F), new Vector2(729.320007F, -358.268005F));
+ builder.AddLine(new Vector2(729.320007F, -348.29599F));
+ builder.AddLine(new Vector2(732.596008F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0811()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(709.375977F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(710.47998F, -349.537994F), new Vector2(711.343994F, -350.40799F), new Vector2(711.968018F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(712.59198F, -352.664001F), new Vector2(712.903992F, -353.971985F), new Vector2(712.903992F, -355.459991F));
+ builder.AddLine(new Vector2(712.903992F, -365.395996F));
+ builder.AddLine(new Vector2(709.664001F, -365.395996F));
+ builder.AddLine(new Vector2(709.664001F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(709.664001F, -354.187988F), new Vector2(709.304016F, -353.078003F), new Vector2(708.583984F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(707.864014F, -351.470001F), new Vector2(706.867981F, -351.067993F), new Vector2(705.596008F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(704.755981F, -351.067993F), new Vector2(704.023987F, -351.247986F), new Vector2(703.400024F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(702.776001F, -351.967987F), new Vector2(702.302002F, -352.48999F), new Vector2(701.978027F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(701.653992F, -353.858002F), new Vector2(701.492004F, -354.667999F), new Vector2(701.492004F, -355.604004F));
+ builder.AddLine(new Vector2(701.492004F, -365.395996F));
+ builder.AddLine(new Vector2(698.252014F, -365.395996F));
+ builder.AddLine(new Vector2(698.252014F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(698.252014F, -353.971985F), new Vector2(698.564026F, -352.664001F), new Vector2(699.187988F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(699.812012F, -350.40799F), new Vector2(700.682007F, -349.537994F), new Vector2(701.797974F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(702.914001F, -348.313995F), new Vector2(704.179993F, -348.007996F), new Vector2(705.596008F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(707.012024F, -348.007996F), new Vector2(708.271973F, -348.313995F), new Vector2(709.375977F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0812()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(685.885986F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(687.026001F, -350.276001F), new Vector2(687.596008F, -351.548004F), new Vector2(687.596008F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(687.596008F, -354.212006F), new Vector2(687.374023F, -355.063995F), new Vector2(686.929993F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(686.486023F, -356.359985F), new Vector2(685.916016F, -356.876007F), new Vector2(685.219971F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(684.523987F, -357.644012F), new Vector2(683.791992F, -357.950012F), new Vector2(683.023987F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(682.255981F, -358.406006F), new Vector2(681.518005F, -358.627991F), new Vector2(680.809998F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(680.10199F, -359.059998F), new Vector2(679.531982F, -359.324005F), new Vector2(679.099976F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(678.66803F, -359.947998F), new Vector2(678.452026F, -360.391998F), new Vector2(678.452026F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(678.452026F, -361.519989F), new Vector2(678.697998F, -361.963989F), new Vector2(679.190002F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(679.682007F, -362.635986F), new Vector2(680.395996F, -362.803986F), new Vector2(681.33197F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(682.219971F, -362.803986F), new Vector2(683.012024F, -362.635986F), new Vector2(683.708008F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(684.403992F, -361.963989F), new Vector2(685.004028F, -361.484009F), new Vector2(685.507996F, -360.859985F));
+ builder.AddLine(new Vector2(687.596008F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(686.924011F, -363.884003F), new Vector2(686.065979F, -364.585999F), new Vector2(685.021973F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(683.978027F, -365.522003F), new Vector2(682.783997F, -365.756012F), new Vector2(681.440002F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(680.16803F, -365.756012F), new Vector2(679.075989F, -365.552002F), new Vector2(678.164001F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(677.252014F, -364.735992F), new Vector2(676.549988F, -364.153992F), new Vector2(676.057983F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(675.565979F, -362.641998F), new Vector2(675.320007F, -361.747986F), new Vector2(675.320007F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(675.320007F, -359.68399F), new Vector2(675.541992F, -358.850006F), new Vector2(675.986023F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(676.429993F, -357.578003F), new Vector2(677F, -357.079987F), new Vector2(677.695984F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(678.392029F, -356.359985F), new Vector2(679.130005F, -356.071991F), new Vector2(679.909973F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(680.690002F, -355.640015F), new Vector2(681.427979F, -355.417999F), new Vector2(682.124023F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(682.820007F, -354.962006F), new Vector2(683.390015F, -354.674011F), new Vector2(683.833984F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(684.278015F, -353.977997F), new Vector2(684.5F, -353.492004F), new Vector2(684.5F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(684.5F, -352.243988F), new Vector2(684.223999F, -351.757996F), new Vector2(683.671997F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(683.119995F, -351.062012F), new Vector2(682.340027F, -350.888F), new Vector2(681.33197F, -350.888F));
+ builder.AddCubicBezier(new Vector2(680.323975F, -350.888F), new Vector2(679.411987F, -351.074005F), new Vector2(678.596008F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(677.780029F, -351.817993F), new Vector2(677.059998F, -352.388F), new Vector2(676.435974F, -353.156006F));
+ builder.AddLine(new Vector2(674.348022F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(674.875977F, -350.420013F), new Vector2(675.494019F, -349.862F), new Vector2(676.202026F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(676.909973F, -348.925995F), new Vector2(677.695984F, -348.56601F), new Vector2(678.559998F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(679.424011F, -348.062012F), new Vector2(680.335999F, -347.936005F), new Vector2(681.296021F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(683.216003F, -347.936005F), new Vector2(684.745972F, -348.403992F), new Vector2(685.885986F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0813()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(671.036011F, -364.31601F));
+ builder.AddLine(new Vector2(673.411987F, -368.779999F));
+ builder.AddCubicBezier(new Vector2(673.723999F, -369.355988F), new Vector2(673.934021F, -369.829987F), new Vector2(674.041992F, -370.201996F));
+ builder.AddCubicBezier(new Vector2(674.150024F, -370.574005F), new Vector2(674.203979F, -370.903992F), new Vector2(674.203979F, -371.191986F));
+ builder.AddCubicBezier(new Vector2(674.203979F, -371.864014F), new Vector2(673.963989F, -372.440002F), new Vector2(673.484009F, -372.920013F));
+ builder.AddCubicBezier(new Vector2(673.004028F, -373.399994F), new Vector2(672.452026F, -373.640015F), new Vector2(671.828003F, -373.640015F));
+ builder.AddCubicBezier(new Vector2(671.156006F, -373.640015F), new Vector2(670.585999F, -373.399994F), new Vector2(670.117981F, -372.920013F));
+ builder.AddCubicBezier(new Vector2(669.650024F, -372.440002F), new Vector2(669.416016F, -371.864014F), new Vector2(669.416016F, -371.191986F));
+ builder.AddCubicBezier(new Vector2(669.416016F, -370.544006F), new Vector2(669.625977F, -370.015991F), new Vector2(670.046021F, -369.608002F));
+ builder.AddCubicBezier(new Vector2(670.466003F, -369.200012F), new Vector2(670.927979F, -368.996002F), new Vector2(671.432007F, -368.996002F));
+ builder.AddCubicBezier(new Vector2(671.695984F, -368.996002F), new Vector2(671.91803F, -369.079987F), new Vector2(672.098022F, -369.247986F));
+ builder.AddCubicBezier(new Vector2(672.278015F, -369.415985F), new Vector2(672.427979F, -369.631989F), new Vector2(672.547974F, -369.895996F));
+ builder.AddLine(new Vector2(671.395996F, -369.608002F));
+ builder.AddLine(new Vector2(669.164001F, -365.324005F));
+ builder.AddLine(new Vector2(671.036011F, -364.31601F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0814()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(665.635986F, -362.444F));
+ builder.AddLine(new Vector2(665.635986F, -365.395996F));
+ builder.AddLine(new Vector2(653.971985F, -365.395996F));
+ builder.AddLine(new Vector2(653.971985F, -362.444F));
+ builder.AddLine(new Vector2(665.635986F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(661.424011F, -348.29599F));
+ builder.AddLine(new Vector2(661.424011F, -372.559998F));
+ builder.AddLine(new Vector2(658.184021F, -372.559998F));
+ builder.AddLine(new Vector2(658.184021F, -348.29599F));
+ builder.AddLine(new Vector2(661.424011F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0815()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(639.283997F, -348.29599F));
+ builder.AddLine(new Vector2(639.283997F, -365.395996F));
+ builder.AddLine(new Vector2(636.044006F, -365.395996F));
+ builder.AddLine(new Vector2(636.044006F, -348.29599F));
+ builder.AddLine(new Vector2(639.283997F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(651.380005F, -348.29599F));
+ builder.AddLine(new Vector2(651.380005F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(651.380005F, -360.09201F), new Vector2(651.09198F, -361.201996F), new Vector2(650.515991F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(649.940002F, -363.290009F), new Vector2(649.153992F, -364.135986F), new Vector2(648.15802F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(647.161987F, -365.432007F), new Vector2(646.015991F, -365.756012F), new Vector2(644.719971F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(643.424011F, -365.756012F), new Vector2(642.26001F, -365.462006F), new Vector2(641.228027F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(640.195984F, -364.286011F), new Vector2(639.392029F, -363.488007F), new Vector2(638.815979F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(638.23999F, -361.471985F), new Vector2(637.952026F, -360.320007F), new Vector2(637.952026F, -359.023987F));
+ builder.AddLine(new Vector2(639.283997F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(639.283997F, -359.131989F), new Vector2(639.476013F, -359.899994F), new Vector2(639.859985F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(640.244019F, -361.243988F), new Vector2(640.771973F, -361.772003F), new Vector2(641.44397F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(642.116028F, -362.540009F), new Vector2(642.883972F, -362.731995F), new Vector2(643.747986F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(645.044006F, -362.731995F), new Vector2(646.093994F, -362.312012F), new Vector2(646.89801F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(647.702026F, -360.631989F), new Vector2(648.104004F, -359.563995F), new Vector2(648.104004F, -358.268005F));
+ builder.AddLine(new Vector2(648.104004F, -348.29599F));
+ builder.AddLine(new Vector2(651.380005F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0816()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(628.447998F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(629.624023F, -349.196014F), new Vector2(630.632019F, -349.928009F), new Vector2(631.471985F, -350.888F));
+ builder.AddLine(new Vector2(629.383972F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(628.807983F, -352.339996F), new Vector2(628.117981F, -351.835999F), new Vector2(627.314026F, -351.5F));
+ builder.AddCubicBezier(new Vector2(626.51001F, -351.164001F), new Vector2(625.627991F, -350.996002F), new Vector2(624.66803F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(623.515991F, -350.996002F), new Vector2(622.495972F, -351.242004F), new Vector2(621.607971F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(620.719971F, -352.226013F), new Vector2(620.036011F, -352.921997F), new Vector2(619.55603F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(619.075989F, -354.721985F), new Vector2(618.835999F, -355.772003F), new Vector2(618.835999F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(618.835999F, -358.14801F), new Vector2(619.064026F, -359.167999F), new Vector2(619.52002F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(619.976013F, -360.895996F), new Vector2(620.624023F, -361.567993F), new Vector2(621.463989F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(622.304016F, -362.528015F), new Vector2(623.276001F, -362.768005F), new Vector2(624.380005F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(625.435974F, -362.768005F), new Vector2(626.335999F, -362.54599F), new Vector2(627.080017F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(627.823975F, -361.65799F), new Vector2(628.400024F, -361.033997F), new Vector2(628.807983F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(629.216003F, -359.425995F), new Vector2(629.419983F, -358.447998F), new Vector2(629.419983F, -357.29599F));
+ builder.AddLine(new Vector2(630.607971F, -358.339996F));
+ builder.AddLine(new Vector2(617.900024F, -358.339996F));
+ builder.AddLine(new Vector2(617.900024F, -355.640015F));
+ builder.AddLine(new Vector2(632.335999F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(632.40802F, -355.976013F), new Vector2(632.455994F, -356.282013F), new Vector2(632.47998F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(632.504028F, -356.834015F), new Vector2(632.515991F, -357.09201F), new Vector2(632.515991F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(632.515991F, -358.963989F), new Vector2(632.174011F, -360.415985F), new Vector2(631.48999F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(630.80603F, -362.959991F), new Vector2(629.85199F, -363.955994F), new Vector2(628.627991F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(627.403992F, -365.395996F), new Vector2(626.012024F, -365.756012F), new Vector2(624.452026F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(622.796021F, -365.756012F), new Vector2(621.302002F, -365.365997F), new Vector2(619.969971F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(618.638F, -363.806F), new Vector2(617.58197F, -362.743988F), new Vector2(616.802002F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(616.021973F, -360.056F), new Vector2(615.632019F, -358.544006F), new Vector2(615.632019F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(615.632019F, -355.160004F), new Vector2(616.028015F, -353.635986F), new Vector2(616.820007F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(617.612F, -350.947998F), new Vector2(618.685974F, -349.885986F), new Vector2(620.041992F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(621.39801F, -348.325989F), new Vector2(622.940002F, -347.936005F), new Vector2(624.66803F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(626.012024F, -347.936005F), new Vector2(627.271973F, -348.187988F), new Vector2(628.447998F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0817()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(612.356018F, -348.29599F));
+ builder.AddLine(new Vector2(612.356018F, -359.276001F));
+ builder.AddCubicBezier(new Vector2(612.356018F, -360.619995F), new Vector2(612.062012F, -361.772003F), new Vector2(611.473999F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(610.885986F, -363.691986F), new Vector2(610.099976F, -364.436005F), new Vector2(609.116028F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(608.132019F, -365.492004F), new Vector2(607.015991F, -365.756012F), new Vector2(605.768005F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(604.567993F, -365.756012F), new Vector2(603.463989F, -365.485992F), new Vector2(602.455994F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(601.447998F, -364.406006F), new Vector2(600.625977F, -363.661987F), new Vector2(599.98999F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(599.354004F, -361.765991F), new Vector2(599F, -360.631989F), new Vector2(598.927979F, -359.312012F));
+ builder.AddLine(new Vector2(600.763977F, -358.627991F));
+ builder.AddCubicBezier(new Vector2(600.763977F, -359.492004F), new Vector2(600.955994F, -360.223999F), new Vector2(601.340027F, -360.824005F));
+ builder.AddCubicBezier(new Vector2(601.723999F, -361.424011F), new Vector2(602.234009F, -361.891998F), new Vector2(602.869995F, -362.227997F));
+ builder.AddCubicBezier(new Vector2(603.505981F, -362.563995F), new Vector2(604.219971F, -362.731995F), new Vector2(605.012024F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(606.164001F, -362.731995F), new Vector2(607.130005F, -362.365997F), new Vector2(607.909973F, -361.634003F));
+ builder.AddCubicBezier(new Vector2(608.690002F, -360.902008F), new Vector2(609.080017F, -359.899994F), new Vector2(609.080017F, -358.627991F));
+ builder.AddLine(new Vector2(609.080017F, -348.29599F));
+ builder.AddLine(new Vector2(612.356018F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(600.763977F, -348.29599F));
+ builder.AddLine(new Vector2(600.763977F, -359.312012F));
+ builder.AddCubicBezier(new Vector2(600.763977F, -360.631989F), new Vector2(600.481995F, -361.772003F), new Vector2(599.91803F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(599.354004F, -363.691986F), new Vector2(598.585999F, -364.436005F), new Vector2(597.614014F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(596.642029F, -365.492004F), new Vector2(595.55603F, -365.756012F), new Vector2(594.356018F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(593.132019F, -365.756012F), new Vector2(592.028015F, -365.485992F), new Vector2(591.044006F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(590.059998F, -364.406006F), new Vector2(589.286011F, -363.656006F), new Vector2(588.721985F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(588.15802F, -361.735992F), new Vector2(587.875977F, -360.608002F), new Vector2(587.875977F, -359.312012F));
+ builder.AddLine(new Vector2(589.208008F, -358.627991F));
+ builder.AddCubicBezier(new Vector2(589.208008F, -359.492004F), new Vector2(589.400024F, -360.223999F), new Vector2(589.783997F, -360.824005F));
+ builder.AddCubicBezier(new Vector2(590.16803F, -361.424011F), new Vector2(590.671997F, -361.891998F), new Vector2(591.296021F, -362.227997F));
+ builder.AddCubicBezier(new Vector2(591.919983F, -362.563995F), new Vector2(592.627991F, -362.731995F), new Vector2(593.419983F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(594.596008F, -362.731995F), new Vector2(595.573975F, -362.365997F), new Vector2(596.354004F, -361.634003F));
+ builder.AddCubicBezier(new Vector2(597.133972F, -360.902008F), new Vector2(597.523987F, -359.899994F), new Vector2(597.523987F, -358.627991F));
+ builder.AddLine(new Vector2(597.523987F, -348.29599F));
+ builder.AddLine(new Vector2(600.763977F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(589.208008F, -348.29599F));
+ builder.AddLine(new Vector2(589.208008F, -365.395996F));
+ builder.AddLine(new Vector2(585.968018F, -365.395996F));
+ builder.AddLine(new Vector2(585.968018F, -348.29599F));
+ builder.AddLine(new Vector2(589.208008F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0818()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(569.47998F, -348.29599F));
+ builder.AddLine(new Vector2(569.47998F, -365.395996F));
+ builder.AddLine(new Vector2(566.23999F, -365.395996F));
+ builder.AddLine(new Vector2(566.23999F, -348.29599F));
+ builder.AddLine(new Vector2(569.47998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(581.575989F, -348.29599F));
+ builder.AddLine(new Vector2(581.575989F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(581.575989F, -360.09201F), new Vector2(581.288025F, -361.201996F), new Vector2(580.711975F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(580.135986F, -363.290009F), new Vector2(579.349976F, -364.135986F), new Vector2(578.354004F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(577.357971F, -365.432007F), new Vector2(576.211975F, -365.756012F), new Vector2(574.916016F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(573.619995F, -365.756012F), new Vector2(572.455994F, -365.462006F), new Vector2(571.424011F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(570.392029F, -364.286011F), new Vector2(569.588013F, -363.488007F), new Vector2(569.012024F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(568.435974F, -361.471985F), new Vector2(568.14801F, -360.320007F), new Vector2(568.14801F, -359.023987F));
+ builder.AddLine(new Vector2(569.47998F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(569.47998F, -359.131989F), new Vector2(569.671997F, -359.899994F), new Vector2(570.05603F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(570.440002F, -361.243988F), new Vector2(570.968018F, -361.772003F), new Vector2(571.640015F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(572.312012F, -362.540009F), new Vector2(573.080017F, -362.731995F), new Vector2(573.94397F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(575.23999F, -362.731995F), new Vector2(576.289978F, -362.312012F), new Vector2(577.093994F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(577.89801F, -360.631989F), new Vector2(578.299988F, -359.563995F), new Vector2(578.299988F, -358.268005F));
+ builder.AddLine(new Vector2(578.299988F, -348.29599F));
+ builder.AddLine(new Vector2(581.575989F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0819()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(556.124023F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(556.892029F, -362.312012F), new Vector2(557.875977F, -362.696014F), new Vector2(559.075989F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(559.651978F, -362.696014F), new Vector2(560.156006F, -362.612F), new Vector2(560.588013F, -362.444F));
+ builder.AddCubicBezier(new Vector2(561.02002F, -362.276001F), new Vector2(561.416016F, -362F), new Vector2(561.776001F, -361.615997F));
+ builder.AddLine(new Vector2(563.900024F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(563.299988F, -364.507996F), new Vector2(562.651978F, -365.006012F), new Vector2(561.955994F, -365.306F));
+ builder.AddCubicBezier(new Vector2(561.26001F, -365.605988F), new Vector2(560.47998F, -365.756012F), new Vector2(559.616028F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(557.719971F, -365.756012F), new Vector2(556.268005F, -365.108002F), new Vector2(555.26001F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(554.252014F, -362.515991F), new Vector2(553.747986F, -360.776001F), new Vector2(553.747986F, -358.59201F));
+ builder.AddLine(new Vector2(554.971985F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(554.971985F, -359.600006F), new Vector2(555.356018F, -360.776001F), new Vector2(556.124023F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(554.971985F, -348.29599F));
+ builder.AddLine(new Vector2(554.971985F, -365.395996F));
+ builder.AddLine(new Vector2(551.731995F, -365.395996F));
+ builder.AddLine(new Vector2(551.731995F, -348.29599F));
+ builder.AddLine(new Vector2(554.971985F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0820()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(544.135986F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(545.312012F, -349.196014F), new Vector2(546.320007F, -349.928009F), new Vector2(547.159973F, -350.888F));
+ builder.AddLine(new Vector2(545.072021F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(544.495972F, -352.339996F), new Vector2(543.80603F, -351.835999F), new Vector2(543.002014F, -351.5F));
+ builder.AddCubicBezier(new Vector2(542.197998F, -351.164001F), new Vector2(541.315979F, -350.996002F), new Vector2(540.356018F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(539.203979F, -350.996002F), new Vector2(538.184021F, -351.242004F), new Vector2(537.296021F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(536.40802F, -352.226013F), new Vector2(535.723999F, -352.921997F), new Vector2(535.244019F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(534.763977F, -354.721985F), new Vector2(534.523987F, -355.772003F), new Vector2(534.523987F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(534.523987F, -358.14801F), new Vector2(534.752014F, -359.167999F), new Vector2(535.208008F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(535.664001F, -360.895996F), new Vector2(536.312012F, -361.567993F), new Vector2(537.151978F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(537.992004F, -362.528015F), new Vector2(538.963989F, -362.768005F), new Vector2(540.067993F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(541.124023F, -362.768005F), new Vector2(542.023987F, -362.54599F), new Vector2(542.768005F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(543.512024F, -361.65799F), new Vector2(544.088013F, -361.033997F), new Vector2(544.495972F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(544.903992F, -359.425995F), new Vector2(545.107971F, -358.447998F), new Vector2(545.107971F, -357.29599F));
+ builder.AddLine(new Vector2(546.296021F, -358.339996F));
+ builder.AddLine(new Vector2(533.588013F, -358.339996F));
+ builder.AddLine(new Vector2(533.588013F, -355.640015F));
+ builder.AddLine(new Vector2(548.023987F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(548.096008F, -355.976013F), new Vector2(548.143982F, -356.282013F), new Vector2(548.16803F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(548.192017F, -356.834015F), new Vector2(548.203979F, -357.09201F), new Vector2(548.203979F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(548.203979F, -358.963989F), new Vector2(547.862F, -360.415985F), new Vector2(547.177979F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(546.494019F, -362.959991F), new Vector2(545.539978F, -363.955994F), new Vector2(544.315979F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(543.09198F, -365.395996F), new Vector2(541.700012F, -365.756012F), new Vector2(540.140015F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(538.484009F, -365.756012F), new Vector2(536.98999F, -365.365997F), new Vector2(535.65802F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(534.325989F, -363.806F), new Vector2(533.27002F, -362.743988F), new Vector2(532.48999F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(531.710022F, -360.056F), new Vector2(531.320007F, -358.544006F), new Vector2(531.320007F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(531.320007F, -355.160004F), new Vector2(531.716003F, -353.635986F), new Vector2(532.507996F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(533.299988F, -350.947998F), new Vector2(534.374023F, -349.885986F), new Vector2(535.72998F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(537.085999F, -348.325989F), new Vector2(538.627991F, -347.936005F), new Vector2(540.356018F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(541.700012F, -347.936005F), new Vector2(542.960022F, -348.187988F), new Vector2(544.135986F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0821()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(522.463989F, -348.29599F));
+ builder.AddLine(new Vector2(530.312012F, -365.395996F));
+ builder.AddLine(new Vector2(526.856018F, -365.395996F));
+ builder.AddLine(new Vector2(520.52002F, -350.959991F));
+ builder.AddLine(new Vector2(522.607971F, -350.959991F));
+ builder.AddLine(new Vector2(516.307983F, -365.395996F));
+ builder.AddLine(new Vector2(512.708008F, -365.395996F));
+ builder.AddLine(new Vector2(520.55603F, -348.29599F));
+ builder.AddLine(new Vector2(522.463989F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0822()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(499.928009F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(499.088013F, -352.328003F), new Vector2(498.428009F, -353.018005F), new Vector2(497.947998F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(497.467987F, -354.769989F), new Vector2(497.227997F, -355.772003F), new Vector2(497.227997F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(497.227997F, -358.003998F), new Vector2(497.467987F, -358.988007F), new Vector2(497.947998F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(498.428009F, -360.716003F), new Vector2(499.088013F, -361.394012F), new Vector2(499.928009F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(500.768005F, -362.377991F), new Vector2(501.716003F, -362.623993F), new Vector2(502.772003F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(503.876007F, -362.623993F), new Vector2(504.84201F, -362.377991F), new Vector2(505.670013F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(506.497986F, -361.394012F), new Vector2(507.15799F, -360.716003F), new Vector2(507.649994F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(508.141998F, -358.988007F), new Vector2(508.388F, -358.003998F), new Vector2(508.388F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(508.388F, -355.772003F), new Vector2(508.14801F, -354.769989F), new Vector2(507.667999F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(507.187988F, -353.018005F), new Vector2(506.528015F, -352.328003F), new Vector2(505.687988F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(504.847992F, -351.320007F), new Vector2(503.876007F, -351.067993F), new Vector2(502.772003F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(501.716003F, -351.067993F), new Vector2(500.768005F, -351.320007F), new Vector2(499.928009F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(507.325989F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(508.682007F, -349.915985F), new Vector2(509.756012F, -350.98999F), new Vector2(510.548004F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(511.339996F, -353.701996F), new Vector2(511.735992F, -355.220001F), new Vector2(511.735992F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(511.735992F, -358.556F), new Vector2(511.339996F, -360.056F), new Vector2(510.548004F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(509.756012F, -362.743988F), new Vector2(508.682007F, -363.806F), new Vector2(507.325989F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(505.970001F, -365.365997F), new Vector2(504.451996F, -365.756012F), new Vector2(502.772003F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(501.115997F, -365.756012F), new Vector2(499.615997F, -365.359985F), new Vector2(498.272003F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(496.928009F, -363.776001F), new Vector2(495.859985F, -362.713989F), new Vector2(495.067993F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(494.276001F, -360.049988F), new Vector2(493.880005F, -358.556F), new Vector2(493.880005F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(493.880005F, -355.220001F), new Vector2(494.276001F, -353.701996F), new Vector2(495.067993F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(495.859985F, -350.98999F), new Vector2(496.928009F, -349.915985F), new Vector2(498.272003F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(499.615997F, -348.332001F), new Vector2(501.115997F, -347.936005F), new Vector2(502.772003F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(504.451996F, -347.936005F), new Vector2(505.970001F, -348.332001F), new Vector2(507.325989F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0823()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(479.06601F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(478.238007F, -352.813995F), new Vector2(477.589996F, -353.467987F), new Vector2(477.122009F, -354.308014F));
+ builder.AddCubicBezier(new Vector2(476.653992F, -355.14801F), new Vector2(476.420013F, -356.108002F), new Vector2(476.420013F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(476.420013F, -358.268005F), new Vector2(476.653992F, -359.221985F), new Vector2(477.122009F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(477.589996F, -360.877991F), new Vector2(478.231995F, -361.526001F), new Vector2(479.048004F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(479.864014F, -362.462006F), new Vector2(480.812012F, -362.696014F), new Vector2(481.891998F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(482.947998F, -362.696014F), new Vector2(483.877991F, -362.462006F), new Vector2(484.682007F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(485.485992F, -361.526001F), new Vector2(486.109985F, -360.877991F), new Vector2(486.553986F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(486.997986F, -359.221985F), new Vector2(487.220001F, -358.256012F), new Vector2(487.220001F, -357.152008F));
+ builder.AddCubicBezier(new Vector2(487.220001F, -356.048004F), new Vector2(486.997986F, -355.082001F), new Vector2(486.553986F, -354.253998F));
+ builder.AddCubicBezier(new Vector2(486.109985F, -353.425995F), new Vector2(485.492004F, -352.783997F), new Vector2(484.700012F, -352.328003F));
+ builder.AddCubicBezier(new Vector2(483.90799F, -351.872009F), new Vector2(482.971985F, -351.644012F), new Vector2(481.891998F, -351.644012F));
+ builder.AddCubicBezier(new Vector2(480.835999F, -351.644012F), new Vector2(479.894012F, -351.877991F), new Vector2(479.06601F, -352.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(484.808014F, -349.376007F));
+ builder.AddCubicBezier(new Vector2(485.839996F, -349.903992F), new Vector2(486.661987F, -350.641998F), new Vector2(487.273987F, -351.589996F));
+ builder.AddCubicBezier(new Vector2(487.885986F, -352.537994F), new Vector2(488.227997F, -353.635986F), new Vector2(488.299988F, -354.884003F));
+ builder.AddLine(new Vector2(488.299988F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(488.227997F, -360.691986F), new Vector2(487.891998F, -361.802002F), new Vector2(487.291992F, -362.75F));
+ builder.AddCubicBezier(new Vector2(486.691986F, -363.697998F), new Vector2(485.869995F, -364.436005F), new Vector2(484.825989F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(483.782013F, -365.492004F), new Vector2(482.588013F, -365.756012F), new Vector2(481.243988F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(479.708008F, -365.756012F), new Vector2(478.31601F, -365.377991F), new Vector2(477.067993F, -364.622009F));
+ builder.AddCubicBezier(new Vector2(475.820007F, -363.865997F), new Vector2(474.84201F, -362.846008F), new Vector2(474.134003F, -361.562012F));
+ builder.AddCubicBezier(new Vector2(473.425995F, -360.278015F), new Vector2(473.071991F, -358.820007F), new Vector2(473.071991F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(473.071991F, -355.556F), new Vector2(473.432007F, -354.085999F), new Vector2(474.152008F, -352.778015F));
+ builder.AddCubicBezier(new Vector2(474.872009F, -351.470001F), new Vector2(475.850006F, -350.444F), new Vector2(477.085999F, -349.700012F));
+ builder.AddCubicBezier(new Vector2(478.321991F, -348.955994F), new Vector2(479.720001F, -348.584015F), new Vector2(481.279999F, -348.584015F));
+ builder.AddCubicBezier(new Vector2(482.600006F, -348.584015F), new Vector2(483.776001F, -348.847992F), new Vector2(484.808014F, -349.376007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(485.977997F, -341.798004F));
+ builder.AddCubicBezier(new Vector2(487.334015F, -342.481995F), new Vector2(488.390015F, -343.441986F), new Vector2(489.145996F, -344.678009F));
+ builder.AddCubicBezier(new Vector2(489.902008F, -345.914001F), new Vector2(490.279999F, -347.347992F), new Vector2(490.279999F, -348.980011F));
+ builder.AddLine(new Vector2(490.279999F, -365.395996F));
+ builder.AddLine(new Vector2(487.040009F, -365.395996F));
+ builder.AddLine(new Vector2(487.040009F, -360.895996F));
+ builder.AddLine(new Vector2(487.615997F, -357.079987F));
+ builder.AddLine(new Vector2(487.040009F, -353.227997F));
+ builder.AddLine(new Vector2(487.040009F, -348.980011F));
+ builder.AddCubicBezier(new Vector2(487.040009F, -347.420013F), new Vector2(486.523987F, -346.178009F), new Vector2(485.492004F, -345.253998F));
+ builder.AddCubicBezier(new Vector2(484.459991F, -344.329987F), new Vector2(483.079987F, -343.868011F), new Vector2(481.35199F, -343.868011F));
+ builder.AddCubicBezier(new Vector2(480.032013F, -343.868011F), new Vector2(478.891998F, -344.10199F), new Vector2(477.932007F, -344.570007F));
+ builder.AddCubicBezier(new Vector2(476.971985F, -345.037994F), new Vector2(476.144012F, -345.716003F), new Vector2(475.447998F, -346.604004F));
+ builder.AddLine(new Vector2(473.324005F, -344.480011F));
+ builder.AddCubicBezier(new Vector2(474.164001F, -343.303986F), new Vector2(475.256012F, -342.391998F), new Vector2(476.600006F, -341.743988F));
+ builder.AddCubicBezier(new Vector2(477.944F, -341.096008F), new Vector2(479.503998F, -340.772003F), new Vector2(481.279999F, -340.772003F));
+ builder.AddCubicBezier(new Vector2(483.056F, -340.772003F), new Vector2(484.622009F, -341.114014F), new Vector2(485.977997F, -341.798004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0824()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(451.328003F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(450.488007F, -352.328003F), new Vector2(449.828003F, -353.018005F), new Vector2(449.347992F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(448.868011F, -354.769989F), new Vector2(448.627991F, -355.772003F), new Vector2(448.627991F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(448.627991F, -358.003998F), new Vector2(448.868011F, -358.988007F), new Vector2(449.347992F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(449.828003F, -360.716003F), new Vector2(450.488007F, -361.394012F), new Vector2(451.328003F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(452.167999F, -362.377991F), new Vector2(453.115997F, -362.623993F), new Vector2(454.171997F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(455.276001F, -362.623993F), new Vector2(456.242004F, -362.377991F), new Vector2(457.070007F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(457.89801F, -361.394012F), new Vector2(458.558014F, -360.716003F), new Vector2(459.049988F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(459.541992F, -358.988007F), new Vector2(459.787994F, -358.003998F), new Vector2(459.787994F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(459.787994F, -355.772003F), new Vector2(459.548004F, -354.769989F), new Vector2(459.067993F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(458.588013F, -353.018005F), new Vector2(457.928009F, -352.328003F), new Vector2(457.088013F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(456.247986F, -351.320007F), new Vector2(455.276001F, -351.067993F), new Vector2(454.171997F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(453.115997F, -351.067993F), new Vector2(452.167999F, -351.320007F), new Vector2(451.328003F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(458.726013F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(460.082001F, -349.915985F), new Vector2(461.156006F, -350.98999F), new Vector2(461.947998F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(462.73999F, -353.701996F), new Vector2(463.135986F, -355.220001F), new Vector2(463.135986F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(463.135986F, -358.556F), new Vector2(462.73999F, -360.056F), new Vector2(461.947998F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(461.156006F, -362.743988F), new Vector2(460.082001F, -363.806F), new Vector2(458.726013F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(457.369995F, -365.365997F), new Vector2(455.85199F, -365.756012F), new Vector2(454.171997F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(452.515991F, -365.756012F), new Vector2(451.015991F, -365.359985F), new Vector2(449.671997F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(448.328003F, -363.776001F), new Vector2(447.26001F, -362.713989F), new Vector2(446.467987F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(445.675995F, -360.049988F), new Vector2(445.279999F, -358.556F), new Vector2(445.279999F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(445.279999F, -355.220001F), new Vector2(445.675995F, -353.701996F), new Vector2(446.467987F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(447.26001F, -350.98999F), new Vector2(448.328003F, -349.915985F), new Vector2(449.671997F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(451.015991F, -348.332001F), new Vector2(452.515991F, -347.936005F), new Vector2(454.171997F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(455.85199F, -347.936005F), new Vector2(457.369995F, -348.332001F), new Vector2(458.726013F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0825()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(443.768005F, -362.444F));
+ builder.AddLine(new Vector2(443.768005F, -365.395996F));
+ builder.AddLine(new Vector2(432.104004F, -365.395996F));
+ builder.AddLine(new Vector2(432.104004F, -362.444F));
+ builder.AddLine(new Vector2(443.768005F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(439.556F, -348.29599F));
+ builder.AddLine(new Vector2(439.556F, -372.559998F));
+ builder.AddLine(new Vector2(436.31601F, -372.559998F));
+ builder.AddLine(new Vector2(436.31601F, -348.29599F));
+ builder.AddLine(new Vector2(439.556F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0826()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(418.640015F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(419.81601F, -349.196014F), new Vector2(420.824005F, -349.928009F), new Vector2(421.664001F, -350.888F));
+ builder.AddLine(new Vector2(419.575989F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(419F, -352.339996F), new Vector2(418.309998F, -351.835999F), new Vector2(417.506012F, -351.5F));
+ builder.AddCubicBezier(new Vector2(416.701996F, -351.164001F), new Vector2(415.820007F, -350.996002F), new Vector2(414.859985F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(413.708008F, -350.996002F), new Vector2(412.687988F, -351.242004F), new Vector2(411.799988F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(410.911987F, -352.226013F), new Vector2(410.227997F, -352.921997F), new Vector2(409.747986F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(409.268005F, -354.721985F), new Vector2(409.028015F, -355.772003F), new Vector2(409.028015F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(409.028015F, -358.14801F), new Vector2(409.256012F, -359.167999F), new Vector2(409.712006F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(410.167999F, -360.895996F), new Vector2(410.81601F, -361.567993F), new Vector2(411.656006F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(412.496002F, -362.528015F), new Vector2(413.467987F, -362.768005F), new Vector2(414.571991F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(415.627991F, -362.768005F), new Vector2(416.528015F, -362.54599F), new Vector2(417.272003F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(418.015991F, -361.65799F), new Vector2(418.59201F, -361.033997F), new Vector2(419F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(419.40799F, -359.425995F), new Vector2(419.612F, -358.447998F), new Vector2(419.612F, -357.29599F));
+ builder.AddLine(new Vector2(420.799988F, -358.339996F));
+ builder.AddLine(new Vector2(408.09201F, -358.339996F));
+ builder.AddLine(new Vector2(408.09201F, -355.640015F));
+ builder.AddLine(new Vector2(422.528015F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(422.600006F, -355.976013F), new Vector2(422.64801F, -356.282013F), new Vector2(422.671997F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(422.696014F, -356.834015F), new Vector2(422.708008F, -357.09201F), new Vector2(422.708008F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(422.708008F, -358.963989F), new Vector2(422.365997F, -360.415985F), new Vector2(421.682007F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(420.997986F, -362.959991F), new Vector2(420.044006F, -363.955994F), new Vector2(418.820007F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(417.596008F, -365.395996F), new Vector2(416.20401F, -365.756012F), new Vector2(414.644012F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(412.988007F, -365.756012F), new Vector2(411.493988F, -365.365997F), new Vector2(410.161987F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(408.829987F, -363.806F), new Vector2(407.773987F, -362.743988F), new Vector2(406.993988F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(406.213989F, -360.056F), new Vector2(405.824005F, -358.544006F), new Vector2(405.824005F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(405.824005F, -355.160004F), new Vector2(406.220001F, -353.635986F), new Vector2(407.011993F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(407.803986F, -350.947998F), new Vector2(408.877991F, -349.885986F), new Vector2(410.234009F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(411.589996F, -348.325989F), new Vector2(413.131989F, -347.936005F), new Vector2(414.859985F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(416.20401F, -347.936005F), new Vector2(417.463989F, -348.187988F), new Vector2(418.640015F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0827()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(399.056F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(400.160004F, -349.537994F), new Vector2(401.023987F, -350.40799F), new Vector2(401.64801F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(402.272003F, -352.664001F), new Vector2(402.584015F, -353.971985F), new Vector2(402.584015F, -355.459991F));
+ builder.AddLine(new Vector2(402.584015F, -365.395996F));
+ builder.AddLine(new Vector2(399.343994F, -365.395996F));
+ builder.AddLine(new Vector2(399.343994F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(399.343994F, -354.187988F), new Vector2(398.984009F, -353.078003F), new Vector2(398.264008F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(397.544006F, -351.470001F), new Vector2(396.548004F, -351.067993F), new Vector2(395.276001F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(394.436005F, -351.067993F), new Vector2(393.70401F, -351.247986F), new Vector2(393.079987F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(392.455994F, -351.967987F), new Vector2(391.981995F, -352.48999F), new Vector2(391.65799F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(391.334015F, -353.858002F), new Vector2(391.171997F, -354.667999F), new Vector2(391.171997F, -355.604004F));
+ builder.AddLine(new Vector2(391.171997F, -365.395996F));
+ builder.AddLine(new Vector2(387.932007F, -365.395996F));
+ builder.AddLine(new Vector2(387.932007F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(387.932007F, -353.971985F), new Vector2(388.243988F, -352.664001F), new Vector2(388.868011F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(389.492004F, -350.40799F), new Vector2(390.362F, -349.537994F), new Vector2(391.477997F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(392.593994F, -348.313995F), new Vector2(393.859985F, -348.007996F), new Vector2(395.276001F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(396.691986F, -348.007996F), new Vector2(397.951996F, -348.313995F), new Vector2(399.056F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0828()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(383.64801F, -374F));
+ builder.AddLine(new Vector2(380.372009F, -374F));
+ builder.AddLine(new Vector2(380.372009F, -361.220001F));
+ builder.AddLine(new Vector2(380.984009F, -357.079987F));
+ builder.AddLine(new Vector2(380.372009F, -352.903992F));
+ builder.AddLine(new Vector2(380.372009F, -348.29599F));
+ builder.AddLine(new Vector2(383.64801F, -348.29599F));
+ builder.AddLine(new Vector2(383.64801F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(372.325989F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(371.497986F, -352.226013F), new Vector2(370.850006F, -352.915985F), new Vector2(370.381989F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(369.914001F, -354.691986F), new Vector2(369.679993F, -355.712006F), new Vector2(369.679993F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(369.679993F, -358.015991F), new Vector2(369.914001F, -359.029999F), new Vector2(370.381989F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(370.850006F, -360.782013F), new Vector2(371.492004F, -361.466003F), new Vector2(372.308014F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(373.123993F, -362.450012F), new Vector2(374.071991F, -362.696014F), new Vector2(375.152008F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(376.231995F, -362.696014F), new Vector2(377.179993F, -362.444F), new Vector2(377.996002F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(378.812012F, -361.436005F), new Vector2(379.447998F, -360.746002F), new Vector2(379.903992F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(380.359985F, -358.993988F), new Vector2(380.588013F, -357.980011F), new Vector2(380.588013F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(380.588013F, -355.700012F), new Vector2(380.359985F, -354.697998F), new Vector2(379.903992F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(379.447998F, -352.946014F), new Vector2(378.812012F, -352.256012F), new Vector2(377.996002F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(377.179993F, -351.247986F), new Vector2(376.231995F, -350.996002F), new Vector2(375.152008F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(374.096008F, -350.996002F), new Vector2(373.153992F, -351.242004F), new Vector2(372.325989F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(378.140015F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(379.171997F, -349.286011F), new Vector2(380F, -350.036011F), new Vector2(380.623993F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(381.247986F, -351.955994F), new Vector2(381.596008F, -353.048004F), new Vector2(381.667999F, -354.272003F));
+ builder.AddLine(new Vector2(381.667999F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(381.596008F, -360.667999F), new Vector2(381.242004F, -361.765991F), new Vector2(380.605988F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(379.970001F, -363.661987F), new Vector2(379.135986F, -364.406006F), new Vector2(378.104004F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(377.071991F, -365.485992F), new Vector2(375.90799F, -365.756012F), new Vector2(374.612F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(373.052002F, -365.756012F), new Vector2(371.64801F, -365.359985F), new Vector2(370.399994F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(369.152008F, -363.776001F), new Vector2(368.161987F, -362.708008F), new Vector2(367.429993F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(366.697998F, -360.019989F), new Vector2(366.332001F, -358.507996F), new Vector2(366.332001F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(366.332001F, -355.14801F), new Vector2(366.697998F, -353.635986F), new Vector2(367.429993F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(368.161987F, -350.947998F), new Vector2(369.152008F, -349.885986F), new Vector2(370.399994F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(371.64801F, -348.325989F), new Vector2(373.052002F, -347.936005F), new Vector2(374.612F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(375.932007F, -347.936005F), new Vector2(377.108002F, -348.205994F), new Vector2(378.140015F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0829()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(356.791992F, -362.444F));
+ builder.AddLine(new Vector2(356.791992F, -365.395996F));
+ builder.AddLine(new Vector2(345.127991F, -365.395996F));
+ builder.AddLine(new Vector2(345.127991F, -362.444F));
+ builder.AddLine(new Vector2(356.791992F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(352.579987F, -348.29599F));
+ builder.AddLine(new Vector2(352.579987F, -372.559998F));
+ builder.AddLine(new Vector2(349.339996F, -372.559998F));
+ builder.AddLine(new Vector2(349.339996F, -348.29599F));
+ builder.AddLine(new Vector2(352.579987F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0830()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(341.365997F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(342.506012F, -350.276001F), new Vector2(343.075989F, -351.548004F), new Vector2(343.075989F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(343.075989F, -354.212006F), new Vector2(342.854004F, -355.063995F), new Vector2(342.410004F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(341.966003F, -356.359985F), new Vector2(341.395996F, -356.876007F), new Vector2(340.700012F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(340.003998F, -357.644012F), new Vector2(339.272003F, -357.950012F), new Vector2(338.503998F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(337.735992F, -358.406006F), new Vector2(336.997986F, -358.627991F), new Vector2(336.290009F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(335.582001F, -359.059998F), new Vector2(335.011993F, -359.324005F), new Vector2(334.579987F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(334.14801F, -359.947998F), new Vector2(333.932007F, -360.391998F), new Vector2(333.932007F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(333.932007F, -361.519989F), new Vector2(334.178009F, -361.963989F), new Vector2(334.670013F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(335.161987F, -362.635986F), new Vector2(335.876007F, -362.803986F), new Vector2(336.812012F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(337.700012F, -362.803986F), new Vector2(338.492004F, -362.635986F), new Vector2(339.187988F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(339.884003F, -361.963989F), new Vector2(340.484009F, -361.484009F), new Vector2(340.988007F, -360.859985F));
+ builder.AddLine(new Vector2(343.075989F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(342.403992F, -363.884003F), new Vector2(341.54599F, -364.585999F), new Vector2(340.502014F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(339.458008F, -365.522003F), new Vector2(338.264008F, -365.756012F), new Vector2(336.920013F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(335.64801F, -365.756012F), new Vector2(334.556F, -365.552002F), new Vector2(333.644012F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(332.731995F, -364.735992F), new Vector2(332.029999F, -364.153992F), new Vector2(331.537994F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(331.04599F, -362.641998F), new Vector2(330.799988F, -361.747986F), new Vector2(330.799988F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(330.799988F, -359.68399F), new Vector2(331.022003F, -358.850006F), new Vector2(331.466003F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(331.910004F, -357.578003F), new Vector2(332.480011F, -357.079987F), new Vector2(333.175995F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(333.872009F, -356.359985F), new Vector2(334.609985F, -356.071991F), new Vector2(335.390015F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(336.170013F, -355.640015F), new Vector2(336.90799F, -355.417999F), new Vector2(337.604004F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(338.299988F, -354.962006F), new Vector2(338.869995F, -354.674011F), new Vector2(339.313995F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(339.757996F, -353.977997F), new Vector2(339.980011F, -353.492004F), new Vector2(339.980011F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(339.980011F, -352.243988F), new Vector2(339.70401F, -351.757996F), new Vector2(339.152008F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(338.600006F, -351.062012F), new Vector2(337.820007F, -350.888F), new Vector2(336.812012F, -350.888F));
+ builder.AddCubicBezier(new Vector2(335.803986F, -350.888F), new Vector2(334.891998F, -351.074005F), new Vector2(334.075989F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(333.26001F, -351.817993F), new Vector2(332.540009F, -352.388F), new Vector2(331.915985F, -353.156006F));
+ builder.AddLine(new Vector2(329.828003F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(330.355988F, -350.420013F), new Vector2(330.973999F, -349.862F), new Vector2(331.682007F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(332.390015F, -348.925995F), new Vector2(333.175995F, -348.56601F), new Vector2(334.040009F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(334.903992F, -348.062012F), new Vector2(335.81601F, -347.936005F), new Vector2(336.776001F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(338.696014F, -347.936005F), new Vector2(340.226013F, -348.403992F), new Vector2(341.365997F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0831()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(323.743988F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(324.920013F, -349.196014F), new Vector2(325.928009F, -349.928009F), new Vector2(326.768005F, -350.888F));
+ builder.AddLine(new Vector2(324.679993F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(324.104004F, -352.339996F), new Vector2(323.414001F, -351.835999F), new Vector2(322.609985F, -351.5F));
+ builder.AddCubicBezier(new Vector2(321.806F, -351.164001F), new Vector2(320.924011F, -350.996002F), new Vector2(319.963989F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(318.812012F, -350.996002F), new Vector2(317.791992F, -351.242004F), new Vector2(316.903992F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(316.015991F, -352.226013F), new Vector2(315.332001F, -352.921997F), new Vector2(314.85199F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(314.372009F, -354.721985F), new Vector2(314.131989F, -355.772003F), new Vector2(314.131989F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(314.131989F, -358.14801F), new Vector2(314.359985F, -359.167999F), new Vector2(314.81601F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(315.272003F, -360.895996F), new Vector2(315.920013F, -361.567993F), new Vector2(316.76001F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(317.600006F, -362.528015F), new Vector2(318.571991F, -362.768005F), new Vector2(319.675995F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(320.731995F, -362.768005F), new Vector2(321.631989F, -362.54599F), new Vector2(322.376007F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(323.119995F, -361.65799F), new Vector2(323.696014F, -361.033997F), new Vector2(324.104004F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(324.511993F, -359.425995F), new Vector2(324.716003F, -358.447998F), new Vector2(324.716003F, -357.29599F));
+ builder.AddLine(new Vector2(325.903992F, -358.339996F));
+ builder.AddLine(new Vector2(313.196014F, -358.339996F));
+ builder.AddLine(new Vector2(313.196014F, -355.640015F));
+ builder.AddLine(new Vector2(327.631989F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(327.70401F, -355.976013F), new Vector2(327.752014F, -356.282013F), new Vector2(327.776001F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(327.799988F, -356.834015F), new Vector2(327.812012F, -357.09201F), new Vector2(327.812012F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(327.812012F, -358.963989F), new Vector2(327.470001F, -360.415985F), new Vector2(326.786011F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(326.10199F, -362.959991F), new Vector2(325.14801F, -363.955994F), new Vector2(323.924011F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(322.700012F, -365.395996F), new Vector2(321.308014F, -365.756012F), new Vector2(319.747986F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(318.09201F, -365.756012F), new Vector2(316.597992F, -365.365997F), new Vector2(315.265991F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(313.93399F, -363.806F), new Vector2(312.877991F, -362.743988F), new Vector2(312.097992F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(311.317993F, -360.056F), new Vector2(310.928009F, -358.544006F), new Vector2(310.928009F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(310.928009F, -355.160004F), new Vector2(311.324005F, -353.635986F), new Vector2(312.115997F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(312.90799F, -350.947998F), new Vector2(313.981995F, -349.885986F), new Vector2(315.338013F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(316.694F, -348.325989F), new Vector2(318.235992F, -347.936005F), new Vector2(319.963989F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(321.308014F, -347.936005F), new Vector2(322.567993F, -348.187988F), new Vector2(323.743988F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0832()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(302.540009F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(303.308014F, -362.312012F), new Vector2(304.291992F, -362.696014F), new Vector2(305.492004F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(306.067993F, -362.696014F), new Vector2(306.571991F, -362.612F), new Vector2(307.003998F, -362.444F));
+ builder.AddCubicBezier(new Vector2(307.436005F, -362.276001F), new Vector2(307.832001F, -362F), new Vector2(308.191986F, -361.615997F));
+ builder.AddLine(new Vector2(310.31601F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(309.716003F, -364.507996F), new Vector2(309.067993F, -365.006012F), new Vector2(308.372009F, -365.306F));
+ builder.AddCubicBezier(new Vector2(307.675995F, -365.605988F), new Vector2(306.895996F, -365.756012F), new Vector2(306.032013F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(304.135986F, -365.756012F), new Vector2(302.68399F, -365.108002F), new Vector2(301.675995F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(300.667999F, -362.515991F), new Vector2(300.164001F, -360.776001F), new Vector2(300.164001F, -358.59201F));
+ builder.AddLine(new Vector2(301.388F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(301.388F, -359.600006F), new Vector2(301.772003F, -360.776001F), new Vector2(302.540009F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(301.388F, -348.29599F));
+ builder.AddLine(new Vector2(301.388F, -365.395996F));
+ builder.AddLine(new Vector2(298.14801F, -365.395996F));
+ builder.AddLine(new Vector2(298.14801F, -348.29599F));
+ builder.AddLine(new Vector2(301.388F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0833()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(281.660004F, -348.29599F));
+ builder.AddLine(new Vector2(281.660004F, -365.395996F));
+ builder.AddLine(new Vector2(278.420013F, -365.395996F));
+ builder.AddLine(new Vector2(278.420013F, -348.29599F));
+ builder.AddLine(new Vector2(281.660004F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(293.756012F, -348.29599F));
+ builder.AddLine(new Vector2(293.756012F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(293.756012F, -360.09201F), new Vector2(293.467987F, -361.201996F), new Vector2(292.891998F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(292.31601F, -363.290009F), new Vector2(291.529999F, -364.135986F), new Vector2(290.533997F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(289.537994F, -365.432007F), new Vector2(288.391998F, -365.756012F), new Vector2(287.096008F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(285.799988F, -365.756012F), new Vector2(284.635986F, -365.462006F), new Vector2(283.604004F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(282.571991F, -364.286011F), new Vector2(281.768005F, -363.488007F), new Vector2(281.191986F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(280.615997F, -361.471985F), new Vector2(280.328003F, -360.320007F), new Vector2(280.328003F, -359.023987F));
+ builder.AddLine(new Vector2(281.660004F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(281.660004F, -359.131989F), new Vector2(281.85199F, -359.899994F), new Vector2(282.235992F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(282.619995F, -361.243988F), new Vector2(283.14801F, -361.772003F), new Vector2(283.820007F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(284.492004F, -362.540009F), new Vector2(285.26001F, -362.731995F), new Vector2(286.123993F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(287.420013F, -362.731995F), new Vector2(288.470001F, -362.312012F), new Vector2(289.273987F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(290.078003F, -360.631989F), new Vector2(290.480011F, -359.563995F), new Vector2(290.480011F, -358.268005F));
+ builder.AddLine(new Vector2(290.480011F, -348.29599F));
+ builder.AddLine(new Vector2(293.756012F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0834()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(270.536011F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(271.640015F, -349.537994F), new Vector2(272.503998F, -350.40799F), new Vector2(273.127991F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(273.752014F, -352.664001F), new Vector2(274.063995F, -353.971985F), new Vector2(274.063995F, -355.459991F));
+ builder.AddLine(new Vector2(274.063995F, -365.395996F));
+ builder.AddLine(new Vector2(270.824005F, -365.395996F));
+ builder.AddLine(new Vector2(270.824005F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(270.824005F, -354.187988F), new Vector2(270.463989F, -353.078003F), new Vector2(269.743988F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(269.023987F, -351.470001F), new Vector2(268.028015F, -351.067993F), new Vector2(266.756012F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(265.915985F, -351.067993F), new Vector2(265.18399F, -351.247986F), new Vector2(264.559998F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(263.936005F, -351.967987F), new Vector2(263.462006F, -352.48999F), new Vector2(263.138F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(262.813995F, -353.858002F), new Vector2(262.652008F, -354.667999F), new Vector2(262.652008F, -355.604004F));
+ builder.AddLine(new Vector2(262.652008F, -365.395996F));
+ builder.AddLine(new Vector2(259.411987F, -365.395996F));
+ builder.AddLine(new Vector2(259.411987F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(259.411987F, -353.971985F), new Vector2(259.723999F, -352.664001F), new Vector2(260.347992F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(260.971985F, -350.40799F), new Vector2(261.84201F, -349.537994F), new Vector2(262.958008F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(264.074005F, -348.313995F), new Vector2(265.339996F, -348.007996F), new Vector2(266.756012F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(268.171997F, -348.007996F), new Vector2(269.432007F, -348.313995F), new Vector2(270.536011F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0835()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(247.675995F, -374F));
+ builder.AddLine(new Vector2(244.399994F, -374F));
+ builder.AddLine(new Vector2(244.399994F, -361.220001F));
+ builder.AddLine(new Vector2(245.011993F, -357.079987F));
+ builder.AddLine(new Vector2(244.399994F, -352.903992F));
+ builder.AddLine(new Vector2(244.399994F, -348.29599F));
+ builder.AddLine(new Vector2(247.675995F, -348.29599F));
+ builder.AddLine(new Vector2(247.675995F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(236.354004F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(235.526001F, -352.226013F), new Vector2(234.878006F, -352.915985F), new Vector2(234.410004F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(233.942001F, -354.691986F), new Vector2(233.707993F, -355.712006F), new Vector2(233.707993F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(233.707993F, -358.015991F), new Vector2(233.942001F, -359.029999F), new Vector2(234.410004F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(234.878006F, -360.782013F), new Vector2(235.520004F, -361.466003F), new Vector2(236.335999F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(237.151993F, -362.450012F), new Vector2(238.100006F, -362.696014F), new Vector2(239.179993F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(240.259995F, -362.696014F), new Vector2(241.207993F, -362.444F), new Vector2(242.024002F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(242.839996F, -361.436005F), new Vector2(243.475998F, -360.746002F), new Vector2(243.932007F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(244.388F, -358.993988F), new Vector2(244.615997F, -357.980011F), new Vector2(244.615997F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(244.615997F, -355.700012F), new Vector2(244.388F, -354.697998F), new Vector2(243.932007F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(243.475998F, -352.946014F), new Vector2(242.839996F, -352.256012F), new Vector2(242.024002F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(241.207993F, -351.247986F), new Vector2(240.259995F, -350.996002F), new Vector2(239.179993F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(238.123993F, -350.996002F), new Vector2(237.182007F, -351.242004F), new Vector2(236.354004F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(242.167999F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(243.199997F, -349.286011F), new Vector2(244.028F, -350.036011F), new Vector2(244.651993F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(245.276001F, -351.955994F), new Vector2(245.623993F, -353.048004F), new Vector2(245.695999F, -354.272003F));
+ builder.AddLine(new Vector2(245.695999F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(245.623993F, -360.667999F), new Vector2(245.270004F, -361.765991F), new Vector2(244.634003F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(243.998001F, -363.661987F), new Vector2(243.164001F, -364.406006F), new Vector2(242.132004F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(241.100006F, -365.485992F), new Vector2(239.936005F, -365.756012F), new Vector2(238.639999F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(237.080002F, -365.756012F), new Vector2(235.675995F, -365.359985F), new Vector2(234.427994F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(233.179993F, -363.776001F), new Vector2(232.190002F, -362.708008F), new Vector2(231.457993F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(230.725998F, -360.019989F), new Vector2(230.360001F, -358.507996F), new Vector2(230.360001F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(230.360001F, -355.14801F), new Vector2(230.725998F, -353.635986F), new Vector2(231.457993F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(232.190002F, -350.947998F), new Vector2(233.179993F, -349.885986F), new Vector2(234.427994F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(235.675995F, -348.325989F), new Vector2(237.080002F, -347.936005F), new Vector2(238.639999F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(239.960007F, -347.936005F), new Vector2(241.136002F, -348.205994F), new Vector2(242.167999F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0836()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(226.723999F, -348.29599F));
+ builder.AddLine(new Vector2(226.723999F, -365.395996F));
+ builder.AddLine(new Vector2(223.447998F, -365.395996F));
+ builder.AddLine(new Vector2(223.447998F, -361.220001F));
+ builder.AddLine(new Vector2(224.059998F, -357.079987F));
+ builder.AddLine(new Vector2(223.447998F, -352.903992F));
+ builder.AddLine(new Vector2(223.447998F, -348.29599F));
+ builder.AddLine(new Vector2(226.723999F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(215.419998F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(214.580002F, -352.256012F), new Vector2(213.925995F, -352.946014F), new Vector2(213.457993F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(212.990005F, -354.697998F), new Vector2(212.755997F, -355.712006F), new Vector2(212.755997F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(212.755997F, -357.992004F), new Vector2(212.990005F, -358.993988F), new Vector2(213.457993F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(213.925995F, -360.746002F), new Vector2(214.574005F, -361.436005F), new Vector2(215.401993F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(216.229996F, -362.444F), new Vector2(217.184006F, -362.696014F), new Vector2(218.264008F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(219.343994F, -362.696014F), new Vector2(220.285995F, -362.450012F), new Vector2(221.089996F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(221.893997F, -361.466003F), new Vector2(222.524002F, -360.776001F), new Vector2(222.979996F, -359.888F));
+ builder.AddCubicBezier(new Vector2(223.436005F, -359F), new Vector2(223.664001F, -357.980011F), new Vector2(223.664001F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(223.664001F, -355.123993F), new Vector2(223.171997F, -353.726013F), new Vector2(222.188004F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(221.203995F, -351.541992F), new Vector2(219.908005F, -350.996002F), new Vector2(218.300003F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(217.220001F, -350.996002F), new Vector2(216.259995F, -351.247986F), new Vector2(215.419998F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(221.251999F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(222.283997F, -349.286011F), new Vector2(223.106003F, -350.036011F), new Vector2(223.718002F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(224.330002F, -351.955994F), new Vector2(224.671997F, -353.048004F), new Vector2(224.744003F, -354.272003F));
+ builder.AddLine(new Vector2(224.744003F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(224.671997F, -360.667999F), new Vector2(224.324005F, -361.765991F), new Vector2(223.699997F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(223.076004F, -363.661987F), new Vector2(222.253998F, -364.406006F), new Vector2(221.233994F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(220.214005F, -365.485992F), new Vector2(219.056F, -365.756012F), new Vector2(217.759995F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(216.175995F, -365.756012F), new Vector2(214.753998F, -365.359985F), new Vector2(213.494003F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(212.233994F, -363.776001F), new Vector2(211.238007F, -362.708008F), new Vector2(210.505997F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(209.774002F, -360.019989F), new Vector2(209.408005F, -358.507996F), new Vector2(209.408005F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(209.408005F, -355.14801F), new Vector2(209.774002F, -353.635986F), new Vector2(210.505997F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(211.238007F, -350.947998F), new Vector2(212.233994F, -349.885986F), new Vector2(213.494003F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(214.753998F, -348.325989F), new Vector2(216.175995F, -347.936005F), new Vector2(217.759995F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(219.056F, -347.936005F), new Vector2(220.220001F, -348.205994F), new Vector2(221.251999F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0837()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(202.891998F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(204.067993F, -349.196014F), new Vector2(205.076004F, -349.928009F), new Vector2(205.916F, -350.888F));
+ builder.AddLine(new Vector2(203.828003F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(203.251999F, -352.339996F), new Vector2(202.561996F, -351.835999F), new Vector2(201.757996F, -351.5F));
+ builder.AddCubicBezier(new Vector2(200.953995F, -351.164001F), new Vector2(200.072006F, -350.996002F), new Vector2(199.112F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(197.960007F, -350.996002F), new Vector2(196.940002F, -351.242004F), new Vector2(196.052002F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(195.164001F, -352.226013F), new Vector2(194.479996F, -352.921997F), new Vector2(194F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(193.520004F, -354.721985F), new Vector2(193.279999F, -355.772003F), new Vector2(193.279999F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(193.279999F, -358.14801F), new Vector2(193.507996F, -359.167999F), new Vector2(193.964005F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(194.419998F, -360.895996F), new Vector2(195.067993F, -361.567993F), new Vector2(195.908005F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(196.748001F, -362.528015F), new Vector2(197.720001F, -362.768005F), new Vector2(198.824005F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(199.880005F, -362.768005F), new Vector2(200.779999F, -362.54599F), new Vector2(201.524002F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(202.268005F, -361.65799F), new Vector2(202.843994F, -361.033997F), new Vector2(203.251999F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(203.660004F, -359.425995F), new Vector2(203.863998F, -358.447998F), new Vector2(203.863998F, -357.29599F));
+ builder.AddLine(new Vector2(205.052002F, -358.339996F));
+ builder.AddLine(new Vector2(192.343994F, -358.339996F));
+ builder.AddLine(new Vector2(192.343994F, -355.640015F));
+ builder.AddLine(new Vector2(206.779999F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(206.852005F, -355.976013F), new Vector2(206.899994F, -356.282013F), new Vector2(206.923996F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(206.947998F, -356.834015F), new Vector2(206.960007F, -357.09201F), new Vector2(206.960007F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(206.960007F, -358.963989F), new Vector2(206.617996F, -360.415985F), new Vector2(205.934006F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(205.25F, -362.959991F), new Vector2(204.296005F, -363.955994F), new Vector2(203.072006F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(201.848007F, -365.395996F), new Vector2(200.455994F, -365.756012F), new Vector2(198.895996F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(197.240005F, -365.756012F), new Vector2(195.746002F, -365.365997F), new Vector2(194.414001F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(193.082001F, -363.806F), new Vector2(192.026001F, -362.743988F), new Vector2(191.246002F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(190.466003F, -360.056F), new Vector2(190.076004F, -358.544006F), new Vector2(190.076004F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(190.076004F, -355.160004F), new Vector2(190.472F, -353.635986F), new Vector2(191.264008F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(192.056F, -350.947998F), new Vector2(193.130005F, -349.885986F), new Vector2(194.485992F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(195.841995F, -348.325989F), new Vector2(197.384003F, -347.936005F), new Vector2(199.112F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(200.455994F, -347.936005F), new Vector2(201.716003F, -348.187988F), new Vector2(202.891998F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0838()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(181.688004F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(182.455994F, -362.312012F), new Vector2(183.440002F, -362.696014F), new Vector2(184.639999F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(185.216003F, -362.696014F), new Vector2(185.720001F, -362.612F), new Vector2(186.151993F, -362.444F));
+ builder.AddCubicBezier(new Vector2(186.584F, -362.276001F), new Vector2(186.979996F, -362F), new Vector2(187.339996F, -361.615997F));
+ builder.AddLine(new Vector2(189.464005F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(188.863998F, -364.507996F), new Vector2(188.216003F, -365.006012F), new Vector2(187.520004F, -365.306F));
+ builder.AddCubicBezier(new Vector2(186.824005F, -365.605988F), new Vector2(186.044006F, -365.756012F), new Vector2(185.179993F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(183.283997F, -365.756012F), new Vector2(181.832001F, -365.108002F), new Vector2(180.824005F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(179.815994F, -362.515991F), new Vector2(179.311996F, -360.776001F), new Vector2(179.311996F, -358.59201F));
+ builder.AddLine(new Vector2(180.535995F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(180.535995F, -359.600006F), new Vector2(180.919998F, -360.776001F), new Vector2(181.688004F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(180.535995F, -348.29599F));
+ builder.AddLine(new Vector2(180.535995F, -365.395996F));
+ builder.AddLine(new Vector2(177.296005F, -365.395996F));
+ builder.AddLine(new Vector2(177.296005F, -348.29599F));
+ builder.AddLine(new Vector2(180.535995F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0839()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(161.977997F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(161.149994F, -352.256012F), new Vector2(160.514008F, -352.946014F), new Vector2(160.070007F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(159.626007F, -354.697998F), new Vector2(159.404007F, -355.700012F), new Vector2(159.404007F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(159.404007F, -357.980011F), new Vector2(159.632004F, -358.993988F), new Vector2(160.087997F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(160.544006F, -360.746002F), new Vector2(161.179993F, -361.436005F), new Vector2(161.996002F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(162.811996F, -362.444F), new Vector2(163.748001F, -362.696014F), new Vector2(164.804001F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(165.884003F, -362.696014F), new Vector2(166.832001F, -362.444F), new Vector2(167.647995F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(168.464005F, -361.436005F), new Vector2(169.106003F, -360.746002F), new Vector2(169.574005F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(170.042007F, -358.993988F), new Vector2(170.276001F, -357.992004F), new Vector2(170.276001F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(170.276001F, -355.712006F), new Vector2(170.042007F, -354.697998F), new Vector2(169.574005F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(169.106003F, -352.946014F), new Vector2(168.464005F, -352.256012F), new Vector2(167.647995F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(166.832001F, -351.247986F), new Vector2(165.884003F, -350.996002F), new Vector2(164.804001F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(163.748001F, -350.996002F), new Vector2(162.806F, -351.247986F), new Vector2(161.977997F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(159.584F, -341.131989F));
+ builder.AddLine(new Vector2(159.584F, -352.579987F));
+ builder.AddLine(new Vector2(158.972F, -356.756012F));
+ builder.AddLine(new Vector2(159.584F, -360.895996F));
+ builder.AddLine(new Vector2(159.584F, -365.395996F));
+ builder.AddLine(new Vector2(156.343994F, -365.395996F));
+ builder.AddLine(new Vector2(156.343994F, -341.131989F));
+ builder.AddLine(new Vector2(159.584F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(169.574005F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(170.834F, -349.885986F), new Vector2(171.824005F, -350.947998F), new Vector2(172.544006F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(173.264008F, -353.635986F), new Vector2(173.623993F, -355.14801F), new Vector2(173.623993F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(173.623993F, -358.507996F), new Vector2(173.264008F, -360.019989F), new Vector2(172.544006F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(171.824005F, -362.708008F), new Vector2(170.834F, -363.776001F), new Vector2(169.574005F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(168.313995F, -365.359985F), new Vector2(166.904007F, -365.756012F), new Vector2(165.343994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(164.072006F, -365.756012F), new Vector2(162.914001F, -365.485992F), new Vector2(161.869995F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(160.826004F, -364.406006F), new Vector2(159.985992F, -363.661987F), new Vector2(159.350006F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(158.714005F, -361.765991F), new Vector2(158.360001F, -360.667999F), new Vector2(158.287994F, -359.420013F));
+ builder.AddLine(new Vector2(158.287994F, -354.272003F));
+ builder.AddCubicBezier(new Vector2(158.360001F, -353.048004F), new Vector2(158.707993F, -351.955994F), new Vector2(159.332001F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(159.955994F, -350.036011F), new Vector2(160.789993F, -349.286011F), new Vector2(161.834F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(162.878006F, -348.205994F), new Vector2(164.048004F, -347.936005F), new Vector2(165.343994F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(166.904007F, -347.936005F), new Vector2(168.313995F, -348.325989F), new Vector2(169.574005F, -349.105988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0840()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(150.998001F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(152.138F, -350.276001F), new Vector2(152.707993F, -351.548004F), new Vector2(152.707993F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(152.707993F, -354.212006F), new Vector2(152.485992F, -355.063995F), new Vector2(152.042007F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(151.598007F, -356.359985F), new Vector2(151.028F, -356.876007F), new Vector2(150.332001F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(149.636002F, -357.644012F), new Vector2(148.904007F, -357.950012F), new Vector2(148.136002F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(147.367996F, -358.406006F), new Vector2(146.630005F, -358.627991F), new Vector2(145.921997F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(145.214005F, -359.059998F), new Vector2(144.643997F, -359.324005F), new Vector2(144.212006F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(143.779999F, -359.947998F), new Vector2(143.563995F, -360.391998F), new Vector2(143.563995F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(143.563995F, -361.519989F), new Vector2(143.809998F, -361.963989F), new Vector2(144.302002F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(144.794006F, -362.635986F), new Vector2(145.507996F, -362.803986F), new Vector2(146.444F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(147.332001F, -362.803986F), new Vector2(148.123993F, -362.635986F), new Vector2(148.820007F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(149.516006F, -361.963989F), new Vector2(150.115997F, -361.484009F), new Vector2(150.619995F, -360.859985F));
+ builder.AddLine(new Vector2(152.707993F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(152.035995F, -363.884003F), new Vector2(151.177994F, -364.585999F), new Vector2(150.134003F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(149.089996F, -365.522003F), new Vector2(147.895996F, -365.756012F), new Vector2(146.552002F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(145.279999F, -365.756012F), new Vector2(144.188004F, -365.552002F), new Vector2(143.276001F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(142.363998F, -364.735992F), new Vector2(141.662003F, -364.153992F), new Vector2(141.169998F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(140.677994F, -362.641998F), new Vector2(140.432007F, -361.747986F), new Vector2(140.432007F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(140.432007F, -359.68399F), new Vector2(140.654007F, -358.850006F), new Vector2(141.098007F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(141.542007F, -357.578003F), new Vector2(142.112F, -357.079987F), new Vector2(142.807999F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(143.503998F, -356.359985F), new Vector2(144.242004F, -356.071991F), new Vector2(145.022003F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(145.802002F, -355.640015F), new Vector2(146.539993F, -355.417999F), new Vector2(147.235992F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(147.932007F, -354.962006F), new Vector2(148.501999F, -354.674011F), new Vector2(148.945999F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(149.389999F, -353.977997F), new Vector2(149.612F, -353.492004F), new Vector2(149.612F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(149.612F, -352.243988F), new Vector2(149.335999F, -351.757996F), new Vector2(148.783997F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(148.231995F, -351.062012F), new Vector2(147.451996F, -350.888F), new Vector2(146.444F, -350.888F));
+ builder.AddCubicBezier(new Vector2(145.436005F, -350.888F), new Vector2(144.524002F, -351.074005F), new Vector2(143.707993F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(142.891998F, -351.817993F), new Vector2(142.171997F, -352.388F), new Vector2(141.548004F, -353.156006F));
+ builder.AddLine(new Vector2(139.460007F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(139.988007F, -350.420013F), new Vector2(140.606003F, -349.862F), new Vector2(141.313995F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(142.022003F, -348.925995F), new Vector2(142.807999F, -348.56601F), new Vector2(143.671997F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(144.535995F, -348.062012F), new Vector2(145.447998F, -347.936005F), new Vector2(146.408005F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(148.328003F, -347.936005F), new Vector2(149.858002F, -348.403992F), new Vector2(150.998001F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0841()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(133.376007F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(134.552002F, -349.196014F), new Vector2(135.559998F, -349.928009F), new Vector2(136.399994F, -350.888F));
+ builder.AddLine(new Vector2(134.311996F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(133.735992F, -352.339996F), new Vector2(133.046005F, -351.835999F), new Vector2(132.242004F, -351.5F));
+ builder.AddCubicBezier(new Vector2(131.438004F, -351.164001F), new Vector2(130.556F, -350.996002F), new Vector2(129.595993F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(128.444F, -350.996002F), new Vector2(127.424004F, -351.242004F), new Vector2(126.536003F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(125.648003F, -352.226013F), new Vector2(124.963997F, -352.921997F), new Vector2(124.484001F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(124.003998F, -354.721985F), new Vector2(123.764F, -355.772003F), new Vector2(123.764F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(123.764F, -358.14801F), new Vector2(123.991997F, -359.167999F), new Vector2(124.447998F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(124.903999F, -360.895996F), new Vector2(125.552002F, -361.567993F), new Vector2(126.391998F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(127.232002F, -362.528015F), new Vector2(128.203995F, -362.768005F), new Vector2(129.307999F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(130.363998F, -362.768005F), new Vector2(131.264008F, -362.54599F), new Vector2(132.007996F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(132.751999F, -361.65799F), new Vector2(133.328003F, -361.033997F), new Vector2(133.735992F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(134.143997F, -359.425995F), new Vector2(134.348007F, -358.447998F), new Vector2(134.348007F, -357.29599F));
+ builder.AddLine(new Vector2(135.535995F, -358.339996F));
+ builder.AddLine(new Vector2(122.828003F, -358.339996F));
+ builder.AddLine(new Vector2(122.828003F, -355.640015F));
+ builder.AddLine(new Vector2(137.264008F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(137.335999F, -355.976013F), new Vector2(137.384003F, -356.282013F), new Vector2(137.408005F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(137.432007F, -356.834015F), new Vector2(137.444F, -357.09201F), new Vector2(137.444F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(137.444F, -358.963989F), new Vector2(137.102005F, -360.415985F), new Vector2(136.417999F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(135.733994F, -362.959991F), new Vector2(134.779999F, -363.955994F), new Vector2(133.556F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(132.332001F, -365.395996F), new Vector2(130.940002F, -365.756012F), new Vector2(129.380005F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(127.723999F, -365.756012F), new Vector2(126.230003F, -365.365997F), new Vector2(124.898003F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(123.566002F, -363.806F), new Vector2(122.510002F, -362.743988F), new Vector2(121.730003F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(120.949997F, -360.056F), new Vector2(120.559998F, -358.544006F), new Vector2(120.559998F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(120.559998F, -355.160004F), new Vector2(120.956001F, -353.635986F), new Vector2(121.748001F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(122.540001F, -350.947998F), new Vector2(123.613998F, -349.885986F), new Vector2(124.970001F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(126.325996F, -348.325989F), new Vector2(127.867996F, -347.936005F), new Vector2(129.595993F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(130.940002F, -347.936005F), new Vector2(132.199997F, -348.187988F), new Vector2(133.376007F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0842()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(116.959999F, -374F));
+ builder.AddLine(new Vector2(113.683998F, -374F));
+ builder.AddLine(new Vector2(113.683998F, -361.220001F));
+ builder.AddLine(new Vector2(114.295998F, -357.079987F));
+ builder.AddLine(new Vector2(113.683998F, -352.903992F));
+ builder.AddLine(new Vector2(113.683998F, -348.29599F));
+ builder.AddLine(new Vector2(116.959999F, -348.29599F));
+ builder.AddLine(new Vector2(116.959999F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(105.638F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(104.809998F, -352.226013F), new Vector2(104.162003F, -352.915985F), new Vector2(103.694F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(103.225998F, -354.691986F), new Vector2(102.991997F, -355.712006F), new Vector2(102.991997F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(102.991997F, -358.015991F), new Vector2(103.225998F, -359.029999F), new Vector2(103.694F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(104.162003F, -360.782013F), new Vector2(104.804001F, -361.466003F), new Vector2(105.620003F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(106.435997F, -362.450012F), new Vector2(107.384003F, -362.696014F), new Vector2(108.463997F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(109.543999F, -362.696014F), new Vector2(110.491997F, -362.444F), new Vector2(111.307999F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(112.124001F, -361.436005F), new Vector2(112.760002F, -360.746002F), new Vector2(113.216003F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(113.671997F, -358.993988F), new Vector2(113.900002F, -357.980011F), new Vector2(113.900002F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(113.900002F, -355.700012F), new Vector2(113.671997F, -354.697998F), new Vector2(113.216003F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(112.760002F, -352.946014F), new Vector2(112.124001F, -352.256012F), new Vector2(111.307999F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(110.491997F, -351.247986F), new Vector2(109.543999F, -350.996002F), new Vector2(108.463997F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(107.407997F, -350.996002F), new Vector2(106.466003F, -351.242004F), new Vector2(105.638F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(111.452003F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(112.484001F, -349.286011F), new Vector2(113.311996F, -350.036011F), new Vector2(113.935997F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(114.559998F, -351.955994F), new Vector2(114.907997F, -353.048004F), new Vector2(114.980003F, -354.272003F));
+ builder.AddLine(new Vector2(114.980003F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(114.907997F, -360.667999F), new Vector2(114.554001F, -361.765991F), new Vector2(113.917999F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(113.281998F, -363.661987F), new Vector2(112.447998F, -364.406006F), new Vector2(111.416F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(110.384003F, -365.485992F), new Vector2(109.220001F, -365.756012F), new Vector2(107.924004F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(106.363998F, -365.756012F), new Vector2(104.959999F, -365.359985F), new Vector2(103.711998F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(102.463997F, -363.776001F), new Vector2(101.473999F, -362.708008F), new Vector2(100.741997F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(100.010002F, -360.019989F), new Vector2(99.6439972F, -358.507996F), new Vector2(99.6439972F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(99.6439972F, -355.14801F), new Vector2(100.010002F, -353.635986F), new Vector2(100.741997F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(101.473999F, -350.947998F), new Vector2(102.463997F, -349.885986F), new Vector2(103.711998F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(104.959999F, -348.325989F), new Vector2(106.363998F, -347.936005F), new Vector2(107.924004F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(109.244003F, -347.936005F), new Vector2(110.419998F, -348.205994F), new Vector2(111.452003F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0843()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(84.2360001F, -348.29599F));
+ builder.AddLine(new Vector2(84.2360001F, -365.395996F));
+ builder.AddLine(new Vector2(80.9960022F, -365.395996F));
+ builder.AddLine(new Vector2(80.9960022F, -348.29599F));
+ builder.AddLine(new Vector2(84.2360001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(96.3320007F, -348.29599F));
+ builder.AddLine(new Vector2(96.3320007F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(96.3320007F, -360.09201F), new Vector2(96.0439987F, -361.201996F), new Vector2(95.4680023F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(94.8919983F, -363.290009F), new Vector2(94.1060028F, -364.135986F), new Vector2(93.1100006F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(92.1139984F, -365.432007F), new Vector2(90.9680023F, -365.756012F), new Vector2(89.6719971F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(88.3759995F, -365.756012F), new Vector2(87.211998F, -365.462006F), new Vector2(86.1800003F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(85.1480026F, -364.286011F), new Vector2(84.3440018F, -363.488007F), new Vector2(83.7679977F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(83.1920013F, -361.471985F), new Vector2(82.9039993F, -360.320007F), new Vector2(82.9039993F, -359.023987F));
+ builder.AddLine(new Vector2(84.2360001F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(84.2360001F, -359.131989F), new Vector2(84.4280014F, -359.899994F), new Vector2(84.8119965F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(85.1959991F, -361.243988F), new Vector2(85.723999F, -361.772003F), new Vector2(86.3960037F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(87.0680008F, -362.540009F), new Vector2(87.8359985F, -362.731995F), new Vector2(88.6999969F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(89.9960022F, -362.731995F), new Vector2(91.0459976F, -362.312012F), new Vector2(91.8499985F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(92.6539993F, -360.631989F), new Vector2(93.0559998F, -359.563995F), new Vector2(93.0559998F, -358.268005F));
+ builder.AddLine(new Vector2(93.0559998F, -348.29599F));
+ builder.AddLine(new Vector2(96.3320007F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0844()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(76.064003F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(76.447998F, -369.806F), new Vector2(76.6399994F, -370.303986F), new Vector2(76.6399994F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(76.6399994F, -371.480011F), new Vector2(76.447998F, -371.966003F), new Vector2(76.064003F, -372.362F));
+ builder.AddCubicBezier(new Vector2(75.6800003F, -372.757996F), new Vector2(75.1880035F, -372.955994F), new Vector2(74.5879974F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(73.987999F, -372.955994F), new Vector2(73.4960022F, -372.757996F), new Vector2(73.1119995F, -372.362F));
+ builder.AddCubicBezier(new Vector2(72.7279968F, -371.966003F), new Vector2(72.5360031F, -371.480011F), new Vector2(72.5360031F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(72.5360031F, -370.303986F), new Vector2(72.7279968F, -369.806F), new Vector2(73.1119995F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(73.4960022F, -369.014008F), new Vector2(73.987999F, -368.81601F), new Vector2(74.5879974F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(75.1880035F, -368.81601F), new Vector2(75.6800003F, -369.014008F), new Vector2(76.064003F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(76.2080002F, -348.29599F));
+ builder.AddLine(new Vector2(76.2080002F, -365.395996F));
+ builder.AddLine(new Vector2(72.9319992F, -365.395996F));
+ builder.AddLine(new Vector2(72.9319992F, -348.29599F));
+ builder.AddLine(new Vector2(76.2080002F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0845()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(52.987999F, -348.29599F));
+ builder.AddLine(new Vector2(57.9560013F, -361.18399F));
+ builder.AddLine(new Vector2(56.7680016F, -361.18399F));
+ builder.AddLine(new Vector2(61.7000008F, -348.29599F));
+ builder.AddLine(new Vector2(63.6080017F, -348.29599F));
+ builder.AddLine(new Vector2(70.3399963F, -365.395996F));
+ builder.AddLine(new Vector2(66.9560013F, -365.395996F));
+ builder.AddLine(new Vector2(62.0600014F, -352.075989F));
+ builder.AddLine(new Vector2(63.1399994F, -352.075989F));
+ builder.AddLine(new Vector2(58.2799988F, -365.395996F));
+ builder.AddLine(new Vector2(56.4080009F, -365.395996F));
+ builder.AddLine(new Vector2(51.5480003F, -352.075989F));
+ builder.AddLine(new Vector2(52.6279984F, -352.075989F));
+ builder.AddLine(new Vector2(47.7319984F, -365.395996F));
+ builder.AddLine(new Vector2(44.3479996F, -365.395996F));
+ builder.AddLine(new Vector2(51.0800018F, -348.29599F));
+ builder.AddLine(new Vector2(52.987999F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0846()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(28.0760002F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(28.8439999F, -362.312012F), new Vector2(29.8279991F, -362.696014F), new Vector2(31.0279999F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(31.6040001F, -362.696014F), new Vector2(32.1080017F, -362.612F), new Vector2(32.5400009F, -362.444F));
+ builder.AddCubicBezier(new Vector2(32.9720001F, -362.276001F), new Vector2(33.368F, -362F), new Vector2(33.7280006F, -361.615997F));
+ builder.AddLine(new Vector2(35.8520012F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(35.2519989F, -364.507996F), new Vector2(34.6040001F, -365.006012F), new Vector2(33.9080009F, -365.306F));
+ builder.AddCubicBezier(new Vector2(33.2120018F, -365.605988F), new Vector2(32.4319992F, -365.756012F), new Vector2(31.5680008F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(29.6720009F, -365.756012F), new Vector2(28.2199993F, -365.108002F), new Vector2(27.2119999F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(26.2040005F, -362.515991F), new Vector2(25.7000008F, -360.776001F), new Vector2(25.7000008F, -358.59201F));
+ builder.AddLine(new Vector2(26.9239998F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(26.9239998F, -359.600006F), new Vector2(27.3080006F, -360.776001F), new Vector2(28.0760002F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(26.9239998F, -348.29599F));
+ builder.AddLine(new Vector2(26.9239998F, -365.395996F));
+ builder.AddLine(new Vector2(23.684F, -365.395996F));
+ builder.AddLine(new Vector2(23.684F, -348.29599F));
+ builder.AddLine(new Vector2(26.9239998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0847()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(16.0879993F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(17.2639999F, -349.196014F), new Vector2(18.2719994F, -349.928009F), new Vector2(19.1119995F, -350.888F));
+ builder.AddLine(new Vector2(17.0240002F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(16.448F, -352.339996F), new Vector2(15.7580004F, -351.835999F), new Vector2(14.9540005F, -351.5F));
+ builder.AddCubicBezier(new Vector2(14.1499996F, -351.164001F), new Vector2(13.2679996F, -350.996002F), new Vector2(12.3079996F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(11.1560001F, -350.996002F), new Vector2(10.1359997F, -351.242004F), new Vector2(9.24800014F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(8.35999966F, -352.226013F), new Vector2(7.67600012F, -352.921997F), new Vector2(7.1960001F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(6.71600008F, -354.721985F), new Vector2(6.47599983F, -355.772003F), new Vector2(6.47599983F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(6.47599983F, -358.14801F), new Vector2(6.704F, -359.167999F), new Vector2(7.15999985F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(7.61600018F, -360.895996F), new Vector2(8.26399994F, -361.567993F), new Vector2(9.10400009F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(9.94400024F, -362.528015F), new Vector2(10.9160004F, -362.768005F), new Vector2(12.0200005F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(13.0760002F, -362.768005F), new Vector2(13.9759998F, -362.54599F), new Vector2(14.7200003F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(15.4639997F, -361.65799F), new Vector2(16.0400009F, -361.033997F), new Vector2(16.448F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(16.8560009F, -359.425995F), new Vector2(17.0599995F, -358.447998F), new Vector2(17.0599995F, -357.29599F));
+ builder.AddLine(new Vector2(18.2479992F, -358.339996F));
+ builder.AddLine(new Vector2(5.53999996F, -358.339996F));
+ builder.AddLine(new Vector2(5.53999996F, -355.640015F));
+ builder.AddLine(new Vector2(19.9759998F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(20.0480003F, -355.976013F), new Vector2(20.0960007F, -356.282013F), new Vector2(20.1200008F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(20.1439991F, -356.834015F), new Vector2(20.1560001F, -357.09201F), new Vector2(20.1560001F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(20.1560001F, -358.963989F), new Vector2(19.8139992F, -360.415985F), new Vector2(19.1299992F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(18.4459991F, -362.959991F), new Vector2(17.4920006F, -363.955994F), new Vector2(16.2679996F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(15.0439997F, -365.395996F), new Vector2(13.6520004F, -365.756012F), new Vector2(12.092F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(10.4359999F, -365.756012F), new Vector2(8.94200039F, -365.365997F), new Vector2(7.61000013F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(6.27799988F, -363.806F), new Vector2(5.22200012F, -362.743988F), new Vector2(4.44199991F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(3.66199994F, -360.056F), new Vector2(3.27200007F, -358.544006F), new Vector2(3.27200007F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(3.27200007F, -355.160004F), new Vector2(3.66799998F, -353.635986F), new Vector2(4.46000004F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(5.25199986F, -350.947998F), new Vector2(6.32600021F, -349.885986F), new Vector2(7.68200016F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(9.03800011F, -348.325989F), new Vector2(10.5799999F, -347.936005F), new Vector2(12.3079996F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(13.6520004F, -347.936005F), new Vector2(14.9119997F, -348.187988F), new Vector2(16.0879993F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0848()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-0.328000009F, -374F));
+ builder.AddLine(new Vector2(-3.60400009F, -374F));
+ builder.AddLine(new Vector2(-3.60400009F, -361.220001F));
+ builder.AddLine(new Vector2(-2.9920001F, -357.079987F));
+ builder.AddLine(new Vector2(-3.60400009F, -352.903992F));
+ builder.AddLine(new Vector2(-3.60400009F, -348.29599F));
+ builder.AddLine(new Vector2(-0.328000009F, -348.29599F));
+ builder.AddLine(new Vector2(-0.328000009F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-11.6499996F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-12.4779997F, -352.226013F), new Vector2(-13.1260004F, -352.915985F), new Vector2(-13.5939999F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(-14.0620003F, -354.691986F), new Vector2(-14.2959995F, -355.712006F), new Vector2(-14.2959995F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-14.2959995F, -358.015991F), new Vector2(-14.0620003F, -359.029999F), new Vector2(-13.5939999F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(-13.1260004F, -360.782013F), new Vector2(-12.4840002F, -361.466003F), new Vector2(-11.6680002F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-10.8520002F, -362.450012F), new Vector2(-9.90400028F, -362.696014F), new Vector2(-8.82400036F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-7.74399996F, -362.696014F), new Vector2(-6.796F, -362.444F), new Vector2(-5.98000002F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-5.16400003F, -361.436005F), new Vector2(-4.52799988F, -360.746002F), new Vector2(-4.07200003F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-3.61599994F, -358.993988F), new Vector2(-3.38800001F, -357.980011F), new Vector2(-3.38800001F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-3.38800001F, -355.700012F), new Vector2(-3.61599994F, -354.697998F), new Vector2(-4.07200003F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-4.52799988F, -352.946014F), new Vector2(-5.16400003F, -352.256012F), new Vector2(-5.98000002F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-6.796F, -351.247986F), new Vector2(-7.74399996F, -350.996002F), new Vector2(-8.82400036F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-9.88000011F, -350.996002F), new Vector2(-10.8219995F, -351.242004F), new Vector2(-11.6499996F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-5.83599997F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-4.8039999F, -349.286011F), new Vector2(-3.97600007F, -350.036011F), new Vector2(-3.352F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-2.72799993F, -351.955994F), new Vector2(-2.38000011F, -353.048004F), new Vector2(-2.30800009F, -354.272003F));
+ builder.AddLine(new Vector2(-2.30800009F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-2.38000011F, -360.667999F), new Vector2(-2.73399997F, -361.765991F), new Vector2(-3.36999989F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-4.00600004F, -363.661987F), new Vector2(-4.84000015F, -364.406006F), new Vector2(-5.87200022F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-6.90399981F, -365.485992F), new Vector2(-8.06799984F, -365.756012F), new Vector2(-9.36400032F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-10.9239998F, -365.756012F), new Vector2(-12.3280001F, -365.359985F), new Vector2(-13.5760002F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-14.8240004F, -363.776001F), new Vector2(-15.8140001F, -362.708008F), new Vector2(-16.5459995F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-17.2779999F, -360.019989F), new Vector2(-17.6439991F, -358.507996F), new Vector2(-17.6439991F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-17.6439991F, -355.14801F), new Vector2(-17.2779999F, -353.635986F), new Vector2(-16.5459995F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-15.8140001F, -350.947998F), new Vector2(-14.8240004F, -349.885986F), new Vector2(-13.5760002F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-12.3280001F, -348.325989F), new Vector2(-10.9239998F, -347.936005F), new Vector2(-9.36400032F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-8.04399967F, -347.936005F), new Vector2(-6.86800003F, -348.205994F), new Vector2(-5.83599997F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0849()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-33.0519981F, -348.29599F));
+ builder.AddLine(new Vector2(-33.0519981F, -365.395996F));
+ builder.AddLine(new Vector2(-36.2919998F, -365.395996F));
+ builder.AddLine(new Vector2(-36.2919998F, -348.29599F));
+ builder.AddLine(new Vector2(-33.0519981F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-20.9559994F, -348.29599F));
+ builder.AddLine(new Vector2(-20.9559994F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-20.9559994F, -360.09201F), new Vector2(-21.2439995F, -361.201996F), new Vector2(-21.8199997F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-22.3959999F, -363.290009F), new Vector2(-23.1819992F, -364.135986F), new Vector2(-24.1779995F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-25.1739998F, -365.432007F), new Vector2(-26.3199997F, -365.756012F), new Vector2(-27.6159992F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-28.9120007F, -365.756012F), new Vector2(-30.0760002F, -365.462006F), new Vector2(-31.1079998F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-32.1399994F, -364.286011F), new Vector2(-32.9440002F, -363.488007F), new Vector2(-33.5200005F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-34.0960007F, -361.471985F), new Vector2(-34.3839989F, -360.320007F), new Vector2(-34.3839989F, -359.023987F));
+ builder.AddLine(new Vector2(-33.0519981F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-33.0519981F, -359.131989F), new Vector2(-32.8600006F, -359.899994F), new Vector2(-32.4760017F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-32.0919991F, -361.243988F), new Vector2(-31.5639992F, -361.772003F), new Vector2(-30.8920002F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-30.2199993F, -362.540009F), new Vector2(-29.4519997F, -362.731995F), new Vector2(-28.5879993F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-27.2919998F, -362.731995F), new Vector2(-26.2420006F, -362.312012F), new Vector2(-25.4379997F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-24.6340008F, -360.631989F), new Vector2(-24.2320004F, -359.563995F), new Vector2(-24.2320004F, -358.268005F));
+ builder.AddLine(new Vector2(-24.2320004F, -348.29599F));
+ builder.AddLine(new Vector2(-20.9559994F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0850()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-44.1759987F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-43.0719986F, -349.537994F), new Vector2(-42.2080002F, -350.40799F), new Vector2(-41.5839996F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(-40.9599991F, -352.664001F), new Vector2(-40.6479988F, -353.971985F), new Vector2(-40.6479988F, -355.459991F));
+ builder.AddLine(new Vector2(-40.6479988F, -365.395996F));
+ builder.AddLine(new Vector2(-43.8880005F, -365.395996F));
+ builder.AddLine(new Vector2(-43.8880005F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(-43.8880005F, -354.187988F), new Vector2(-44.2480011F, -353.078003F), new Vector2(-44.9679985F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(-45.6879997F, -351.470001F), new Vector2(-46.6839981F, -351.067993F), new Vector2(-47.9560013F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-48.7960014F, -351.067993F), new Vector2(-49.5279999F, -351.247986F), new Vector2(-50.1520004F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(-50.776001F, -351.967987F), new Vector2(-51.25F, -352.48999F), new Vector2(-51.5740013F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(-51.8979988F, -353.858002F), new Vector2(-52.0600014F, -354.667999F), new Vector2(-52.0600014F, -355.604004F));
+ builder.AddLine(new Vector2(-52.0600014F, -365.395996F));
+ builder.AddLine(new Vector2(-55.2999992F, -365.395996F));
+ builder.AddLine(new Vector2(-55.2999992F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(-55.2999992F, -353.971985F), new Vector2(-54.987999F, -352.664001F), new Vector2(-54.3639984F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(-53.7400017F, -350.40799F), new Vector2(-52.8699989F, -349.537994F), new Vector2(-51.7540016F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-50.6380005F, -348.313995F), new Vector2(-49.3720016F, -348.007996F), new Vector2(-47.9560013F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(-46.5400009F, -348.007996F), new Vector2(-45.2799988F, -348.313995F), new Vector2(-44.1759987F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0851()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-76.5039978F, -341.131989F));
+ builder.AddLine(new Vector2(-73.2639999F, -348.152008F));
+ builder.AddLine(new Vector2(-75.0999985F, -351.463989F));
+ builder.AddLine(new Vector2(-80.1039963F, -341.131989F));
+ builder.AddLine(new Vector2(-76.5039978F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-73.2639999F, -348.152008F));
+ builder.AddLine(new Vector2(-65.2720032F, -365.395996F));
+ builder.AddLine(new Vector2(-68.8720016F, -365.395996F));
+ builder.AddLine(new Vector2(-74.6679993F, -351.895996F));
+ builder.AddLine(new Vector2(-73.5159988F, -351.895996F));
+ builder.AddLine(new Vector2(-79.0240021F, -365.395996F));
+ builder.AddLine(new Vector2(-82.6240005F, -365.395996F));
+ builder.AddLine(new Vector2(-75.2080002F, -348.152008F));
+ builder.AddLine(new Vector2(-73.2639999F, -348.152008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0852()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-85.5759964F, -348.29599F));
+ builder.AddLine(new Vector2(-85.5759964F, -374F));
+ builder.AddLine(new Vector2(-88.8160019F, -374F));
+ builder.AddLine(new Vector2(-88.8160019F, -348.29599F));
+ builder.AddLine(new Vector2(-85.5759964F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0853()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-91.9840012F, -362.444F));
+ builder.AddLine(new Vector2(-91.9840012F, -365.395996F));
+ builder.AddLine(new Vector2(-103.648003F, -365.395996F));
+ builder.AddLine(new Vector2(-103.648003F, -362.444F));
+ builder.AddLine(new Vector2(-91.9840012F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-96.1959991F, -348.29599F));
+ builder.AddLine(new Vector2(-96.1959991F, -372.559998F));
+ builder.AddLine(new Vector2(-99.435997F, -372.559998F));
+ builder.AddLine(new Vector2(-99.435997F, -348.29599F));
+ builder.AddLine(new Vector2(-96.1959991F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0854()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-118.335999F, -348.29599F));
+ builder.AddLine(new Vector2(-118.335999F, -365.395996F));
+ builder.AddLine(new Vector2(-121.575996F, -365.395996F));
+ builder.AddLine(new Vector2(-121.575996F, -348.29599F));
+ builder.AddLine(new Vector2(-118.335999F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-106.239998F, -348.29599F));
+ builder.AddLine(new Vector2(-106.239998F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-106.239998F, -360.09201F), new Vector2(-106.528F, -361.201996F), new Vector2(-107.103996F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-107.68F, -363.290009F), new Vector2(-108.466003F, -364.135986F), new Vector2(-109.461998F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-110.458F, -365.432007F), new Vector2(-111.603996F, -365.756012F), new Vector2(-112.900002F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-114.195999F, -365.756012F), new Vector2(-115.360001F, -365.462006F), new Vector2(-116.391998F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-117.424004F, -364.286011F), new Vector2(-118.227997F, -363.488007F), new Vector2(-118.804001F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-119.379997F, -361.471985F), new Vector2(-119.667999F, -360.320007F), new Vector2(-119.667999F, -359.023987F));
+ builder.AddLine(new Vector2(-118.335999F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-118.335999F, -359.131989F), new Vector2(-118.143997F, -359.899994F), new Vector2(-117.760002F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-117.375999F, -361.243988F), new Vector2(-116.848F, -361.772003F), new Vector2(-116.176003F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-115.503998F, -362.540009F), new Vector2(-114.736F, -362.731995F), new Vector2(-113.872002F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-112.575996F, -362.731995F), new Vector2(-111.526001F, -362.312012F), new Vector2(-110.722F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-109.917999F, -360.631989F), new Vector2(-109.515999F, -359.563995F), new Vector2(-109.515999F, -358.268005F));
+ builder.AddLine(new Vector2(-109.515999F, -348.29599F));
+ builder.AddLine(new Vector2(-106.239998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0855()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-129.171997F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-127.996002F, -349.196014F), new Vector2(-126.987999F, -349.928009F), new Vector2(-126.148003F, -350.888F));
+ builder.AddLine(new Vector2(-128.235992F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-128.811996F, -352.339996F), new Vector2(-129.501999F, -351.835999F), new Vector2(-130.306F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-131.110001F, -351.164001F), new Vector2(-131.992004F, -350.996002F), new Vector2(-132.951996F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-134.104004F, -350.996002F), new Vector2(-135.123993F, -351.242004F), new Vector2(-136.011993F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-136.899994F, -352.226013F), new Vector2(-137.584F, -352.921997F), new Vector2(-138.063995F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-138.544006F, -354.721985F), new Vector2(-138.783997F, -355.772003F), new Vector2(-138.783997F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-138.783997F, -358.14801F), new Vector2(-138.556F, -359.167999F), new Vector2(-138.100006F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-137.643997F, -360.895996F), new Vector2(-136.996002F, -361.567993F), new Vector2(-136.156006F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-135.315994F, -362.528015F), new Vector2(-134.343994F, -362.768005F), new Vector2(-133.240005F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-132.184006F, -362.768005F), new Vector2(-131.283997F, -362.54599F), new Vector2(-130.539993F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-129.796005F, -361.65799F), new Vector2(-129.220001F, -361.033997F), new Vector2(-128.811996F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-128.404007F, -359.425995F), new Vector2(-128.199997F, -358.447998F), new Vector2(-128.199997F, -357.29599F));
+ builder.AddLine(new Vector2(-127.012001F, -358.339996F));
+ builder.AddLine(new Vector2(-139.720001F, -358.339996F));
+ builder.AddLine(new Vector2(-139.720001F, -355.640015F));
+ builder.AddLine(new Vector2(-125.283997F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-125.211998F, -355.976013F), new Vector2(-125.164001F, -356.282013F), new Vector2(-125.139999F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-125.115997F, -356.834015F), new Vector2(-125.103996F, -357.09201F), new Vector2(-125.103996F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-125.103996F, -358.963989F), new Vector2(-125.445999F, -360.415985F), new Vector2(-126.129997F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-126.814003F, -362.959991F), new Vector2(-127.767998F, -363.955994F), new Vector2(-128.992004F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-130.216003F, -365.395996F), new Vector2(-131.608002F, -365.756012F), new Vector2(-133.167999F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-134.824005F, -365.756012F), new Vector2(-136.317993F, -365.365997F), new Vector2(-137.649994F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-138.981995F, -363.806F), new Vector2(-140.037994F, -362.743988F), new Vector2(-140.817993F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-141.598007F, -360.056F), new Vector2(-141.988007F, -358.544006F), new Vector2(-141.988007F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-141.988007F, -355.160004F), new Vector2(-141.591995F, -353.635986F), new Vector2(-140.800003F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-140.007996F, -350.947998F), new Vector2(-138.934006F, -349.885986F), new Vector2(-137.578003F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-136.222F, -348.325989F), new Vector2(-134.679993F, -347.936005F), new Vector2(-132.951996F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-131.608002F, -347.936005F), new Vector2(-130.348007F, -348.187988F), new Vector2(-129.171997F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0856()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-150.376007F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(-149.608002F, -362.312012F), new Vector2(-148.623993F, -362.696014F), new Vector2(-147.423996F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-146.848007F, -362.696014F), new Vector2(-146.343994F, -362.612F), new Vector2(-145.912003F, -362.444F));
+ builder.AddCubicBezier(new Vector2(-145.479996F, -362.276001F), new Vector2(-145.084F, -362F), new Vector2(-144.723999F, -361.615997F));
+ builder.AddLine(new Vector2(-142.600006F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-143.199997F, -364.507996F), new Vector2(-143.848007F, -365.006012F), new Vector2(-144.544006F, -365.306F));
+ builder.AddCubicBezier(new Vector2(-145.240005F, -365.605988F), new Vector2(-146.020004F, -365.756012F), new Vector2(-146.884003F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-148.779999F, -365.756012F), new Vector2(-150.231995F, -365.108002F), new Vector2(-151.240005F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-152.248001F, -362.515991F), new Vector2(-152.751999F, -360.776001F), new Vector2(-152.751999F, -358.59201F));
+ builder.AddLine(new Vector2(-151.528F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(-151.528F, -359.600006F), new Vector2(-151.143997F, -360.776001F), new Vector2(-150.376007F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-151.528F, -348.29599F));
+ builder.AddLine(new Vector2(-151.528F, -365.395996F));
+ builder.AddLine(new Vector2(-154.768005F, -365.395996F));
+ builder.AddLine(new Vector2(-154.768005F, -348.29599F));
+ builder.AddLine(new Vector2(-151.528F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0857()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-164.884003F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(-164.115997F, -362.312012F), new Vector2(-163.132004F, -362.696014F), new Vector2(-161.932007F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-161.356003F, -362.696014F), new Vector2(-160.852005F, -362.612F), new Vector2(-160.419998F, -362.444F));
+ builder.AddCubicBezier(new Vector2(-159.988007F, -362.276001F), new Vector2(-159.591995F, -362F), new Vector2(-159.231995F, -361.615997F));
+ builder.AddLine(new Vector2(-157.108002F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-157.707993F, -364.507996F), new Vector2(-158.356003F, -365.006012F), new Vector2(-159.052002F, -365.306F));
+ builder.AddCubicBezier(new Vector2(-159.748001F, -365.605988F), new Vector2(-160.528F, -365.756012F), new Vector2(-161.391998F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-163.287994F, -365.756012F), new Vector2(-164.740005F, -365.108002F), new Vector2(-165.748001F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-166.755997F, -362.515991F), new Vector2(-167.259995F, -360.776001F), new Vector2(-167.259995F, -358.59201F));
+ builder.AddLine(new Vector2(-166.035995F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(-166.035995F, -359.600006F), new Vector2(-165.651993F, -360.776001F), new Vector2(-164.884003F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-166.035995F, -348.29599F));
+ builder.AddLine(new Vector2(-166.035995F, -365.395996F));
+ builder.AddLine(new Vector2(-169.276001F, -365.395996F));
+ builder.AddLine(new Vector2(-169.276001F, -348.29599F));
+ builder.AddLine(new Vector2(-166.035995F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0858()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-177.160004F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-176.056F, -349.537994F), new Vector2(-175.192001F, -350.40799F), new Vector2(-174.567993F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(-173.944F, -352.664001F), new Vector2(-173.632004F, -353.971985F), new Vector2(-173.632004F, -355.459991F));
+ builder.AddLine(new Vector2(-173.632004F, -365.395996F));
+ builder.AddLine(new Vector2(-176.871994F, -365.395996F));
+ builder.AddLine(new Vector2(-176.871994F, -355.604004F));
+ builder.AddCubicBezier(new Vector2(-176.871994F, -354.187988F), new Vector2(-177.231995F, -353.078003F), new Vector2(-177.951996F, -352.273987F));
+ builder.AddCubicBezier(new Vector2(-178.671997F, -351.470001F), new Vector2(-179.667999F, -351.067993F), new Vector2(-180.940002F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-181.779999F, -351.067993F), new Vector2(-182.511993F, -351.247986F), new Vector2(-183.136002F, -351.608002F));
+ builder.AddCubicBezier(new Vector2(-183.759995F, -351.967987F), new Vector2(-184.233994F, -352.48999F), new Vector2(-184.557999F, -353.174011F));
+ builder.AddCubicBezier(new Vector2(-184.882004F, -353.858002F), new Vector2(-185.044006F, -354.667999F), new Vector2(-185.044006F, -355.604004F));
+ builder.AddLine(new Vector2(-185.044006F, -365.395996F));
+ builder.AddLine(new Vector2(-188.283997F, -365.395996F));
+ builder.AddLine(new Vector2(-188.283997F, -355.459991F));
+ builder.AddCubicBezier(new Vector2(-188.283997F, -353.971985F), new Vector2(-187.972F, -352.664001F), new Vector2(-187.348007F, -351.536011F));
+ builder.AddCubicBezier(new Vector2(-186.723999F, -350.40799F), new Vector2(-185.854004F, -349.537994F), new Vector2(-184.738007F, -348.925995F));
+ builder.AddCubicBezier(new Vector2(-183.621994F, -348.313995F), new Vector2(-182.356003F, -348.007996F), new Vector2(-180.940002F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(-179.524002F, -348.007996F), new Vector2(-178.264008F, -348.313995F), new Vector2(-177.160004F, -348.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0859()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-193.953995F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-192.813995F, -349.196014F), new Vector2(-191.848007F, -349.903992F), new Vector2(-191.056F, -350.81601F));
+ builder.AddLine(new Vector2(-193.179993F, -352.976013F));
+ builder.AddCubicBezier(new Vector2(-193.731995F, -352.35199F), new Vector2(-194.386002F, -351.877991F), new Vector2(-195.141998F, -351.553986F));
+ builder.AddCubicBezier(new Vector2(-195.897995F, -351.230011F), new Vector2(-196.731995F, -351.067993F), new Vector2(-197.643997F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-198.723999F, -351.067993F), new Vector2(-199.684006F, -351.320007F), new Vector2(-200.524002F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-201.363998F, -352.328003F), new Vector2(-202.024002F, -353.011993F), new Vector2(-202.503998F, -353.876007F));
+ builder.AddCubicBezier(new Vector2(-202.983994F, -354.73999F), new Vector2(-203.223999F, -355.735992F), new Vector2(-203.223999F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-203.223999F, -357.992004F), new Vector2(-202.983994F, -358.988007F), new Vector2(-202.503998F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-202.024002F, -360.716003F), new Vector2(-201.363998F, -361.394012F), new Vector2(-200.524002F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-199.684006F, -362.377991F), new Vector2(-198.723999F, -362.623993F), new Vector2(-197.643997F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-196.755997F, -362.623993F), new Vector2(-195.927994F, -362.462006F), new Vector2(-195.160004F, -362.138F));
+ builder.AddCubicBezier(new Vector2(-194.391998F, -361.813995F), new Vector2(-193.744003F, -361.339996F), new Vector2(-193.216003F, -360.716003F));
+ builder.AddLine(new Vector2(-191.056F, -362.876007F));
+ builder.AddCubicBezier(new Vector2(-191.871994F, -363.812012F), new Vector2(-192.843994F, -364.526001F), new Vector2(-193.972F, -365.018005F));
+ builder.AddCubicBezier(new Vector2(-195.100006F, -365.51001F), new Vector2(-196.324005F, -365.756012F), new Vector2(-197.643997F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-199.324005F, -365.756012F), new Vector2(-200.841995F, -365.365997F), new Vector2(-202.197998F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-203.554001F, -363.806F), new Vector2(-204.621994F, -362.743988F), new Vector2(-205.401993F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-206.182007F, -360.056F), new Vector2(-206.572006F, -358.544006F), new Vector2(-206.572006F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-206.572006F, -355.208008F), new Vector2(-206.182007F, -353.701996F), new Vector2(-205.401993F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-204.621994F, -350.98999F), new Vector2(-203.554001F, -349.915985F), new Vector2(-202.197998F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-200.841995F, -348.332001F), new Vector2(-199.324005F, -347.936005F), new Vector2(-197.643997F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-196.324005F, -347.936005F), new Vector2(-195.093994F, -348.187988F), new Vector2(-193.953995F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0860()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-218.253998F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(-217.113998F, -350.276001F), new Vector2(-216.544006F, -351.548004F), new Vector2(-216.544006F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(-216.544006F, -354.212006F), new Vector2(-216.766006F, -355.063995F), new Vector2(-217.210007F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(-217.654007F, -356.359985F), new Vector2(-218.223999F, -356.876007F), new Vector2(-218.919998F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(-219.615997F, -357.644012F), new Vector2(-220.348007F, -357.950012F), new Vector2(-221.115997F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(-221.884003F, -358.406006F), new Vector2(-222.621994F, -358.627991F), new Vector2(-223.330002F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(-224.037994F, -359.059998F), new Vector2(-224.608002F, -359.324005F), new Vector2(-225.039993F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(-225.472F, -359.947998F), new Vector2(-225.688004F, -360.391998F), new Vector2(-225.688004F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(-225.688004F, -361.519989F), new Vector2(-225.442001F, -361.963989F), new Vector2(-224.949997F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-224.457993F, -362.635986F), new Vector2(-223.744003F, -362.803986F), new Vector2(-222.807999F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(-221.919998F, -362.803986F), new Vector2(-221.128006F, -362.635986F), new Vector2(-220.432007F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-219.735992F, -361.963989F), new Vector2(-219.136002F, -361.484009F), new Vector2(-218.632004F, -360.859985F));
+ builder.AddLine(new Vector2(-216.544006F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(-217.216003F, -363.884003F), new Vector2(-218.074005F, -364.585999F), new Vector2(-219.117996F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(-220.162003F, -365.522003F), new Vector2(-221.356003F, -365.756012F), new Vector2(-222.699997F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-223.972F, -365.756012F), new Vector2(-225.063995F, -365.552002F), new Vector2(-225.975998F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(-226.888F, -364.735992F), new Vector2(-227.589996F, -364.153992F), new Vector2(-228.082001F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(-228.574005F, -362.641998F), new Vector2(-228.820007F, -361.747986F), new Vector2(-228.820007F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(-228.820007F, -359.68399F), new Vector2(-228.598007F, -358.850006F), new Vector2(-228.154007F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(-227.710007F, -357.578003F), new Vector2(-227.139999F, -357.079987F), new Vector2(-226.444F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(-225.748001F, -356.359985F), new Vector2(-225.009995F, -356.071991F), new Vector2(-224.229996F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(-223.449997F, -355.640015F), new Vector2(-222.712006F, -355.417999F), new Vector2(-222.016006F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(-221.320007F, -354.962006F), new Vector2(-220.75F, -354.674011F), new Vector2(-220.306F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(-219.862F, -353.977997F), new Vector2(-219.639999F, -353.492004F), new Vector2(-219.639999F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(-219.639999F, -352.243988F), new Vector2(-219.916F, -351.757996F), new Vector2(-220.468002F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(-221.020004F, -351.062012F), new Vector2(-221.800003F, -350.888F), new Vector2(-222.807999F, -350.888F));
+ builder.AddCubicBezier(new Vector2(-223.815994F, -350.888F), new Vector2(-224.727997F, -351.074005F), new Vector2(-225.544006F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(-226.360001F, -351.817993F), new Vector2(-227.080002F, -352.388F), new Vector2(-227.703995F, -353.156006F));
+ builder.AddLine(new Vector2(-229.792007F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-229.264008F, -350.420013F), new Vector2(-228.645996F, -349.862F), new Vector2(-227.938004F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(-227.229996F, -348.925995F), new Vector2(-226.444F, -348.56601F), new Vector2(-225.580002F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(-224.716003F, -348.062012F), new Vector2(-223.804001F, -347.936005F), new Vector2(-222.843994F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-220.923996F, -347.936005F), new Vector2(-219.393997F, -348.403992F), new Vector2(-218.253998F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0861()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-233.212006F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-232.828003F, -369.806F), new Vector2(-232.636002F, -370.303986F), new Vector2(-232.636002F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-232.636002F, -371.480011F), new Vector2(-232.828003F, -371.966003F), new Vector2(-233.212006F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-233.595993F, -372.757996F), new Vector2(-234.087997F, -372.955994F), new Vector2(-234.688004F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(-235.287994F, -372.955994F), new Vector2(-235.779999F, -372.757996F), new Vector2(-236.164001F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-236.548004F, -371.966003F), new Vector2(-236.740005F, -371.480011F), new Vector2(-236.740005F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-236.740005F, -370.303986F), new Vector2(-236.548004F, -369.806F), new Vector2(-236.164001F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-235.779999F, -369.014008F), new Vector2(-235.287994F, -368.81601F), new Vector2(-234.688004F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(-234.087997F, -368.81601F), new Vector2(-233.595993F, -369.014008F), new Vector2(-233.212006F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-233.067993F, -348.29599F));
+ builder.AddLine(new Vector2(-233.067993F, -365.395996F));
+ builder.AddLine(new Vector2(-236.343994F, -365.395996F));
+ builder.AddLine(new Vector2(-236.343994F, -348.29599F));
+ builder.AddLine(new Vector2(-233.067993F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0862()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-248.511993F, -348.29599F));
+ builder.AddLine(new Vector2(-248.511993F, -365.395996F));
+ builder.AddLine(new Vector2(-251.787994F, -365.395996F));
+ builder.AddLine(new Vector2(-251.787994F, -361.220001F));
+ builder.AddLine(new Vector2(-251.175995F, -357.079987F));
+ builder.AddLine(new Vector2(-251.787994F, -352.903992F));
+ builder.AddLine(new Vector2(-251.787994F, -348.29599F));
+ builder.AddLine(new Vector2(-248.511993F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-259.81601F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-260.656006F, -352.256012F), new Vector2(-261.309998F, -352.946014F), new Vector2(-261.778015F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-262.246002F, -354.697998F), new Vector2(-262.480011F, -355.712006F), new Vector2(-262.480011F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-262.480011F, -357.992004F), new Vector2(-262.246002F, -358.993988F), new Vector2(-261.778015F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-261.309998F, -360.746002F), new Vector2(-260.661987F, -361.436005F), new Vector2(-259.834015F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-259.006012F, -362.444F), new Vector2(-258.052002F, -362.696014F), new Vector2(-256.971985F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-255.891998F, -362.696014F), new Vector2(-254.949997F, -362.450012F), new Vector2(-254.145996F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-253.341995F, -361.466003F), new Vector2(-252.712006F, -360.776001F), new Vector2(-252.255997F, -359.888F));
+ builder.AddCubicBezier(new Vector2(-251.800003F, -359F), new Vector2(-251.572006F, -357.980011F), new Vector2(-251.572006F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-251.572006F, -355.123993F), new Vector2(-252.063995F, -353.726013F), new Vector2(-253.048004F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(-254.031998F, -351.541992F), new Vector2(-255.328003F, -350.996002F), new Vector2(-256.936005F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-258.015991F, -350.996002F), new Vector2(-258.976013F, -351.247986F), new Vector2(-259.81601F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-253.983994F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-252.951996F, -349.286011F), new Vector2(-252.130005F, -350.036011F), new Vector2(-251.518005F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-250.906006F, -351.955994F), new Vector2(-250.563995F, -353.048004F), new Vector2(-250.492004F, -354.272003F));
+ builder.AddLine(new Vector2(-250.492004F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-250.563995F, -360.667999F), new Vector2(-250.912003F, -361.765991F), new Vector2(-251.535995F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-252.160004F, -363.661987F), new Vector2(-252.981995F, -364.406006F), new Vector2(-254.001999F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-255.022003F, -365.485992F), new Vector2(-256.179993F, -365.756012F), new Vector2(-257.476013F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-259.059998F, -365.756012F), new Vector2(-260.481995F, -365.359985F), new Vector2(-261.742004F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-263.002014F, -363.776001F), new Vector2(-263.997986F, -362.708008F), new Vector2(-264.730011F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-265.462006F, -360.019989F), new Vector2(-265.828003F, -358.507996F), new Vector2(-265.828003F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-265.828003F, -355.14801F), new Vector2(-265.462006F, -353.635986F), new Vector2(-264.730011F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-263.997986F, -350.947998F), new Vector2(-263.002014F, -349.885986F), new Vector2(-261.742004F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-260.481995F, -348.325989F), new Vector2(-259.059998F, -347.936005F), new Vector2(-257.476013F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-256.179993F, -347.936005F), new Vector2(-255.016006F, -348.205994F), new Vector2(-253.983994F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0863()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-269.679993F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-269.29599F, -369.806F), new Vector2(-269.104004F, -370.303986F), new Vector2(-269.104004F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-269.104004F, -371.480011F), new Vector2(-269.29599F, -371.966003F), new Vector2(-269.679993F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-270.063995F, -372.757996F), new Vector2(-270.556F, -372.955994F), new Vector2(-271.156006F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(-271.756012F, -372.955994F), new Vector2(-272.247986F, -372.757996F), new Vector2(-272.631989F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-273.015991F, -371.966003F), new Vector2(-273.208008F, -371.480011F), new Vector2(-273.208008F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-273.208008F, -370.303986F), new Vector2(-273.015991F, -369.806F), new Vector2(-272.631989F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-272.247986F, -369.014008F), new Vector2(-271.756012F, -368.81601F), new Vector2(-271.156006F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(-270.556F, -368.81601F), new Vector2(-270.063995F, -369.014008F), new Vector2(-269.679993F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-269.536011F, -348.29599F));
+ builder.AddLine(new Vector2(-269.536011F, -365.395996F));
+ builder.AddLine(new Vector2(-272.812012F, -365.395996F));
+ builder.AddLine(new Vector2(-272.812012F, -348.29599F));
+ builder.AddLine(new Vector2(-269.536011F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0864()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-278.15799F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(-277.018005F, -350.276001F), new Vector2(-276.447998F, -351.548004F), new Vector2(-276.447998F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(-276.447998F, -354.212006F), new Vector2(-276.670013F, -355.063995F), new Vector2(-277.114014F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(-277.558014F, -356.359985F), new Vector2(-278.127991F, -356.876007F), new Vector2(-278.824005F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(-279.519989F, -357.644012F), new Vector2(-280.252014F, -357.950012F), new Vector2(-281.019989F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(-281.787994F, -358.406006F), new Vector2(-282.526001F, -358.627991F), new Vector2(-283.234009F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(-283.941986F, -359.059998F), new Vector2(-284.511993F, -359.324005F), new Vector2(-284.944F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(-285.376007F, -359.947998F), new Vector2(-285.59201F, -360.391998F), new Vector2(-285.59201F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(-285.59201F, -361.519989F), new Vector2(-285.346008F, -361.963989F), new Vector2(-284.854004F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-284.362F, -362.635986F), new Vector2(-283.64801F, -362.803986F), new Vector2(-282.712006F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(-281.824005F, -362.803986F), new Vector2(-281.032013F, -362.635986F), new Vector2(-280.335999F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-279.640015F, -361.963989F), new Vector2(-279.040009F, -361.484009F), new Vector2(-278.536011F, -360.859985F));
+ builder.AddLine(new Vector2(-276.447998F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(-277.119995F, -363.884003F), new Vector2(-277.977997F, -364.585999F), new Vector2(-279.022003F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(-280.06601F, -365.522003F), new Vector2(-281.26001F, -365.756012F), new Vector2(-282.604004F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-283.876007F, -365.756012F), new Vector2(-284.967987F, -365.552002F), new Vector2(-285.880005F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(-286.791992F, -364.735992F), new Vector2(-287.493988F, -364.153992F), new Vector2(-287.985992F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(-288.477997F, -362.641998F), new Vector2(-288.723999F, -361.747986F), new Vector2(-288.723999F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(-288.723999F, -359.68399F), new Vector2(-288.502014F, -358.850006F), new Vector2(-288.058014F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(-287.614014F, -357.578003F), new Vector2(-287.044006F, -357.079987F), new Vector2(-286.347992F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(-285.652008F, -356.359985F), new Vector2(-284.914001F, -356.071991F), new Vector2(-284.134003F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(-283.354004F, -355.640015F), new Vector2(-282.615997F, -355.417999F), new Vector2(-281.920013F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(-281.223999F, -354.962006F), new Vector2(-280.653992F, -354.674011F), new Vector2(-280.209991F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(-279.765991F, -353.977997F), new Vector2(-279.544006F, -353.492004F), new Vector2(-279.544006F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(-279.544006F, -352.243988F), new Vector2(-279.820007F, -351.757996F), new Vector2(-280.372009F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(-280.924011F, -351.062012F), new Vector2(-281.70401F, -350.888F), new Vector2(-282.712006F, -350.888F));
+ builder.AddCubicBezier(new Vector2(-283.720001F, -350.888F), new Vector2(-284.631989F, -351.074005F), new Vector2(-285.447998F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(-286.264008F, -351.817993F), new Vector2(-286.984009F, -352.388F), new Vector2(-287.608002F, -353.156006F));
+ builder.AddLine(new Vector2(-289.696014F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-289.167999F, -350.420013F), new Vector2(-288.549988F, -349.862F), new Vector2(-287.84201F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(-287.134003F, -348.925995F), new Vector2(-286.347992F, -348.56601F), new Vector2(-285.484009F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(-284.619995F, -348.062012F), new Vector2(-283.708008F, -347.936005F), new Vector2(-282.747986F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-280.828003F, -347.936005F), new Vector2(-279.298004F, -348.403992F), new Vector2(-278.15799F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0865()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-295.779999F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-294.604004F, -349.196014F), new Vector2(-293.596008F, -349.928009F), new Vector2(-292.756012F, -350.888F));
+ builder.AddLine(new Vector2(-294.843994F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-295.420013F, -352.339996F), new Vector2(-296.109985F, -351.835999F), new Vector2(-296.914001F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-297.717987F, -351.164001F), new Vector2(-298.600006F, -350.996002F), new Vector2(-299.559998F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-300.712006F, -350.996002F), new Vector2(-301.731995F, -351.242004F), new Vector2(-302.619995F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-303.507996F, -352.226013F), new Vector2(-304.191986F, -352.921997F), new Vector2(-304.671997F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-305.152008F, -354.721985F), new Vector2(-305.391998F, -355.772003F), new Vector2(-305.391998F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-305.391998F, -358.14801F), new Vector2(-305.164001F, -359.167999F), new Vector2(-304.708008F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-304.252014F, -360.895996F), new Vector2(-303.604004F, -361.567993F), new Vector2(-302.764008F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-301.924011F, -362.528015F), new Vector2(-300.951996F, -362.768005F), new Vector2(-299.847992F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-298.791992F, -362.768005F), new Vector2(-297.891998F, -362.54599F), new Vector2(-297.14801F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-296.403992F, -361.65799F), new Vector2(-295.828003F, -361.033997F), new Vector2(-295.420013F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-295.011993F, -359.425995F), new Vector2(-294.808014F, -358.447998F), new Vector2(-294.808014F, -357.29599F));
+ builder.AddLine(new Vector2(-293.619995F, -358.339996F));
+ builder.AddLine(new Vector2(-306.328003F, -358.339996F));
+ builder.AddLine(new Vector2(-306.328003F, -355.640015F));
+ builder.AddLine(new Vector2(-291.891998F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-291.820007F, -355.976013F), new Vector2(-291.772003F, -356.282013F), new Vector2(-291.747986F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-291.723999F, -356.834015F), new Vector2(-291.712006F, -357.09201F), new Vector2(-291.712006F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-291.712006F, -358.963989F), new Vector2(-292.053986F, -360.415985F), new Vector2(-292.738007F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-293.421997F, -362.959991F), new Vector2(-294.376007F, -363.955994F), new Vector2(-295.600006F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-296.824005F, -365.395996F), new Vector2(-298.216003F, -365.756012F), new Vector2(-299.776001F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-301.432007F, -365.756012F), new Vector2(-302.925995F, -365.365997F), new Vector2(-304.257996F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-305.589996F, -363.806F), new Vector2(-306.645996F, -362.743988F), new Vector2(-307.425995F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-308.205994F, -360.056F), new Vector2(-308.596008F, -358.544006F), new Vector2(-308.596008F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-308.596008F, -355.160004F), new Vector2(-308.200012F, -353.635986F), new Vector2(-307.40799F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-306.615997F, -350.947998F), new Vector2(-305.541992F, -349.885986F), new Vector2(-304.186005F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-302.829987F, -348.325989F), new Vector2(-301.287994F, -347.936005F), new Vector2(-299.559998F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-298.216003F, -347.936005F), new Vector2(-296.955994F, -348.187988F), new Vector2(-295.779999F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0866()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-323.967987F, -348.29599F));
+ builder.AddLine(new Vector2(-323.967987F, -365.395996F));
+ builder.AddLine(new Vector2(-327.208008F, -365.395996F));
+ builder.AddLine(new Vector2(-327.208008F, -348.29599F));
+ builder.AddLine(new Vector2(-323.967987F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-311.872009F, -348.29599F));
+ builder.AddLine(new Vector2(-311.872009F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-311.872009F, -360.09201F), new Vector2(-312.160004F, -361.201996F), new Vector2(-312.735992F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-313.312012F, -363.290009F), new Vector2(-314.097992F, -364.135986F), new Vector2(-315.093994F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-316.089996F, -365.432007F), new Vector2(-317.235992F, -365.756012F), new Vector2(-318.532013F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-319.828003F, -365.756012F), new Vector2(-320.992004F, -365.462006F), new Vector2(-322.023987F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-323.056F, -364.286011F), new Vector2(-323.859985F, -363.488007F), new Vector2(-324.436005F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-325.011993F, -361.471985F), new Vector2(-325.299988F, -360.320007F), new Vector2(-325.299988F, -359.023987F));
+ builder.AddLine(new Vector2(-323.967987F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-323.967987F, -359.131989F), new Vector2(-323.776001F, -359.899994F), new Vector2(-323.391998F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-323.007996F, -361.243988F), new Vector2(-322.480011F, -361.772003F), new Vector2(-321.808014F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-321.135986F, -362.540009F), new Vector2(-320.368011F, -362.731995F), new Vector2(-319.503998F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-318.208008F, -362.731995F), new Vector2(-317.15799F, -362.312012F), new Vector2(-316.354004F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-315.549988F, -360.631989F), new Vector2(-315.14801F, -359.563995F), new Vector2(-315.14801F, -358.268005F));
+ builder.AddLine(new Vector2(-315.14801F, -348.29599F));
+ builder.AddLine(new Vector2(-311.872009F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0867()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-342.615997F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-343.455994F, -352.328003F), new Vector2(-344.115997F, -353.018005F), new Vector2(-344.596008F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-345.075989F, -354.769989F), new Vector2(-345.31601F, -355.772003F), new Vector2(-345.31601F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-345.31601F, -358.003998F), new Vector2(-345.075989F, -358.988007F), new Vector2(-344.596008F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-344.115997F, -360.716003F), new Vector2(-343.455994F, -361.394012F), new Vector2(-342.615997F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-341.776001F, -362.377991F), new Vector2(-340.828003F, -362.623993F), new Vector2(-339.772003F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-338.667999F, -362.623993F), new Vector2(-337.701996F, -362.377991F), new Vector2(-336.873993F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-336.04599F, -361.394012F), new Vector2(-335.385986F, -360.716003F), new Vector2(-334.894012F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-334.402008F, -358.988007F), new Vector2(-334.156006F, -358.003998F), new Vector2(-334.156006F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-334.156006F, -355.772003F), new Vector2(-334.395996F, -354.769989F), new Vector2(-334.876007F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-335.355988F, -353.018005F), new Vector2(-336.015991F, -352.328003F), new Vector2(-336.855988F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-337.696014F, -351.320007F), new Vector2(-338.667999F, -351.067993F), new Vector2(-339.772003F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-340.828003F, -351.067993F), new Vector2(-341.776001F, -351.320007F), new Vector2(-342.615997F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-335.217987F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-333.862F, -349.915985F), new Vector2(-332.787994F, -350.98999F), new Vector2(-331.996002F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-331.20401F, -353.701996F), new Vector2(-330.808014F, -355.220001F), new Vector2(-330.808014F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-330.808014F, -358.556F), new Vector2(-331.20401F, -360.056F), new Vector2(-331.996002F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-332.787994F, -362.743988F), new Vector2(-333.862F, -363.806F), new Vector2(-335.217987F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-336.574005F, -365.365997F), new Vector2(-338.09201F, -365.756012F), new Vector2(-339.772003F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-341.428009F, -365.756012F), new Vector2(-342.928009F, -365.359985F), new Vector2(-344.272003F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-345.615997F, -363.776001F), new Vector2(-346.68399F, -362.713989F), new Vector2(-347.476013F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-348.268005F, -360.049988F), new Vector2(-348.664001F, -358.556F), new Vector2(-348.664001F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-348.664001F, -355.220001F), new Vector2(-348.268005F, -353.701996F), new Vector2(-347.476013F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-346.68399F, -350.98999F), new Vector2(-345.615997F, -349.915985F), new Vector2(-344.272003F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-342.928009F, -348.332001F), new Vector2(-341.428009F, -347.936005F), new Vector2(-339.772003F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-338.09201F, -347.936005F), new Vector2(-336.574005F, -348.332001F), new Vector2(-335.217987F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0868()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-352.264008F, -374F));
+ builder.AddLine(new Vector2(-355.540009F, -374F));
+ builder.AddLine(new Vector2(-355.540009F, -361.220001F));
+ builder.AddLine(new Vector2(-354.928009F, -357.079987F));
+ builder.AddLine(new Vector2(-355.540009F, -352.903992F));
+ builder.AddLine(new Vector2(-355.540009F, -348.29599F));
+ builder.AddLine(new Vector2(-352.264008F, -348.29599F));
+ builder.AddLine(new Vector2(-352.264008F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-363.585999F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-364.414001F, -352.226013F), new Vector2(-365.062012F, -352.915985F), new Vector2(-365.529999F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(-365.997986F, -354.691986F), new Vector2(-366.231995F, -355.712006F), new Vector2(-366.231995F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-366.231995F, -358.015991F), new Vector2(-365.997986F, -359.029999F), new Vector2(-365.529999F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(-365.062012F, -360.782013F), new Vector2(-364.420013F, -361.466003F), new Vector2(-363.604004F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-362.787994F, -362.450012F), new Vector2(-361.839996F, -362.696014F), new Vector2(-360.76001F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-359.679993F, -362.696014F), new Vector2(-358.731995F, -362.444F), new Vector2(-357.915985F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-357.100006F, -361.436005F), new Vector2(-356.463989F, -360.746002F), new Vector2(-356.007996F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-355.552002F, -358.993988F), new Vector2(-355.324005F, -357.980011F), new Vector2(-355.324005F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-355.324005F, -355.700012F), new Vector2(-355.552002F, -354.697998F), new Vector2(-356.007996F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-356.463989F, -352.946014F), new Vector2(-357.100006F, -352.256012F), new Vector2(-357.915985F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-358.731995F, -351.247986F), new Vector2(-359.679993F, -350.996002F), new Vector2(-360.76001F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-361.81601F, -350.996002F), new Vector2(-362.757996F, -351.242004F), new Vector2(-363.585999F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-357.772003F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-356.73999F, -349.286011F), new Vector2(-355.911987F, -350.036011F), new Vector2(-355.287994F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-354.664001F, -351.955994F), new Vector2(-354.31601F, -353.048004F), new Vector2(-354.243988F, -354.272003F));
+ builder.AddLine(new Vector2(-354.243988F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-354.31601F, -360.667999F), new Vector2(-354.670013F, -361.765991F), new Vector2(-355.306F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-355.941986F, -363.661987F), new Vector2(-356.776001F, -364.406006F), new Vector2(-357.808014F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-358.839996F, -365.485992F), new Vector2(-360.003998F, -365.756012F), new Vector2(-361.299988F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-362.859985F, -365.756012F), new Vector2(-364.264008F, -365.359985F), new Vector2(-365.511993F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-366.76001F, -363.776001F), new Vector2(-367.75F, -362.708008F), new Vector2(-368.481995F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-369.213989F, -360.019989F), new Vector2(-369.579987F, -358.507996F), new Vector2(-369.579987F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-369.579987F, -355.14801F), new Vector2(-369.213989F, -353.635986F), new Vector2(-368.481995F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-367.75F, -350.947998F), new Vector2(-366.76001F, -349.885986F), new Vector2(-365.511993F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-364.264008F, -348.325989F), new Vector2(-362.859985F, -347.936005F), new Vector2(-361.299988F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-359.980011F, -347.936005F), new Vector2(-358.803986F, -348.205994F), new Vector2(-357.772003F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0869()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-384.988007F, -348.29599F));
+ builder.AddLine(new Vector2(-384.988007F, -365.395996F));
+ builder.AddLine(new Vector2(-388.227997F, -365.395996F));
+ builder.AddLine(new Vector2(-388.227997F, -348.29599F));
+ builder.AddLine(new Vector2(-384.988007F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-372.891998F, -348.29599F));
+ builder.AddLine(new Vector2(-372.891998F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-372.891998F, -360.09201F), new Vector2(-373.179993F, -361.201996F), new Vector2(-373.756012F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-374.332001F, -363.290009F), new Vector2(-375.118011F, -364.135986F), new Vector2(-376.114014F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-377.109985F, -365.432007F), new Vector2(-378.256012F, -365.756012F), new Vector2(-379.552002F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-380.847992F, -365.756012F), new Vector2(-382.011993F, -365.462006F), new Vector2(-383.044006F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-384.075989F, -364.286011F), new Vector2(-384.880005F, -363.488007F), new Vector2(-385.455994F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-386.032013F, -361.471985F), new Vector2(-386.320007F, -360.320007F), new Vector2(-386.320007F, -359.023987F));
+ builder.AddLine(new Vector2(-384.988007F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-384.988007F, -359.131989F), new Vector2(-384.79599F, -359.899994F), new Vector2(-384.411987F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-384.028015F, -361.243988F), new Vector2(-383.5F, -361.772003F), new Vector2(-382.828003F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-382.156006F, -362.540009F), new Vector2(-381.388F, -362.731995F), new Vector2(-380.523987F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-379.227997F, -362.731995F), new Vector2(-378.178009F, -362.312012F), new Vector2(-377.373993F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-376.570007F, -360.631989F), new Vector2(-376.167999F, -359.563995F), new Vector2(-376.167999F, -358.268005F));
+ builder.AddLine(new Vector2(-376.167999F, -348.29599F));
+ builder.AddLine(new Vector2(-372.891998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0870()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-393.556F, -348.29599F));
+ builder.AddLine(new Vector2(-393.556F, -373.279999F));
+ builder.AddLine(new Vector2(-396.940002F, -373.279999F));
+ builder.AddLine(new Vector2(-396.940002F, -348.29599F));
+ builder.AddLine(new Vector2(-393.556F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0871()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-412.85199F, -343.328003F));
+ builder.AddLine(new Vector2(-410.440002F, -347.791992F));
+ builder.AddCubicBezier(new Vector2(-410.127991F, -348.391998F), new Vector2(-409.917999F, -348.877991F), new Vector2(-409.809998F, -349.25F));
+ builder.AddCubicBezier(new Vector2(-409.701996F, -349.622009F), new Vector2(-409.64801F, -349.940002F), new Vector2(-409.64801F, -350.20401F));
+ builder.AddCubicBezier(new Vector2(-409.64801F, -350.899994F), new Vector2(-409.888F, -351.481995F), new Vector2(-410.368011F, -351.950012F));
+ builder.AddCubicBezier(new Vector2(-410.847992F, -352.417999F), new Vector2(-411.399994F, -352.652008F), new Vector2(-412.023987F, -352.652008F));
+ builder.AddCubicBezier(new Vector2(-412.720001F, -352.652008F), new Vector2(-413.29599F, -352.417999F), new Vector2(-413.752014F, -351.950012F));
+ builder.AddCubicBezier(new Vector2(-414.208008F, -351.481995F), new Vector2(-414.436005F, -350.899994F), new Vector2(-414.436005F, -350.20401F));
+ builder.AddCubicBezier(new Vector2(-414.436005F, -349.579987F), new Vector2(-414.226013F, -349.058014F), new Vector2(-413.806F, -348.638F));
+ builder.AddCubicBezier(new Vector2(-413.385986F, -348.217987F), new Vector2(-412.924011F, -348.007996F), new Vector2(-412.420013F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(-412.179993F, -348.007996F), new Vector2(-411.963989F, -348.09201F), new Vector2(-411.772003F, -348.26001F));
+ builder.AddCubicBezier(new Vector2(-411.579987F, -348.428009F), new Vector2(-411.424011F, -348.644012F), new Vector2(-411.303986F, -348.90799F));
+ builder.AddLine(new Vector2(-412.455994F, -348.619995F));
+ builder.AddLine(new Vector2(-414.687988F, -344.335999F));
+ builder.AddLine(new Vector2(-412.85199F, -343.328003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0872()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-420.213989F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(-419.074005F, -350.276001F), new Vector2(-418.503998F, -351.548004F), new Vector2(-418.503998F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(-418.503998F, -354.212006F), new Vector2(-418.726013F, -355.063995F), new Vector2(-419.170013F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(-419.614014F, -356.359985F), new Vector2(-420.18399F, -356.876007F), new Vector2(-420.880005F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(-421.575989F, -357.644012F), new Vector2(-422.308014F, -357.950012F), new Vector2(-423.075989F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(-423.843994F, -358.406006F), new Vector2(-424.582001F, -358.627991F), new Vector2(-425.290009F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(-425.997986F, -359.059998F), new Vector2(-426.567993F, -359.324005F), new Vector2(-427F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(-427.432007F, -359.947998F), new Vector2(-427.64801F, -360.391998F), new Vector2(-427.64801F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(-427.64801F, -361.519989F), new Vector2(-427.402008F, -361.963989F), new Vector2(-426.910004F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-426.417999F, -362.635986F), new Vector2(-425.70401F, -362.803986F), new Vector2(-424.768005F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(-423.880005F, -362.803986F), new Vector2(-423.088013F, -362.635986F), new Vector2(-422.391998F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-421.696014F, -361.963989F), new Vector2(-421.096008F, -361.484009F), new Vector2(-420.59201F, -360.859985F));
+ builder.AddLine(new Vector2(-418.503998F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(-419.175995F, -363.884003F), new Vector2(-420.033997F, -364.585999F), new Vector2(-421.078003F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(-422.122009F, -365.522003F), new Vector2(-423.31601F, -365.756012F), new Vector2(-424.660004F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-425.932007F, -365.756012F), new Vector2(-427.023987F, -365.552002F), new Vector2(-427.936005F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(-428.847992F, -364.735992F), new Vector2(-429.549988F, -364.153992F), new Vector2(-430.041992F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(-430.533997F, -362.641998F), new Vector2(-430.779999F, -361.747986F), new Vector2(-430.779999F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(-430.779999F, -359.68399F), new Vector2(-430.558014F, -358.850006F), new Vector2(-430.114014F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(-429.670013F, -357.578003F), new Vector2(-429.100006F, -357.079987F), new Vector2(-428.403992F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(-427.708008F, -356.359985F), new Vector2(-426.970001F, -356.071991F), new Vector2(-426.190002F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(-425.410004F, -355.640015F), new Vector2(-424.671997F, -355.417999F), new Vector2(-423.976013F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(-423.279999F, -354.962006F), new Vector2(-422.709991F, -354.674011F), new Vector2(-422.265991F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(-421.821991F, -353.977997F), new Vector2(-421.600006F, -353.492004F), new Vector2(-421.600006F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(-421.600006F, -352.243988F), new Vector2(-421.876007F, -351.757996F), new Vector2(-422.428009F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(-422.980011F, -351.062012F), new Vector2(-423.76001F, -350.888F), new Vector2(-424.768005F, -350.888F));
+ builder.AddCubicBezier(new Vector2(-425.776001F, -350.888F), new Vector2(-426.687988F, -351.074005F), new Vector2(-427.503998F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(-428.320007F, -351.817993F), new Vector2(-429.040009F, -352.388F), new Vector2(-429.664001F, -353.156006F));
+ builder.AddLine(new Vector2(-431.752014F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-431.223999F, -350.420013F), new Vector2(-430.605988F, -349.862F), new Vector2(-429.89801F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(-429.190002F, -348.925995F), new Vector2(-428.403992F, -348.56601F), new Vector2(-427.540009F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(-426.675995F, -348.062012F), new Vector2(-425.764008F, -347.936005F), new Vector2(-424.803986F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-422.884003F, -347.936005F), new Vector2(-421.354004F, -348.403992F), new Vector2(-420.213989F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0873()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-443.776001F, -341.131989F));
+ builder.AddLine(new Vector2(-440.536011F, -348.152008F));
+ builder.AddLine(new Vector2(-442.372009F, -351.463989F));
+ builder.AddLine(new Vector2(-447.376007F, -341.131989F));
+ builder.AddLine(new Vector2(-443.776001F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-440.536011F, -348.152008F));
+ builder.AddLine(new Vector2(-432.544006F, -365.395996F));
+ builder.AddLine(new Vector2(-436.144012F, -365.395996F));
+ builder.AddLine(new Vector2(-441.940002F, -351.895996F));
+ builder.AddLine(new Vector2(-440.787994F, -351.895996F));
+ builder.AddLine(new Vector2(-446.29599F, -365.395996F));
+ builder.AddLine(new Vector2(-449.895996F, -365.395996F));
+ builder.AddLine(new Vector2(-442.480011F, -348.152008F));
+ builder.AddLine(new Vector2(-440.536011F, -348.152008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0874()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-452.812012F, -348.29599F));
+ builder.AddLine(new Vector2(-452.812012F, -365.395996F));
+ builder.AddLine(new Vector2(-456.088013F, -365.395996F));
+ builder.AddLine(new Vector2(-456.088013F, -361.220001F));
+ builder.AddLine(new Vector2(-455.476013F, -357.079987F));
+ builder.AddLine(new Vector2(-456.088013F, -352.903992F));
+ builder.AddLine(new Vector2(-456.088013F, -348.29599F));
+ builder.AddLine(new Vector2(-452.812012F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-464.115997F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-464.955994F, -352.256012F), new Vector2(-465.609985F, -352.946014F), new Vector2(-466.078003F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-466.54599F, -354.697998F), new Vector2(-466.779999F, -355.712006F), new Vector2(-466.779999F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-466.779999F, -357.992004F), new Vector2(-466.54599F, -358.993988F), new Vector2(-466.078003F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-465.609985F, -360.746002F), new Vector2(-464.962006F, -361.436005F), new Vector2(-464.134003F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-463.306F, -362.444F), new Vector2(-462.35199F, -362.696014F), new Vector2(-461.272003F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-460.191986F, -362.696014F), new Vector2(-459.25F, -362.450012F), new Vector2(-458.446014F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-457.641998F, -361.466003F), new Vector2(-457.011993F, -360.776001F), new Vector2(-456.556F, -359.888F));
+ builder.AddCubicBezier(new Vector2(-456.100006F, -359F), new Vector2(-455.872009F, -357.980011F), new Vector2(-455.872009F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-455.872009F, -355.123993F), new Vector2(-456.364014F, -353.726013F), new Vector2(-457.347992F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(-458.332001F, -351.541992F), new Vector2(-459.627991F, -350.996002F), new Vector2(-461.235992F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-462.31601F, -350.996002F), new Vector2(-463.276001F, -351.247986F), new Vector2(-464.115997F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-458.283997F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-457.252014F, -349.286011F), new Vector2(-456.429993F, -350.036011F), new Vector2(-455.817993F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-455.205994F, -351.955994F), new Vector2(-454.864014F, -353.048004F), new Vector2(-454.791992F, -354.272003F));
+ builder.AddLine(new Vector2(-454.791992F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-454.864014F, -360.667999F), new Vector2(-455.212006F, -361.765991F), new Vector2(-455.835999F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-456.459991F, -363.661987F), new Vector2(-457.282013F, -364.406006F), new Vector2(-458.302002F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-459.321991F, -365.485992F), new Vector2(-460.480011F, -365.756012F), new Vector2(-461.776001F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-463.359985F, -365.756012F), new Vector2(-464.782013F, -365.359985F), new Vector2(-466.041992F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-467.302002F, -363.776001F), new Vector2(-468.298004F, -362.708008F), new Vector2(-469.029999F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-469.761993F, -360.019989F), new Vector2(-470.127991F, -358.507996F), new Vector2(-470.127991F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-470.127991F, -355.14801F), new Vector2(-469.761993F, -353.635986F), new Vector2(-469.029999F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-468.298004F, -350.947998F), new Vector2(-467.302002F, -349.885986F), new Vector2(-466.041992F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-464.782013F, -348.325989F), new Vector2(-463.359985F, -347.936005F), new Vector2(-461.776001F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-460.480011F, -347.936005F), new Vector2(-459.31601F, -348.205994F), new Vector2(-458.283997F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0875()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-473.764008F, -374F));
+ builder.AddLine(new Vector2(-477.040009F, -374F));
+ builder.AddLine(new Vector2(-477.040009F, -361.220001F));
+ builder.AddLine(new Vector2(-476.428009F, -357.079987F));
+ builder.AddLine(new Vector2(-477.040009F, -352.903992F));
+ builder.AddLine(new Vector2(-477.040009F, -348.29599F));
+ builder.AddLine(new Vector2(-473.764008F, -348.29599F));
+ builder.AddLine(new Vector2(-473.764008F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-485.085999F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-485.914001F, -352.226013F), new Vector2(-486.562012F, -352.915985F), new Vector2(-487.029999F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(-487.497986F, -354.691986F), new Vector2(-487.731995F, -355.712006F), new Vector2(-487.731995F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-487.731995F, -358.015991F), new Vector2(-487.497986F, -359.029999F), new Vector2(-487.029999F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(-486.562012F, -360.782013F), new Vector2(-485.920013F, -361.466003F), new Vector2(-485.104004F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-484.287994F, -362.450012F), new Vector2(-483.339996F, -362.696014F), new Vector2(-482.26001F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-481.179993F, -362.696014F), new Vector2(-480.231995F, -362.444F), new Vector2(-479.415985F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-478.600006F, -361.436005F), new Vector2(-477.963989F, -360.746002F), new Vector2(-477.507996F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-477.052002F, -358.993988F), new Vector2(-476.824005F, -357.980011F), new Vector2(-476.824005F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-476.824005F, -355.700012F), new Vector2(-477.052002F, -354.697998F), new Vector2(-477.507996F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-477.963989F, -352.946014F), new Vector2(-478.600006F, -352.256012F), new Vector2(-479.415985F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-480.231995F, -351.247986F), new Vector2(-481.179993F, -350.996002F), new Vector2(-482.26001F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-483.31601F, -350.996002F), new Vector2(-484.257996F, -351.242004F), new Vector2(-485.085999F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-479.272003F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-478.23999F, -349.286011F), new Vector2(-477.411987F, -350.036011F), new Vector2(-476.787994F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-476.164001F, -351.955994F), new Vector2(-475.81601F, -353.048004F), new Vector2(-475.743988F, -354.272003F));
+ builder.AddLine(new Vector2(-475.743988F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-475.81601F, -360.667999F), new Vector2(-476.170013F, -361.765991F), new Vector2(-476.806F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-477.441986F, -363.661987F), new Vector2(-478.276001F, -364.406006F), new Vector2(-479.308014F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-480.339996F, -365.485992F), new Vector2(-481.503998F, -365.756012F), new Vector2(-482.799988F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-484.359985F, -365.756012F), new Vector2(-485.764008F, -365.359985F), new Vector2(-487.011993F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-488.26001F, -363.776001F), new Vector2(-489.25F, -362.708008F), new Vector2(-489.981995F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-490.713989F, -360.019989F), new Vector2(-491.079987F, -358.507996F), new Vector2(-491.079987F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-491.079987F, -355.14801F), new Vector2(-490.713989F, -353.635986F), new Vector2(-489.981995F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-489.25F, -350.947998F), new Vector2(-488.26001F, -349.885986F), new Vector2(-487.011993F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-485.764008F, -348.325989F), new Vector2(-484.359985F, -347.936005F), new Vector2(-482.799988F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-481.480011F, -347.936005F), new Vector2(-480.303986F, -348.205994F), new Vector2(-479.272003F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0876()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-513.382019F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-514.210022F, -352.813995F), new Vector2(-514.857971F, -353.467987F), new Vector2(-515.325989F, -354.308014F));
+ builder.AddCubicBezier(new Vector2(-515.794006F, -355.14801F), new Vector2(-516.028015F, -356.108002F), new Vector2(-516.028015F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(-516.028015F, -358.268005F), new Vector2(-515.794006F, -359.221985F), new Vector2(-515.325989F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(-514.857971F, -360.877991F), new Vector2(-514.216003F, -361.526001F), new Vector2(-513.400024F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(-512.583984F, -362.462006F), new Vector2(-511.635986F, -362.696014F), new Vector2(-510.556F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-509.5F, -362.696014F), new Vector2(-508.570007F, -362.462006F), new Vector2(-507.765991F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(-506.962006F, -361.526001F), new Vector2(-506.338013F, -360.877991F), new Vector2(-505.894012F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(-505.450012F, -359.221985F), new Vector2(-505.227997F, -358.256012F), new Vector2(-505.227997F, -357.152008F));
+ builder.AddCubicBezier(new Vector2(-505.227997F, -356.048004F), new Vector2(-505.450012F, -355.082001F), new Vector2(-505.894012F, -354.253998F));
+ builder.AddCubicBezier(new Vector2(-506.338013F, -353.425995F), new Vector2(-506.955994F, -352.783997F), new Vector2(-507.747986F, -352.328003F));
+ builder.AddCubicBezier(new Vector2(-508.540009F, -351.872009F), new Vector2(-509.476013F, -351.644012F), new Vector2(-510.556F, -351.644012F));
+ builder.AddCubicBezier(new Vector2(-511.612F, -351.644012F), new Vector2(-512.554016F, -351.877991F), new Vector2(-513.382019F, -352.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-507.640015F, -349.376007F));
+ builder.AddCubicBezier(new Vector2(-506.608002F, -349.903992F), new Vector2(-505.786011F, -350.641998F), new Vector2(-505.174011F, -351.589996F));
+ builder.AddCubicBezier(new Vector2(-504.562012F, -352.537994F), new Vector2(-504.220001F, -353.635986F), new Vector2(-504.14801F, -354.884003F));
+ builder.AddLine(new Vector2(-504.14801F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-504.220001F, -360.691986F), new Vector2(-504.556F, -361.802002F), new Vector2(-505.156006F, -362.75F));
+ builder.AddCubicBezier(new Vector2(-505.756012F, -363.697998F), new Vector2(-506.578003F, -364.436005F), new Vector2(-507.622009F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(-508.665985F, -365.492004F), new Vector2(-509.859985F, -365.756012F), new Vector2(-511.20401F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-512.73999F, -365.756012F), new Vector2(-514.132019F, -365.377991F), new Vector2(-515.380005F, -364.622009F));
+ builder.AddCubicBezier(new Vector2(-516.627991F, -363.865997F), new Vector2(-517.606018F, -362.846008F), new Vector2(-518.314026F, -361.562012F));
+ builder.AddCubicBezier(new Vector2(-519.021973F, -360.278015F), new Vector2(-519.375977F, -358.820007F), new Vector2(-519.375977F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(-519.375977F, -355.556F), new Vector2(-519.015991F, -354.085999F), new Vector2(-518.296021F, -352.778015F));
+ builder.AddCubicBezier(new Vector2(-517.575989F, -351.470001F), new Vector2(-516.598022F, -350.444F), new Vector2(-515.362F, -349.700012F));
+ builder.AddCubicBezier(new Vector2(-514.125977F, -348.955994F), new Vector2(-512.728027F, -348.584015F), new Vector2(-511.167999F, -348.584015F));
+ builder.AddCubicBezier(new Vector2(-509.847992F, -348.584015F), new Vector2(-508.671997F, -348.847992F), new Vector2(-507.640015F, -349.376007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-506.470001F, -341.798004F));
+ builder.AddCubicBezier(new Vector2(-505.114014F, -342.481995F), new Vector2(-504.058014F, -343.441986F), new Vector2(-503.302002F, -344.678009F));
+ builder.AddCubicBezier(new Vector2(-502.54599F, -345.914001F), new Vector2(-502.167999F, -347.347992F), new Vector2(-502.167999F, -348.980011F));
+ builder.AddLine(new Vector2(-502.167999F, -365.395996F));
+ builder.AddLine(new Vector2(-505.40799F, -365.395996F));
+ builder.AddLine(new Vector2(-505.40799F, -360.895996F));
+ builder.AddLine(new Vector2(-504.832001F, -357.079987F));
+ builder.AddLine(new Vector2(-505.40799F, -353.227997F));
+ builder.AddLine(new Vector2(-505.40799F, -348.980011F));
+ builder.AddCubicBezier(new Vector2(-505.40799F, -347.420013F), new Vector2(-505.924011F, -346.178009F), new Vector2(-506.955994F, -345.253998F));
+ builder.AddCubicBezier(new Vector2(-507.988007F, -344.329987F), new Vector2(-509.368011F, -343.868011F), new Vector2(-511.096008F, -343.868011F));
+ builder.AddCubicBezier(new Vector2(-512.416016F, -343.868011F), new Vector2(-513.55603F, -344.10199F), new Vector2(-514.515991F, -344.570007F));
+ builder.AddCubicBezier(new Vector2(-515.476013F, -345.037994F), new Vector2(-516.304016F, -345.716003F), new Vector2(-517F, -346.604004F));
+ builder.AddLine(new Vector2(-519.124023F, -344.480011F));
+ builder.AddCubicBezier(new Vector2(-518.283997F, -343.303986F), new Vector2(-517.192017F, -342.391998F), new Vector2(-515.848022F, -341.743988F));
+ builder.AddCubicBezier(new Vector2(-514.504028F, -341.096008F), new Vector2(-512.94397F, -340.772003F), new Vector2(-511.167999F, -340.772003F));
+ builder.AddCubicBezier(new Vector2(-509.391998F, -340.772003F), new Vector2(-507.825989F, -341.114014F), new Vector2(-506.470001F, -341.798004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0877()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-534.747986F, -348.29599F));
+ builder.AddLine(new Vector2(-534.747986F, -365.395996F));
+ builder.AddLine(new Vector2(-537.987976F, -365.395996F));
+ builder.AddLine(new Vector2(-537.987976F, -348.29599F));
+ builder.AddLine(new Vector2(-534.747986F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-522.651978F, -348.29599F));
+ builder.AddLine(new Vector2(-522.651978F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-522.651978F, -360.09201F), new Vector2(-522.940002F, -361.201996F), new Vector2(-523.515991F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-524.09198F, -363.290009F), new Vector2(-524.877991F, -364.135986F), new Vector2(-525.874023F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-526.869995F, -365.432007F), new Vector2(-528.015991F, -365.756012F), new Vector2(-529.312012F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-530.607971F, -365.756012F), new Vector2(-531.771973F, -365.462006F), new Vector2(-532.804016F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-533.835999F, -364.286011F), new Vector2(-534.640015F, -363.488007F), new Vector2(-535.216003F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-535.791992F, -361.471985F), new Vector2(-536.080017F, -360.320007F), new Vector2(-536.080017F, -359.023987F));
+ builder.AddLine(new Vector2(-534.747986F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-534.747986F, -359.131989F), new Vector2(-534.55603F, -359.899994F), new Vector2(-534.171997F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-533.788025F, -361.243988F), new Vector2(-533.26001F, -361.772003F), new Vector2(-532.588013F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-531.916016F, -362.540009F), new Vector2(-531.14801F, -362.731995F), new Vector2(-530.283997F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-528.987976F, -362.731995F), new Vector2(-527.937988F, -362.312012F), new Vector2(-527.133972F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-526.330017F, -360.631989F), new Vector2(-525.927979F, -359.563995F), new Vector2(-525.927979F, -358.268005F));
+ builder.AddLine(new Vector2(-525.927979F, -348.29599F));
+ builder.AddLine(new Vector2(-522.651978F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0878()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-542.919983F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-542.536011F, -369.806F), new Vector2(-542.343994F, -370.303986F), new Vector2(-542.343994F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-542.343994F, -371.480011F), new Vector2(-542.536011F, -371.966003F), new Vector2(-542.919983F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-543.304016F, -372.757996F), new Vector2(-543.796021F, -372.955994F), new Vector2(-544.395996F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(-544.995972F, -372.955994F), new Vector2(-545.487976F, -372.757996F), new Vector2(-545.872009F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-546.255981F, -371.966003F), new Vector2(-546.447998F, -371.480011F), new Vector2(-546.447998F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-546.447998F, -370.303986F), new Vector2(-546.255981F, -369.806F), new Vector2(-545.872009F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-545.487976F, -369.014008F), new Vector2(-544.995972F, -368.81601F), new Vector2(-544.395996F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(-543.796021F, -368.81601F), new Vector2(-543.304016F, -369.014008F), new Vector2(-542.919983F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-542.776001F, -348.29599F));
+ builder.AddLine(new Vector2(-542.776001F, -365.395996F));
+ builder.AddLine(new Vector2(-546.052002F, -365.395996F));
+ builder.AddLine(new Vector2(-546.052002F, -348.29599F));
+ builder.AddLine(new Vector2(-542.776001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0879()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-565.995972F, -348.29599F));
+ builder.AddLine(new Vector2(-561.028015F, -361.18399F));
+ builder.AddLine(new Vector2(-562.216003F, -361.18399F));
+ builder.AddLine(new Vector2(-557.283997F, -348.29599F));
+ builder.AddLine(new Vector2(-555.375977F, -348.29599F));
+ builder.AddLine(new Vector2(-548.643982F, -365.395996F));
+ builder.AddLine(new Vector2(-552.028015F, -365.395996F));
+ builder.AddLine(new Vector2(-556.924011F, -352.075989F));
+ builder.AddLine(new Vector2(-555.843994F, -352.075989F));
+ builder.AddLine(new Vector2(-560.703979F, -365.395996F));
+ builder.AddLine(new Vector2(-562.575989F, -365.395996F));
+ builder.AddLine(new Vector2(-567.435974F, -352.075989F));
+ builder.AddLine(new Vector2(-566.356018F, -352.075989F));
+ builder.AddLine(new Vector2(-571.252014F, -365.395996F));
+ builder.AddLine(new Vector2(-574.635986F, -365.395996F));
+ builder.AddLine(new Vector2(-567.903992F, -348.29599F));
+ builder.AddLine(new Vector2(-565.995972F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0880()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-587.66803F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-588.507996F, -352.328003F), new Vector2(-589.16803F, -353.018005F), new Vector2(-589.64801F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-590.127991F, -354.769989F), new Vector2(-590.367981F, -355.772003F), new Vector2(-590.367981F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-590.367981F, -358.003998F), new Vector2(-590.127991F, -358.988007F), new Vector2(-589.64801F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-589.16803F, -360.716003F), new Vector2(-588.507996F, -361.394012F), new Vector2(-587.66803F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-586.828003F, -362.377991F), new Vector2(-585.880005F, -362.623993F), new Vector2(-584.823975F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-583.719971F, -362.623993F), new Vector2(-582.754028F, -362.377991F), new Vector2(-581.926025F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-581.098022F, -361.394012F), new Vector2(-580.437988F, -360.716003F), new Vector2(-579.945984F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-579.453979F, -358.988007F), new Vector2(-579.208008F, -358.003998F), new Vector2(-579.208008F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-579.208008F, -355.772003F), new Vector2(-579.447998F, -354.769989F), new Vector2(-579.927979F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-580.40802F, -353.018005F), new Vector2(-581.067993F, -352.328003F), new Vector2(-581.90802F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-582.747986F, -351.320007F), new Vector2(-583.719971F, -351.067993F), new Vector2(-584.823975F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-585.880005F, -351.067993F), new Vector2(-586.828003F, -351.320007F), new Vector2(-587.66803F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-580.27002F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-578.914001F, -349.915985F), new Vector2(-577.840027F, -350.98999F), new Vector2(-577.047974F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-576.255981F, -353.701996F), new Vector2(-575.859985F, -355.220001F), new Vector2(-575.859985F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-575.859985F, -358.556F), new Vector2(-576.255981F, -360.056F), new Vector2(-577.047974F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-577.840027F, -362.743988F), new Vector2(-578.914001F, -363.806F), new Vector2(-580.27002F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-581.625977F, -365.365997F), new Vector2(-583.143982F, -365.756012F), new Vector2(-584.823975F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-586.47998F, -365.756012F), new Vector2(-587.97998F, -365.359985F), new Vector2(-589.323975F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-590.66803F, -363.776001F), new Vector2(-591.736023F, -362.713989F), new Vector2(-592.528015F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-593.320007F, -360.049988F), new Vector2(-593.716003F, -358.556F), new Vector2(-593.716003F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-593.716003F, -355.220001F), new Vector2(-593.320007F, -353.701996F), new Vector2(-592.528015F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-591.736023F, -350.98999F), new Vector2(-590.66803F, -349.915985F), new Vector2(-589.323975F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-587.97998F, -348.332001F), new Vector2(-586.47998F, -347.936005F), new Vector2(-584.823975F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-583.143982F, -347.936005F), new Vector2(-581.625977F, -348.332001F), new Vector2(-580.27002F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0881()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-597.35199F, -348.29599F));
+ builder.AddLine(new Vector2(-597.35199F, -374F));
+ builder.AddLine(new Vector2(-600.59198F, -374F));
+ builder.AddLine(new Vector2(-600.59198F, -348.29599F));
+ builder.AddLine(new Vector2(-597.35199F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0882()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-605.343994F, -348.29599F));
+ builder.AddLine(new Vector2(-605.343994F, -374F));
+ builder.AddLine(new Vector2(-608.583984F, -374F));
+ builder.AddLine(new Vector2(-608.583984F, -348.29599F));
+ builder.AddLine(new Vector2(-605.343994F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0883()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-623.992004F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-624.83197F, -352.328003F), new Vector2(-625.492004F, -353.018005F), new Vector2(-625.971985F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-626.452026F, -354.769989F), new Vector2(-626.692017F, -355.772003F), new Vector2(-626.692017F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-626.692017F, -358.003998F), new Vector2(-626.452026F, -358.988007F), new Vector2(-625.971985F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-625.492004F, -360.716003F), new Vector2(-624.83197F, -361.394012F), new Vector2(-623.992004F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-623.151978F, -362.377991F), new Vector2(-622.203979F, -362.623993F), new Vector2(-621.14801F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-620.044006F, -362.623993F), new Vector2(-619.078003F, -362.377991F), new Vector2(-618.25F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-617.421997F, -361.394012F), new Vector2(-616.762024F, -360.716003F), new Vector2(-616.27002F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-615.778015F, -358.988007F), new Vector2(-615.531982F, -358.003998F), new Vector2(-615.531982F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-615.531982F, -355.772003F), new Vector2(-615.771973F, -354.769989F), new Vector2(-616.252014F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-616.731995F, -353.018005F), new Vector2(-617.392029F, -352.328003F), new Vector2(-618.231995F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-619.072021F, -351.320007F), new Vector2(-620.044006F, -351.067993F), new Vector2(-621.14801F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-622.203979F, -351.067993F), new Vector2(-623.151978F, -351.320007F), new Vector2(-623.992004F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-616.593994F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-615.237976F, -349.915985F), new Vector2(-614.164001F, -350.98999F), new Vector2(-613.372009F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-612.580017F, -353.701996F), new Vector2(-612.184021F, -355.220001F), new Vector2(-612.184021F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-612.184021F, -358.556F), new Vector2(-612.580017F, -360.056F), new Vector2(-613.372009F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-614.164001F, -362.743988F), new Vector2(-615.237976F, -363.806F), new Vector2(-616.593994F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-617.950012F, -365.365997F), new Vector2(-619.468018F, -365.756012F), new Vector2(-621.14801F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-622.804016F, -365.756012F), new Vector2(-624.304016F, -365.359985F), new Vector2(-625.64801F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-626.992004F, -363.776001F), new Vector2(-628.059998F, -362.713989F), new Vector2(-628.85199F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-629.643982F, -360.049988F), new Vector2(-630.039978F, -358.556F), new Vector2(-630.039978F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-630.039978F, -355.220001F), new Vector2(-629.643982F, -353.701996F), new Vector2(-628.85199F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-628.059998F, -350.98999F), new Vector2(-626.992004F, -349.915985F), new Vector2(-625.64801F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-624.304016F, -348.332001F), new Vector2(-622.804016F, -347.936005F), new Vector2(-621.14801F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-619.468018F, -347.936005F), new Vector2(-617.950012F, -348.332001F), new Vector2(-616.593994F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0884()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-631.192017F, -362.444F));
+ builder.AddLine(new Vector2(-631.192017F, -365.395996F));
+ builder.AddLine(new Vector2(-644.080017F, -365.395996F));
+ builder.AddLine(new Vector2(-644.080017F, -362.444F));
+ builder.AddLine(new Vector2(-631.192017F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-636.627991F, -348.29599F));
+ builder.AddLine(new Vector2(-636.627991F, -367.951996F));
+ builder.AddCubicBezier(new Vector2(-636.627991F, -369.007996F), new Vector2(-636.346008F, -369.829987F), new Vector2(-635.781982F, -370.417999F));
+ builder.AddCubicBezier(new Vector2(-635.218018F, -371.006012F), new Vector2(-634.419983F, -371.299988F), new Vector2(-633.388F, -371.299988F));
+ builder.AddCubicBezier(new Vector2(-632.835999F, -371.299988F), new Vector2(-632.367981F, -371.216003F), new Vector2(-631.984009F, -371.048004F));
+ builder.AddCubicBezier(new Vector2(-631.599976F, -370.880005F), new Vector2(-631.252014F, -370.627991F), new Vector2(-630.940002F, -370.291992F));
+ builder.AddLine(new Vector2(-628.815979F, -372.380005F));
+ builder.AddCubicBezier(new Vector2(-629.416016F, -373.028015F), new Vector2(-630.075989F, -373.519989F), new Vector2(-630.796021F, -373.855988F));
+ builder.AddCubicBezier(new Vector2(-631.515991F, -374.191986F), new Vector2(-632.367981F, -374.359985F), new Vector2(-633.35199F, -374.359985F));
+ builder.AddCubicBezier(new Vector2(-634.64801F, -374.359985F), new Vector2(-635.788025F, -374.084015F), new Vector2(-636.771973F, -373.532013F));
+ builder.AddCubicBezier(new Vector2(-637.755981F, -372.980011F), new Vector2(-638.523987F, -372.223999F), new Vector2(-639.075989F, -371.264008F));
+ builder.AddCubicBezier(new Vector2(-639.627991F, -370.303986F), new Vector2(-639.903992F, -369.200012F), new Vector2(-639.903992F, -367.951996F));
+ builder.AddLine(new Vector2(-639.903992F, -348.29599F));
+ builder.AddLine(new Vector2(-636.627991F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0885()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-652.935974F, -362.444F));
+ builder.AddLine(new Vector2(-652.935974F, -365.395996F));
+ builder.AddLine(new Vector2(-664.599976F, -365.395996F));
+ builder.AddLine(new Vector2(-664.599976F, -362.444F));
+ builder.AddLine(new Vector2(-652.935974F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-657.14801F, -348.29599F));
+ builder.AddLine(new Vector2(-657.14801F, -372.559998F));
+ builder.AddLine(new Vector2(-660.388F, -372.559998F));
+ builder.AddLine(new Vector2(-660.388F, -348.29599F));
+ builder.AddLine(new Vector2(-657.14801F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0886()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-668.362F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(-667.221985F, -350.276001F), new Vector2(-666.651978F, -351.548004F), new Vector2(-666.651978F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(-666.651978F, -354.212006F), new Vector2(-666.874023F, -355.063995F), new Vector2(-667.317993F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(-667.762024F, -356.359985F), new Vector2(-668.33197F, -356.876007F), new Vector2(-669.028015F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(-669.723999F, -357.644012F), new Vector2(-670.455994F, -357.950012F), new Vector2(-671.223999F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(-671.992004F, -358.406006F), new Vector2(-672.72998F, -358.627991F), new Vector2(-673.437988F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(-674.145996F, -359.059998F), new Vector2(-674.716003F, -359.324005F), new Vector2(-675.14801F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(-675.580017F, -359.947998F), new Vector2(-675.796021F, -360.391998F), new Vector2(-675.796021F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(-675.796021F, -361.519989F), new Vector2(-675.549988F, -361.963989F), new Vector2(-675.057983F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-674.565979F, -362.635986F), new Vector2(-673.85199F, -362.803986F), new Vector2(-672.916016F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(-672.028015F, -362.803986F), new Vector2(-671.236023F, -362.635986F), new Vector2(-670.539978F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-669.843994F, -361.963989F), new Vector2(-669.244019F, -361.484009F), new Vector2(-668.73999F, -360.859985F));
+ builder.AddLine(new Vector2(-666.651978F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(-667.323975F, -363.884003F), new Vector2(-668.182007F, -364.585999F), new Vector2(-669.226013F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(-670.27002F, -365.522003F), new Vector2(-671.463989F, -365.756012F), new Vector2(-672.807983F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-674.080017F, -365.756012F), new Vector2(-675.171997F, -365.552002F), new Vector2(-676.083984F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(-676.995972F, -364.735992F), new Vector2(-677.697998F, -364.153992F), new Vector2(-678.190002F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(-678.682007F, -362.641998F), new Vector2(-678.927979F, -361.747986F), new Vector2(-678.927979F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(-678.927979F, -359.68399F), new Vector2(-678.705994F, -358.850006F), new Vector2(-678.262024F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(-677.817993F, -357.578003F), new Vector2(-677.247986F, -357.079987F), new Vector2(-676.552002F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(-675.856018F, -356.359985F), new Vector2(-675.117981F, -356.071991F), new Vector2(-674.338013F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(-673.557983F, -355.640015F), new Vector2(-672.820007F, -355.417999F), new Vector2(-672.124023F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(-671.427979F, -354.962006F), new Vector2(-670.857971F, -354.674011F), new Vector2(-670.414001F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(-669.969971F, -353.977997F), new Vector2(-669.747986F, -353.492004F), new Vector2(-669.747986F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(-669.747986F, -352.243988F), new Vector2(-670.023987F, -351.757996F), new Vector2(-670.575989F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(-671.127991F, -351.062012F), new Vector2(-671.90802F, -350.888F), new Vector2(-672.916016F, -350.888F));
+ builder.AddCubicBezier(new Vector2(-673.924011F, -350.888F), new Vector2(-674.835999F, -351.074005F), new Vector2(-675.651978F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(-676.468018F, -351.817993F), new Vector2(-677.187988F, -352.388F), new Vector2(-677.812012F, -353.156006F));
+ builder.AddLine(new Vector2(-679.900024F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-679.372009F, -350.420013F), new Vector2(-678.754028F, -349.862F), new Vector2(-678.046021F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(-677.338013F, -348.925995F), new Vector2(-676.552002F, -348.56601F), new Vector2(-675.687988F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(-674.823975F, -348.062012F), new Vector2(-673.911987F, -347.936005F), new Vector2(-672.952026F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-671.031982F, -347.936005F), new Vector2(-669.502014F, -348.403992F), new Vector2(-668.362F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0887()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-683.104004F, -348.29599F));
+ builder.AddLine(new Vector2(-683.104004F, -365.395996F));
+ builder.AddLine(new Vector2(-686.380005F, -365.395996F));
+ builder.AddLine(new Vector2(-686.380005F, -361.220001F));
+ builder.AddLine(new Vector2(-685.768005F, -357.079987F));
+ builder.AddLine(new Vector2(-686.380005F, -352.903992F));
+ builder.AddLine(new Vector2(-686.380005F, -348.29599F));
+ builder.AddLine(new Vector2(-683.104004F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-694.40802F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-695.247986F, -352.256012F), new Vector2(-695.901978F, -352.946014F), new Vector2(-696.369995F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-696.838013F, -354.697998F), new Vector2(-697.072021F, -355.712006F), new Vector2(-697.072021F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-697.072021F, -357.992004F), new Vector2(-696.838013F, -358.993988F), new Vector2(-696.369995F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-695.901978F, -360.746002F), new Vector2(-695.254028F, -361.436005F), new Vector2(-694.426025F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-693.598022F, -362.444F), new Vector2(-692.643982F, -362.696014F), new Vector2(-691.564026F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-690.484009F, -362.696014F), new Vector2(-689.541992F, -362.450012F), new Vector2(-688.737976F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-687.934021F, -361.466003F), new Vector2(-687.304016F, -360.776001F), new Vector2(-686.848022F, -359.888F));
+ builder.AddCubicBezier(new Vector2(-686.392029F, -359F), new Vector2(-686.164001F, -357.980011F), new Vector2(-686.164001F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-686.164001F, -355.123993F), new Vector2(-686.656006F, -353.726013F), new Vector2(-687.640015F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(-688.624023F, -351.541992F), new Vector2(-689.919983F, -350.996002F), new Vector2(-691.528015F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-692.607971F, -350.996002F), new Vector2(-693.567993F, -351.247986F), new Vector2(-694.40802F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-688.575989F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-687.544006F, -349.286011F), new Vector2(-686.721985F, -350.036011F), new Vector2(-686.109985F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-685.497986F, -351.955994F), new Vector2(-685.156006F, -353.048004F), new Vector2(-685.083984F, -354.272003F));
+ builder.AddLine(new Vector2(-685.083984F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-685.156006F, -360.667999F), new Vector2(-685.504028F, -361.765991F), new Vector2(-686.127991F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-686.752014F, -363.661987F), new Vector2(-687.573975F, -364.406006F), new Vector2(-688.593994F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-689.614014F, -365.485992F), new Vector2(-690.771973F, -365.756012F), new Vector2(-692.067993F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-693.651978F, -365.756012F), new Vector2(-695.073975F, -365.359985F), new Vector2(-696.333984F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-697.593994F, -363.776001F), new Vector2(-698.590027F, -362.708008F), new Vector2(-699.322021F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-700.054016F, -360.019989F), new Vector2(-700.419983F, -358.507996F), new Vector2(-700.419983F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-700.419983F, -355.14801F), new Vector2(-700.054016F, -353.635986F), new Vector2(-699.322021F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-698.590027F, -350.947998F), new Vector2(-697.593994F, -349.885986F), new Vector2(-696.333984F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-695.073975F, -348.325989F), new Vector2(-693.651978F, -347.936005F), new Vector2(-692.067993F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-690.771973F, -347.936005F), new Vector2(-689.607971F, -348.205994F), new Vector2(-688.575989F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0888()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-704.09198F, -348.29599F));
+ builder.AddLine(new Vector2(-704.09198F, -374F));
+ builder.AddLine(new Vector2(-707.33197F, -374F));
+ builder.AddLine(new Vector2(-707.33197F, -348.29599F));
+ builder.AddLine(new Vector2(-704.09198F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0889()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-722.380005F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-721.203979F, -349.196014F), new Vector2(-720.195984F, -349.928009F), new Vector2(-719.356018F, -350.888F));
+ builder.AddLine(new Vector2(-721.44397F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-722.02002F, -352.339996F), new Vector2(-722.710022F, -351.835999F), new Vector2(-723.513977F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-724.317993F, -351.164001F), new Vector2(-725.200012F, -350.996002F), new Vector2(-726.159973F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-727.312012F, -350.996002F), new Vector2(-728.33197F, -351.242004F), new Vector2(-729.219971F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-730.107971F, -352.226013F), new Vector2(-730.791992F, -352.921997F), new Vector2(-731.271973F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-731.752014F, -354.721985F), new Vector2(-731.992004F, -355.772003F), new Vector2(-731.992004F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-731.992004F, -358.14801F), new Vector2(-731.763977F, -359.167999F), new Vector2(-731.307983F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-730.85199F, -360.895996F), new Vector2(-730.203979F, -361.567993F), new Vector2(-729.364014F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-728.523987F, -362.528015F), new Vector2(-727.552002F, -362.768005F), new Vector2(-726.447998F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-725.392029F, -362.768005F), new Vector2(-724.492004F, -362.54599F), new Vector2(-723.747986F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-723.004028F, -361.65799F), new Vector2(-722.427979F, -361.033997F), new Vector2(-722.02002F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-721.612F, -359.425995F), new Vector2(-721.40802F, -358.447998F), new Vector2(-721.40802F, -357.29599F));
+ builder.AddLine(new Vector2(-720.219971F, -358.339996F));
+ builder.AddLine(new Vector2(-732.927979F, -358.339996F));
+ builder.AddLine(new Vector2(-732.927979F, -355.640015F));
+ builder.AddLine(new Vector2(-718.492004F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-718.419983F, -355.976013F), new Vector2(-718.372009F, -356.282013F), new Vector2(-718.348022F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-718.323975F, -356.834015F), new Vector2(-718.312012F, -357.09201F), new Vector2(-718.312012F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-718.312012F, -358.963989F), new Vector2(-718.653992F, -360.415985F), new Vector2(-719.338013F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-720.021973F, -362.959991F), new Vector2(-720.976013F, -363.955994F), new Vector2(-722.200012F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-723.424011F, -365.395996F), new Vector2(-724.815979F, -365.756012F), new Vector2(-726.375977F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-728.031982F, -365.756012F), new Vector2(-729.526001F, -365.365997F), new Vector2(-730.857971F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-732.190002F, -363.806F), new Vector2(-733.245972F, -362.743988F), new Vector2(-734.026001F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-734.80603F, -360.056F), new Vector2(-735.195984F, -358.544006F), new Vector2(-735.195984F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-735.195984F, -355.160004F), new Vector2(-734.799988F, -353.635986F), new Vector2(-734.007996F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-733.216003F, -350.947998F), new Vector2(-732.142029F, -349.885986F), new Vector2(-730.786011F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-729.429993F, -348.325989F), new Vector2(-727.888F, -347.936005F), new Vector2(-726.159973F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-724.815979F, -347.936005F), new Vector2(-723.55603F, -348.187988F), new Vector2(-722.380005F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0890()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-750.567993F, -348.29599F));
+ builder.AddLine(new Vector2(-750.567993F, -374F));
+ builder.AddLine(new Vector2(-753.807983F, -374F));
+ builder.AddLine(new Vector2(-753.807983F, -348.29599F));
+ builder.AddLine(new Vector2(-750.567993F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-738.471985F, -348.29599F));
+ builder.AddLine(new Vector2(-738.471985F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-738.471985F, -360.26001F), new Vector2(-738.76001F, -361.447998F), new Vector2(-739.335999F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-739.911987F, -363.511993F), new Vector2(-740.697998F, -364.31601F), new Vector2(-741.69397F, -364.891998F));
+ builder.AddCubicBezier(new Vector2(-742.690002F, -365.467987F), new Vector2(-743.835999F, -365.756012F), new Vector2(-745.132019F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-746.427979F, -365.756012F), new Vector2(-747.59198F, -365.462006F), new Vector2(-748.624023F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-749.656006F, -364.286011F), new Vector2(-750.460022F, -363.488007F), new Vector2(-751.036011F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-751.612F, -361.471985F), new Vector2(-751.900024F, -360.320007F), new Vector2(-751.900024F, -359.023987F));
+ builder.AddLine(new Vector2(-750.567993F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-750.567993F, -359.131989F), new Vector2(-750.375977F, -359.899994F), new Vector2(-749.992004F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-749.607971F, -361.243988F), new Vector2(-749.080017F, -361.772003F), new Vector2(-748.40802F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-747.736023F, -362.540009F), new Vector2(-746.968018F, -362.731995F), new Vector2(-746.104004F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-744.807983F, -362.731995F), new Vector2(-743.757996F, -362.312012F), new Vector2(-742.953979F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-742.150024F, -360.631989F), new Vector2(-741.747986F, -359.563995F), new Vector2(-741.747986F, -358.268005F));
+ builder.AddLine(new Vector2(-741.747986F, -348.29599F));
+ builder.AddLine(new Vector2(-738.471985F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0891()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-756.976013F, -362.444F));
+ builder.AddLine(new Vector2(-756.976013F, -365.395996F));
+ builder.AddLine(new Vector2(-768.640015F, -365.395996F));
+ builder.AddLine(new Vector2(-768.640015F, -362.444F));
+ builder.AddLine(new Vector2(-756.976013F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-761.187988F, -348.29599F));
+ builder.AddLine(new Vector2(-761.187988F, -372.559998F));
+ builder.AddLine(new Vector2(-764.427979F, -372.559998F));
+ builder.AddLine(new Vector2(-764.427979F, -348.29599F));
+ builder.AddLine(new Vector2(-761.187988F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0892()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-785.200012F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(-784.432007F, -362.312012F), new Vector2(-783.447998F, -362.696014F), new Vector2(-782.247986F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-781.671997F, -362.696014F), new Vector2(-781.16803F, -362.612F), new Vector2(-780.736023F, -362.444F));
+ builder.AddCubicBezier(new Vector2(-780.304016F, -362.276001F), new Vector2(-779.90802F, -362F), new Vector2(-779.547974F, -361.615997F));
+ builder.AddLine(new Vector2(-777.424011F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-778.023987F, -364.507996F), new Vector2(-778.671997F, -365.006012F), new Vector2(-779.367981F, -365.306F));
+ builder.AddCubicBezier(new Vector2(-780.064026F, -365.605988F), new Vector2(-780.843994F, -365.756012F), new Vector2(-781.708008F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-783.604004F, -365.756012F), new Vector2(-785.05603F, -365.108002F), new Vector2(-786.064026F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-787.072021F, -362.515991F), new Vector2(-787.575989F, -360.776001F), new Vector2(-787.575989F, -358.59201F));
+ builder.AddLine(new Vector2(-786.35199F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(-786.35199F, -359.600006F), new Vector2(-785.968018F, -360.776001F), new Vector2(-785.200012F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-786.35199F, -348.29599F));
+ builder.AddLine(new Vector2(-786.35199F, -365.395996F));
+ builder.AddLine(new Vector2(-789.59198F, -365.395996F));
+ builder.AddLine(new Vector2(-789.59198F, -348.29599F));
+ builder.AddLine(new Vector2(-786.35199F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // - - Offset:<964, 726>
+ CanvasGeometry Geometry_0893()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-805F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-805.840027F, -352.328003F), new Vector2(-806.5F, -353.018005F), new Vector2(-806.97998F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-807.460022F, -354.769989F), new Vector2(-807.700012F, -355.772003F), new Vector2(-807.700012F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-807.700012F, -358.003998F), new Vector2(-807.460022F, -358.988007F), new Vector2(-806.97998F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-806.5F, -360.716003F), new Vector2(-805.840027F, -361.394012F), new Vector2(-805F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-804.159973F, -362.377991F), new Vector2(-803.211975F, -362.623993F), new Vector2(-802.156006F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-801.052002F, -362.623993F), new Vector2(-800.085999F, -362.377991F), new Vector2(-799.257996F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-798.429993F, -361.394012F), new Vector2(-797.77002F, -360.716003F), new Vector2(-797.278015F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-796.786011F, -358.988007F), new Vector2(-796.539978F, -358.003998F), new Vector2(-796.539978F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-796.539978F, -355.772003F), new Vector2(-796.780029F, -354.769989F), new Vector2(-797.26001F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-797.73999F, -353.018005F), new Vector2(-798.400024F, -352.328003F), new Vector2(-799.23999F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-800.080017F, -351.320007F), new Vector2(-801.052002F, -351.067993F), new Vector2(-802.156006F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-803.211975F, -351.067993F), new Vector2(-804.159973F, -351.320007F), new Vector2(-805F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-797.60199F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-796.245972F, -349.915985F), new Vector2(-795.171997F, -350.98999F), new Vector2(-794.380005F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-793.588013F, -353.701996F), new Vector2(-793.192017F, -355.220001F), new Vector2(-793.192017F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-793.192017F, -358.556F), new Vector2(-793.588013F, -360.056F), new Vector2(-794.380005F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-795.171997F, -362.743988F), new Vector2(-796.245972F, -363.806F), new Vector2(-797.60199F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-798.958008F, -365.365997F), new Vector2(-800.476013F, -365.756012F), new Vector2(-802.156006F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-803.812012F, -365.756012F), new Vector2(-805.312012F, -365.359985F), new Vector2(-806.656006F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-808F, -363.776001F), new Vector2(-809.067993F, -362.713989F), new Vector2(-809.859985F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-810.651978F, -360.049988F), new Vector2(-811.047974F, -358.556F), new Vector2(-811.047974F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-811.047974F, -355.220001F), new Vector2(-810.651978F, -353.701996F), new Vector2(-809.859985F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-809.067993F, -350.98999F), new Vector2(-808F, -349.915985F), new Vector2(-806.656006F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-805.312012F, -348.332001F), new Vector2(-803.812012F, -347.936005F), new Vector2(-802.156006F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-800.476013F, -347.936005F), new Vector2(-798.958008F, -348.332001F), new Vector2(-797.60199F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0894()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(731.44397F, -89.0059967F));
+ builder.AddCubicBezier(new Vector2(732.380005F, -90.6259995F), new Vector2(733.099976F, -92.3960037F), new Vector2(733.604004F, -94.3160019F));
+ builder.AddCubicBezier(new Vector2(734.107971F, -96.2360001F), new Vector2(734.359985F, -98.2279968F), new Vector2(734.359985F, -100.292F));
+ builder.AddCubicBezier(new Vector2(734.359985F, -102.356003F), new Vector2(734.107971F, -104.348F), new Vector2(733.604004F, -106.267998F));
+ builder.AddCubicBezier(new Vector2(733.099976F, -108.188004F), new Vector2(732.380005F, -109.958F), new Vector2(731.44397F, -111.578003F));
+ builder.AddCubicBezier(new Vector2(730.507996F, -113.197998F), new Vector2(729.380005F, -114.559998F), new Vector2(728.059998F, -115.664001F));
+ builder.AddLine(new Vector2(726.151978F, -113.972F));
+ builder.AddCubicBezier(new Vector2(727.880005F, -112.484001F), new Vector2(729.200012F, -110.564003F), new Vector2(730.112F, -108.211998F));
+ builder.AddCubicBezier(new Vector2(731.023987F, -105.860001F), new Vector2(731.47998F, -103.220001F), new Vector2(731.47998F, -100.292F));
+ builder.AddCubicBezier(new Vector2(731.47998F, -97.3880005F), new Vector2(731.023987F, -94.7600021F), new Vector2(730.112F, -92.4079971F));
+ builder.AddCubicBezier(new Vector2(729.200012F, -90.0559998F), new Vector2(727.880005F, -88.1240005F), new Vector2(726.151978F, -86.6119995F));
+ builder.AddLine(new Vector2(728.059998F, -84.9199982F));
+ builder.AddCubicBezier(new Vector2(729.380005F, -86.0240021F), new Vector2(730.507996F, -87.3860016F), new Vector2(731.44397F, -89.0059967F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0895()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(722.138F, -90.1399994F));
+ builder.AddCubicBezier(new Vector2(723.278015F, -91.0759964F), new Vector2(723.848022F, -92.3479996F), new Vector2(723.848022F, -93.9560013F));
+ builder.AddCubicBezier(new Vector2(723.848022F, -95.012001F), new Vector2(723.625977F, -95.8639984F), new Vector2(723.182007F, -96.512001F));
+ builder.AddCubicBezier(new Vector2(722.737976F, -97.1600037F), new Vector2(722.16803F, -97.6760025F), new Vector2(721.471985F, -98.0599976F));
+ builder.AddCubicBezier(new Vector2(720.776001F, -98.4440002F), new Vector2(720.044006F, -98.75F), new Vector2(719.276001F, -98.9779968F));
+ builder.AddCubicBezier(new Vector2(718.507996F, -99.2060013F), new Vector2(717.77002F, -99.4280014F), new Vector2(717.062012F, -99.6439972F));
+ builder.AddCubicBezier(new Vector2(716.354004F, -99.8600006F), new Vector2(715.783997F, -100.124001F), new Vector2(715.35199F, -100.435997F));
+ builder.AddCubicBezier(new Vector2(714.919983F, -100.748001F), new Vector2(714.703979F, -101.192001F), new Vector2(714.703979F, -101.767998F));
+ builder.AddCubicBezier(new Vector2(714.703979F, -102.32F), new Vector2(714.950012F, -102.764F), new Vector2(715.442017F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(715.934021F, -103.435997F), new Vector2(716.64801F, -103.603996F), new Vector2(717.583984F, -103.603996F));
+ builder.AddCubicBezier(new Vector2(718.471985F, -103.603996F), new Vector2(719.263977F, -103.435997F), new Vector2(719.960022F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(720.656006F, -102.764F), new Vector2(721.255981F, -102.283997F), new Vector2(721.76001F, -101.660004F));
+ builder.AddLine(new Vector2(723.848022F, -103.748001F));
+ builder.AddCubicBezier(new Vector2(723.176025F, -104.683998F), new Vector2(722.317993F, -105.386002F), new Vector2(721.273987F, -105.853996F));
+ builder.AddCubicBezier(new Vector2(720.22998F, -106.321999F), new Vector2(719.036011F, -106.556F), new Vector2(717.692017F, -106.556F));
+ builder.AddCubicBezier(new Vector2(716.419983F, -106.556F), new Vector2(715.328003F, -106.351997F), new Vector2(714.416016F, -105.944F));
+ builder.AddCubicBezier(new Vector2(713.504028F, -105.536003F), new Vector2(712.802002F, -104.954002F), new Vector2(712.309998F, -104.197998F));
+ builder.AddCubicBezier(new Vector2(711.817993F, -103.442001F), new Vector2(711.572021F, -102.547997F), new Vector2(711.572021F, -101.515999F));
+ builder.AddCubicBezier(new Vector2(711.572021F, -100.484001F), new Vector2(711.794006F, -99.6500015F), new Vector2(712.237976F, -99.0139999F));
+ builder.AddCubicBezier(new Vector2(712.682007F, -98.3779984F), new Vector2(713.252014F, -97.8799973F), new Vector2(713.947998F, -97.5199966F));
+ builder.AddCubicBezier(new Vector2(714.643982F, -97.1600037F), new Vector2(715.382019F, -96.8720016F), new Vector2(716.161987F, -96.6559982F));
+ builder.AddCubicBezier(new Vector2(716.942017F, -96.4400024F), new Vector2(717.679993F, -96.2180023F), new Vector2(718.375977F, -95.9899979F));
+ builder.AddCubicBezier(new Vector2(719.072021F, -95.762001F), new Vector2(719.642029F, -95.473999F), new Vector2(720.085999F, -95.1259995F));
+ builder.AddCubicBezier(new Vector2(720.530029F, -94.7779999F), new Vector2(720.752014F, -94.2919998F), new Vector2(720.752014F, -93.6679993F));
+ builder.AddCubicBezier(new Vector2(720.752014F, -93.0439987F), new Vector2(720.476013F, -92.5579987F), new Vector2(719.924011F, -92.2099991F));
+ builder.AddCubicBezier(new Vector2(719.372009F, -91.8619995F), new Vector2(718.59198F, -91.6880035F), new Vector2(717.583984F, -91.6880035F));
+ builder.AddCubicBezier(new Vector2(716.575989F, -91.6880035F), new Vector2(715.664001F, -91.8740005F), new Vector2(714.848022F, -92.2460022F));
+ builder.AddCubicBezier(new Vector2(714.031982F, -92.6179962F), new Vector2(713.312012F, -93.1880035F), new Vector2(712.687988F, -93.9560013F));
+ builder.AddLine(new Vector2(710.599976F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(711.127991F, -91.2200012F), new Vector2(711.745972F, -90.6620026F), new Vector2(712.453979F, -90.1940002F));
+ builder.AddCubicBezier(new Vector2(713.161987F, -89.7259979F), new Vector2(713.947998F, -89.3659973F), new Vector2(714.812012F, -89.1139984F));
+ builder.AddCubicBezier(new Vector2(715.676025F, -88.8619995F), new Vector2(716.588013F, -88.7360001F), new Vector2(717.547974F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(719.468018F, -88.7360001F), new Vector2(720.997986F, -89.2040024F), new Vector2(722.138F, -90.1399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0896()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(706.765991F, -90.1399994F));
+ builder.AddCubicBezier(new Vector2(707.906006F, -91.0759964F), new Vector2(708.476013F, -92.3479996F), new Vector2(708.476013F, -93.9560013F));
+ builder.AddCubicBezier(new Vector2(708.476013F, -95.012001F), new Vector2(708.254028F, -95.8639984F), new Vector2(707.809998F, -96.512001F));
+ builder.AddCubicBezier(new Vector2(707.366028F, -97.1600037F), new Vector2(706.796021F, -97.6760025F), new Vector2(706.099976F, -98.0599976F));
+ builder.AddCubicBezier(new Vector2(705.403992F, -98.4440002F), new Vector2(704.671997F, -98.75F), new Vector2(703.903992F, -98.9779968F));
+ builder.AddCubicBezier(new Vector2(703.135986F, -99.2060013F), new Vector2(702.39801F, -99.4280014F), new Vector2(701.690002F, -99.6439972F));
+ builder.AddCubicBezier(new Vector2(700.981995F, -99.8600006F), new Vector2(700.411987F, -100.124001F), new Vector2(699.97998F, -100.435997F));
+ builder.AddCubicBezier(new Vector2(699.547974F, -100.748001F), new Vector2(699.33197F, -101.192001F), new Vector2(699.33197F, -101.767998F));
+ builder.AddCubicBezier(new Vector2(699.33197F, -102.32F), new Vector2(699.578003F, -102.764F), new Vector2(700.070007F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(700.562012F, -103.435997F), new Vector2(701.276001F, -103.603996F), new Vector2(702.211975F, -103.603996F));
+ builder.AddCubicBezier(new Vector2(703.099976F, -103.603996F), new Vector2(703.892029F, -103.435997F), new Vector2(704.588013F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(705.283997F, -102.764F), new Vector2(705.883972F, -102.283997F), new Vector2(706.388F, -101.660004F));
+ builder.AddLine(new Vector2(708.476013F, -103.748001F));
+ builder.AddCubicBezier(new Vector2(707.804016F, -104.683998F), new Vector2(706.945984F, -105.386002F), new Vector2(705.901978F, -105.853996F));
+ builder.AddCubicBezier(new Vector2(704.857971F, -106.321999F), new Vector2(703.664001F, -106.556F), new Vector2(702.320007F, -106.556F));
+ builder.AddCubicBezier(new Vector2(701.047974F, -106.556F), new Vector2(699.955994F, -106.351997F), new Vector2(699.044006F, -105.944F));
+ builder.AddCubicBezier(new Vector2(698.132019F, -105.536003F), new Vector2(697.429993F, -104.954002F), new Vector2(696.937988F, -104.197998F));
+ builder.AddCubicBezier(new Vector2(696.445984F, -103.442001F), new Vector2(696.200012F, -102.547997F), new Vector2(696.200012F, -101.515999F));
+ builder.AddCubicBezier(new Vector2(696.200012F, -100.484001F), new Vector2(696.421997F, -99.6500015F), new Vector2(696.866028F, -99.0139999F));
+ builder.AddCubicBezier(new Vector2(697.309998F, -98.3779984F), new Vector2(697.880005F, -97.8799973F), new Vector2(698.575989F, -97.5199966F));
+ builder.AddCubicBezier(new Vector2(699.271973F, -97.1600037F), new Vector2(700.01001F, -96.8720016F), new Vector2(700.789978F, -96.6559982F));
+ builder.AddCubicBezier(new Vector2(701.570007F, -96.4400024F), new Vector2(702.307983F, -96.2180023F), new Vector2(703.004028F, -95.9899979F));
+ builder.AddCubicBezier(new Vector2(703.700012F, -95.762001F), new Vector2(704.27002F, -95.473999F), new Vector2(704.713989F, -95.1259995F));
+ builder.AddCubicBezier(new Vector2(705.15802F, -94.7779999F), new Vector2(705.380005F, -94.2919998F), new Vector2(705.380005F, -93.6679993F));
+ builder.AddCubicBezier(new Vector2(705.380005F, -93.0439987F), new Vector2(705.104004F, -92.5579987F), new Vector2(704.552002F, -92.2099991F));
+ builder.AddCubicBezier(new Vector2(704F, -91.8619995F), new Vector2(703.219971F, -91.6880035F), new Vector2(702.211975F, -91.6880035F));
+ builder.AddCubicBezier(new Vector2(701.203979F, -91.6880035F), new Vector2(700.291992F, -91.8740005F), new Vector2(699.476013F, -92.2460022F));
+ builder.AddCubicBezier(new Vector2(698.659973F, -92.6179962F), new Vector2(697.940002F, -93.1880035F), new Vector2(697.315979F, -93.9560013F));
+ builder.AddLine(new Vector2(695.228027F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(695.755981F, -91.2200012F), new Vector2(696.374023F, -90.6620026F), new Vector2(697.08197F, -90.1940002F));
+ builder.AddCubicBezier(new Vector2(697.789978F, -89.7259979F), new Vector2(698.575989F, -89.3659973F), new Vector2(699.440002F, -89.1139984F));
+ builder.AddCubicBezier(new Vector2(700.304016F, -88.8619995F), new Vector2(701.216003F, -88.7360001F), new Vector2(702.176025F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(704.096008F, -88.7360001F), new Vector2(705.625977F, -89.2040024F), new Vector2(706.765991F, -90.1399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0897()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(689.143982F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(690.320007F, -89.9960022F), new Vector2(691.328003F, -90.7279968F), new Vector2(692.16803F, -91.6880035F));
+ builder.AddLine(new Vector2(690.080017F, -93.8119965F));
+ builder.AddCubicBezier(new Vector2(689.504028F, -93.1399994F), new Vector2(688.814026F, -92.6360016F), new Vector2(688.01001F, -92.3000031F));
+ builder.AddCubicBezier(new Vector2(687.205994F, -91.9639969F), new Vector2(686.323975F, -91.7959976F), new Vector2(685.364014F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(684.211975F, -91.7959976F), new Vector2(683.192017F, -92.0419998F), new Vector2(682.304016F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(681.416016F, -93.026001F), new Vector2(680.731995F, -93.7220001F), new Vector2(680.252014F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(679.771973F, -95.5220032F), new Vector2(679.531982F, -96.5719986F), new Vector2(679.531982F, -97.7720032F));
+ builder.AddCubicBezier(new Vector2(679.531982F, -98.947998F), new Vector2(679.76001F, -99.9680023F), new Vector2(680.216003F, -100.832001F));
+ builder.AddCubicBezier(new Vector2(680.671997F, -101.695999F), new Vector2(681.320007F, -102.367996F), new Vector2(682.159973F, -102.848F));
+ builder.AddCubicBezier(new Vector2(683F, -103.328003F), new Vector2(683.971985F, -103.568001F), new Vector2(685.075989F, -103.568001F));
+ builder.AddCubicBezier(new Vector2(686.132019F, -103.568001F), new Vector2(687.031982F, -103.346001F), new Vector2(687.776001F, -102.902F));
+ builder.AddCubicBezier(new Vector2(688.52002F, -102.458F), new Vector2(689.096008F, -101.834F), new Vector2(689.504028F, -101.029999F));
+ builder.AddCubicBezier(new Vector2(689.911987F, -100.225998F), new Vector2(690.116028F, -99.2480011F), new Vector2(690.116028F, -98.0960007F));
+ builder.AddLine(new Vector2(691.304016F, -99.1399994F));
+ builder.AddLine(new Vector2(678.596008F, -99.1399994F));
+ builder.AddLine(new Vector2(678.596008F, -96.4400024F));
+ builder.AddLine(new Vector2(693.031982F, -96.4400024F));
+ builder.AddCubicBezier(new Vector2(693.104004F, -96.776001F), new Vector2(693.151978F, -97.0820007F), new Vector2(693.176025F, -97.3580017F));
+ builder.AddCubicBezier(new Vector2(693.200012F, -97.6340027F), new Vector2(693.211975F, -97.8919983F), new Vector2(693.211975F, -98.1320038F));
+ builder.AddCubicBezier(new Vector2(693.211975F, -99.7639999F), new Vector2(692.869995F, -101.216003F), new Vector2(692.185974F, -102.487999F));
+ builder.AddCubicBezier(new Vector2(691.502014F, -103.760002F), new Vector2(690.547974F, -104.755997F), new Vector2(689.323975F, -105.475998F));
+ builder.AddCubicBezier(new Vector2(688.099976F, -106.195999F), new Vector2(686.708008F, -106.556F), new Vector2(685.14801F, -106.556F));
+ builder.AddCubicBezier(new Vector2(683.492004F, -106.556F), new Vector2(681.997986F, -106.166F), new Vector2(680.666016F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(679.333984F, -104.606003F), new Vector2(678.278015F, -103.543999F), new Vector2(677.497986F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(676.718018F, -100.856003F), new Vector2(676.328003F, -99.3440018F), new Vector2(676.328003F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(676.328003F, -95.9599991F), new Vector2(676.723999F, -94.435997F), new Vector2(677.515991F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(678.307983F, -91.7480011F), new Vector2(679.382019F, -90.685997F), new Vector2(680.737976F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(682.093994F, -89.1259995F), new Vector2(683.635986F, -88.7360001F), new Vector2(685.364014F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(686.708008F, -88.7360001F), new Vector2(687.968018F, -88.987999F), new Vector2(689.143982F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0898()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(672.692017F, -89.0960007F));
+ builder.AddLine(new Vector2(672.692017F, -114.800003F));
+ builder.AddLine(new Vector2(669.452026F, -114.800003F));
+ builder.AddLine(new Vector2(669.452026F, -89.0960007F));
+ builder.AddLine(new Vector2(672.692017F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0899()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(661.856018F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(663.031982F, -89.9960022F), new Vector2(664.039978F, -90.7279968F), new Vector2(664.880005F, -91.6880035F));
+ builder.AddLine(new Vector2(662.791992F, -93.8119965F));
+ builder.AddCubicBezier(new Vector2(662.216003F, -93.1399994F), new Vector2(661.526001F, -92.6360016F), new Vector2(660.721985F, -92.3000031F));
+ builder.AddCubicBezier(new Vector2(659.91803F, -91.9639969F), new Vector2(659.036011F, -91.7959976F), new Vector2(658.075989F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(656.924011F, -91.7959976F), new Vector2(655.903992F, -92.0419998F), new Vector2(655.015991F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(654.127991F, -93.026001F), new Vector2(653.44397F, -93.7220001F), new Vector2(652.963989F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(652.484009F, -95.5220032F), new Vector2(652.244019F, -96.5719986F), new Vector2(652.244019F, -97.7720032F));
+ builder.AddCubicBezier(new Vector2(652.244019F, -98.947998F), new Vector2(652.471985F, -99.9680023F), new Vector2(652.927979F, -100.832001F));
+ builder.AddCubicBezier(new Vector2(653.383972F, -101.695999F), new Vector2(654.031982F, -102.367996F), new Vector2(654.872009F, -102.848F));
+ builder.AddCubicBezier(new Vector2(655.711975F, -103.328003F), new Vector2(656.684021F, -103.568001F), new Vector2(657.788025F, -103.568001F));
+ builder.AddCubicBezier(new Vector2(658.843994F, -103.568001F), new Vector2(659.744019F, -103.346001F), new Vector2(660.487976F, -102.902F));
+ builder.AddCubicBezier(new Vector2(661.231995F, -102.458F), new Vector2(661.807983F, -101.834F), new Vector2(662.216003F, -101.029999F));
+ builder.AddCubicBezier(new Vector2(662.624023F, -100.225998F), new Vector2(662.828003F, -99.2480011F), new Vector2(662.828003F, -98.0960007F));
+ builder.AddLine(new Vector2(664.015991F, -99.1399994F));
+ builder.AddLine(new Vector2(651.307983F, -99.1399994F));
+ builder.AddLine(new Vector2(651.307983F, -96.4400024F));
+ builder.AddLine(new Vector2(665.744019F, -96.4400024F));
+ builder.AddCubicBezier(new Vector2(665.815979F, -96.776001F), new Vector2(665.864014F, -97.0820007F), new Vector2(665.888F, -97.3580017F));
+ builder.AddCubicBezier(new Vector2(665.911987F, -97.6340027F), new Vector2(665.924011F, -97.8919983F), new Vector2(665.924011F, -98.1320038F));
+ builder.AddCubicBezier(new Vector2(665.924011F, -99.7639999F), new Vector2(665.58197F, -101.216003F), new Vector2(664.89801F, -102.487999F));
+ builder.AddCubicBezier(new Vector2(664.213989F, -103.760002F), new Vector2(663.26001F, -104.755997F), new Vector2(662.036011F, -105.475998F));
+ builder.AddCubicBezier(new Vector2(660.812012F, -106.195999F), new Vector2(659.419983F, -106.556F), new Vector2(657.859985F, -106.556F));
+ builder.AddCubicBezier(new Vector2(656.203979F, -106.556F), new Vector2(654.710022F, -106.166F), new Vector2(653.377991F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(652.046021F, -104.606003F), new Vector2(650.98999F, -103.543999F), new Vector2(650.210022F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(649.429993F, -100.856003F), new Vector2(649.039978F, -99.3440018F), new Vector2(649.039978F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(649.039978F, -95.9599991F), new Vector2(649.435974F, -94.435997F), new Vector2(650.228027F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(651.02002F, -91.7480011F), new Vector2(652.093994F, -90.685997F), new Vector2(653.450012F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(654.80603F, -89.1259995F), new Vector2(656.348022F, -88.7360001F), new Vector2(658.075989F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(659.419983F, -88.7360001F), new Vector2(660.679993F, -88.987999F), new Vector2(661.856018F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0900()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(645.763977F, -89.0960007F));
+ builder.AddLine(new Vector2(645.763977F, -100.075996F));
+ builder.AddCubicBezier(new Vector2(645.763977F, -101.419998F), new Vector2(645.469971F, -102.571999F), new Vector2(644.882019F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(644.294006F, -104.491997F), new Vector2(643.507996F, -105.236F), new Vector2(642.523987F, -105.764F));
+ builder.AddCubicBezier(new Vector2(641.539978F, -106.292F), new Vector2(640.424011F, -106.556F), new Vector2(639.176025F, -106.556F));
+ builder.AddCubicBezier(new Vector2(637.976013F, -106.556F), new Vector2(636.872009F, -106.286003F), new Vector2(635.864014F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(634.856018F, -105.206001F), new Vector2(634.033997F, -104.461998F), new Vector2(633.39801F, -103.514F));
+ builder.AddCubicBezier(new Vector2(632.762024F, -102.566002F), new Vector2(632.40802F, -101.431999F), new Vector2(632.335999F, -100.112F));
+ builder.AddLine(new Vector2(634.171997F, -99.4280014F));
+ builder.AddCubicBezier(new Vector2(634.171997F, -100.292F), new Vector2(634.364014F, -101.024002F), new Vector2(634.747986F, -101.624001F));
+ builder.AddCubicBezier(new Vector2(635.132019F, -102.223999F), new Vector2(635.642029F, -102.692001F), new Vector2(636.278015F, -103.028F));
+ builder.AddCubicBezier(new Vector2(636.914001F, -103.363998F), new Vector2(637.627991F, -103.531998F), new Vector2(638.419983F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(639.572021F, -103.531998F), new Vector2(640.538025F, -103.166F), new Vector2(641.317993F, -102.433998F));
+ builder.AddCubicBezier(new Vector2(642.098022F, -101.702003F), new Vector2(642.487976F, -100.699997F), new Vector2(642.487976F, -99.4280014F));
+ builder.AddLine(new Vector2(642.487976F, -89.0960007F));
+ builder.AddLine(new Vector2(645.763977F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(634.171997F, -89.0960007F));
+ builder.AddLine(new Vector2(634.171997F, -100.112F));
+ builder.AddCubicBezier(new Vector2(634.171997F, -101.431999F), new Vector2(633.890015F, -102.571999F), new Vector2(633.325989F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(632.762024F, -104.491997F), new Vector2(631.994019F, -105.236F), new Vector2(631.021973F, -105.764F));
+ builder.AddCubicBezier(new Vector2(630.049988F, -106.292F), new Vector2(628.963989F, -106.556F), new Vector2(627.763977F, -106.556F));
+ builder.AddCubicBezier(new Vector2(626.539978F, -106.556F), new Vector2(625.435974F, -106.286003F), new Vector2(624.452026F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(623.468018F, -105.206001F), new Vector2(622.69397F, -104.456001F), new Vector2(622.130005F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(621.565979F, -102.536003F), new Vector2(621.283997F, -101.407997F), new Vector2(621.283997F, -100.112F));
+ builder.AddLine(new Vector2(622.616028F, -99.4280014F));
+ builder.AddCubicBezier(new Vector2(622.616028F, -100.292F), new Vector2(622.807983F, -101.024002F), new Vector2(623.192017F, -101.624001F));
+ builder.AddCubicBezier(new Vector2(623.575989F, -102.223999F), new Vector2(624.080017F, -102.692001F), new Vector2(624.703979F, -103.028F));
+ builder.AddCubicBezier(new Vector2(625.328003F, -103.363998F), new Vector2(626.036011F, -103.531998F), new Vector2(626.828003F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(628.004028F, -103.531998F), new Vector2(628.981995F, -103.166F), new Vector2(629.762024F, -102.433998F));
+ builder.AddCubicBezier(new Vector2(630.541992F, -101.702003F), new Vector2(630.932007F, -100.699997F), new Vector2(630.932007F, -99.4280014F));
+ builder.AddLine(new Vector2(630.932007F, -89.0960007F));
+ builder.AddLine(new Vector2(634.171997F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(622.616028F, -89.0960007F));
+ builder.AddLine(new Vector2(622.616028F, -106.195999F));
+ builder.AddLine(new Vector2(619.375977F, -106.195999F));
+ builder.AddLine(new Vector2(619.375977F, -89.0960007F));
+ builder.AddLine(new Vector2(622.616028F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0901()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(614.659973F, -89.0960007F));
+ builder.AddLine(new Vector2(614.659973F, -106.195999F));
+ builder.AddLine(new Vector2(611.383972F, -106.195999F));
+ builder.AddLine(new Vector2(611.383972F, -102.019997F));
+ builder.AddLine(new Vector2(611.995972F, -97.8799973F));
+ builder.AddLine(new Vector2(611.383972F, -93.7040024F));
+ builder.AddLine(new Vector2(611.383972F, -89.0960007F));
+ builder.AddLine(new Vector2(614.659973F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(603.356018F, -92.552002F));
+ builder.AddCubicBezier(new Vector2(602.515991F, -93.0559998F), new Vector2(601.862F, -93.7460022F), new Vector2(601.393982F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(600.926025F, -95.4980011F), new Vector2(600.692017F, -96.512001F), new Vector2(600.692017F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(600.692017F, -98.7919998F), new Vector2(600.926025F, -99.7939987F), new Vector2(601.393982F, -100.669998F));
+ builder.AddCubicBezier(new Vector2(601.862F, -101.545998F), new Vector2(602.51001F, -102.236F), new Vector2(603.338013F, -102.739998F));
+ builder.AddCubicBezier(new Vector2(604.166016F, -103.244003F), new Vector2(605.119995F, -103.496002F), new Vector2(606.200012F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(607.280029F, -103.496002F), new Vector2(608.221985F, -103.25F), new Vector2(609.026001F, -102.758003F));
+ builder.AddCubicBezier(new Vector2(609.830017F, -102.265999F), new Vector2(610.460022F, -101.575996F), new Vector2(610.916016F, -100.688004F));
+ builder.AddCubicBezier(new Vector2(611.372009F, -99.8000031F), new Vector2(611.599976F, -98.7799988F), new Vector2(611.599976F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(611.599976F, -95.9240036F), new Vector2(611.107971F, -94.526001F), new Vector2(610.124023F, -93.4339981F));
+ builder.AddCubicBezier(new Vector2(609.140015F, -92.3420029F), new Vector2(607.843994F, -91.7959976F), new Vector2(606.236023F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(605.156006F, -91.7959976F), new Vector2(604.195984F, -92.0479965F), new Vector2(603.356018F, -92.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(609.187988F, -89.5459976F));
+ builder.AddCubicBezier(new Vector2(610.219971F, -90.0859985F), new Vector2(611.041992F, -90.8359985F), new Vector2(611.653992F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(612.265991F, -92.7559967F), new Vector2(612.607971F, -93.8479996F), new Vector2(612.679993F, -95.0719986F));
+ builder.AddLine(new Vector2(612.679993F, -100.220001F));
+ builder.AddCubicBezier(new Vector2(612.607971F, -101.468002F), new Vector2(612.26001F, -102.566002F), new Vector2(611.635986F, -103.514F));
+ builder.AddCubicBezier(new Vector2(611.012024F, -104.461998F), new Vector2(610.190002F, -105.206001F), new Vector2(609.169983F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(608.150024F, -106.286003F), new Vector2(606.992004F, -106.556F), new Vector2(605.695984F, -106.556F));
+ builder.AddCubicBezier(new Vector2(604.112F, -106.556F), new Vector2(602.690002F, -106.160004F), new Vector2(601.429993F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(600.169983F, -104.575996F), new Vector2(599.174011F, -103.508003F), new Vector2(598.442017F, -102.164001F));
+ builder.AddCubicBezier(new Vector2(597.710022F, -100.82F), new Vector2(597.343994F, -99.3079987F), new Vector2(597.343994F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(597.343994F, -95.947998F), new Vector2(597.710022F, -94.435997F), new Vector2(598.442017F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(599.174011F, -91.7480011F), new Vector2(600.169983F, -90.685997F), new Vector2(601.429993F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(602.690002F, -89.1259995F), new Vector2(604.112F, -88.7360001F), new Vector2(605.695984F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(606.992004F, -88.7360001F), new Vector2(608.156006F, -89.0059967F), new Vector2(609.187988F, -89.5459976F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0902()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(581.935974F, -89.0960007F));
+ builder.AddLine(new Vector2(581.935974F, -114.800003F));
+ builder.AddLine(new Vector2(578.695984F, -114.800003F));
+ builder.AddLine(new Vector2(578.695984F, -89.0960007F));
+ builder.AddLine(new Vector2(581.935974F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(594.031982F, -89.0960007F));
+ builder.AddLine(new Vector2(594.031982F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(594.031982F, -101.059998F), new Vector2(593.744019F, -102.248001F), new Vector2(593.16803F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(592.59198F, -104.311996F), new Vector2(591.80603F, -105.115997F), new Vector2(590.809998F, -105.692001F));
+ builder.AddCubicBezier(new Vector2(589.814026F, -106.267998F), new Vector2(588.66803F, -106.556F), new Vector2(587.372009F, -106.556F));
+ builder.AddCubicBezier(new Vector2(586.075989F, -106.556F), new Vector2(584.911987F, -106.262001F), new Vector2(583.880005F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(582.848022F, -105.085999F), new Vector2(582.044006F, -104.288002F), new Vector2(581.468018F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(580.892029F, -102.272003F), new Vector2(580.604004F, -101.120003F), new Vector2(580.604004F, -99.8239975F));
+ builder.AddLine(new Vector2(581.935974F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(581.935974F, -99.9319992F), new Vector2(582.127991F, -100.699997F), new Vector2(582.512024F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(582.895996F, -102.043999F), new Vector2(583.424011F, -102.571999F), new Vector2(584.096008F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(584.768005F, -103.339996F), new Vector2(585.536011F, -103.531998F), new Vector2(586.400024F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(587.695984F, -103.531998F), new Vector2(588.745972F, -103.112F), new Vector2(589.549988F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(590.354004F, -101.431999F), new Vector2(590.755981F, -100.363998F), new Vector2(590.755981F, -99.0680008F));
+ builder.AddLine(new Vector2(590.755981F, -89.0960007F));
+ builder.AddLine(new Vector2(594.031982F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0903()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(573.349976F, -90.1399994F));
+ builder.AddCubicBezier(new Vector2(574.48999F, -91.0759964F), new Vector2(575.059998F, -92.3479996F), new Vector2(575.059998F, -93.9560013F));
+ builder.AddCubicBezier(new Vector2(575.059998F, -95.012001F), new Vector2(574.838013F, -95.8639984F), new Vector2(574.393982F, -96.512001F));
+ builder.AddCubicBezier(new Vector2(573.950012F, -97.1600037F), new Vector2(573.380005F, -97.6760025F), new Vector2(572.684021F, -98.0599976F));
+ builder.AddCubicBezier(new Vector2(571.987976F, -98.4440002F), new Vector2(571.255981F, -98.75F), new Vector2(570.487976F, -98.9779968F));
+ builder.AddCubicBezier(new Vector2(569.719971F, -99.2060013F), new Vector2(568.981995F, -99.4280014F), new Vector2(568.273987F, -99.6439972F));
+ builder.AddCubicBezier(new Vector2(567.565979F, -99.8600006F), new Vector2(566.995972F, -100.124001F), new Vector2(566.564026F, -100.435997F));
+ builder.AddCubicBezier(new Vector2(566.132019F, -100.748001F), new Vector2(565.916016F, -101.192001F), new Vector2(565.916016F, -101.767998F));
+ builder.AddCubicBezier(new Vector2(565.916016F, -102.32F), new Vector2(566.161987F, -102.764F), new Vector2(566.653992F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(567.145996F, -103.435997F), new Vector2(567.859985F, -103.603996F), new Vector2(568.796021F, -103.603996F));
+ builder.AddCubicBezier(new Vector2(569.684021F, -103.603996F), new Vector2(570.476013F, -103.435997F), new Vector2(571.171997F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(571.867981F, -102.764F), new Vector2(572.468018F, -102.283997F), new Vector2(572.971985F, -101.660004F));
+ builder.AddLine(new Vector2(575.059998F, -103.748001F));
+ builder.AddCubicBezier(new Vector2(574.388F, -104.683998F), new Vector2(573.530029F, -105.386002F), new Vector2(572.486023F, -105.853996F));
+ builder.AddCubicBezier(new Vector2(571.442017F, -106.321999F), new Vector2(570.247986F, -106.556F), new Vector2(568.903992F, -106.556F));
+ builder.AddCubicBezier(new Vector2(567.632019F, -106.556F), new Vector2(566.539978F, -106.351997F), new Vector2(565.627991F, -105.944F));
+ builder.AddCubicBezier(new Vector2(564.716003F, -105.536003F), new Vector2(564.013977F, -104.954002F), new Vector2(563.521973F, -104.197998F));
+ builder.AddCubicBezier(new Vector2(563.030029F, -103.442001F), new Vector2(562.783997F, -102.547997F), new Vector2(562.783997F, -101.515999F));
+ builder.AddCubicBezier(new Vector2(562.783997F, -100.484001F), new Vector2(563.005981F, -99.6500015F), new Vector2(563.450012F, -99.0139999F));
+ builder.AddCubicBezier(new Vector2(563.893982F, -98.3779984F), new Vector2(564.463989F, -97.8799973F), new Vector2(565.159973F, -97.5199966F));
+ builder.AddCubicBezier(new Vector2(565.856018F, -97.1600037F), new Vector2(566.593994F, -96.8720016F), new Vector2(567.374023F, -96.6559982F));
+ builder.AddCubicBezier(new Vector2(568.153992F, -96.4400024F), new Vector2(568.892029F, -96.2180023F), new Vector2(569.588013F, -95.9899979F));
+ builder.AddCubicBezier(new Vector2(570.283997F, -95.762001F), new Vector2(570.854004F, -95.473999F), new Vector2(571.297974F, -95.1259995F));
+ builder.AddCubicBezier(new Vector2(571.742004F, -94.7779999F), new Vector2(571.963989F, -94.2919998F), new Vector2(571.963989F, -93.6679993F));
+ builder.AddCubicBezier(new Vector2(571.963989F, -93.0439987F), new Vector2(571.687988F, -92.5579987F), new Vector2(571.135986F, -92.2099991F));
+ builder.AddCubicBezier(new Vector2(570.583984F, -91.8619995F), new Vector2(569.804016F, -91.6880035F), new Vector2(568.796021F, -91.6880035F));
+ builder.AddCubicBezier(new Vector2(567.788025F, -91.6880035F), new Vector2(566.875977F, -91.8740005F), new Vector2(566.059998F, -92.2460022F));
+ builder.AddCubicBezier(new Vector2(565.244019F, -92.6179962F), new Vector2(564.523987F, -93.1880035F), new Vector2(563.900024F, -93.9560013F));
+ builder.AddLine(new Vector2(561.812012F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(562.340027F, -91.2200012F), new Vector2(562.958008F, -90.6620026F), new Vector2(563.666016F, -90.1940002F));
+ builder.AddCubicBezier(new Vector2(564.374023F, -89.7259979F), new Vector2(565.159973F, -89.3659973F), new Vector2(566.023987F, -89.1139984F));
+ builder.AddCubicBezier(new Vector2(566.888F, -88.8619995F), new Vector2(567.799988F, -88.7360001F), new Vector2(568.76001F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(570.679993F, -88.7360001F), new Vector2(572.210022F, -89.2040024F), new Vector2(573.349976F, -90.1399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0904()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(535.640015F, -89.0960007F));
+ builder.AddLine(new Vector2(540.607971F, -101.984001F));
+ builder.AddLine(new Vector2(539.419983F, -101.984001F));
+ builder.AddLine(new Vector2(544.35199F, -89.0960007F));
+ builder.AddLine(new Vector2(546.26001F, -89.0960007F));
+ builder.AddLine(new Vector2(552.992004F, -106.195999F));
+ builder.AddLine(new Vector2(549.607971F, -106.195999F));
+ builder.AddLine(new Vector2(544.711975F, -92.8759995F));
+ builder.AddLine(new Vector2(545.791992F, -92.8759995F));
+ builder.AddLine(new Vector2(540.932007F, -106.195999F));
+ builder.AddLine(new Vector2(539.059998F, -106.195999F));
+ builder.AddLine(new Vector2(534.200012F, -92.8759995F));
+ builder.AddLine(new Vector2(535.280029F, -92.8759995F));
+ builder.AddLine(new Vector2(530.383972F, -106.195999F));
+ builder.AddLine(new Vector2(527F, -106.195999F));
+ builder.AddLine(new Vector2(533.731995F, -89.0960007F));
+ builder.AddLine(new Vector2(535.640015F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0905()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(513.968018F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(513.127991F, -93.1279984F), new Vector2(512.468018F, -93.8180008F), new Vector2(511.988007F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(511.507996F, -95.5699997F), new Vector2(511.268005F, -96.5719986F), new Vector2(511.268005F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(511.268005F, -98.8040009F), new Vector2(511.507996F, -99.788002F), new Vector2(511.988007F, -100.652F));
+ builder.AddCubicBezier(new Vector2(512.468018F, -101.515999F), new Vector2(513.127991F, -102.194F), new Vector2(513.968018F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(514.807983F, -103.178001F), new Vector2(515.755981F, -103.424004F), new Vector2(516.812012F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(517.916016F, -103.424004F), new Vector2(518.882019F, -103.178001F), new Vector2(519.710022F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(520.538025F, -102.194F), new Vector2(521.197998F, -101.515999F), new Vector2(521.690002F, -100.652F));
+ builder.AddCubicBezier(new Vector2(522.182007F, -99.788002F), new Vector2(522.427979F, -98.8040009F), new Vector2(522.427979F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(522.427979F, -96.5719986F), new Vector2(522.187988F, -95.5699997F), new Vector2(521.708008F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(521.228027F, -93.8180008F), new Vector2(520.567993F, -93.1279984F), new Vector2(519.728027F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(518.888F, -92.1200027F), new Vector2(517.916016F, -91.8679962F), new Vector2(516.812012F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(515.755981F, -91.8679962F), new Vector2(514.807983F, -92.1200027F), new Vector2(513.968018F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(521.366028F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(522.721985F, -90.7160034F), new Vector2(523.796021F, -91.7900009F), new Vector2(524.588013F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(525.380005F, -94.5019989F), new Vector2(525.776001F, -96.0199966F), new Vector2(525.776001F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(525.776001F, -99.3560028F), new Vector2(525.380005F, -100.856003F), new Vector2(524.588013F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(523.796021F, -103.543999F), new Vector2(522.721985F, -104.606003F), new Vector2(521.366028F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(520.01001F, -106.166F), new Vector2(518.492004F, -106.556F), new Vector2(516.812012F, -106.556F));
+ builder.AddCubicBezier(new Vector2(515.156006F, -106.556F), new Vector2(513.656006F, -106.160004F), new Vector2(512.312012F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(510.967987F, -104.575996F), new Vector2(509.899994F, -103.514F), new Vector2(509.108002F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(508.31601F, -100.849998F), new Vector2(507.920013F, -99.3560028F), new Vector2(507.920013F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(507.920013F, -96.0199966F), new Vector2(508.31601F, -94.5019989F), new Vector2(509.108002F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(509.899994F, -91.7900009F), new Vector2(510.967987F, -90.7160034F), new Vector2(512.312012F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(513.656006F, -89.1320038F), new Vector2(515.156006F, -88.7360001F), new Vector2(516.812012F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(518.492004F, -88.7360001F), new Vector2(520.01001F, -89.1320038F), new Vector2(521.366028F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0906()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(501.115997F, -100.472F));
+ builder.AddLine(new Vector2(501.115997F, -103.568001F));
+ builder.AddLine(new Vector2(486.5F, -103.568001F));
+ builder.AddLine(new Vector2(486.5F, -100.472F));
+ builder.AddLine(new Vector2(501.115997F, -100.472F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(503.708008F, -89.0960007F));
+ builder.AddLine(new Vector2(503.708008F, -114.080002F));
+ builder.AddLine(new Vector2(500.324005F, -114.080002F));
+ builder.AddLine(new Vector2(500.324005F, -89.0960007F));
+ builder.AddLine(new Vector2(503.708008F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(487.579987F, -89.0960007F));
+ builder.AddLine(new Vector2(487.579987F, -114.080002F));
+ builder.AddLine(new Vector2(484.196014F, -114.080002F));
+ builder.AddLine(new Vector2(484.196014F, -89.0960007F));
+ builder.AddLine(new Vector2(487.579987F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0907()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(470.246002F, -89.4380035F));
+ builder.AddCubicBezier(new Vector2(470.690002F, -89.9059982F), new Vector2(470.911987F, -90.4639969F), new Vector2(470.911987F, -91.1119995F));
+ builder.AddCubicBezier(new Vector2(470.911987F, -91.7839966F), new Vector2(470.690002F, -92.3420029F), new Vector2(470.246002F, -92.7860031F));
+ builder.AddCubicBezier(new Vector2(469.802002F, -93.2300034F), new Vector2(469.243988F, -93.4520035F), new Vector2(468.571991F, -93.4520035F));
+ builder.AddCubicBezier(new Vector2(467.876007F, -93.4520035F), new Vector2(467.312012F, -93.2300034F), new Vector2(466.880005F, -92.7860031F));
+ builder.AddCubicBezier(new Vector2(466.447998F, -92.3420029F), new Vector2(466.231995F, -91.7839966F), new Vector2(466.231995F, -91.1119995F));
+ builder.AddCubicBezier(new Vector2(466.231995F, -90.4639969F), new Vector2(466.447998F, -89.9059982F), new Vector2(466.880005F, -89.4380035F));
+ builder.AddCubicBezier(new Vector2(467.312012F, -88.9700012F), new Vector2(467.876007F, -88.7360001F), new Vector2(468.571991F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(469.243988F, -88.7360001F), new Vector2(469.802002F, -88.9700012F), new Vector2(470.246002F, -89.4380035F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0908()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(458.131989F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(459.308014F, -89.9960022F), new Vector2(460.31601F, -90.7279968F), new Vector2(461.156006F, -91.6880035F));
+ builder.AddLine(new Vector2(459.067993F, -93.8119965F));
+ builder.AddCubicBezier(new Vector2(458.492004F, -93.1399994F), new Vector2(457.802002F, -92.6360016F), new Vector2(456.997986F, -92.3000031F));
+ builder.AddCubicBezier(new Vector2(456.194F, -91.9639969F), new Vector2(455.312012F, -91.7959976F), new Vector2(454.35199F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(453.200012F, -91.7959976F), new Vector2(452.179993F, -92.0419998F), new Vector2(451.291992F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(450.403992F, -93.026001F), new Vector2(449.720001F, -93.7220001F), new Vector2(449.23999F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(448.76001F, -95.5220032F), new Vector2(448.519989F, -96.5719986F), new Vector2(448.519989F, -97.7720032F));
+ builder.AddCubicBezier(new Vector2(448.519989F, -98.947998F), new Vector2(448.747986F, -99.9680023F), new Vector2(449.20401F, -100.832001F));
+ builder.AddCubicBezier(new Vector2(449.660004F, -101.695999F), new Vector2(450.308014F, -102.367996F), new Vector2(451.14801F, -102.848F));
+ builder.AddCubicBezier(new Vector2(451.988007F, -103.328003F), new Vector2(452.959991F, -103.568001F), new Vector2(454.063995F, -103.568001F));
+ builder.AddCubicBezier(new Vector2(455.119995F, -103.568001F), new Vector2(456.019989F, -103.346001F), new Vector2(456.764008F, -102.902F));
+ builder.AddCubicBezier(new Vector2(457.507996F, -102.458F), new Vector2(458.084015F, -101.834F), new Vector2(458.492004F, -101.029999F));
+ builder.AddCubicBezier(new Vector2(458.899994F, -100.225998F), new Vector2(459.104004F, -99.2480011F), new Vector2(459.104004F, -98.0960007F));
+ builder.AddLine(new Vector2(460.291992F, -99.1399994F));
+ builder.AddLine(new Vector2(447.584015F, -99.1399994F));
+ builder.AddLine(new Vector2(447.584015F, -96.4400024F));
+ builder.AddLine(new Vector2(462.019989F, -96.4400024F));
+ builder.AddCubicBezier(new Vector2(462.09201F, -96.776001F), new Vector2(462.140015F, -97.0820007F), new Vector2(462.164001F, -97.3580017F));
+ builder.AddCubicBezier(new Vector2(462.187988F, -97.6340027F), new Vector2(462.200012F, -97.8919983F), new Vector2(462.200012F, -98.1320038F));
+ builder.AddCubicBezier(new Vector2(462.200012F, -99.7639999F), new Vector2(461.858002F, -101.216003F), new Vector2(461.174011F, -102.487999F));
+ builder.AddCubicBezier(new Vector2(460.48999F, -103.760002F), new Vector2(459.536011F, -104.755997F), new Vector2(458.312012F, -105.475998F));
+ builder.AddCubicBezier(new Vector2(457.088013F, -106.195999F), new Vector2(455.696014F, -106.556F), new Vector2(454.135986F, -106.556F));
+ builder.AddCubicBezier(new Vector2(452.480011F, -106.556F), new Vector2(450.985992F, -106.166F), new Vector2(449.653992F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(448.321991F, -104.606003F), new Vector2(447.265991F, -103.543999F), new Vector2(446.485992F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(445.705994F, -100.856003F), new Vector2(445.31601F, -99.3440018F), new Vector2(445.31601F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(445.31601F, -95.9599991F), new Vector2(445.712006F, -94.435997F), new Vector2(446.503998F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(447.29599F, -91.7480011F), new Vector2(448.369995F, -90.685997F), new Vector2(449.726013F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(451.082001F, -89.1259995F), new Vector2(452.623993F, -88.7360001F), new Vector2(454.35199F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(455.696014F, -88.7360001F), new Vector2(456.955994F, -88.987999F), new Vector2(458.131989F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0909()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(441.679993F, -89.0960007F));
+ builder.AddLine(new Vector2(441.679993F, -114.800003F));
+ builder.AddLine(new Vector2(438.440002F, -114.800003F));
+ builder.AddLine(new Vector2(438.440002F, -89.0960007F));
+ builder.AddLine(new Vector2(441.679993F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0910()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(423.122009F, -92.552002F));
+ builder.AddCubicBezier(new Vector2(422.294006F, -93.0559998F), new Vector2(421.65799F, -93.7460022F), new Vector2(421.213989F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(420.769989F, -95.4980011F), new Vector2(420.548004F, -96.5F), new Vector2(420.548004F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(420.548004F, -98.7799988F), new Vector2(420.776001F, -99.7939987F), new Vector2(421.231995F, -100.669998F));
+ builder.AddCubicBezier(new Vector2(421.687988F, -101.545998F), new Vector2(422.324005F, -102.236F), new Vector2(423.140015F, -102.739998F));
+ builder.AddCubicBezier(new Vector2(423.955994F, -103.244003F), new Vector2(424.891998F, -103.496002F), new Vector2(425.947998F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(427.028015F, -103.496002F), new Vector2(427.976013F, -103.244003F), new Vector2(428.791992F, -102.739998F));
+ builder.AddCubicBezier(new Vector2(429.608002F, -102.236F), new Vector2(430.25F, -101.545998F), new Vector2(430.717987F, -100.669998F));
+ builder.AddCubicBezier(new Vector2(431.186005F, -99.7939987F), new Vector2(431.420013F, -98.7919998F), new Vector2(431.420013F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(431.420013F, -96.512001F), new Vector2(431.186005F, -95.4980011F), new Vector2(430.717987F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(430.25F, -93.7460022F), new Vector2(429.608002F, -93.0559998F), new Vector2(428.791992F, -92.552002F));
+ builder.AddCubicBezier(new Vector2(427.976013F, -92.0479965F), new Vector2(427.028015F, -91.7959976F), new Vector2(425.947998F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(424.891998F, -91.7959976F), new Vector2(423.950012F, -92.0479965F), new Vector2(423.122009F, -92.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(420.727997F, -81.9319992F));
+ builder.AddLine(new Vector2(420.727997F, -93.3799973F));
+ builder.AddLine(new Vector2(420.115997F, -97.5559998F));
+ builder.AddLine(new Vector2(420.727997F, -101.695999F));
+ builder.AddLine(new Vector2(420.727997F, -106.195999F));
+ builder.AddLine(new Vector2(417.488007F, -106.195999F));
+ builder.AddLine(new Vector2(417.488007F, -81.9319992F));
+ builder.AddLine(new Vector2(420.727997F, -81.9319992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(430.717987F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(431.977997F, -90.685997F), new Vector2(432.967987F, -91.7480011F), new Vector2(433.687988F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(434.40799F, -94.435997F), new Vector2(434.768005F, -95.947998F), new Vector2(434.768005F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(434.768005F, -99.3079987F), new Vector2(434.40799F, -100.82F), new Vector2(433.687988F, -102.164001F));
+ builder.AddCubicBezier(new Vector2(432.967987F, -103.508003F), new Vector2(431.977997F, -104.575996F), new Vector2(430.717987F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(429.458008F, -106.160004F), new Vector2(428.048004F, -106.556F), new Vector2(426.488007F, -106.556F));
+ builder.AddCubicBezier(new Vector2(425.216003F, -106.556F), new Vector2(424.058014F, -106.286003F), new Vector2(423.014008F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(421.970001F, -105.206001F), new Vector2(421.130005F, -104.461998F), new Vector2(420.493988F, -103.514F));
+ builder.AddCubicBezier(new Vector2(419.858002F, -102.566002F), new Vector2(419.503998F, -101.468002F), new Vector2(419.432007F, -100.220001F));
+ builder.AddLine(new Vector2(419.432007F, -95.0719986F));
+ builder.AddCubicBezier(new Vector2(419.503998F, -93.8479996F), new Vector2(419.85199F, -92.7559967F), new Vector2(420.476013F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(421.100006F, -90.8359985F), new Vector2(421.93399F, -90.0859985F), new Vector2(422.977997F, -89.5459976F));
+ builder.AddCubicBezier(new Vector2(424.022003F, -89.0059967F), new Vector2(425.191986F, -88.7360001F), new Vector2(426.488007F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(428.048004F, -88.7360001F), new Vector2(429.458008F, -89.1259995F), new Vector2(430.717987F, -89.9059982F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0911()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(402.079987F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(401.23999F, -93.1279984F), new Vector2(400.579987F, -93.8180008F), new Vector2(400.100006F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(399.619995F, -95.5699997F), new Vector2(399.380005F, -96.5719986F), new Vector2(399.380005F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(399.380005F, -98.8040009F), new Vector2(399.619995F, -99.788002F), new Vector2(400.100006F, -100.652F));
+ builder.AddCubicBezier(new Vector2(400.579987F, -101.515999F), new Vector2(401.23999F, -102.194F), new Vector2(402.079987F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(402.920013F, -103.178001F), new Vector2(403.868011F, -103.424004F), new Vector2(404.924011F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(406.028015F, -103.424004F), new Vector2(406.993988F, -103.178001F), new Vector2(407.821991F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(408.649994F, -102.194F), new Vector2(409.309998F, -101.515999F), new Vector2(409.802002F, -100.652F));
+ builder.AddCubicBezier(new Vector2(410.294006F, -99.788002F), new Vector2(410.540009F, -98.8040009F), new Vector2(410.540009F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(410.540009F, -96.5719986F), new Vector2(410.299988F, -95.5699997F), new Vector2(409.820007F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(409.339996F, -93.8180008F), new Vector2(408.679993F, -93.1279984F), new Vector2(407.839996F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(407F, -92.1200027F), new Vector2(406.028015F, -91.8679962F), new Vector2(404.924011F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(403.868011F, -91.8679962F), new Vector2(402.920013F, -92.1200027F), new Vector2(402.079987F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(409.477997F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(410.834015F, -90.7160034F), new Vector2(411.90799F, -91.7900009F), new Vector2(412.700012F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(413.492004F, -94.5019989F), new Vector2(413.888F, -96.0199966F), new Vector2(413.888F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(413.888F, -99.3560028F), new Vector2(413.492004F, -100.856003F), new Vector2(412.700012F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(411.90799F, -103.543999F), new Vector2(410.834015F, -104.606003F), new Vector2(409.477997F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(408.122009F, -106.166F), new Vector2(406.604004F, -106.556F), new Vector2(404.924011F, -106.556F));
+ builder.AddCubicBezier(new Vector2(403.268005F, -106.556F), new Vector2(401.768005F, -106.160004F), new Vector2(400.424011F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(399.079987F, -104.575996F), new Vector2(398.011993F, -103.514F), new Vector2(397.220001F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(396.428009F, -100.849998F), new Vector2(396.032013F, -99.3560028F), new Vector2(396.032013F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(396.032013F, -96.0199966F), new Vector2(396.428009F, -94.5019989F), new Vector2(397.220001F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(398.011993F, -91.7900009F), new Vector2(399.079987F, -90.7160034F), new Vector2(400.424011F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(401.768005F, -89.1320038F), new Vector2(403.268005F, -88.7360001F), new Vector2(404.924011F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(406.604004F, -88.7360001F), new Vector2(408.122009F, -89.1320038F), new Vector2(409.477997F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0912()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(389.552002F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(390.727997F, -89.9960022F), new Vector2(391.735992F, -90.7279968F), new Vector2(392.575989F, -91.6880035F));
+ builder.AddLine(new Vector2(390.488007F, -93.8119965F));
+ builder.AddCubicBezier(new Vector2(389.911987F, -93.1399994F), new Vector2(389.221985F, -92.6360016F), new Vector2(388.417999F, -92.3000031F));
+ builder.AddCubicBezier(new Vector2(387.614014F, -91.9639969F), new Vector2(386.731995F, -91.7959976F), new Vector2(385.772003F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(384.619995F, -91.7959976F), new Vector2(383.600006F, -92.0419998F), new Vector2(382.712006F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(381.824005F, -93.026001F), new Vector2(381.140015F, -93.7220001F), new Vector2(380.660004F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(380.179993F, -95.5220032F), new Vector2(379.940002F, -96.5719986F), new Vector2(379.940002F, -97.7720032F));
+ builder.AddCubicBezier(new Vector2(379.940002F, -98.947998F), new Vector2(380.167999F, -99.9680023F), new Vector2(380.623993F, -100.832001F));
+ builder.AddCubicBezier(new Vector2(381.079987F, -101.695999F), new Vector2(381.727997F, -102.367996F), new Vector2(382.567993F, -102.848F));
+ builder.AddCubicBezier(new Vector2(383.40799F, -103.328003F), new Vector2(384.380005F, -103.568001F), new Vector2(385.484009F, -103.568001F));
+ builder.AddCubicBezier(new Vector2(386.540009F, -103.568001F), new Vector2(387.440002F, -103.346001F), new Vector2(388.18399F, -102.902F));
+ builder.AddCubicBezier(new Vector2(388.928009F, -102.458F), new Vector2(389.503998F, -101.834F), new Vector2(389.911987F, -101.029999F));
+ builder.AddCubicBezier(new Vector2(390.320007F, -100.225998F), new Vector2(390.523987F, -99.2480011F), new Vector2(390.523987F, -98.0960007F));
+ builder.AddLine(new Vector2(391.712006F, -99.1399994F));
+ builder.AddLine(new Vector2(379.003998F, -99.1399994F));
+ builder.AddLine(new Vector2(379.003998F, -96.4400024F));
+ builder.AddLine(new Vector2(393.440002F, -96.4400024F));
+ builder.AddCubicBezier(new Vector2(393.511993F, -96.776001F), new Vector2(393.559998F, -97.0820007F), new Vector2(393.584015F, -97.3580017F));
+ builder.AddCubicBezier(new Vector2(393.608002F, -97.6340027F), new Vector2(393.619995F, -97.8919983F), new Vector2(393.619995F, -98.1320038F));
+ builder.AddCubicBezier(new Vector2(393.619995F, -99.7639999F), new Vector2(393.278015F, -101.216003F), new Vector2(392.593994F, -102.487999F));
+ builder.AddCubicBezier(new Vector2(391.910004F, -103.760002F), new Vector2(390.955994F, -104.755997F), new Vector2(389.731995F, -105.475998F));
+ builder.AddCubicBezier(new Vector2(388.507996F, -106.195999F), new Vector2(387.115997F, -106.556F), new Vector2(385.556F, -106.556F));
+ builder.AddCubicBezier(new Vector2(383.899994F, -106.556F), new Vector2(382.406006F, -106.166F), new Vector2(381.074005F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(379.742004F, -104.606003F), new Vector2(378.686005F, -103.543999F), new Vector2(377.906006F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(377.126007F, -100.856003F), new Vector2(376.735992F, -99.3440018F), new Vector2(376.735992F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(376.735992F, -95.9599991F), new Vector2(377.131989F, -94.435997F), new Vector2(377.924011F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(378.716003F, -91.7480011F), new Vector2(379.790009F, -90.685997F), new Vector2(381.145996F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(382.502014F, -89.1259995F), new Vector2(384.044006F, -88.7360001F), new Vector2(385.772003F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(387.115997F, -88.7360001F), new Vector2(388.376007F, -88.987999F), new Vector2(389.552002F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0913()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(362.533997F, -92.552002F));
+ builder.AddCubicBezier(new Vector2(361.705994F, -93.0559998F), new Vector2(361.070007F, -93.7460022F), new Vector2(360.626007F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(360.182007F, -95.4980011F), new Vector2(359.959991F, -96.5F), new Vector2(359.959991F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(359.959991F, -98.7799988F), new Vector2(360.187988F, -99.7939987F), new Vector2(360.644012F, -100.669998F));
+ builder.AddCubicBezier(new Vector2(361.100006F, -101.545998F), new Vector2(361.735992F, -102.236F), new Vector2(362.552002F, -102.739998F));
+ builder.AddCubicBezier(new Vector2(363.368011F, -103.244003F), new Vector2(364.303986F, -103.496002F), new Vector2(365.359985F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(366.440002F, -103.496002F), new Vector2(367.388F, -103.244003F), new Vector2(368.20401F, -102.739998F));
+ builder.AddCubicBezier(new Vector2(369.019989F, -102.236F), new Vector2(369.661987F, -101.545998F), new Vector2(370.130005F, -100.669998F));
+ builder.AddCubicBezier(new Vector2(370.597992F, -99.7939987F), new Vector2(370.832001F, -98.7919998F), new Vector2(370.832001F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(370.832001F, -96.512001F), new Vector2(370.597992F, -95.4980011F), new Vector2(370.130005F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(369.661987F, -93.7460022F), new Vector2(369.019989F, -93.0559998F), new Vector2(368.20401F, -92.552002F));
+ builder.AddCubicBezier(new Vector2(367.388F, -92.0479965F), new Vector2(366.440002F, -91.7959976F), new Vector2(365.359985F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(364.303986F, -91.7959976F), new Vector2(363.362F, -92.0479965F), new Vector2(362.533997F, -92.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(360.140015F, -81.9319992F));
+ builder.AddLine(new Vector2(360.140015F, -93.3799973F));
+ builder.AddLine(new Vector2(359.528015F, -97.5559998F));
+ builder.AddLine(new Vector2(360.140015F, -101.695999F));
+ builder.AddLine(new Vector2(360.140015F, -106.195999F));
+ builder.AddLine(new Vector2(356.899994F, -106.195999F));
+ builder.AddLine(new Vector2(356.899994F, -81.9319992F));
+ builder.AddLine(new Vector2(360.140015F, -81.9319992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(370.130005F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(371.390015F, -90.685997F), new Vector2(372.380005F, -91.7480011F), new Vector2(373.100006F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(373.820007F, -94.435997F), new Vector2(374.179993F, -95.947998F), new Vector2(374.179993F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(374.179993F, -99.3079987F), new Vector2(373.820007F, -100.82F), new Vector2(373.100006F, -102.164001F));
+ builder.AddCubicBezier(new Vector2(372.380005F, -103.508003F), new Vector2(371.390015F, -104.575996F), new Vector2(370.130005F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(368.869995F, -106.160004F), new Vector2(367.459991F, -106.556F), new Vector2(365.899994F, -106.556F));
+ builder.AddCubicBezier(new Vector2(364.627991F, -106.556F), new Vector2(363.470001F, -106.286003F), new Vector2(362.425995F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(361.381989F, -105.206001F), new Vector2(360.541992F, -104.461998F), new Vector2(359.906006F, -103.514F));
+ builder.AddCubicBezier(new Vector2(359.269989F, -102.566002F), new Vector2(358.915985F, -101.468002F), new Vector2(358.843994F, -100.220001F));
+ builder.AddLine(new Vector2(358.843994F, -95.0719986F));
+ builder.AddCubicBezier(new Vector2(358.915985F, -93.8479996F), new Vector2(359.264008F, -92.7559967F), new Vector2(359.888F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(360.511993F, -90.8359985F), new Vector2(361.346008F, -90.0859985F), new Vector2(362.390015F, -89.5459976F));
+ builder.AddCubicBezier(new Vector2(363.43399F, -89.0059967F), new Vector2(364.604004F, -88.7360001F), new Vector2(365.899994F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(367.459991F, -88.7360001F), new Vector2(368.869995F, -89.1259995F), new Vector2(370.130005F, -89.9059982F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0914()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(332.959991F, -89.0960007F));
+ builder.AddLine(new Vector2(332.959991F, -106.195999F));
+ builder.AddLine(new Vector2(329.720001F, -106.195999F));
+ builder.AddLine(new Vector2(329.720001F, -89.0960007F));
+ builder.AddLine(new Vector2(332.959991F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(345.056F, -89.0960007F));
+ builder.AddLine(new Vector2(345.056F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(345.056F, -100.891998F), new Vector2(344.768005F, -102.001999F), new Vector2(344.191986F, -103.045998F));
+ builder.AddCubicBezier(new Vector2(343.615997F, -104.089996F), new Vector2(342.829987F, -104.935997F), new Vector2(341.834015F, -105.584F));
+ builder.AddCubicBezier(new Vector2(340.838013F, -106.232002F), new Vector2(339.691986F, -106.556F), new Vector2(338.395996F, -106.556F));
+ builder.AddCubicBezier(new Vector2(337.100006F, -106.556F), new Vector2(335.936005F, -106.262001F), new Vector2(334.903992F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(333.872009F, -105.085999F), new Vector2(333.067993F, -104.288002F), new Vector2(332.492004F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(331.915985F, -102.272003F), new Vector2(331.627991F, -101.120003F), new Vector2(331.627991F, -99.8239975F));
+ builder.AddLine(new Vector2(332.959991F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(332.959991F, -99.9319992F), new Vector2(333.152008F, -100.699997F), new Vector2(333.536011F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(333.920013F, -102.043999F), new Vector2(334.447998F, -102.571999F), new Vector2(335.119995F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(335.791992F, -103.339996F), new Vector2(336.559998F, -103.531998F), new Vector2(337.424011F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(338.720001F, -103.531998F), new Vector2(339.769989F, -103.112F), new Vector2(340.574005F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(341.377991F, -101.431999F), new Vector2(341.779999F, -100.363998F), new Vector2(341.779999F, -99.0680008F));
+ builder.AddLine(new Vector2(341.779999F, -89.0960007F));
+ builder.AddLine(new Vector2(345.056F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0915()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(309.488007F, -89.0960007F));
+ builder.AddLine(new Vector2(314.455994F, -101.984001F));
+ builder.AddLine(new Vector2(313.268005F, -101.984001F));
+ builder.AddLine(new Vector2(318.200012F, -89.0960007F));
+ builder.AddLine(new Vector2(320.108002F, -89.0960007F));
+ builder.AddLine(new Vector2(326.839996F, -106.195999F));
+ builder.AddLine(new Vector2(323.455994F, -106.195999F));
+ builder.AddLine(new Vector2(318.559998F, -92.8759995F));
+ builder.AddLine(new Vector2(319.640015F, -92.8759995F));
+ builder.AddLine(new Vector2(314.779999F, -106.195999F));
+ builder.AddLine(new Vector2(312.90799F, -106.195999F));
+ builder.AddLine(new Vector2(308.048004F, -92.8759995F));
+ builder.AddLine(new Vector2(309.127991F, -92.8759995F));
+ builder.AddLine(new Vector2(304.231995F, -106.195999F));
+ builder.AddLine(new Vector2(300.847992F, -106.195999F));
+ builder.AddLine(new Vector2(307.579987F, -89.0960007F));
+ builder.AddLine(new Vector2(309.488007F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0916()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(287.81601F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(286.976013F, -93.1279984F), new Vector2(286.31601F, -93.8180008F), new Vector2(285.835999F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(285.355988F, -95.5699997F), new Vector2(285.115997F, -96.5719986F), new Vector2(285.115997F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(285.115997F, -98.8040009F), new Vector2(285.355988F, -99.788002F), new Vector2(285.835999F, -100.652F));
+ builder.AddCubicBezier(new Vector2(286.31601F, -101.515999F), new Vector2(286.976013F, -102.194F), new Vector2(287.81601F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(288.656006F, -103.178001F), new Vector2(289.604004F, -103.424004F), new Vector2(290.660004F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(291.764008F, -103.424004F), new Vector2(292.730011F, -103.178001F), new Vector2(293.558014F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(294.385986F, -102.194F), new Vector2(295.04599F, -101.515999F), new Vector2(295.537994F, -100.652F));
+ builder.AddCubicBezier(new Vector2(296.029999F, -99.788002F), new Vector2(296.276001F, -98.8040009F), new Vector2(296.276001F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(296.276001F, -96.5719986F), new Vector2(296.036011F, -95.5699997F), new Vector2(295.556F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(295.075989F, -93.8180008F), new Vector2(294.415985F, -93.1279984F), new Vector2(293.575989F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(292.735992F, -92.1200027F), new Vector2(291.764008F, -91.8679962F), new Vector2(290.660004F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(289.604004F, -91.8679962F), new Vector2(288.656006F, -92.1200027F), new Vector2(287.81601F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(295.213989F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(296.570007F, -90.7160034F), new Vector2(297.644012F, -91.7900009F), new Vector2(298.436005F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(299.227997F, -94.5019989F), new Vector2(299.623993F, -96.0199966F), new Vector2(299.623993F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(299.623993F, -99.3560028F), new Vector2(299.227997F, -100.856003F), new Vector2(298.436005F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(297.644012F, -103.543999F), new Vector2(296.570007F, -104.606003F), new Vector2(295.213989F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(293.858002F, -106.166F), new Vector2(292.339996F, -106.556F), new Vector2(290.660004F, -106.556F));
+ builder.AddCubicBezier(new Vector2(289.003998F, -106.556F), new Vector2(287.503998F, -106.160004F), new Vector2(286.160004F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(284.81601F, -104.575996F), new Vector2(283.747986F, -103.514F), new Vector2(282.955994F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(282.164001F, -100.849998F), new Vector2(281.768005F, -99.3560028F), new Vector2(281.768005F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(281.768005F, -96.0199966F), new Vector2(282.164001F, -94.5019989F), new Vector2(282.955994F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(283.747986F, -91.7900009F), new Vector2(284.81601F, -90.7160034F), new Vector2(286.160004F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(287.503998F, -89.1320038F), new Vector2(289.003998F, -88.7360001F), new Vector2(290.660004F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(292.339996F, -88.7360001F), new Vector2(293.858002F, -89.1320038F), new Vector2(295.213989F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0917()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(264.73999F, -102.344002F));
+ builder.AddCubicBezier(new Vector2(265.507996F, -103.112F), new Vector2(266.492004F, -103.496002F), new Vector2(267.691986F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(268.268005F, -103.496002F), new Vector2(268.772003F, -103.412003F), new Vector2(269.20401F, -103.244003F));
+ builder.AddCubicBezier(new Vector2(269.635986F, -103.075996F), new Vector2(270.032013F, -102.800003F), new Vector2(270.391998F, -102.416F));
+ builder.AddLine(new Vector2(272.515991F, -104.612F));
+ builder.AddCubicBezier(new Vector2(271.915985F, -105.307999F), new Vector2(271.268005F, -105.806F), new Vector2(270.571991F, -106.106003F));
+ builder.AddCubicBezier(new Vector2(269.876007F, -106.405998F), new Vector2(269.096008F, -106.556F), new Vector2(268.231995F, -106.556F));
+ builder.AddCubicBezier(new Vector2(266.335999F, -106.556F), new Vector2(264.884003F, -105.907997F), new Vector2(263.876007F, -104.612F));
+ builder.AddCubicBezier(new Vector2(262.868011F, -103.316002F), new Vector2(262.364014F, -101.575996F), new Vector2(262.364014F, -99.3919983F));
+ builder.AddLine(new Vector2(263.588013F, -98.8160019F));
+ builder.AddCubicBezier(new Vector2(263.588013F, -100.400002F), new Vector2(263.971985F, -101.575996F), new Vector2(264.73999F, -102.344002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(263.588013F, -89.0960007F));
+ builder.AddLine(new Vector2(263.588013F, -106.195999F));
+ builder.AddLine(new Vector2(260.347992F, -106.195999F));
+ builder.AddLine(new Vector2(260.347992F, -89.0960007F));
+ builder.AddLine(new Vector2(263.588013F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0918()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(255.416F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(255.800003F, -110.606003F), new Vector2(255.992004F, -111.103996F), new Vector2(255.992004F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(255.992004F, -112.279999F), new Vector2(255.800003F, -112.765999F), new Vector2(255.416F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(255.031998F, -113.557999F), new Vector2(254.539993F, -113.755997F), new Vector2(253.940002F, -113.755997F));
+ builder.AddCubicBezier(new Vector2(253.339996F, -113.755997F), new Vector2(252.848007F, -113.557999F), new Vector2(252.464005F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(252.080002F, -112.765999F), new Vector2(251.888F, -112.279999F), new Vector2(251.888F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(251.888F, -111.103996F), new Vector2(252.080002F, -110.606003F), new Vector2(252.464005F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(252.848007F, -109.814003F), new Vector2(253.339996F, -109.615997F), new Vector2(253.940002F, -109.615997F));
+ builder.AddCubicBezier(new Vector2(254.539993F, -109.615997F), new Vector2(255.031998F, -109.814003F), new Vector2(255.416F, -110.209999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(255.559998F, -89.0960007F));
+ builder.AddLine(new Vector2(255.559998F, -106.195999F));
+ builder.AddLine(new Vector2(252.283997F, -106.195999F));
+ builder.AddLine(new Vector2(252.283997F, -89.0960007F));
+ builder.AddLine(new Vector2(255.559998F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0919()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(244.688004F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(245.863998F, -89.9960022F), new Vector2(246.871994F, -90.7279968F), new Vector2(247.712006F, -91.6880035F));
+ builder.AddLine(new Vector2(245.623993F, -93.8119965F));
+ builder.AddCubicBezier(new Vector2(245.048004F, -93.1399994F), new Vector2(244.358002F, -92.6360016F), new Vector2(243.554001F, -92.3000031F));
+ builder.AddCubicBezier(new Vector2(242.75F, -91.9639969F), new Vector2(241.867996F, -91.7959976F), new Vector2(240.908005F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(239.755997F, -91.7959976F), new Vector2(238.735992F, -92.0419998F), new Vector2(237.848007F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(236.960007F, -93.026001F), new Vector2(236.276001F, -93.7220001F), new Vector2(235.796005F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(235.315994F, -95.5220032F), new Vector2(235.076004F, -96.5719986F), new Vector2(235.076004F, -97.7720032F));
+ builder.AddCubicBezier(new Vector2(235.076004F, -98.947998F), new Vector2(235.304001F, -99.9680023F), new Vector2(235.759995F, -100.832001F));
+ builder.AddCubicBezier(new Vector2(236.216003F, -101.695999F), new Vector2(236.863998F, -102.367996F), new Vector2(237.703995F, -102.848F));
+ builder.AddCubicBezier(new Vector2(238.544006F, -103.328003F), new Vector2(239.516006F, -103.568001F), new Vector2(240.619995F, -103.568001F));
+ builder.AddCubicBezier(new Vector2(241.675995F, -103.568001F), new Vector2(242.576004F, -103.346001F), new Vector2(243.320007F, -102.902F));
+ builder.AddCubicBezier(new Vector2(244.063995F, -102.458F), new Vector2(244.639999F, -101.834F), new Vector2(245.048004F, -101.029999F));
+ builder.AddCubicBezier(new Vector2(245.455994F, -100.225998F), new Vector2(245.660004F, -99.2480011F), new Vector2(245.660004F, -98.0960007F));
+ builder.AddLine(new Vector2(246.848007F, -99.1399994F));
+ builder.AddLine(new Vector2(234.139999F, -99.1399994F));
+ builder.AddLine(new Vector2(234.139999F, -96.4400024F));
+ builder.AddLine(new Vector2(248.576004F, -96.4400024F));
+ builder.AddCubicBezier(new Vector2(248.647995F, -96.776001F), new Vector2(248.695999F, -97.0820007F), new Vector2(248.720001F, -97.3580017F));
+ builder.AddCubicBezier(new Vector2(248.744003F, -97.6340027F), new Vector2(248.755997F, -97.8919983F), new Vector2(248.755997F, -98.1320038F));
+ builder.AddCubicBezier(new Vector2(248.755997F, -99.7639999F), new Vector2(248.414001F, -101.216003F), new Vector2(247.729996F, -102.487999F));
+ builder.AddCubicBezier(new Vector2(247.046005F, -103.760002F), new Vector2(246.091995F, -104.755997F), new Vector2(244.867996F, -105.475998F));
+ builder.AddCubicBezier(new Vector2(243.643997F, -106.195999F), new Vector2(242.251999F, -106.556F), new Vector2(240.692001F, -106.556F));
+ builder.AddCubicBezier(new Vector2(239.035995F, -106.556F), new Vector2(237.542007F, -106.166F), new Vector2(236.210007F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(234.878006F, -104.606003F), new Vector2(233.822006F, -103.543999F), new Vector2(233.042007F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(232.261993F, -100.856003F), new Vector2(231.871994F, -99.3440018F), new Vector2(231.871994F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(231.871994F, -95.9599991F), new Vector2(232.268005F, -94.435997F), new Vector2(233.059998F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(233.852005F, -91.7480011F), new Vector2(234.925995F, -90.685997F), new Vector2(236.281998F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(237.638F, -89.1259995F), new Vector2(239.179993F, -88.7360001F), new Vector2(240.908005F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(242.251999F, -88.7360001F), new Vector2(243.511993F, -88.987999F), new Vector2(244.688004F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0920()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(216.5F, -89.0960007F));
+ builder.AddLine(new Vector2(216.5F, -114.800003F));
+ builder.AddLine(new Vector2(213.259995F, -114.800003F));
+ builder.AddLine(new Vector2(213.259995F, -89.0960007F));
+ builder.AddLine(new Vector2(216.5F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(228.595993F, -89.0960007F));
+ builder.AddLine(new Vector2(228.595993F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(228.595993F, -101.059998F), new Vector2(228.307999F, -102.248001F), new Vector2(227.731995F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(227.156006F, -104.311996F), new Vector2(226.369995F, -105.115997F), new Vector2(225.373993F, -105.692001F));
+ builder.AddCubicBezier(new Vector2(224.378006F, -106.267998F), new Vector2(223.231995F, -106.556F), new Vector2(221.936005F, -106.556F));
+ builder.AddCubicBezier(new Vector2(220.639999F, -106.556F), new Vector2(219.475998F, -106.262001F), new Vector2(218.444F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(217.412003F, -105.085999F), new Vector2(216.608002F, -104.288002F), new Vector2(216.031998F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(215.455994F, -102.272003F), new Vector2(215.167999F, -101.120003F), new Vector2(215.167999F, -99.8239975F));
+ builder.AddLine(new Vector2(216.5F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(216.5F, -99.9319992F), new Vector2(216.692001F, -100.699997F), new Vector2(217.076004F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(217.460007F, -102.043999F), new Vector2(217.988007F, -102.571999F), new Vector2(218.660004F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(219.332001F, -103.339996F), new Vector2(220.100006F, -103.531998F), new Vector2(220.964005F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(222.259995F, -103.531998F), new Vector2(223.309998F, -103.112F), new Vector2(224.113998F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(224.917999F, -101.431999F), new Vector2(225.320007F, -100.363998F), new Vector2(225.320007F, -99.0680008F));
+ builder.AddLine(new Vector2(225.320007F, -89.0960007F));
+ builder.AddLine(new Vector2(228.595993F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0921()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(210.091995F, -103.244003F));
+ builder.AddLine(new Vector2(210.091995F, -106.195999F));
+ builder.AddLine(new Vector2(198.427994F, -106.195999F));
+ builder.AddLine(new Vector2(198.427994F, -103.244003F));
+ builder.AddLine(new Vector2(210.091995F, -103.244003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(205.880005F, -89.0960007F));
+ builder.AddLine(new Vector2(205.880005F, -113.360001F));
+ builder.AddLine(new Vector2(202.639999F, -113.360001F));
+ builder.AddLine(new Vector2(202.639999F, -89.0960007F));
+ builder.AddLine(new Vector2(205.880005F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0922()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(181.867996F, -102.344002F));
+ builder.AddCubicBezier(new Vector2(182.636002F, -103.112F), new Vector2(183.619995F, -103.496002F), new Vector2(184.820007F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(185.395996F, -103.496002F), new Vector2(185.899994F, -103.412003F), new Vector2(186.332001F, -103.244003F));
+ builder.AddCubicBezier(new Vector2(186.764008F, -103.075996F), new Vector2(187.160004F, -102.800003F), new Vector2(187.520004F, -102.416F));
+ builder.AddLine(new Vector2(189.643997F, -104.612F));
+ builder.AddCubicBezier(new Vector2(189.044006F, -105.307999F), new Vector2(188.395996F, -105.806F), new Vector2(187.699997F, -106.106003F));
+ builder.AddCubicBezier(new Vector2(187.003998F, -106.405998F), new Vector2(186.223999F, -106.556F), new Vector2(185.360001F, -106.556F));
+ builder.AddCubicBezier(new Vector2(183.464005F, -106.556F), new Vector2(182.011993F, -105.907997F), new Vector2(181.003998F, -104.612F));
+ builder.AddCubicBezier(new Vector2(179.996002F, -103.316002F), new Vector2(179.492004F, -101.575996F), new Vector2(179.492004F, -99.3919983F));
+ builder.AddLine(new Vector2(180.716003F, -98.8160019F));
+ builder.AddCubicBezier(new Vector2(180.716003F, -100.400002F), new Vector2(181.100006F, -101.575996F), new Vector2(181.867996F, -102.344002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(180.716003F, -89.0960007F));
+ builder.AddLine(new Vector2(180.716003F, -106.195999F));
+ builder.AddLine(new Vector2(177.475998F, -106.195999F));
+ builder.AddLine(new Vector2(177.475998F, -89.0960007F));
+ builder.AddLine(new Vector2(180.716003F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0923()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(169.880005F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(171.056F, -89.9960022F), new Vector2(172.063995F, -90.7279968F), new Vector2(172.904007F, -91.6880035F));
+ builder.AddLine(new Vector2(170.815994F, -93.8119965F));
+ builder.AddCubicBezier(new Vector2(170.240005F, -93.1399994F), new Vector2(169.550003F, -92.6360016F), new Vector2(168.746002F, -92.3000031F));
+ builder.AddCubicBezier(new Vector2(167.942001F, -91.9639969F), new Vector2(167.059998F, -91.7959976F), new Vector2(166.100006F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(164.947998F, -91.7959976F), new Vector2(163.927994F, -92.0419998F), new Vector2(163.039993F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(162.151993F, -93.026001F), new Vector2(161.468002F, -93.7220001F), new Vector2(160.988007F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(160.507996F, -95.5220032F), new Vector2(160.268005F, -96.5719986F), new Vector2(160.268005F, -97.7720032F));
+ builder.AddCubicBezier(new Vector2(160.268005F, -98.947998F), new Vector2(160.496002F, -99.9680023F), new Vector2(160.951996F, -100.832001F));
+ builder.AddCubicBezier(new Vector2(161.408005F, -101.695999F), new Vector2(162.056F, -102.367996F), new Vector2(162.895996F, -102.848F));
+ builder.AddCubicBezier(new Vector2(163.735992F, -103.328003F), new Vector2(164.707993F, -103.568001F), new Vector2(165.811996F, -103.568001F));
+ builder.AddCubicBezier(new Vector2(166.867996F, -103.568001F), new Vector2(167.768005F, -103.346001F), new Vector2(168.511993F, -102.902F));
+ builder.AddCubicBezier(new Vector2(169.255997F, -102.458F), new Vector2(169.832001F, -101.834F), new Vector2(170.240005F, -101.029999F));
+ builder.AddCubicBezier(new Vector2(170.647995F, -100.225998F), new Vector2(170.852005F, -99.2480011F), new Vector2(170.852005F, -98.0960007F));
+ builder.AddLine(new Vector2(172.039993F, -99.1399994F));
+ builder.AddLine(new Vector2(159.332001F, -99.1399994F));
+ builder.AddLine(new Vector2(159.332001F, -96.4400024F));
+ builder.AddLine(new Vector2(173.768005F, -96.4400024F));
+ builder.AddCubicBezier(new Vector2(173.839996F, -96.776001F), new Vector2(173.888F, -97.0820007F), new Vector2(173.912003F, -97.3580017F));
+ builder.AddCubicBezier(new Vector2(173.936005F, -97.6340027F), new Vector2(173.947998F, -97.8919983F), new Vector2(173.947998F, -98.1320038F));
+ builder.AddCubicBezier(new Vector2(173.947998F, -99.7639999F), new Vector2(173.606003F, -101.216003F), new Vector2(172.921997F, -102.487999F));
+ builder.AddCubicBezier(new Vector2(172.238007F, -103.760002F), new Vector2(171.283997F, -104.755997F), new Vector2(170.059998F, -105.475998F));
+ builder.AddCubicBezier(new Vector2(168.835999F, -106.195999F), new Vector2(167.444F, -106.556F), new Vector2(165.884003F, -106.556F));
+ builder.AddCubicBezier(new Vector2(164.227997F, -106.556F), new Vector2(162.733994F, -106.166F), new Vector2(161.401993F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(160.070007F, -104.606003F), new Vector2(159.014008F, -103.543999F), new Vector2(158.233994F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(157.453995F, -100.856003F), new Vector2(157.063995F, -99.3440018F), new Vector2(157.063995F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(157.063995F, -95.9599991F), new Vector2(157.460007F, -94.435997F), new Vector2(158.251999F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(159.044006F, -91.7480011F), new Vector2(160.117996F, -90.685997F), new Vector2(161.473999F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(162.830002F, -89.1259995F), new Vector2(164.371994F, -88.7360001F), new Vector2(166.100006F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(167.444F, -88.7360001F), new Vector2(168.703995F, -88.987999F), new Vector2(169.880005F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0924()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(148.207993F, -89.0960007F));
+ builder.AddLine(new Vector2(156.056F, -106.195999F));
+ builder.AddLine(new Vector2(152.600006F, -106.195999F));
+ builder.AddLine(new Vector2(146.264008F, -91.7600021F));
+ builder.AddLine(new Vector2(148.352005F, -91.7600021F));
+ builder.AddLine(new Vector2(142.052002F, -106.195999F));
+ builder.AddLine(new Vector2(138.451996F, -106.195999F));
+ builder.AddLine(new Vector2(146.300003F, -89.0960007F));
+ builder.AddLine(new Vector2(148.207993F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0925()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(125.671997F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(124.832001F, -93.1279984F), new Vector2(124.171997F, -93.8180008F), new Vector2(123.692001F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(123.211998F, -95.5699997F), new Vector2(122.972F, -96.5719986F), new Vector2(122.972F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(122.972F, -98.8040009F), new Vector2(123.211998F, -99.788002F), new Vector2(123.692001F, -100.652F));
+ builder.AddCubicBezier(new Vector2(124.171997F, -101.515999F), new Vector2(124.832001F, -102.194F), new Vector2(125.671997F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(126.512001F, -103.178001F), new Vector2(127.459999F, -103.424004F), new Vector2(128.516006F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(129.619995F, -103.424004F), new Vector2(130.585999F, -103.178001F), new Vector2(131.414001F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(132.242004F, -102.194F), new Vector2(132.901993F, -101.515999F), new Vector2(133.393997F, -100.652F));
+ builder.AddCubicBezier(new Vector2(133.886002F, -99.788002F), new Vector2(134.132004F, -98.8040009F), new Vector2(134.132004F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(134.132004F, -96.5719986F), new Vector2(133.891998F, -95.5699997F), new Vector2(133.412003F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(132.932007F, -93.8180008F), new Vector2(132.272003F, -93.1279984F), new Vector2(131.432007F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(130.591995F, -92.1200027F), new Vector2(129.619995F, -91.8679962F), new Vector2(128.516006F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(127.459999F, -91.8679962F), new Vector2(126.512001F, -92.1200027F), new Vector2(125.671997F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(133.070007F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(134.425995F, -90.7160034F), new Vector2(135.5F, -91.7900009F), new Vector2(136.292007F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(137.084F, -94.5019989F), new Vector2(137.479996F, -96.0199966F), new Vector2(137.479996F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(137.479996F, -99.3560028F), new Vector2(137.084F, -100.856003F), new Vector2(136.292007F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(135.5F, -103.543999F), new Vector2(134.425995F, -104.606003F), new Vector2(133.070007F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(131.714005F, -106.166F), new Vector2(130.195999F, -106.556F), new Vector2(128.516006F, -106.556F));
+ builder.AddCubicBezier(new Vector2(126.860001F, -106.556F), new Vector2(125.360001F, -106.160004F), new Vector2(124.015999F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(122.671997F, -104.575996F), new Vector2(121.603996F, -103.514F), new Vector2(120.811996F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(120.019997F, -100.849998F), new Vector2(119.624001F, -99.3560028F), new Vector2(119.624001F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(119.624001F, -96.0199966F), new Vector2(120.019997F, -94.5019989F), new Vector2(120.811996F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(121.603996F, -91.7900009F), new Vector2(122.671997F, -90.7160034F), new Vector2(124.015999F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(125.360001F, -89.1320038F), new Vector2(126.860001F, -88.7360001F), new Vector2(128.516006F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(130.195999F, -88.7360001F), new Vector2(131.714005F, -89.1320038F), new Vector2(133.070007F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0926()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(108.536003F, -89.0960007F));
+ builder.AddLine(new Vector2(108.536003F, -114.800003F));
+ builder.AddLine(new Vector2(105.295998F, -114.800003F));
+ builder.AddLine(new Vector2(105.295998F, -89.0960007F));
+ builder.AddLine(new Vector2(108.536003F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0927()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(89.8880005F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(89.0479965F, -93.1279984F), new Vector2(88.3880005F, -93.8180008F), new Vector2(87.9079971F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(87.4280014F, -95.5699997F), new Vector2(87.1880035F, -96.5719986F), new Vector2(87.1880035F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(87.1880035F, -98.8040009F), new Vector2(87.4280014F, -99.788002F), new Vector2(87.9079971F, -100.652F));
+ builder.AddCubicBezier(new Vector2(88.3880005F, -101.515999F), new Vector2(89.0479965F, -102.194F), new Vector2(89.8880005F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(90.7279968F, -103.178001F), new Vector2(91.6760025F, -103.424004F), new Vector2(92.7320023F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(93.8359985F, -103.424004F), new Vector2(94.802002F, -103.178001F), new Vector2(95.6299973F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(96.4580002F, -102.194F), new Vector2(97.1179962F, -101.515999F), new Vector2(97.6100006F, -100.652F));
+ builder.AddCubicBezier(new Vector2(98.1019974F, -99.788002F), new Vector2(98.3479996F, -98.8040009F), new Vector2(98.3479996F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(98.3479996F, -96.5719986F), new Vector2(98.1080017F, -95.5699997F), new Vector2(97.6279984F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(97.1480026F, -93.8180008F), new Vector2(96.487999F, -93.1279984F), new Vector2(95.6480026F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(94.8079987F, -92.1200027F), new Vector2(93.8359985F, -91.8679962F), new Vector2(92.7320023F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(91.6760025F, -91.8679962F), new Vector2(90.7279968F, -92.1200027F), new Vector2(89.8880005F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(97.2860031F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(98.6419983F, -90.7160034F), new Vector2(99.7160034F, -91.7900009F), new Vector2(100.508003F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(101.300003F, -94.5019989F), new Vector2(101.695999F, -96.0199966F), new Vector2(101.695999F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(101.695999F, -99.3560028F), new Vector2(101.300003F, -100.856003F), new Vector2(100.508003F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(99.7160034F, -103.543999F), new Vector2(98.6419983F, -104.606003F), new Vector2(97.2860031F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(95.9300003F, -106.166F), new Vector2(94.4120026F, -106.556F), new Vector2(92.7320023F, -106.556F));
+ builder.AddCubicBezier(new Vector2(91.0759964F, -106.556F), new Vector2(89.5759964F, -106.160004F), new Vector2(88.2320023F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(86.8880005F, -104.575996F), new Vector2(85.8199997F, -103.514F), new Vector2(85.0279999F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(84.2360001F, -100.849998F), new Vector2(83.8399963F, -99.3560028F), new Vector2(83.8399963F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(83.8399963F, -96.0199966F), new Vector2(84.2360001F, -94.5019989F), new Vector2(85.0279999F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(85.8199997F, -91.7900009F), new Vector2(86.8880005F, -90.7160034F), new Vector2(88.2320023F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(89.5759964F, -89.1320038F), new Vector2(91.0759964F, -88.7360001F), new Vector2(92.7320023F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(94.4120026F, -88.7360001F), new Vector2(95.9300003F, -89.1320038F), new Vector2(97.2860031F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0928()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(75.4520035F, -102.344002F));
+ builder.AddCubicBezier(new Vector2(76.2200012F, -103.112F), new Vector2(77.2040024F, -103.496002F), new Vector2(78.4039993F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(78.9800034F, -103.496002F), new Vector2(79.4840012F, -103.412003F), new Vector2(79.9160004F, -103.244003F));
+ builder.AddCubicBezier(new Vector2(80.3479996F, -103.075996F), new Vector2(80.7440033F, -102.800003F), new Vector2(81.1039963F, -102.416F));
+ builder.AddLine(new Vector2(83.2279968F, -104.612F));
+ builder.AddCubicBezier(new Vector2(82.6279984F, -105.307999F), new Vector2(81.9800034F, -105.806F), new Vector2(81.2839966F, -106.106003F));
+ builder.AddCubicBezier(new Vector2(80.5879974F, -106.405998F), new Vector2(79.8079987F, -106.556F), new Vector2(78.9440002F, -106.556F));
+ builder.AddCubicBezier(new Vector2(77.0479965F, -106.556F), new Vector2(75.5960007F, -105.907997F), new Vector2(74.5879974F, -104.612F));
+ builder.AddCubicBezier(new Vector2(73.5800018F, -103.316002F), new Vector2(73.0759964F, -101.575996F), new Vector2(73.0759964F, -99.3919983F));
+ builder.AddLine(new Vector2(74.3000031F, -98.8160019F));
+ builder.AddCubicBezier(new Vector2(74.3000031F, -100.400002F), new Vector2(74.6839981F, -101.575996F), new Vector2(75.4520035F, -102.344002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(74.3000031F, -89.0960007F));
+ builder.AddLine(new Vector2(74.3000031F, -106.195999F));
+ builder.AddLine(new Vector2(71.0599976F, -106.195999F));
+ builder.AddLine(new Vector2(71.0599976F, -89.0960007F));
+ builder.AddLine(new Vector2(74.3000031F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0929()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(67.8919983F, -103.244003F));
+ builder.AddLine(new Vector2(67.8919983F, -106.195999F));
+ builder.AddLine(new Vector2(56.2280006F, -106.195999F));
+ builder.AddLine(new Vector2(56.2280006F, -103.244003F));
+ builder.AddLine(new Vector2(67.8919983F, -103.244003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(63.6800003F, -89.0960007F));
+ builder.AddLine(new Vector2(63.6800003F, -113.360001F));
+ builder.AddLine(new Vector2(60.4399986F, -113.360001F));
+ builder.AddLine(new Vector2(60.4399986F, -89.0960007F));
+ builder.AddLine(new Vector2(63.6800003F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0930()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(41.5400009F, -89.0960007F));
+ builder.AddLine(new Vector2(41.5400009F, -106.195999F));
+ builder.AddLine(new Vector2(38.2999992F, -106.195999F));
+ builder.AddLine(new Vector2(38.2999992F, -89.0960007F));
+ builder.AddLine(new Vector2(41.5400009F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(53.6360016F, -89.0960007F));
+ builder.AddLine(new Vector2(53.6360016F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(53.6360016F, -100.891998F), new Vector2(53.3479996F, -102.001999F), new Vector2(52.7719994F, -103.045998F));
+ builder.AddCubicBezier(new Vector2(52.1959991F, -104.089996F), new Vector2(51.4099998F, -104.935997F), new Vector2(50.4140015F, -105.584F));
+ builder.AddCubicBezier(new Vector2(49.4179993F, -106.232002F), new Vector2(48.2719994F, -106.556F), new Vector2(46.9760017F, -106.556F));
+ builder.AddCubicBezier(new Vector2(45.6800003F, -106.556F), new Vector2(44.5159988F, -106.262001F), new Vector2(43.4840012F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(42.4519997F, -105.085999F), new Vector2(41.6479988F, -104.288002F), new Vector2(41.0719986F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(40.4959984F, -102.272003F), new Vector2(40.2080002F, -101.120003F), new Vector2(40.2080002F, -99.8239975F));
+ builder.AddLine(new Vector2(41.5400009F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(41.5400009F, -99.9319992F), new Vector2(41.7319984F, -100.699997F), new Vector2(42.1160011F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(42.5F, -102.043999F), new Vector2(43.0279999F, -102.571999F), new Vector2(43.7000008F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(44.3720016F, -103.339996F), new Vector2(45.1399994F, -103.531998F), new Vector2(46.0040016F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(47.2999992F, -103.531998F), new Vector2(48.3499985F, -103.112F), new Vector2(49.1539993F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(49.9580002F, -101.431999F), new Vector2(50.3600006F, -100.363998F), new Vector2(50.3600006F, -99.0680008F));
+ builder.AddLine(new Vector2(50.3600006F, -89.0960007F));
+ builder.AddLine(new Vector2(53.6360016F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0931()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(22.8920002F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(22.052F, -93.1279984F), new Vector2(21.3920002F, -93.8180008F), new Vector2(20.9120007F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(20.4319992F, -95.5699997F), new Vector2(20.1919994F, -96.5719986F), new Vector2(20.1919994F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(20.1919994F, -98.8040009F), new Vector2(20.4319992F, -99.788002F), new Vector2(20.9120007F, -100.652F));
+ builder.AddCubicBezier(new Vector2(21.3920002F, -101.515999F), new Vector2(22.052F, -102.194F), new Vector2(22.8920002F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(23.7320004F, -103.178001F), new Vector2(24.6800003F, -103.424004F), new Vector2(25.7360001F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(26.8400002F, -103.424004F), new Vector2(27.8059998F, -103.178001F), new Vector2(28.6340008F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(29.4619999F, -102.194F), new Vector2(30.1219997F, -101.515999F), new Vector2(30.6140003F, -100.652F));
+ builder.AddCubicBezier(new Vector2(31.1060009F, -99.788002F), new Vector2(31.3519993F, -98.8040009F), new Vector2(31.3519993F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(31.3519993F, -96.5719986F), new Vector2(31.1119995F, -95.5699997F), new Vector2(30.632F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(30.1520004F, -93.8180008F), new Vector2(29.4920006F, -93.1279984F), new Vector2(28.6520004F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(27.8120003F, -92.1200027F), new Vector2(26.8400002F, -91.8679962F), new Vector2(25.7360001F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(24.6800003F, -91.8679962F), new Vector2(23.7320004F, -92.1200027F), new Vector2(22.8920002F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(30.2900009F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(31.6459999F, -90.7160034F), new Vector2(32.7200012F, -91.7900009F), new Vector2(33.512001F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(34.3040009F, -94.5019989F), new Vector2(34.7000008F, -96.0199966F), new Vector2(34.7000008F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(34.7000008F, -99.3560028F), new Vector2(34.3040009F, -100.856003F), new Vector2(33.512001F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(32.7200012F, -103.543999F), new Vector2(31.6459999F, -104.606003F), new Vector2(30.2900009F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(28.934F, -106.166F), new Vector2(27.4160004F, -106.556F), new Vector2(25.7360001F, -106.556F));
+ builder.AddCubicBezier(new Vector2(24.0799999F, -106.556F), new Vector2(22.5799999F, -106.160004F), new Vector2(21.2360001F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(19.8920002F, -104.575996F), new Vector2(18.8239994F, -103.514F), new Vector2(18.0319996F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(17.2399998F, -100.849998F), new Vector2(16.8439999F, -99.3560028F), new Vector2(16.8439999F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(16.8439999F, -96.0199966F), new Vector2(17.2399998F, -94.5019989F), new Vector2(18.0319996F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(18.8239994F, -91.7900009F), new Vector2(19.8920002F, -90.7160034F), new Vector2(21.2360001F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(22.5799999F, -89.1320038F), new Vector2(24.0799999F, -88.7360001F), new Vector2(25.7360001F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(27.4160004F, -88.7360001F), new Vector2(28.934F, -89.1320038F), new Vector2(30.2900009F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0932()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(12.1820002F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(13.3219995F, -89.9960022F), new Vector2(14.2880001F, -90.7040024F), new Vector2(15.0799999F, -91.6159973F));
+ builder.AddLine(new Vector2(12.9560003F, -93.776001F));
+ builder.AddCubicBezier(new Vector2(12.4040003F, -93.1520004F), new Vector2(11.75F, -92.6780014F), new Vector2(10.9940004F, -92.3539963F));
+ builder.AddCubicBezier(new Vector2(10.2379999F, -92.0299988F), new Vector2(9.40400028F, -91.8679962F), new Vector2(8.49199963F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(7.41200018F, -91.8679962F), new Vector2(6.45200014F, -92.1200027F), new Vector2(5.61199999F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(4.77199984F, -93.1279984F), new Vector2(4.11199999F, -93.8119965F), new Vector2(3.63199997F, -94.6760025F));
+ builder.AddCubicBezier(new Vector2(3.15199995F, -95.5400009F), new Vector2(2.91199994F, -96.5360031F), new Vector2(2.91199994F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(2.91199994F, -98.7919998F), new Vector2(3.15199995F, -99.788002F), new Vector2(3.63199997F, -100.652F));
+ builder.AddCubicBezier(new Vector2(4.11199999F, -101.515999F), new Vector2(4.77199984F, -102.194F), new Vector2(5.61199999F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(6.45200014F, -103.178001F), new Vector2(7.41200018F, -103.424004F), new Vector2(8.49199963F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(9.38000011F, -103.424004F), new Vector2(10.2080002F, -103.262001F), new Vector2(10.9759998F, -102.938004F));
+ builder.AddCubicBezier(new Vector2(11.7440004F, -102.613998F), new Vector2(12.3920002F, -102.139999F), new Vector2(12.9200001F, -101.515999F));
+ builder.AddLine(new Vector2(15.0799999F, -103.676003F));
+ builder.AddCubicBezier(new Vector2(14.2639999F, -104.612F), new Vector2(13.2919998F, -105.325996F), new Vector2(12.1639996F, -105.818001F));
+ builder.AddCubicBezier(new Vector2(11.0360003F, -106.309998F), new Vector2(9.81200027F, -106.556F), new Vector2(8.49199963F, -106.556F));
+ builder.AddCubicBezier(new Vector2(6.8119998F, -106.556F), new Vector2(5.29400015F, -106.166F), new Vector2(3.93799996F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(2.58200002F, -104.606003F), new Vector2(1.51400006F, -103.543999F), new Vector2(0.734000027F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(-0.0460000001F, -100.856003F), new Vector2(-0.43599999F, -99.3440018F), new Vector2(-0.43599999F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(-0.43599999F, -96.0080032F), new Vector2(-0.0460000001F, -94.5019989F), new Vector2(0.734000027F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(1.51400006F, -91.7900009F), new Vector2(2.58200002F, -90.7160034F), new Vector2(3.93799996F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(5.29400015F, -89.1320038F), new Vector2(6.8119998F, -88.7360001F), new Vector2(8.49199963F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(9.81200027F, -88.7360001F), new Vector2(11.0419998F, -88.987999F), new Vector2(12.1820002F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0933()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-23.2600002F, -89.0960007F));
+ builder.AddLine(new Vector2(-23.2600002F, -106.195999F));
+ builder.AddLine(new Vector2(-26.5F, -106.195999F));
+ builder.AddLine(new Vector2(-26.5F, -89.0960007F));
+ builder.AddLine(new Vector2(-23.2600002F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-11.1639996F, -89.0960007F));
+ builder.AddLine(new Vector2(-11.1639996F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(-11.1639996F, -100.891998F), new Vector2(-11.4519997F, -102.001999F), new Vector2(-12.0279999F, -103.045998F));
+ builder.AddCubicBezier(new Vector2(-12.6040001F, -104.089996F), new Vector2(-13.3900003F, -104.935997F), new Vector2(-14.3859997F, -105.584F));
+ builder.AddCubicBezier(new Vector2(-15.382F, -106.232002F), new Vector2(-16.5279999F, -106.556F), new Vector2(-17.8239994F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-19.1200008F, -106.556F), new Vector2(-20.2840004F, -106.262001F), new Vector2(-21.316F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(-22.3479996F, -105.085999F), new Vector2(-23.1520004F, -104.288002F), new Vector2(-23.7280006F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(-24.3040009F, -102.272003F), new Vector2(-24.5919991F, -101.120003F), new Vector2(-24.5919991F, -99.8239975F));
+ builder.AddLine(new Vector2(-23.2600002F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(-23.2600002F, -99.9319992F), new Vector2(-23.0680008F, -100.699997F), new Vector2(-22.684F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(-22.2999992F, -102.043999F), new Vector2(-21.7719994F, -102.571999F), new Vector2(-21.1000004F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(-20.4279995F, -103.339996F), new Vector2(-19.6599998F, -103.531998F), new Vector2(-18.7959995F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-17.5F, -103.531998F), new Vector2(-16.4500008F, -103.112F), new Vector2(-15.6459999F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(-14.842F, -101.431999F), new Vector2(-14.4399996F, -100.363998F), new Vector2(-14.4399996F, -99.0680008F));
+ builder.AddLine(new Vector2(-14.4399996F, -89.0960007F));
+ builder.AddLine(new Vector2(-11.1639996F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0934()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-31.4319992F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-31.0480003F, -110.606003F), new Vector2(-30.8560009F, -111.103996F), new Vector2(-30.8560009F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-30.8560009F, -112.279999F), new Vector2(-31.0480003F, -112.765999F), new Vector2(-31.4319992F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-31.816F, -113.557999F), new Vector2(-32.3079987F, -113.755997F), new Vector2(-32.9080009F, -113.755997F));
+ builder.AddCubicBezier(new Vector2(-33.5079994F, -113.755997F), new Vector2(-34F, -113.557999F), new Vector2(-34.3839989F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-34.7680016F, -112.765999F), new Vector2(-34.9599991F, -112.279999F), new Vector2(-34.9599991F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-34.9599991F, -111.103996F), new Vector2(-34.7680016F, -110.606003F), new Vector2(-34.3839989F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-34F, -109.814003F), new Vector2(-33.5079994F, -109.615997F), new Vector2(-32.9080009F, -109.615997F));
+ builder.AddCubicBezier(new Vector2(-32.3079987F, -109.615997F), new Vector2(-31.816F, -109.814003F), new Vector2(-31.4319992F, -110.209999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-31.2880001F, -89.0960007F));
+ builder.AddLine(new Vector2(-31.2880001F, -106.195999F));
+ builder.AddLine(new Vector2(-34.5639992F, -106.195999F));
+ builder.AddLine(new Vector2(-34.5639992F, -89.0960007F));
+ builder.AddLine(new Vector2(-31.2880001F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0935()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-39.2799988F, -89.0960007F));
+ builder.AddLine(new Vector2(-39.2799988F, -106.195999F));
+ builder.AddLine(new Vector2(-42.5559998F, -106.195999F));
+ builder.AddLine(new Vector2(-42.5559998F, -102.019997F));
+ builder.AddLine(new Vector2(-41.9440002F, -97.8799973F));
+ builder.AddLine(new Vector2(-42.5559998F, -93.7040024F));
+ builder.AddLine(new Vector2(-42.5559998F, -89.0960007F));
+ builder.AddLine(new Vector2(-39.2799988F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-50.5839996F, -92.552002F));
+ builder.AddCubicBezier(new Vector2(-51.4239998F, -93.0559998F), new Vector2(-52.0779991F, -93.7460022F), new Vector2(-52.5460014F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(-53.0139999F, -95.4980011F), new Vector2(-53.2480011F, -96.512001F), new Vector2(-53.2480011F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(-53.2480011F, -98.7919998F), new Vector2(-53.0139999F, -99.7939987F), new Vector2(-52.5460014F, -100.669998F));
+ builder.AddCubicBezier(new Vector2(-52.0779991F, -101.545998F), new Vector2(-51.4300003F, -102.236F), new Vector2(-50.6020012F, -102.739998F));
+ builder.AddCubicBezier(new Vector2(-49.7739983F, -103.244003F), new Vector2(-48.8199997F, -103.496002F), new Vector2(-47.7400017F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-46.6599998F, -103.496002F), new Vector2(-45.7179985F, -103.25F), new Vector2(-44.9140015F, -102.758003F));
+ builder.AddCubicBezier(new Vector2(-44.1100006F, -102.265999F), new Vector2(-43.4799995F, -101.575996F), new Vector2(-43.0239983F, -100.688004F));
+ builder.AddCubicBezier(new Vector2(-42.5680008F, -99.8000031F), new Vector2(-42.3400002F, -98.7799988F), new Vector2(-42.3400002F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(-42.3400002F, -95.9240036F), new Vector2(-42.8320007F, -94.526001F), new Vector2(-43.8160019F, -93.4339981F));
+ builder.AddCubicBezier(new Vector2(-44.7999992F, -92.3420029F), new Vector2(-46.0960007F, -91.7959976F), new Vector2(-47.7039986F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(-48.7840004F, -91.7959976F), new Vector2(-49.7439995F, -92.0479965F), new Vector2(-50.5839996F, -92.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-44.7519989F, -89.5459976F));
+ builder.AddCubicBezier(new Vector2(-43.7200012F, -90.0859985F), new Vector2(-42.8979988F, -90.8359985F), new Vector2(-42.2859993F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(-41.6739998F, -92.7559967F), new Vector2(-41.3320007F, -93.8479996F), new Vector2(-41.2599983F, -95.0719986F));
+ builder.AddLine(new Vector2(-41.2599983F, -100.220001F));
+ builder.AddCubicBezier(new Vector2(-41.3320007F, -101.468002F), new Vector2(-41.6800003F, -102.566002F), new Vector2(-42.3040009F, -103.514F));
+ builder.AddCubicBezier(new Vector2(-42.9280014F, -104.461998F), new Vector2(-43.75F, -105.206001F), new Vector2(-44.7700005F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(-45.7900009F, -106.286003F), new Vector2(-46.9480019F, -106.556F), new Vector2(-48.2439995F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-49.8279991F, -106.556F), new Vector2(-51.25F, -106.160004F), new Vector2(-52.5099983F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(-53.7700005F, -104.575996F), new Vector2(-54.7659988F, -103.508003F), new Vector2(-55.4980011F, -102.164001F));
+ builder.AddCubicBezier(new Vector2(-56.2299995F, -100.82F), new Vector2(-56.5960007F, -99.3079987F), new Vector2(-56.5960007F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(-56.5960007F, -95.947998F), new Vector2(-56.2299995F, -94.435997F), new Vector2(-55.4980011F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(-54.7659988F, -91.7480011F), new Vector2(-53.7700005F, -90.685997F), new Vector2(-52.5099983F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(-51.25F, -89.1259995F), new Vector2(-49.8279991F, -88.7360001F), new Vector2(-48.2439995F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-46.9480019F, -88.7360001F), new Vector2(-45.7840004F, -89.0059967F), new Vector2(-44.7519989F, -89.5459976F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0936()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-71.4459991F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-72.2740021F, -93.6139984F), new Vector2(-72.9219971F, -94.2679977F), new Vector2(-73.3899994F, -95.1080017F));
+ builder.AddCubicBezier(new Vector2(-73.8580017F, -95.947998F), new Vector2(-74.0920029F, -96.9079971F), new Vector2(-74.0920029F, -97.987999F));
+ builder.AddCubicBezier(new Vector2(-74.0920029F, -99.0680008F), new Vector2(-73.8580017F, -100.022003F), new Vector2(-73.3899994F, -100.849998F));
+ builder.AddCubicBezier(new Vector2(-72.9219971F, -101.678001F), new Vector2(-72.2799988F, -102.325996F), new Vector2(-71.4639969F, -102.793999F));
+ builder.AddCubicBezier(new Vector2(-70.6480026F, -103.262001F), new Vector2(-69.6999969F, -103.496002F), new Vector2(-68.6200027F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-67.564003F, -103.496002F), new Vector2(-66.6340027F, -103.262001F), new Vector2(-65.8300018F, -102.793999F));
+ builder.AddCubicBezier(new Vector2(-65.026001F, -102.325996F), new Vector2(-64.4020004F, -101.678001F), new Vector2(-63.9580002F, -100.849998F));
+ builder.AddCubicBezier(new Vector2(-63.5139999F, -100.022003F), new Vector2(-63.2919998F, -99.0559998F), new Vector2(-63.2919998F, -97.9520035F));
+ builder.AddCubicBezier(new Vector2(-63.2919998F, -96.8479996F), new Vector2(-63.5139999F, -95.8820038F), new Vector2(-63.9580002F, -95.0540009F));
+ builder.AddCubicBezier(new Vector2(-64.4020004F, -94.2259979F), new Vector2(-65.0199966F, -93.5839996F), new Vector2(-65.8119965F, -93.1279984F));
+ builder.AddCubicBezier(new Vector2(-66.6039963F, -92.6719971F), new Vector2(-67.5400009F, -92.4440002F), new Vector2(-68.6200027F, -92.4440002F));
+ builder.AddCubicBezier(new Vector2(-69.6760025F, -92.4440002F), new Vector2(-70.6179962F, -92.6780014F), new Vector2(-71.4459991F, -93.1460037F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-65.7040024F, -90.1760025F));
+ builder.AddCubicBezier(new Vector2(-64.6719971F, -90.7040024F), new Vector2(-63.8499985F, -91.4420013F), new Vector2(-63.237999F, -92.3899994F));
+ builder.AddCubicBezier(new Vector2(-62.6259995F, -93.3379974F), new Vector2(-62.2840004F, -94.435997F), new Vector2(-62.2120018F, -95.6839981F));
+ builder.AddLine(new Vector2(-62.2120018F, -100.220001F));
+ builder.AddCubicBezier(new Vector2(-62.2840004F, -101.491997F), new Vector2(-62.6199989F, -102.601997F), new Vector2(-63.2200012F, -103.550003F));
+ builder.AddCubicBezier(new Vector2(-63.8199997F, -104.498001F), new Vector2(-64.6419983F, -105.236F), new Vector2(-65.685997F, -105.764F));
+ builder.AddCubicBezier(new Vector2(-66.7300034F, -106.292F), new Vector2(-67.9240036F, -106.556F), new Vector2(-69.2679977F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-70.8040009F, -106.556F), new Vector2(-72.1959991F, -106.178001F), new Vector2(-73.4440002F, -105.421997F));
+ builder.AddCubicBezier(new Vector2(-74.6920013F, -104.666F), new Vector2(-75.6699982F, -103.646004F), new Vector2(-76.3779984F, -102.362F));
+ builder.AddCubicBezier(new Vector2(-77.0859985F, -101.078003F), new Vector2(-77.4400024F, -99.6200027F), new Vector2(-77.4400024F, -97.987999F));
+ builder.AddCubicBezier(new Vector2(-77.4400024F, -96.3560028F), new Vector2(-77.0800018F, -94.8860016F), new Vector2(-76.3600006F, -93.5780029F));
+ builder.AddCubicBezier(new Vector2(-75.6399994F, -92.2699966F), new Vector2(-74.6620026F, -91.2440033F), new Vector2(-73.4260025F, -90.5F));
+ builder.AddCubicBezier(new Vector2(-72.1900024F, -89.7559967F), new Vector2(-70.7919998F, -89.3840027F), new Vector2(-69.2320023F, -89.3840027F));
+ builder.AddCubicBezier(new Vector2(-67.9120026F, -89.3840027F), new Vector2(-66.7360001F, -89.6480026F), new Vector2(-65.7040024F, -90.1760025F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-64.5339966F, -82.5979996F));
+ builder.AddCubicBezier(new Vector2(-63.1780014F, -83.2819977F), new Vector2(-62.1220016F, -84.2419968F), new Vector2(-61.3660011F, -85.4779968F));
+ builder.AddCubicBezier(new Vector2(-60.6100006F, -86.7139969F), new Vector2(-60.2319984F, -88.1480026F), new Vector2(-60.2319984F, -89.7799988F));
+ builder.AddLine(new Vector2(-60.2319984F, -106.195999F));
+ builder.AddLine(new Vector2(-63.4720001F, -106.195999F));
+ builder.AddLine(new Vector2(-63.4720001F, -101.695999F));
+ builder.AddLine(new Vector2(-62.8959999F, -97.8799973F));
+ builder.AddLine(new Vector2(-63.4720001F, -94.0279999F));
+ builder.AddLine(new Vector2(-63.4720001F, -89.7799988F));
+ builder.AddCubicBezier(new Vector2(-63.4720001F, -88.2200012F), new Vector2(-63.987999F, -86.9779968F), new Vector2(-65.0199966F, -86.0540009F));
+ builder.AddCubicBezier(new Vector2(-66.052002F, -85.1299973F), new Vector2(-67.4319992F, -84.6679993F), new Vector2(-69.1600037F, -84.6679993F));
+ builder.AddCubicBezier(new Vector2(-70.4800034F, -84.6679993F), new Vector2(-71.6200027F, -84.9020004F), new Vector2(-72.5800018F, -85.3700027F));
+ builder.AddCubicBezier(new Vector2(-73.5400009F, -85.8379974F), new Vector2(-74.3679962F, -86.5159988F), new Vector2(-75.064003F, -87.4039993F));
+ builder.AddLine(new Vector2(-77.1880035F, -85.2799988F));
+ builder.AddCubicBezier(new Vector2(-76.3479996F, -84.1039963F), new Vector2(-75.2559967F, -83.1920013F), new Vector2(-73.9120026F, -82.5439987F));
+ builder.AddCubicBezier(new Vector2(-72.5680008F, -81.8960037F), new Vector2(-71.0080032F, -81.5719986F), new Vector2(-69.2320023F, -81.5719986F));
+ builder.AddCubicBezier(new Vector2(-67.4560013F, -81.5719986F), new Vector2(-65.8899994F, -81.9140015F), new Vector2(-64.5339966F, -82.5979996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0937()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-99.1839981F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-100.024002F, -93.1279984F), new Vector2(-100.683998F, -93.8180008F), new Vector2(-101.164001F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-101.643997F, -95.5699997F), new Vector2(-101.884003F, -96.5719986F), new Vector2(-101.884003F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-101.884003F, -98.8040009F), new Vector2(-101.643997F, -99.788002F), new Vector2(-101.164001F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-100.683998F, -101.515999F), new Vector2(-100.024002F, -102.194F), new Vector2(-99.1839981F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-98.3440018F, -103.178001F), new Vector2(-97.3960037F, -103.424004F), new Vector2(-96.3399963F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(-95.2360001F, -103.424004F), new Vector2(-94.2699966F, -103.178001F), new Vector2(-93.4420013F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-92.6139984F, -102.194F), new Vector2(-91.9540024F, -101.515999F), new Vector2(-91.461998F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-90.9700012F, -99.788002F), new Vector2(-90.723999F, -98.8040009F), new Vector2(-90.723999F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-90.723999F, -96.5719986F), new Vector2(-90.9639969F, -95.5699997F), new Vector2(-91.4440002F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-91.9240036F, -93.8180008F), new Vector2(-92.5839996F, -93.1279984F), new Vector2(-93.4240036F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-94.2639999F, -92.1200027F), new Vector2(-95.2360001F, -91.8679962F), new Vector2(-96.3399963F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(-97.3960037F, -91.8679962F), new Vector2(-98.3440018F, -92.1200027F), new Vector2(-99.1839981F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-91.7860031F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-90.4300003F, -90.7160034F), new Vector2(-89.3560028F, -91.7900009F), new Vector2(-88.564003F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-87.7720032F, -94.5019989F), new Vector2(-87.3759995F, -96.0199966F), new Vector2(-87.3759995F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-87.3759995F, -99.3560028F), new Vector2(-87.7720032F, -100.856003F), new Vector2(-88.564003F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(-89.3560028F, -103.543999F), new Vector2(-90.4300003F, -104.606003F), new Vector2(-91.7860031F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(-93.1419983F, -106.166F), new Vector2(-94.6600037F, -106.556F), new Vector2(-96.3399963F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-97.9960022F, -106.556F), new Vector2(-99.4960022F, -106.160004F), new Vector2(-100.839996F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(-102.183998F, -104.575996F), new Vector2(-103.251999F, -103.514F), new Vector2(-104.043999F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(-104.835999F, -100.849998F), new Vector2(-105.232002F, -99.3560028F), new Vector2(-105.232002F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-105.232002F, -96.0199966F), new Vector2(-104.835999F, -94.5019989F), new Vector2(-104.043999F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-103.251999F, -91.7900009F), new Vector2(-102.183998F, -90.7160034F), new Vector2(-100.839996F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-99.4960022F, -89.1320038F), new Vector2(-97.9960022F, -88.7360001F), new Vector2(-96.3399963F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-94.6600037F, -88.7360001F), new Vector2(-93.1419983F, -89.1320038F), new Vector2(-91.7860031F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0938()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-106.744003F, -103.244003F));
+ builder.AddLine(new Vector2(-106.744003F, -106.195999F));
+ builder.AddLine(new Vector2(-118.407997F, -106.195999F));
+ builder.AddLine(new Vector2(-118.407997F, -103.244003F));
+ builder.AddLine(new Vector2(-106.744003F, -103.244003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-110.956001F, -89.0960007F));
+ builder.AddLine(new Vector2(-110.956001F, -113.360001F));
+ builder.AddLine(new Vector2(-114.195999F, -113.360001F));
+ builder.AddLine(new Vector2(-114.195999F, -89.0960007F));
+ builder.AddLine(new Vector2(-110.956001F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0939()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-129.621994F, -90.1399994F));
+ builder.AddCubicBezier(new Vector2(-128.481995F, -91.0759964F), new Vector2(-127.912003F, -92.3479996F), new Vector2(-127.912003F, -93.9560013F));
+ builder.AddCubicBezier(new Vector2(-127.912003F, -95.012001F), new Vector2(-128.134003F, -95.8639984F), new Vector2(-128.578003F, -96.512001F));
+ builder.AddCubicBezier(new Vector2(-129.022003F, -97.1600037F), new Vector2(-129.591995F, -97.6760025F), new Vector2(-130.287994F, -98.0599976F));
+ builder.AddCubicBezier(new Vector2(-130.983994F, -98.4440002F), new Vector2(-131.716003F, -98.75F), new Vector2(-132.483994F, -98.9779968F));
+ builder.AddCubicBezier(new Vector2(-133.251999F, -99.2060013F), new Vector2(-133.990005F, -99.4280014F), new Vector2(-134.697998F, -99.6439972F));
+ builder.AddCubicBezier(new Vector2(-135.406006F, -99.8600006F), new Vector2(-135.975998F, -100.124001F), new Vector2(-136.408005F, -100.435997F));
+ builder.AddCubicBezier(new Vector2(-136.839996F, -100.748001F), new Vector2(-137.056F, -101.192001F), new Vector2(-137.056F, -101.767998F));
+ builder.AddCubicBezier(new Vector2(-137.056F, -102.32F), new Vector2(-136.809998F, -102.764F), new Vector2(-136.317993F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(-135.826004F, -103.435997F), new Vector2(-135.112F, -103.603996F), new Vector2(-134.175995F, -103.603996F));
+ builder.AddCubicBezier(new Vector2(-133.287994F, -103.603996F), new Vector2(-132.496002F, -103.435997F), new Vector2(-131.800003F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(-131.104004F, -102.764F), new Vector2(-130.503998F, -102.283997F), new Vector2(-130F, -101.660004F));
+ builder.AddLine(new Vector2(-127.912003F, -103.748001F));
+ builder.AddCubicBezier(new Vector2(-128.584F, -104.683998F), new Vector2(-129.442001F, -105.386002F), new Vector2(-130.485992F, -105.853996F));
+ builder.AddCubicBezier(new Vector2(-131.529999F, -106.321999F), new Vector2(-132.723999F, -106.556F), new Vector2(-134.067993F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-135.339996F, -106.556F), new Vector2(-136.432007F, -106.351997F), new Vector2(-137.343994F, -105.944F));
+ builder.AddCubicBezier(new Vector2(-138.255997F, -105.536003F), new Vector2(-138.957993F, -104.954002F), new Vector2(-139.449997F, -104.197998F));
+ builder.AddCubicBezier(new Vector2(-139.942001F, -103.442001F), new Vector2(-140.188004F, -102.547997F), new Vector2(-140.188004F, -101.515999F));
+ builder.AddCubicBezier(new Vector2(-140.188004F, -100.484001F), new Vector2(-139.966003F, -99.6500015F), new Vector2(-139.522003F, -99.0139999F));
+ builder.AddCubicBezier(new Vector2(-139.078003F, -98.3779984F), new Vector2(-138.507996F, -97.8799973F), new Vector2(-137.811996F, -97.5199966F));
+ builder.AddCubicBezier(new Vector2(-137.115997F, -97.1600037F), new Vector2(-136.378006F, -96.8720016F), new Vector2(-135.598007F, -96.6559982F));
+ builder.AddCubicBezier(new Vector2(-134.817993F, -96.4400024F), new Vector2(-134.080002F, -96.2180023F), new Vector2(-133.384003F, -95.9899979F));
+ builder.AddCubicBezier(new Vector2(-132.688004F, -95.762001F), new Vector2(-132.117996F, -95.473999F), new Vector2(-131.673996F, -95.1259995F));
+ builder.AddCubicBezier(new Vector2(-131.229996F, -94.7779999F), new Vector2(-131.007996F, -94.2919998F), new Vector2(-131.007996F, -93.6679993F));
+ builder.AddCubicBezier(new Vector2(-131.007996F, -93.0439987F), new Vector2(-131.283997F, -92.5579987F), new Vector2(-131.835999F, -92.2099991F));
+ builder.AddCubicBezier(new Vector2(-132.388F, -91.8619995F), new Vector2(-133.167999F, -91.6880035F), new Vector2(-134.175995F, -91.6880035F));
+ builder.AddCubicBezier(new Vector2(-135.184006F, -91.6880035F), new Vector2(-136.095993F, -91.8740005F), new Vector2(-136.912003F, -92.2460022F));
+ builder.AddCubicBezier(new Vector2(-137.727997F, -92.6179962F), new Vector2(-138.447998F, -93.1880035F), new Vector2(-139.072006F, -93.9560013F));
+ builder.AddLine(new Vector2(-141.160004F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(-140.632004F, -91.2200012F), new Vector2(-140.014008F, -90.6620026F), new Vector2(-139.306F, -90.1940002F));
+ builder.AddCubicBezier(new Vector2(-138.598007F, -89.7259979F), new Vector2(-137.811996F, -89.3659973F), new Vector2(-136.947998F, -89.1139984F));
+ builder.AddCubicBezier(new Vector2(-136.084F, -88.8619995F), new Vector2(-135.171997F, -88.7360001F), new Vector2(-134.212006F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-132.292007F, -88.7360001F), new Vector2(-130.761993F, -89.2040024F), new Vector2(-129.621994F, -90.1399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0940()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-147.244003F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(-146.067993F, -89.9960022F), new Vector2(-145.059998F, -90.7279968F), new Vector2(-144.220001F, -91.6880035F));
+ builder.AddLine(new Vector2(-146.307999F, -93.8119965F));
+ builder.AddCubicBezier(new Vector2(-146.884003F, -93.1399994F), new Vector2(-147.574005F, -92.6360016F), new Vector2(-148.378006F, -92.3000031F));
+ builder.AddCubicBezier(new Vector2(-149.182007F, -91.9639969F), new Vector2(-150.063995F, -91.7959976F), new Vector2(-151.024002F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(-152.175995F, -91.7959976F), new Vector2(-153.195999F, -92.0419998F), new Vector2(-154.084F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(-154.972F, -93.026001F), new Vector2(-155.656006F, -93.7220001F), new Vector2(-156.136002F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(-156.615997F, -95.5220032F), new Vector2(-156.856003F, -96.5719986F), new Vector2(-156.856003F, -97.7720032F));
+ builder.AddCubicBezier(new Vector2(-156.856003F, -98.947998F), new Vector2(-156.628006F, -99.9680023F), new Vector2(-156.171997F, -100.832001F));
+ builder.AddCubicBezier(new Vector2(-155.716003F, -101.695999F), new Vector2(-155.067993F, -102.367996F), new Vector2(-154.227997F, -102.848F));
+ builder.AddCubicBezier(new Vector2(-153.388F, -103.328003F), new Vector2(-152.416F, -103.568001F), new Vector2(-151.311996F, -103.568001F));
+ builder.AddCubicBezier(new Vector2(-150.255997F, -103.568001F), new Vector2(-149.356003F, -103.346001F), new Vector2(-148.612F, -102.902F));
+ builder.AddCubicBezier(new Vector2(-147.867996F, -102.458F), new Vector2(-147.292007F, -101.834F), new Vector2(-146.884003F, -101.029999F));
+ builder.AddCubicBezier(new Vector2(-146.475998F, -100.225998F), new Vector2(-146.272003F, -99.2480011F), new Vector2(-146.272003F, -98.0960007F));
+ builder.AddLine(new Vector2(-145.084F, -99.1399994F));
+ builder.AddLine(new Vector2(-157.792007F, -99.1399994F));
+ builder.AddLine(new Vector2(-157.792007F, -96.4400024F));
+ builder.AddLine(new Vector2(-143.356003F, -96.4400024F));
+ builder.AddCubicBezier(new Vector2(-143.283997F, -96.776001F), new Vector2(-143.235992F, -97.0820007F), new Vector2(-143.212006F, -97.3580017F));
+ builder.AddCubicBezier(new Vector2(-143.188004F, -97.6340027F), new Vector2(-143.175995F, -97.8919983F), new Vector2(-143.175995F, -98.1320038F));
+ builder.AddCubicBezier(new Vector2(-143.175995F, -99.7639999F), new Vector2(-143.518005F, -101.216003F), new Vector2(-144.201996F, -102.487999F));
+ builder.AddCubicBezier(new Vector2(-144.886002F, -103.760002F), new Vector2(-145.839996F, -104.755997F), new Vector2(-147.063995F, -105.475998F));
+ builder.AddCubicBezier(new Vector2(-148.287994F, -106.195999F), new Vector2(-149.679993F, -106.556F), new Vector2(-151.240005F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-152.895996F, -106.556F), new Vector2(-154.389999F, -106.166F), new Vector2(-155.722F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(-157.054001F, -104.606003F), new Vector2(-158.110001F, -103.543999F), new Vector2(-158.889999F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(-159.669998F, -100.856003F), new Vector2(-160.059998F, -99.3440018F), new Vector2(-160.059998F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(-160.059998F, -95.9599991F), new Vector2(-159.664001F, -94.435997F), new Vector2(-158.871994F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(-158.080002F, -91.7480011F), new Vector2(-157.005997F, -90.685997F), new Vector2(-155.649994F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(-154.294006F, -89.1259995F), new Vector2(-152.751999F, -88.7360001F), new Vector2(-151.024002F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-149.679993F, -88.7360001F), new Vector2(-148.419998F, -88.987999F), new Vector2(-147.244003F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0941()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-163.876007F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-163.492004F, -110.606003F), new Vector2(-163.300003F, -111.103996F), new Vector2(-163.300003F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-163.300003F, -112.279999F), new Vector2(-163.492004F, -112.765999F), new Vector2(-163.876007F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-164.259995F, -113.557999F), new Vector2(-164.751999F, -113.755997F), new Vector2(-165.352005F, -113.755997F));
+ builder.AddCubicBezier(new Vector2(-165.951996F, -113.755997F), new Vector2(-166.444F, -113.557999F), new Vector2(-166.828003F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-167.212006F, -112.765999F), new Vector2(-167.404007F, -112.279999F), new Vector2(-167.404007F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-167.404007F, -111.103996F), new Vector2(-167.212006F, -110.606003F), new Vector2(-166.828003F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-166.444F, -109.814003F), new Vector2(-165.951996F, -109.615997F), new Vector2(-165.352005F, -109.615997F));
+ builder.AddCubicBezier(new Vector2(-164.751999F, -109.615997F), new Vector2(-164.259995F, -109.814003F), new Vector2(-163.876007F, -110.209999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-163.731995F, -89.0960007F));
+ builder.AddLine(new Vector2(-163.731995F, -106.195999F));
+ builder.AddLine(new Vector2(-167.007996F, -106.195999F));
+ builder.AddLine(new Vector2(-167.007996F, -89.0960007F));
+ builder.AddLine(new Vector2(-163.731995F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0942()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-177.052002F, -102.344002F));
+ builder.AddCubicBezier(new Vector2(-176.283997F, -103.112F), new Vector2(-175.300003F, -103.496002F), new Vector2(-174.100006F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-173.524002F, -103.496002F), new Vector2(-173.020004F, -103.412003F), new Vector2(-172.587997F, -103.244003F));
+ builder.AddCubicBezier(new Vector2(-172.156006F, -103.075996F), new Vector2(-171.759995F, -102.800003F), new Vector2(-171.399994F, -102.416F));
+ builder.AddLine(new Vector2(-169.276001F, -104.612F));
+ builder.AddCubicBezier(new Vector2(-169.876007F, -105.307999F), new Vector2(-170.524002F, -105.806F), new Vector2(-171.220001F, -106.106003F));
+ builder.AddCubicBezier(new Vector2(-171.916F, -106.405998F), new Vector2(-172.695999F, -106.556F), new Vector2(-173.559998F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-175.455994F, -106.556F), new Vector2(-176.908005F, -105.907997F), new Vector2(-177.916F, -104.612F));
+ builder.AddCubicBezier(new Vector2(-178.923996F, -103.316002F), new Vector2(-179.427994F, -101.575996F), new Vector2(-179.427994F, -99.3919983F));
+ builder.AddLine(new Vector2(-178.203995F, -98.8160019F));
+ builder.AddCubicBezier(new Vector2(-178.203995F, -100.400002F), new Vector2(-177.820007F, -101.575996F), new Vector2(-177.052002F, -102.344002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-178.203995F, -89.0960007F));
+ builder.AddLine(new Vector2(-178.203995F, -106.195999F));
+ builder.AddLine(new Vector2(-181.444F, -106.195999F));
+ builder.AddLine(new Vector2(-181.444F, -89.0960007F));
+ builder.AddLine(new Vector2(-178.203995F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0943()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-184.612F, -103.244003F));
+ builder.AddLine(new Vector2(-184.612F, -106.195999F));
+ builder.AddLine(new Vector2(-196.276001F, -106.195999F));
+ builder.AddLine(new Vector2(-196.276001F, -103.244003F));
+ builder.AddLine(new Vector2(-184.612F, -103.244003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-188.824005F, -89.0960007F));
+ builder.AddLine(new Vector2(-188.824005F, -113.360001F));
+ builder.AddLine(new Vector2(-192.063995F, -113.360001F));
+ builder.AddLine(new Vector2(-192.063995F, -89.0960007F));
+ builder.AddLine(new Vector2(-188.824005F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0944()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-205.311996F, -103.244003F));
+ builder.AddLine(new Vector2(-205.311996F, -106.195999F));
+ builder.AddLine(new Vector2(-216.975998F, -106.195999F));
+ builder.AddLine(new Vector2(-216.975998F, -103.244003F));
+ builder.AddLine(new Vector2(-205.311996F, -103.244003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-209.524002F, -89.0960007F));
+ builder.AddLine(new Vector2(-209.524002F, -113.360001F));
+ builder.AddLine(new Vector2(-212.764008F, -113.360001F));
+ builder.AddLine(new Vector2(-212.764008F, -89.0960007F));
+ builder.AddLine(new Vector2(-209.524002F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0945()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-231.664001F, -89.0960007F));
+ builder.AddLine(new Vector2(-231.664001F, -106.195999F));
+ builder.AddLine(new Vector2(-234.904007F, -106.195999F));
+ builder.AddLine(new Vector2(-234.904007F, -89.0960007F));
+ builder.AddLine(new Vector2(-231.664001F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-219.567993F, -89.0960007F));
+ builder.AddLine(new Vector2(-219.567993F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(-219.567993F, -100.891998F), new Vector2(-219.856003F, -102.001999F), new Vector2(-220.432007F, -103.045998F));
+ builder.AddCubicBezier(new Vector2(-221.007996F, -104.089996F), new Vector2(-221.794006F, -104.935997F), new Vector2(-222.789993F, -105.584F));
+ builder.AddCubicBezier(new Vector2(-223.785995F, -106.232002F), new Vector2(-224.932007F, -106.556F), new Vector2(-226.227997F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-227.524002F, -106.556F), new Vector2(-228.688004F, -106.262001F), new Vector2(-229.720001F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(-230.751999F, -105.085999F), new Vector2(-231.556F, -104.288002F), new Vector2(-232.132004F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(-232.707993F, -102.272003F), new Vector2(-232.996002F, -101.120003F), new Vector2(-232.996002F, -99.8239975F));
+ builder.AddLine(new Vector2(-231.664001F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(-231.664001F, -99.9319992F), new Vector2(-231.472F, -100.699997F), new Vector2(-231.087997F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(-230.703995F, -102.043999F), new Vector2(-230.175995F, -102.571999F), new Vector2(-229.503998F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(-228.832001F, -103.339996F), new Vector2(-228.063995F, -103.531998F), new Vector2(-227.199997F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-225.904007F, -103.531998F), new Vector2(-224.854004F, -103.112F), new Vector2(-224.050003F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(-223.246002F, -101.431999F), new Vector2(-222.843994F, -100.363998F), new Vector2(-222.843994F, -99.0680008F));
+ builder.AddLine(new Vector2(-222.843994F, -89.0960007F));
+ builder.AddLine(new Vector2(-219.567993F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0946()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-242.5F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(-241.324005F, -89.9960022F), new Vector2(-240.315994F, -90.7279968F), new Vector2(-239.475998F, -91.6880035F));
+ builder.AddLine(new Vector2(-241.563995F, -93.8119965F));
+ builder.AddCubicBezier(new Vector2(-242.139999F, -93.1399994F), new Vector2(-242.830002F, -92.6360016F), new Vector2(-243.634003F, -92.3000031F));
+ builder.AddCubicBezier(new Vector2(-244.438004F, -91.9639969F), new Vector2(-245.320007F, -91.7959976F), new Vector2(-246.279999F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(-247.432007F, -91.7959976F), new Vector2(-248.451996F, -92.0419998F), new Vector2(-249.339996F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(-250.227997F, -93.026001F), new Vector2(-250.912003F, -93.7220001F), new Vector2(-251.391998F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(-251.871994F, -95.5220032F), new Vector2(-252.112F, -96.5719986F), new Vector2(-252.112F, -97.7720032F));
+ builder.AddCubicBezier(new Vector2(-252.112F, -98.947998F), new Vector2(-251.884003F, -99.9680023F), new Vector2(-251.427994F, -100.832001F));
+ builder.AddCubicBezier(new Vector2(-250.972F, -101.695999F), new Vector2(-250.324005F, -102.367996F), new Vector2(-249.483994F, -102.848F));
+ builder.AddCubicBezier(new Vector2(-248.643997F, -103.328003F), new Vector2(-247.671997F, -103.568001F), new Vector2(-246.567993F, -103.568001F));
+ builder.AddCubicBezier(new Vector2(-245.511993F, -103.568001F), new Vector2(-244.612F, -103.346001F), new Vector2(-243.867996F, -102.902F));
+ builder.AddCubicBezier(new Vector2(-243.123993F, -102.458F), new Vector2(-242.548004F, -101.834F), new Vector2(-242.139999F, -101.029999F));
+ builder.AddCubicBezier(new Vector2(-241.731995F, -100.225998F), new Vector2(-241.528F, -99.2480011F), new Vector2(-241.528F, -98.0960007F));
+ builder.AddLine(new Vector2(-240.339996F, -99.1399994F));
+ builder.AddLine(new Vector2(-253.048004F, -99.1399994F));
+ builder.AddLine(new Vector2(-253.048004F, -96.4400024F));
+ builder.AddLine(new Vector2(-238.612F, -96.4400024F));
+ builder.AddCubicBezier(new Vector2(-238.539993F, -96.776001F), new Vector2(-238.492004F, -97.0820007F), new Vector2(-238.468002F, -97.3580017F));
+ builder.AddCubicBezier(new Vector2(-238.444F, -97.6340027F), new Vector2(-238.432007F, -97.8919983F), new Vector2(-238.432007F, -98.1320038F));
+ builder.AddCubicBezier(new Vector2(-238.432007F, -99.7639999F), new Vector2(-238.774002F, -101.216003F), new Vector2(-239.457993F, -102.487999F));
+ builder.AddCubicBezier(new Vector2(-240.141998F, -103.760002F), new Vector2(-241.095993F, -104.755997F), new Vector2(-242.320007F, -105.475998F));
+ builder.AddCubicBezier(new Vector2(-243.544006F, -106.195999F), new Vector2(-244.936005F, -106.556F), new Vector2(-246.496002F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-248.151993F, -106.556F), new Vector2(-249.645996F, -106.166F), new Vector2(-250.977997F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(-252.309998F, -104.606003F), new Vector2(-253.365997F, -103.543999F), new Vector2(-254.145996F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(-254.925995F, -100.856003F), new Vector2(-255.315994F, -99.3440018F), new Vector2(-255.315994F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(-255.315994F, -95.9599991F), new Vector2(-254.919998F, -94.435997F), new Vector2(-254.128006F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(-253.335999F, -91.7480011F), new Vector2(-252.261993F, -90.685997F), new Vector2(-250.906006F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(-249.550003F, -89.1259995F), new Vector2(-248.007996F, -88.7360001F), new Vector2(-246.279999F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-244.936005F, -88.7360001F), new Vector2(-243.675995F, -88.987999F), new Vector2(-242.5F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0947()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-258.59201F, -89.0960007F));
+ builder.AddLine(new Vector2(-258.59201F, -100.075996F));
+ builder.AddCubicBezier(new Vector2(-258.59201F, -101.419998F), new Vector2(-258.885986F, -102.571999F), new Vector2(-259.473999F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-260.062012F, -104.491997F), new Vector2(-260.847992F, -105.236F), new Vector2(-261.832001F, -105.764F));
+ builder.AddCubicBezier(new Vector2(-262.81601F, -106.292F), new Vector2(-263.932007F, -106.556F), new Vector2(-265.179993F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-266.380005F, -106.556F), new Vector2(-267.484009F, -106.286003F), new Vector2(-268.492004F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(-269.5F, -105.206001F), new Vector2(-270.321991F, -104.461998F), new Vector2(-270.958008F, -103.514F));
+ builder.AddCubicBezier(new Vector2(-271.593994F, -102.566002F), new Vector2(-271.947998F, -101.431999F), new Vector2(-272.019989F, -100.112F));
+ builder.AddLine(new Vector2(-270.18399F, -99.4280014F));
+ builder.AddCubicBezier(new Vector2(-270.18399F, -100.292F), new Vector2(-269.992004F, -101.024002F), new Vector2(-269.608002F, -101.624001F));
+ builder.AddCubicBezier(new Vector2(-269.223999F, -102.223999F), new Vector2(-268.713989F, -102.692001F), new Vector2(-268.078003F, -103.028F));
+ builder.AddCubicBezier(new Vector2(-267.441986F, -103.363998F), new Vector2(-266.727997F, -103.531998F), new Vector2(-265.936005F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-264.783997F, -103.531998F), new Vector2(-263.817993F, -103.166F), new Vector2(-263.037994F, -102.433998F));
+ builder.AddCubicBezier(new Vector2(-262.257996F, -101.702003F), new Vector2(-261.868011F, -100.699997F), new Vector2(-261.868011F, -99.4280014F));
+ builder.AddLine(new Vector2(-261.868011F, -89.0960007F));
+ builder.AddLine(new Vector2(-258.59201F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-270.18399F, -89.0960007F));
+ builder.AddLine(new Vector2(-270.18399F, -100.112F));
+ builder.AddCubicBezier(new Vector2(-270.18399F, -101.431999F), new Vector2(-270.466003F, -102.571999F), new Vector2(-271.029999F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-271.593994F, -104.491997F), new Vector2(-272.362F, -105.236F), new Vector2(-273.334015F, -105.764F));
+ builder.AddCubicBezier(new Vector2(-274.306F, -106.292F), new Vector2(-275.391998F, -106.556F), new Vector2(-276.59201F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-277.81601F, -106.556F), new Vector2(-278.920013F, -106.286003F), new Vector2(-279.903992F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(-280.888F, -105.206001F), new Vector2(-281.661987F, -104.456001F), new Vector2(-282.226013F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-282.790009F, -102.536003F), new Vector2(-283.071991F, -101.407997F), new Vector2(-283.071991F, -100.112F));
+ builder.AddLine(new Vector2(-281.73999F, -99.4280014F));
+ builder.AddCubicBezier(new Vector2(-281.73999F, -100.292F), new Vector2(-281.548004F, -101.024002F), new Vector2(-281.164001F, -101.624001F));
+ builder.AddCubicBezier(new Vector2(-280.779999F, -102.223999F), new Vector2(-280.276001F, -102.692001F), new Vector2(-279.652008F, -103.028F));
+ builder.AddCubicBezier(new Vector2(-279.028015F, -103.363998F), new Vector2(-278.320007F, -103.531998F), new Vector2(-277.528015F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-276.35199F, -103.531998F), new Vector2(-275.373993F, -103.166F), new Vector2(-274.593994F, -102.433998F));
+ builder.AddCubicBezier(new Vector2(-273.813995F, -101.702003F), new Vector2(-273.424011F, -100.699997F), new Vector2(-273.424011F, -99.4280014F));
+ builder.AddLine(new Vector2(-273.424011F, -89.0960007F));
+ builder.AddLine(new Vector2(-270.18399F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-281.73999F, -89.0960007F));
+ builder.AddLine(new Vector2(-281.73999F, -106.195999F));
+ builder.AddLine(new Vector2(-284.980011F, -106.195999F));
+ builder.AddLine(new Vector2(-284.980011F, -89.0960007F));
+ builder.AddLine(new Vector2(-281.73999F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0948()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-301.467987F, -89.0960007F));
+ builder.AddLine(new Vector2(-301.467987F, -106.195999F));
+ builder.AddLine(new Vector2(-304.708008F, -106.195999F));
+ builder.AddLine(new Vector2(-304.708008F, -89.0960007F));
+ builder.AddLine(new Vector2(-301.467987F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-289.372009F, -89.0960007F));
+ builder.AddLine(new Vector2(-289.372009F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(-289.372009F, -100.891998F), new Vector2(-289.660004F, -102.001999F), new Vector2(-290.235992F, -103.045998F));
+ builder.AddCubicBezier(new Vector2(-290.812012F, -104.089996F), new Vector2(-291.597992F, -104.935997F), new Vector2(-292.593994F, -105.584F));
+ builder.AddCubicBezier(new Vector2(-293.589996F, -106.232002F), new Vector2(-294.735992F, -106.556F), new Vector2(-296.032013F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-297.328003F, -106.556F), new Vector2(-298.492004F, -106.262001F), new Vector2(-299.523987F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(-300.556F, -105.085999F), new Vector2(-301.359985F, -104.288002F), new Vector2(-301.936005F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(-302.511993F, -102.272003F), new Vector2(-302.799988F, -101.120003F), new Vector2(-302.799988F, -99.8239975F));
+ builder.AddLine(new Vector2(-301.467987F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(-301.467987F, -99.9319992F), new Vector2(-301.276001F, -100.699997F), new Vector2(-300.891998F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(-300.507996F, -102.043999F), new Vector2(-299.980011F, -102.571999F), new Vector2(-299.308014F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(-298.635986F, -103.339996F), new Vector2(-297.868011F, -103.531998F), new Vector2(-297.003998F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-295.708008F, -103.531998F), new Vector2(-294.65799F, -103.112F), new Vector2(-293.854004F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(-293.049988F, -101.431999F), new Vector2(-292.64801F, -100.363998F), new Vector2(-292.64801F, -99.0680008F));
+ builder.AddLine(new Vector2(-292.64801F, -89.0960007F));
+ builder.AddLine(new Vector2(-289.372009F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0949()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-314.824005F, -102.344002F));
+ builder.AddCubicBezier(new Vector2(-314.056F, -103.112F), new Vector2(-313.071991F, -103.496002F), new Vector2(-311.872009F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-311.29599F, -103.496002F), new Vector2(-310.791992F, -103.412003F), new Vector2(-310.359985F, -103.244003F));
+ builder.AddCubicBezier(new Vector2(-309.928009F, -103.075996F), new Vector2(-309.532013F, -102.800003F), new Vector2(-309.171997F, -102.416F));
+ builder.AddLine(new Vector2(-307.048004F, -104.612F));
+ builder.AddCubicBezier(new Vector2(-307.64801F, -105.307999F), new Vector2(-308.29599F, -105.806F), new Vector2(-308.992004F, -106.106003F));
+ builder.AddCubicBezier(new Vector2(-309.687988F, -106.405998F), new Vector2(-310.467987F, -106.556F), new Vector2(-311.332001F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-313.227997F, -106.556F), new Vector2(-314.679993F, -105.907997F), new Vector2(-315.687988F, -104.612F));
+ builder.AddCubicBezier(new Vector2(-316.696014F, -103.316002F), new Vector2(-317.200012F, -101.575996F), new Vector2(-317.200012F, -99.3919983F));
+ builder.AddLine(new Vector2(-315.976013F, -98.8160019F));
+ builder.AddCubicBezier(new Vector2(-315.976013F, -100.400002F), new Vector2(-315.59201F, -101.575996F), new Vector2(-314.824005F, -102.344002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-315.976013F, -89.0960007F));
+ builder.AddLine(new Vector2(-315.976013F, -106.195999F));
+ builder.AddLine(new Vector2(-319.216003F, -106.195999F));
+ builder.AddLine(new Vector2(-319.216003F, -89.0960007F));
+ builder.AddLine(new Vector2(-315.976013F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0950()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-326.812012F, -89.4919968F));
+ builder.AddCubicBezier(new Vector2(-325.635986F, -89.9960022F), new Vector2(-324.627991F, -90.7279968F), new Vector2(-323.787994F, -91.6880035F));
+ builder.AddLine(new Vector2(-325.876007F, -93.8119965F));
+ builder.AddCubicBezier(new Vector2(-326.451996F, -93.1399994F), new Vector2(-327.141998F, -92.6360016F), new Vector2(-327.946014F, -92.3000031F));
+ builder.AddCubicBezier(new Vector2(-328.75F, -91.9639969F), new Vector2(-329.631989F, -91.7959976F), new Vector2(-330.59201F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(-331.743988F, -91.7959976F), new Vector2(-332.764008F, -92.0419998F), new Vector2(-333.652008F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(-334.540009F, -93.026001F), new Vector2(-335.223999F, -93.7220001F), new Vector2(-335.70401F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(-336.18399F, -95.5220032F), new Vector2(-336.424011F, -96.5719986F), new Vector2(-336.424011F, -97.7720032F));
+ builder.AddCubicBezier(new Vector2(-336.424011F, -98.947998F), new Vector2(-336.196014F, -99.9680023F), new Vector2(-335.73999F, -100.832001F));
+ builder.AddCubicBezier(new Vector2(-335.283997F, -101.695999F), new Vector2(-334.635986F, -102.367996F), new Vector2(-333.79599F, -102.848F));
+ builder.AddCubicBezier(new Vector2(-332.955994F, -103.328003F), new Vector2(-331.984009F, -103.568001F), new Vector2(-330.880005F, -103.568001F));
+ builder.AddCubicBezier(new Vector2(-329.824005F, -103.568001F), new Vector2(-328.924011F, -103.346001F), new Vector2(-328.179993F, -102.902F));
+ builder.AddCubicBezier(new Vector2(-327.436005F, -102.458F), new Vector2(-326.859985F, -101.834F), new Vector2(-326.451996F, -101.029999F));
+ builder.AddCubicBezier(new Vector2(-326.044006F, -100.225998F), new Vector2(-325.839996F, -99.2480011F), new Vector2(-325.839996F, -98.0960007F));
+ builder.AddLine(new Vector2(-324.652008F, -99.1399994F));
+ builder.AddLine(new Vector2(-337.359985F, -99.1399994F));
+ builder.AddLine(new Vector2(-337.359985F, -96.4400024F));
+ builder.AddLine(new Vector2(-322.924011F, -96.4400024F));
+ builder.AddCubicBezier(new Vector2(-322.85199F, -96.776001F), new Vector2(-322.803986F, -97.0820007F), new Vector2(-322.779999F, -97.3580017F));
+ builder.AddCubicBezier(new Vector2(-322.756012F, -97.6340027F), new Vector2(-322.743988F, -97.8919983F), new Vector2(-322.743988F, -98.1320038F));
+ builder.AddCubicBezier(new Vector2(-322.743988F, -99.7639999F), new Vector2(-323.085999F, -101.216003F), new Vector2(-323.769989F, -102.487999F));
+ builder.AddCubicBezier(new Vector2(-324.45401F, -103.760002F), new Vector2(-325.40799F, -104.755997F), new Vector2(-326.631989F, -105.475998F));
+ builder.AddCubicBezier(new Vector2(-327.855988F, -106.195999F), new Vector2(-329.247986F, -106.556F), new Vector2(-330.808014F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-332.463989F, -106.556F), new Vector2(-333.958008F, -106.166F), new Vector2(-335.290009F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(-336.622009F, -104.606003F), new Vector2(-337.678009F, -103.543999F), new Vector2(-338.458008F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(-339.238007F, -100.856003F), new Vector2(-339.627991F, -99.3440018F), new Vector2(-339.627991F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(-339.627991F, -95.9599991F), new Vector2(-339.231995F, -94.435997F), new Vector2(-338.440002F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(-337.64801F, -91.7480011F), new Vector2(-336.574005F, -90.685997F), new Vector2(-335.217987F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(-333.862F, -89.1259995F), new Vector2(-332.320007F, -88.7360001F), new Vector2(-330.59201F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-329.247986F, -88.7360001F), new Vector2(-327.988007F, -88.987999F), new Vector2(-326.812012F, -89.4919968F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0951()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-348.484009F, -89.0960007F));
+ builder.AddLine(new Vector2(-340.635986F, -106.195999F));
+ builder.AddLine(new Vector2(-344.09201F, -106.195999F));
+ builder.AddLine(new Vector2(-350.428009F, -91.7600021F));
+ builder.AddLine(new Vector2(-348.339996F, -91.7600021F));
+ builder.AddLine(new Vector2(-354.640015F, -106.195999F));
+ builder.AddLine(new Vector2(-358.23999F, -106.195999F));
+ builder.AddLine(new Vector2(-350.391998F, -89.0960007F));
+ builder.AddLine(new Vector2(-348.484009F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0952()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-371.019989F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-371.859985F, -93.1279984F), new Vector2(-372.519989F, -93.8180008F), new Vector2(-373F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-373.480011F, -95.5699997F), new Vector2(-373.720001F, -96.5719986F), new Vector2(-373.720001F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-373.720001F, -98.8040009F), new Vector2(-373.480011F, -99.788002F), new Vector2(-373F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-372.519989F, -101.515999F), new Vector2(-371.859985F, -102.194F), new Vector2(-371.019989F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-370.179993F, -103.178001F), new Vector2(-369.231995F, -103.424004F), new Vector2(-368.175995F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(-367.071991F, -103.424004F), new Vector2(-366.105988F, -103.178001F), new Vector2(-365.278015F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-364.450012F, -102.194F), new Vector2(-363.790009F, -101.515999F), new Vector2(-363.298004F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-362.806F, -99.788002F), new Vector2(-362.559998F, -98.8040009F), new Vector2(-362.559998F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-362.559998F, -96.5719986F), new Vector2(-362.799988F, -95.5699997F), new Vector2(-363.279999F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-363.76001F, -93.8180008F), new Vector2(-364.420013F, -93.1279984F), new Vector2(-365.26001F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-366.100006F, -92.1200027F), new Vector2(-367.071991F, -91.8679962F), new Vector2(-368.175995F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(-369.231995F, -91.8679962F), new Vector2(-370.179993F, -92.1200027F), new Vector2(-371.019989F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-363.622009F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-362.265991F, -90.7160034F), new Vector2(-361.191986F, -91.7900009F), new Vector2(-360.399994F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-359.608002F, -94.5019989F), new Vector2(-359.212006F, -96.0199966F), new Vector2(-359.212006F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-359.212006F, -99.3560028F), new Vector2(-359.608002F, -100.856003F), new Vector2(-360.399994F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(-361.191986F, -103.543999F), new Vector2(-362.265991F, -104.606003F), new Vector2(-363.622009F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(-364.977997F, -106.166F), new Vector2(-366.496002F, -106.556F), new Vector2(-368.175995F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-369.832001F, -106.556F), new Vector2(-371.332001F, -106.160004F), new Vector2(-372.675995F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(-374.019989F, -104.575996F), new Vector2(-375.088013F, -103.514F), new Vector2(-375.880005F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(-376.671997F, -100.849998F), new Vector2(-377.067993F, -99.3560028F), new Vector2(-377.067993F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-377.067993F, -96.0199966F), new Vector2(-376.671997F, -94.5019989F), new Vector2(-375.880005F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-375.088013F, -91.7900009F), new Vector2(-374.019989F, -90.7160034F), new Vector2(-372.675995F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-371.332001F, -89.1320038F), new Vector2(-369.832001F, -88.7360001F), new Vector2(-368.175995F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-366.496002F, -88.7360001F), new Vector2(-364.977997F, -89.1320038F), new Vector2(-363.622009F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0953()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-391.881989F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-392.709991F, -93.6139984F), new Vector2(-393.358002F, -94.2679977F), new Vector2(-393.825989F, -95.1080017F));
+ builder.AddCubicBezier(new Vector2(-394.294006F, -95.947998F), new Vector2(-394.528015F, -96.9079971F), new Vector2(-394.528015F, -97.987999F));
+ builder.AddCubicBezier(new Vector2(-394.528015F, -99.0680008F), new Vector2(-394.294006F, -100.022003F), new Vector2(-393.825989F, -100.849998F));
+ builder.AddCubicBezier(new Vector2(-393.358002F, -101.678001F), new Vector2(-392.716003F, -102.325996F), new Vector2(-391.899994F, -102.793999F));
+ builder.AddCubicBezier(new Vector2(-391.084015F, -103.262001F), new Vector2(-390.135986F, -103.496002F), new Vector2(-389.056F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-388F, -103.496002F), new Vector2(-387.070007F, -103.262001F), new Vector2(-386.265991F, -102.793999F));
+ builder.AddCubicBezier(new Vector2(-385.462006F, -102.325996F), new Vector2(-384.838013F, -101.678001F), new Vector2(-384.394012F, -100.849998F));
+ builder.AddCubicBezier(new Vector2(-383.950012F, -100.022003F), new Vector2(-383.727997F, -99.0559998F), new Vector2(-383.727997F, -97.9520035F));
+ builder.AddCubicBezier(new Vector2(-383.727997F, -96.8479996F), new Vector2(-383.950012F, -95.8820038F), new Vector2(-384.394012F, -95.0540009F));
+ builder.AddCubicBezier(new Vector2(-384.838013F, -94.2259979F), new Vector2(-385.455994F, -93.5839996F), new Vector2(-386.247986F, -93.1279984F));
+ builder.AddCubicBezier(new Vector2(-387.040009F, -92.6719971F), new Vector2(-387.976013F, -92.4440002F), new Vector2(-389.056F, -92.4440002F));
+ builder.AddCubicBezier(new Vector2(-390.112F, -92.4440002F), new Vector2(-391.053986F, -92.6780014F), new Vector2(-391.881989F, -93.1460037F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-386.140015F, -90.1760025F));
+ builder.AddCubicBezier(new Vector2(-385.108002F, -90.7040024F), new Vector2(-384.286011F, -91.4420013F), new Vector2(-383.674011F, -92.3899994F));
+ builder.AddCubicBezier(new Vector2(-383.062012F, -93.3379974F), new Vector2(-382.720001F, -94.435997F), new Vector2(-382.64801F, -95.6839981F));
+ builder.AddLine(new Vector2(-382.64801F, -100.220001F));
+ builder.AddCubicBezier(new Vector2(-382.720001F, -101.491997F), new Vector2(-383.056F, -102.601997F), new Vector2(-383.656006F, -103.550003F));
+ builder.AddCubicBezier(new Vector2(-384.256012F, -104.498001F), new Vector2(-385.078003F, -105.236F), new Vector2(-386.122009F, -105.764F));
+ builder.AddCubicBezier(new Vector2(-387.165985F, -106.292F), new Vector2(-388.359985F, -106.556F), new Vector2(-389.70401F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-391.23999F, -106.556F), new Vector2(-392.631989F, -106.178001F), new Vector2(-393.880005F, -105.421997F));
+ builder.AddCubicBezier(new Vector2(-395.127991F, -104.666F), new Vector2(-396.105988F, -103.646004F), new Vector2(-396.813995F, -102.362F));
+ builder.AddCubicBezier(new Vector2(-397.522003F, -101.078003F), new Vector2(-397.876007F, -99.6200027F), new Vector2(-397.876007F, -97.987999F));
+ builder.AddCubicBezier(new Vector2(-397.876007F, -96.3560028F), new Vector2(-397.515991F, -94.8860016F), new Vector2(-396.79599F, -93.5780029F));
+ builder.AddCubicBezier(new Vector2(-396.075989F, -92.2699966F), new Vector2(-395.097992F, -91.2440033F), new Vector2(-393.862F, -90.5F));
+ builder.AddCubicBezier(new Vector2(-392.626007F, -89.7559967F), new Vector2(-391.227997F, -89.3840027F), new Vector2(-389.667999F, -89.3840027F));
+ builder.AddCubicBezier(new Vector2(-388.347992F, -89.3840027F), new Vector2(-387.171997F, -89.6480026F), new Vector2(-386.140015F, -90.1760025F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-384.970001F, -82.5979996F));
+ builder.AddCubicBezier(new Vector2(-383.614014F, -83.2819977F), new Vector2(-382.558014F, -84.2419968F), new Vector2(-381.802002F, -85.4779968F));
+ builder.AddCubicBezier(new Vector2(-381.04599F, -86.7139969F), new Vector2(-380.667999F, -88.1480026F), new Vector2(-380.667999F, -89.7799988F));
+ builder.AddLine(new Vector2(-380.667999F, -106.195999F));
+ builder.AddLine(new Vector2(-383.90799F, -106.195999F));
+ builder.AddLine(new Vector2(-383.90799F, -101.695999F));
+ builder.AddLine(new Vector2(-383.332001F, -97.8799973F));
+ builder.AddLine(new Vector2(-383.90799F, -94.0279999F));
+ builder.AddLine(new Vector2(-383.90799F, -89.7799988F));
+ builder.AddCubicBezier(new Vector2(-383.90799F, -88.2200012F), new Vector2(-384.424011F, -86.9779968F), new Vector2(-385.455994F, -86.0540009F));
+ builder.AddCubicBezier(new Vector2(-386.488007F, -85.1299973F), new Vector2(-387.868011F, -84.6679993F), new Vector2(-389.596008F, -84.6679993F));
+ builder.AddCubicBezier(new Vector2(-390.915985F, -84.6679993F), new Vector2(-392.056F, -84.9020004F), new Vector2(-393.015991F, -85.3700027F));
+ builder.AddCubicBezier(new Vector2(-393.976013F, -85.8379974F), new Vector2(-394.803986F, -86.5159988F), new Vector2(-395.5F, -87.4039993F));
+ builder.AddLine(new Vector2(-397.623993F, -85.2799988F));
+ builder.AddCubicBezier(new Vector2(-396.783997F, -84.1039963F), new Vector2(-395.691986F, -83.1920013F), new Vector2(-394.347992F, -82.5439987F));
+ builder.AddCubicBezier(new Vector2(-393.003998F, -81.8960037F), new Vector2(-391.444F, -81.5719986F), new Vector2(-389.667999F, -81.5719986F));
+ builder.AddCubicBezier(new Vector2(-387.891998F, -81.5719986F), new Vector2(-386.325989F, -81.9140015F), new Vector2(-384.970001F, -82.5979996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0954()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-414.903992F, -102.344002F));
+ builder.AddCubicBezier(new Vector2(-414.135986F, -103.112F), new Vector2(-413.152008F, -103.496002F), new Vector2(-411.951996F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-411.376007F, -103.496002F), new Vector2(-410.872009F, -103.412003F), new Vector2(-410.440002F, -103.244003F));
+ builder.AddCubicBezier(new Vector2(-410.007996F, -103.075996F), new Vector2(-409.612F, -102.800003F), new Vector2(-409.252014F, -102.416F));
+ builder.AddLine(new Vector2(-407.127991F, -104.612F));
+ builder.AddCubicBezier(new Vector2(-407.727997F, -105.307999F), new Vector2(-408.376007F, -105.806F), new Vector2(-409.071991F, -106.106003F));
+ builder.AddCubicBezier(new Vector2(-409.768005F, -106.405998F), new Vector2(-410.548004F, -106.556F), new Vector2(-411.411987F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-413.308014F, -106.556F), new Vector2(-414.76001F, -105.907997F), new Vector2(-415.768005F, -104.612F));
+ builder.AddCubicBezier(new Vector2(-416.776001F, -103.316002F), new Vector2(-417.279999F, -101.575996F), new Vector2(-417.279999F, -99.3919983F));
+ builder.AddLine(new Vector2(-416.056F, -98.8160019F));
+ builder.AddCubicBezier(new Vector2(-416.056F, -100.400002F), new Vector2(-415.671997F, -101.575996F), new Vector2(-414.903992F, -102.344002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-416.056F, -89.0960007F));
+ builder.AddLine(new Vector2(-416.056F, -106.195999F));
+ builder.AddLine(new Vector2(-419.29599F, -106.195999F));
+ builder.AddLine(new Vector2(-419.29599F, -89.0960007F));
+ builder.AddLine(new Vector2(-416.056F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0955()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-427.179993F, -89.7259979F));
+ builder.AddCubicBezier(new Vector2(-426.075989F, -90.3379974F), new Vector2(-425.212006F, -91.2080002F), new Vector2(-424.588013F, -92.3359985F));
+ builder.AddCubicBezier(new Vector2(-423.963989F, -93.4639969F), new Vector2(-423.652008F, -94.7720032F), new Vector2(-423.652008F, -96.2600021F));
+ builder.AddLine(new Vector2(-423.652008F, -106.195999F));
+ builder.AddLine(new Vector2(-426.891998F, -106.195999F));
+ builder.AddLine(new Vector2(-426.891998F, -96.4039993F));
+ builder.AddCubicBezier(new Vector2(-426.891998F, -94.987999F), new Vector2(-427.252014F, -93.8779984F), new Vector2(-427.971985F, -93.0739975F));
+ builder.AddCubicBezier(new Vector2(-428.691986F, -92.2699966F), new Vector2(-429.687988F, -91.8679962F), new Vector2(-430.959991F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(-431.799988F, -91.8679962F), new Vector2(-432.532013F, -92.0479965F), new Vector2(-433.156006F, -92.4079971F));
+ builder.AddCubicBezier(new Vector2(-433.779999F, -92.7679977F), new Vector2(-434.253998F, -93.2900009F), new Vector2(-434.578003F, -93.973999F));
+ builder.AddCubicBezier(new Vector2(-434.902008F, -94.6579971F), new Vector2(-435.063995F, -95.4680023F), new Vector2(-435.063995F, -96.4039993F));
+ builder.AddLine(new Vector2(-435.063995F, -106.195999F));
+ builder.AddLine(new Vector2(-438.303986F, -106.195999F));
+ builder.AddLine(new Vector2(-438.303986F, -96.2600021F));
+ builder.AddCubicBezier(new Vector2(-438.303986F, -94.7720032F), new Vector2(-437.992004F, -93.4639969F), new Vector2(-437.368011F, -92.3359985F));
+ builder.AddCubicBezier(new Vector2(-436.743988F, -91.2080002F), new Vector2(-435.873993F, -90.3379974F), new Vector2(-434.757996F, -89.7259979F));
+ builder.AddCubicBezier(new Vector2(-433.641998F, -89.1139984F), new Vector2(-432.376007F, -88.8079987F), new Vector2(-430.959991F, -88.8079987F));
+ builder.AddCubicBezier(new Vector2(-429.544006F, -88.8079987F), new Vector2(-428.283997F, -89.1139984F), new Vector2(-427.179993F, -89.7259979F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0956()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-453.279999F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-454.119995F, -93.1279984F), new Vector2(-454.779999F, -93.8180008F), new Vector2(-455.26001F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-455.73999F, -95.5699997F), new Vector2(-455.980011F, -96.5719986F), new Vector2(-455.980011F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-455.980011F, -98.8040009F), new Vector2(-455.73999F, -99.788002F), new Vector2(-455.26001F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-454.779999F, -101.515999F), new Vector2(-454.119995F, -102.194F), new Vector2(-453.279999F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-452.440002F, -103.178001F), new Vector2(-451.492004F, -103.424004F), new Vector2(-450.436005F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(-449.332001F, -103.424004F), new Vector2(-448.365997F, -103.178001F), new Vector2(-447.537994F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-446.709991F, -102.194F), new Vector2(-446.049988F, -101.515999F), new Vector2(-445.558014F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-445.06601F, -99.788002F), new Vector2(-444.820007F, -98.8040009F), new Vector2(-444.820007F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-444.820007F, -96.5719986F), new Vector2(-445.059998F, -95.5699997F), new Vector2(-445.540009F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-446.019989F, -93.8180008F), new Vector2(-446.679993F, -93.1279984F), new Vector2(-447.519989F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-448.359985F, -92.1200027F), new Vector2(-449.332001F, -91.8679962F), new Vector2(-450.436005F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(-451.492004F, -91.8679962F), new Vector2(-452.440002F, -92.1200027F), new Vector2(-453.279999F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-445.881989F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-444.526001F, -90.7160034F), new Vector2(-443.451996F, -91.7900009F), new Vector2(-442.660004F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-441.868011F, -94.5019989F), new Vector2(-441.471985F, -96.0199966F), new Vector2(-441.471985F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-441.471985F, -99.3560028F), new Vector2(-441.868011F, -100.856003F), new Vector2(-442.660004F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(-443.451996F, -103.543999F), new Vector2(-444.526001F, -104.606003F), new Vector2(-445.881989F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(-447.238007F, -106.166F), new Vector2(-448.756012F, -106.556F), new Vector2(-450.436005F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-452.09201F, -106.556F), new Vector2(-453.59201F, -106.160004F), new Vector2(-454.936005F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(-456.279999F, -104.575996F), new Vector2(-457.347992F, -103.514F), new Vector2(-458.140015F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(-458.932007F, -100.849998F), new Vector2(-459.328003F, -99.3560028F), new Vector2(-459.328003F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-459.328003F, -96.0199966F), new Vector2(-458.932007F, -94.5019989F), new Vector2(-458.140015F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-457.347992F, -91.7900009F), new Vector2(-456.279999F, -90.7160034F), new Vector2(-454.936005F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-453.59201F, -89.1320038F), new Vector2(-452.09201F, -88.7360001F), new Vector2(-450.436005F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-448.756012F, -88.7360001F), new Vector2(-447.238007F, -89.1320038F), new Vector2(-445.881989F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0957()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-485.895996F, -89.0960007F));
+ builder.AddLine(new Vector2(-480.928009F, -101.984001F));
+ builder.AddLine(new Vector2(-482.115997F, -101.984001F));
+ builder.AddLine(new Vector2(-477.18399F, -89.0960007F));
+ builder.AddLine(new Vector2(-475.276001F, -89.0960007F));
+ builder.AddLine(new Vector2(-468.544006F, -106.195999F));
+ builder.AddLine(new Vector2(-471.928009F, -106.195999F));
+ builder.AddLine(new Vector2(-476.824005F, -92.8759995F));
+ builder.AddLine(new Vector2(-475.743988F, -92.8759995F));
+ builder.AddLine(new Vector2(-480.604004F, -106.195999F));
+ builder.AddLine(new Vector2(-482.476013F, -106.195999F));
+ builder.AddLine(new Vector2(-487.335999F, -92.8759995F));
+ builder.AddLine(new Vector2(-486.256012F, -92.8759995F));
+ builder.AddLine(new Vector2(-491.152008F, -106.195999F));
+ builder.AddLine(new Vector2(-494.536011F, -106.195999F));
+ builder.AddLine(new Vector2(-487.803986F, -89.0960007F));
+ builder.AddLine(new Vector2(-485.895996F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0958()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-507.567993F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-508.40799F, -93.1279984F), new Vector2(-509.067993F, -93.8180008F), new Vector2(-509.548004F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-510.028015F, -95.5699997F), new Vector2(-510.268005F, -96.5719986F), new Vector2(-510.268005F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-510.268005F, -98.8040009F), new Vector2(-510.028015F, -99.788002F), new Vector2(-509.548004F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-509.067993F, -101.515999F), new Vector2(-508.40799F, -102.194F), new Vector2(-507.567993F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-506.727997F, -103.178001F), new Vector2(-505.779999F, -103.424004F), new Vector2(-504.723999F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(-503.619995F, -103.424004F), new Vector2(-502.653992F, -103.178001F), new Vector2(-501.825989F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-500.997986F, -102.194F), new Vector2(-500.338013F, -101.515999F), new Vector2(-499.846008F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-499.354004F, -99.788002F), new Vector2(-499.108002F, -98.8040009F), new Vector2(-499.108002F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-499.108002F, -96.5719986F), new Vector2(-499.347992F, -95.5699997F), new Vector2(-499.828003F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-500.308014F, -93.8180008F), new Vector2(-500.967987F, -93.1279984F), new Vector2(-501.808014F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-502.64801F, -92.1200027F), new Vector2(-503.619995F, -91.8679962F), new Vector2(-504.723999F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(-505.779999F, -91.8679962F), new Vector2(-506.727997F, -92.1200027F), new Vector2(-507.567993F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-500.170013F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-498.813995F, -90.7160034F), new Vector2(-497.73999F, -91.7900009F), new Vector2(-496.947998F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-496.156006F, -94.5019989F), new Vector2(-495.76001F, -96.0199966F), new Vector2(-495.76001F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-495.76001F, -99.3560028F), new Vector2(-496.156006F, -100.856003F), new Vector2(-496.947998F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(-497.73999F, -103.543999F), new Vector2(-498.813995F, -104.606003F), new Vector2(-500.170013F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(-501.526001F, -106.166F), new Vector2(-503.044006F, -106.556F), new Vector2(-504.723999F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-506.380005F, -106.556F), new Vector2(-507.880005F, -106.160004F), new Vector2(-509.223999F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(-510.567993F, -104.575996F), new Vector2(-511.635986F, -103.514F), new Vector2(-512.427979F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(-513.219971F, -100.849998F), new Vector2(-513.616028F, -99.3560028F), new Vector2(-513.616028F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-513.616028F, -96.0199966F), new Vector2(-513.219971F, -94.5019989F), new Vector2(-512.427979F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-511.635986F, -91.7900009F), new Vector2(-510.567993F, -90.7160034F), new Vector2(-509.223999F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-507.880005F, -89.1320038F), new Vector2(-506.380005F, -88.7360001F), new Vector2(-504.723999F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-503.044006F, -88.7360001F), new Vector2(-501.526001F, -89.1320038F), new Vector2(-500.170013F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0959()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-528.987976F, -89.0960007F));
+ builder.AddLine(new Vector2(-528.987976F, -114.800003F));
+ builder.AddLine(new Vector2(-532.228027F, -114.800003F));
+ builder.AddLine(new Vector2(-532.228027F, -89.0960007F));
+ builder.AddLine(new Vector2(-528.987976F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-516.892029F, -89.0960007F));
+ builder.AddLine(new Vector2(-516.892029F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(-516.892029F, -101.059998F), new Vector2(-517.179993F, -102.248001F), new Vector2(-517.755981F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(-518.33197F, -104.311996F), new Vector2(-519.117981F, -105.115997F), new Vector2(-520.114014F, -105.692001F));
+ builder.AddCubicBezier(new Vector2(-521.109985F, -106.267998F), new Vector2(-522.255981F, -106.556F), new Vector2(-523.552002F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-524.848022F, -106.556F), new Vector2(-526.012024F, -106.262001F), new Vector2(-527.044006F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(-528.075989F, -105.085999F), new Vector2(-528.880005F, -104.288002F), new Vector2(-529.455994F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(-530.031982F, -102.272003F), new Vector2(-530.320007F, -101.120003F), new Vector2(-530.320007F, -99.8239975F));
+ builder.AddLine(new Vector2(-528.987976F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(-528.987976F, -99.9319992F), new Vector2(-528.796021F, -100.699997F), new Vector2(-528.411987F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(-528.028015F, -102.043999F), new Vector2(-527.5F, -102.571999F), new Vector2(-526.828003F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(-526.156006F, -103.339996F), new Vector2(-525.388F, -103.531998F), new Vector2(-524.523987F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-523.228027F, -103.531998F), new Vector2(-522.177979F, -103.112F), new Vector2(-521.374023F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(-520.570007F, -101.431999F), new Vector2(-520.16803F, -100.363998F), new Vector2(-520.16803F, -99.0680008F));
+ builder.AddLine(new Vector2(-520.16803F, -89.0960007F));
+ builder.AddLine(new Vector2(-516.892029F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0960()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-545.026001F, -90.1399994F));
+ builder.AddCubicBezier(new Vector2(-543.885986F, -91.0759964F), new Vector2(-543.315979F, -92.3479996F), new Vector2(-543.315979F, -93.9560013F));
+ builder.AddCubicBezier(new Vector2(-543.315979F, -95.012001F), new Vector2(-543.538025F, -95.8639984F), new Vector2(-543.981995F, -96.512001F));
+ builder.AddCubicBezier(new Vector2(-544.426025F, -97.1600037F), new Vector2(-544.995972F, -97.6760025F), new Vector2(-545.692017F, -98.0599976F));
+ builder.AddCubicBezier(new Vector2(-546.388F, -98.4440002F), new Vector2(-547.119995F, -98.75F), new Vector2(-547.888F, -98.9779968F));
+ builder.AddCubicBezier(new Vector2(-548.656006F, -99.2060013F), new Vector2(-549.393982F, -99.4280014F), new Vector2(-550.10199F, -99.6439972F));
+ builder.AddCubicBezier(new Vector2(-550.809998F, -99.8600006F), new Vector2(-551.380005F, -100.124001F), new Vector2(-551.812012F, -100.435997F));
+ builder.AddCubicBezier(new Vector2(-552.244019F, -100.748001F), new Vector2(-552.460022F, -101.192001F), new Vector2(-552.460022F, -101.767998F));
+ builder.AddCubicBezier(new Vector2(-552.460022F, -102.32F), new Vector2(-552.213989F, -102.764F), new Vector2(-551.721985F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(-551.22998F, -103.435997F), new Vector2(-550.515991F, -103.603996F), new Vector2(-549.580017F, -103.603996F));
+ builder.AddCubicBezier(new Vector2(-548.692017F, -103.603996F), new Vector2(-547.900024F, -103.435997F), new Vector2(-547.203979F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(-546.507996F, -102.764F), new Vector2(-545.90802F, -102.283997F), new Vector2(-545.403992F, -101.660004F));
+ builder.AddLine(new Vector2(-543.315979F, -103.748001F));
+ builder.AddCubicBezier(new Vector2(-543.987976F, -104.683998F), new Vector2(-544.846008F, -105.386002F), new Vector2(-545.890015F, -105.853996F));
+ builder.AddCubicBezier(new Vector2(-546.934021F, -106.321999F), new Vector2(-548.127991F, -106.556F), new Vector2(-549.471985F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-550.744019F, -106.556F), new Vector2(-551.835999F, -106.351997F), new Vector2(-552.747986F, -105.944F));
+ builder.AddCubicBezier(new Vector2(-553.659973F, -105.536003F), new Vector2(-554.362F, -104.954002F), new Vector2(-554.854004F, -104.197998F));
+ builder.AddCubicBezier(new Vector2(-555.346008F, -103.442001F), new Vector2(-555.59198F, -102.547997F), new Vector2(-555.59198F, -101.515999F));
+ builder.AddCubicBezier(new Vector2(-555.59198F, -100.484001F), new Vector2(-555.369995F, -99.6500015F), new Vector2(-554.926025F, -99.0139999F));
+ builder.AddCubicBezier(new Vector2(-554.481995F, -98.3779984F), new Vector2(-553.911987F, -97.8799973F), new Vector2(-553.216003F, -97.5199966F));
+ builder.AddCubicBezier(new Vector2(-552.52002F, -97.1600037F), new Vector2(-551.781982F, -96.8720016F), new Vector2(-551.002014F, -96.6559982F));
+ builder.AddCubicBezier(new Vector2(-550.221985F, -96.4400024F), new Vector2(-549.484009F, -96.2180023F), new Vector2(-548.788025F, -95.9899979F));
+ builder.AddCubicBezier(new Vector2(-548.09198F, -95.762001F), new Vector2(-547.521973F, -95.473999F), new Vector2(-547.078003F, -95.1259995F));
+ builder.AddCubicBezier(new Vector2(-546.633972F, -94.7779999F), new Vector2(-546.411987F, -94.2919998F), new Vector2(-546.411987F, -93.6679993F));
+ builder.AddCubicBezier(new Vector2(-546.411987F, -93.0439987F), new Vector2(-546.687988F, -92.5579987F), new Vector2(-547.23999F, -92.2099991F));
+ builder.AddCubicBezier(new Vector2(-547.791992F, -91.8619995F), new Vector2(-548.572021F, -91.6880035F), new Vector2(-549.580017F, -91.6880035F));
+ builder.AddCubicBezier(new Vector2(-550.588013F, -91.6880035F), new Vector2(-551.5F, -91.8740005F), new Vector2(-552.315979F, -92.2460022F));
+ builder.AddCubicBezier(new Vector2(-553.132019F, -92.6179962F), new Vector2(-553.85199F, -93.1880035F), new Vector2(-554.476013F, -93.9560013F));
+ builder.AddLine(new Vector2(-556.564026F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(-556.036011F, -91.2200012F), new Vector2(-555.41803F, -90.6620026F), new Vector2(-554.710022F, -90.1940002F));
+ builder.AddCubicBezier(new Vector2(-554.002014F, -89.7259979F), new Vector2(-553.216003F, -89.3659973F), new Vector2(-552.35199F, -89.1139984F));
+ builder.AddCubicBezier(new Vector2(-551.487976F, -88.8619995F), new Vector2(-550.575989F, -88.7360001F), new Vector2(-549.616028F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-547.695984F, -88.7360001F), new Vector2(-546.166016F, -89.2040024F), new Vector2(-545.026001F, -90.1399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0961()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-559.984009F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-559.599976F, -110.606003F), new Vector2(-559.40802F, -111.103996F), new Vector2(-559.40802F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-559.40802F, -112.279999F), new Vector2(-559.599976F, -112.765999F), new Vector2(-559.984009F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-560.367981F, -113.557999F), new Vector2(-560.859985F, -113.755997F), new Vector2(-561.460022F, -113.755997F));
+ builder.AddCubicBezier(new Vector2(-562.059998F, -113.755997F), new Vector2(-562.552002F, -113.557999F), new Vector2(-562.935974F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-563.320007F, -112.765999F), new Vector2(-563.512024F, -112.279999F), new Vector2(-563.512024F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-563.512024F, -111.103996F), new Vector2(-563.320007F, -110.606003F), new Vector2(-562.935974F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-562.552002F, -109.814003F), new Vector2(-562.059998F, -109.615997F), new Vector2(-561.460022F, -109.615997F));
+ builder.AddCubicBezier(new Vector2(-560.859985F, -109.615997F), new Vector2(-560.367981F, -109.814003F), new Vector2(-559.984009F, -110.209999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-559.840027F, -89.0960007F));
+ builder.AddLine(new Vector2(-559.840027F, -106.195999F));
+ builder.AddLine(new Vector2(-563.116028F, -106.195999F));
+ builder.AddLine(new Vector2(-563.116028F, -89.0960007F));
+ builder.AddLine(new Vector2(-559.840027F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0962()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-575.914001F, -90.1399994F));
+ builder.AddCubicBezier(new Vector2(-574.773987F, -91.0759964F), new Vector2(-574.203979F, -92.3479996F), new Vector2(-574.203979F, -93.9560013F));
+ builder.AddCubicBezier(new Vector2(-574.203979F, -95.012001F), new Vector2(-574.426025F, -95.8639984F), new Vector2(-574.869995F, -96.512001F));
+ builder.AddCubicBezier(new Vector2(-575.314026F, -97.1600037F), new Vector2(-575.883972F, -97.6760025F), new Vector2(-576.580017F, -98.0599976F));
+ builder.AddCubicBezier(new Vector2(-577.276001F, -98.4440002F), new Vector2(-578.007996F, -98.75F), new Vector2(-578.776001F, -98.9779968F));
+ builder.AddCubicBezier(new Vector2(-579.544006F, -99.2060013F), new Vector2(-580.281982F, -99.4280014F), new Vector2(-580.98999F, -99.6439972F));
+ builder.AddCubicBezier(new Vector2(-581.697998F, -99.8600006F), new Vector2(-582.268005F, -100.124001F), new Vector2(-582.700012F, -100.435997F));
+ builder.AddCubicBezier(new Vector2(-583.132019F, -100.748001F), new Vector2(-583.348022F, -101.192001F), new Vector2(-583.348022F, -101.767998F));
+ builder.AddCubicBezier(new Vector2(-583.348022F, -102.32F), new Vector2(-583.10199F, -102.764F), new Vector2(-582.609985F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(-582.117981F, -103.435997F), new Vector2(-581.403992F, -103.603996F), new Vector2(-580.468018F, -103.603996F));
+ builder.AddCubicBezier(new Vector2(-579.580017F, -103.603996F), new Vector2(-578.788025F, -103.435997F), new Vector2(-578.09198F, -103.099998F));
+ builder.AddCubicBezier(new Vector2(-577.395996F, -102.764F), new Vector2(-576.796021F, -102.283997F), new Vector2(-576.291992F, -101.660004F));
+ builder.AddLine(new Vector2(-574.203979F, -103.748001F));
+ builder.AddCubicBezier(new Vector2(-574.875977F, -104.683998F), new Vector2(-575.734009F, -105.386002F), new Vector2(-576.778015F, -105.853996F));
+ builder.AddCubicBezier(new Vector2(-577.822021F, -106.321999F), new Vector2(-579.015991F, -106.556F), new Vector2(-580.359985F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-581.632019F, -106.556F), new Vector2(-582.723999F, -106.351997F), new Vector2(-583.635986F, -105.944F));
+ builder.AddCubicBezier(new Vector2(-584.547974F, -105.536003F), new Vector2(-585.25F, -104.954002F), new Vector2(-585.742004F, -104.197998F));
+ builder.AddCubicBezier(new Vector2(-586.234009F, -103.442001F), new Vector2(-586.47998F, -102.547997F), new Vector2(-586.47998F, -101.515999F));
+ builder.AddCubicBezier(new Vector2(-586.47998F, -100.484001F), new Vector2(-586.257996F, -99.6500015F), new Vector2(-585.814026F, -99.0139999F));
+ builder.AddCubicBezier(new Vector2(-585.369995F, -98.3779984F), new Vector2(-584.799988F, -97.8799973F), new Vector2(-584.104004F, -97.5199966F));
+ builder.AddCubicBezier(new Vector2(-583.40802F, -97.1600037F), new Vector2(-582.669983F, -96.8720016F), new Vector2(-581.890015F, -96.6559982F));
+ builder.AddCubicBezier(new Vector2(-581.109985F, -96.4400024F), new Vector2(-580.372009F, -96.2180023F), new Vector2(-579.676025F, -95.9899979F));
+ builder.AddCubicBezier(new Vector2(-578.97998F, -95.762001F), new Vector2(-578.409973F, -95.473999F), new Vector2(-577.966003F, -95.1259995F));
+ builder.AddCubicBezier(new Vector2(-577.521973F, -94.7779999F), new Vector2(-577.299988F, -94.2919998F), new Vector2(-577.299988F, -93.6679993F));
+ builder.AddCubicBezier(new Vector2(-577.299988F, -93.0439987F), new Vector2(-577.575989F, -92.5579987F), new Vector2(-578.127991F, -92.2099991F));
+ builder.AddCubicBezier(new Vector2(-578.679993F, -91.8619995F), new Vector2(-579.460022F, -91.6880035F), new Vector2(-580.468018F, -91.6880035F));
+ builder.AddCubicBezier(new Vector2(-581.476013F, -91.6880035F), new Vector2(-582.388F, -91.8740005F), new Vector2(-583.203979F, -92.2460022F));
+ builder.AddCubicBezier(new Vector2(-584.02002F, -92.6179962F), new Vector2(-584.73999F, -93.1880035F), new Vector2(-585.364014F, -93.9560013F));
+ builder.AddLine(new Vector2(-587.452026F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(-586.924011F, -91.2200012F), new Vector2(-586.30603F, -90.6620026F), new Vector2(-585.598022F, -90.1940002F));
+ builder.AddCubicBezier(new Vector2(-584.890015F, -89.7259979F), new Vector2(-584.104004F, -89.3659973F), new Vector2(-583.23999F, -89.1139984F));
+ builder.AddCubicBezier(new Vector2(-582.375977F, -88.8619995F), new Vector2(-581.463989F, -88.7360001F), new Vector2(-580.504028F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-578.583984F, -88.7360001F), new Vector2(-577.054016F, -89.2040024F), new Vector2(-575.914001F, -90.1399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0963()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-590.872009F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-590.487976F, -110.606003F), new Vector2(-590.296021F, -111.103996F), new Vector2(-590.296021F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-590.296021F, -112.279999F), new Vector2(-590.487976F, -112.765999F), new Vector2(-590.872009F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-591.255981F, -113.557999F), new Vector2(-591.747986F, -113.755997F), new Vector2(-592.348022F, -113.755997F));
+ builder.AddCubicBezier(new Vector2(-592.947998F, -113.755997F), new Vector2(-593.440002F, -113.557999F), new Vector2(-593.823975F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-594.208008F, -112.765999F), new Vector2(-594.400024F, -112.279999F), new Vector2(-594.400024F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-594.400024F, -111.103996F), new Vector2(-594.208008F, -110.606003F), new Vector2(-593.823975F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-593.440002F, -109.814003F), new Vector2(-592.947998F, -109.615997F), new Vector2(-592.348022F, -109.615997F));
+ builder.AddCubicBezier(new Vector2(-591.747986F, -109.615997F), new Vector2(-591.255981F, -109.814003F), new Vector2(-590.872009F, -110.209999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-590.728027F, -89.0960007F));
+ builder.AddLine(new Vector2(-590.728027F, -106.195999F));
+ builder.AddLine(new Vector2(-594.004028F, -106.195999F));
+ builder.AddLine(new Vector2(-594.004028F, -89.0960007F));
+ builder.AddLine(new Vector2(-590.728027F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0964()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-610.492004F, -89.0960007F));
+ builder.AddLine(new Vector2(-610.492004F, -114.800003F));
+ builder.AddLine(new Vector2(-613.731995F, -114.800003F));
+ builder.AddLine(new Vector2(-613.731995F, -89.0960007F));
+ builder.AddLine(new Vector2(-610.492004F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-598.395996F, -89.0960007F));
+ builder.AddLine(new Vector2(-598.395996F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(-598.395996F, -101.059998F), new Vector2(-598.684021F, -102.248001F), new Vector2(-599.26001F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(-599.835999F, -104.311996F), new Vector2(-600.622009F, -105.115997F), new Vector2(-601.617981F, -105.692001F));
+ builder.AddCubicBezier(new Vector2(-602.614014F, -106.267998F), new Vector2(-603.76001F, -106.556F), new Vector2(-605.05603F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-606.35199F, -106.556F), new Vector2(-607.515991F, -106.262001F), new Vector2(-608.547974F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(-609.580017F, -105.085999F), new Vector2(-610.383972F, -104.288002F), new Vector2(-610.960022F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(-611.536011F, -102.272003F), new Vector2(-611.823975F, -101.120003F), new Vector2(-611.823975F, -99.8239975F));
+ builder.AddLine(new Vector2(-610.492004F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(-610.492004F, -99.9319992F), new Vector2(-610.299988F, -100.699997F), new Vector2(-609.916016F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(-609.531982F, -102.043999F), new Vector2(-609.004028F, -102.571999F), new Vector2(-608.33197F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(-607.659973F, -103.339996F), new Vector2(-606.892029F, -103.531998F), new Vector2(-606.028015F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-604.731995F, -103.531998F), new Vector2(-603.682007F, -103.112F), new Vector2(-602.877991F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(-602.073975F, -101.431999F), new Vector2(-601.671997F, -100.363998F), new Vector2(-601.671997F, -99.0680008F));
+ builder.AddLine(new Vector2(-601.671997F, -89.0960007F));
+ builder.AddLine(new Vector2(-598.395996F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0965()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-617.187988F, -110.984001F));
+ builder.AddLine(new Vector2(-617.187988F, -114.080002F));
+ builder.AddLine(new Vector2(-637.528015F, -114.080002F));
+ builder.AddLine(new Vector2(-637.528015F, -110.984001F));
+ builder.AddLine(new Vector2(-617.187988F, -110.984001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-625.64801F, -89.0960007F));
+ builder.AddLine(new Vector2(-625.64801F, -113.360001F));
+ builder.AddLine(new Vector2(-629.067993F, -113.360001F));
+ builder.AddLine(new Vector2(-629.067993F, -89.0960007F));
+ builder.AddLine(new Vector2(-625.64801F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0966()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-649.030029F, -89.4380035F));
+ builder.AddCubicBezier(new Vector2(-648.585999F, -89.9059982F), new Vector2(-648.364014F, -90.4639969F), new Vector2(-648.364014F, -91.1119995F));
+ builder.AddCubicBezier(new Vector2(-648.364014F, -91.7839966F), new Vector2(-648.585999F, -92.3420029F), new Vector2(-649.030029F, -92.7860031F));
+ builder.AddCubicBezier(new Vector2(-649.473999F, -93.2300034F), new Vector2(-650.031982F, -93.4520035F), new Vector2(-650.703979F, -93.4520035F));
+ builder.AddCubicBezier(new Vector2(-651.400024F, -93.4520035F), new Vector2(-651.963989F, -93.2300034F), new Vector2(-652.395996F, -92.7860031F));
+ builder.AddCubicBezier(new Vector2(-652.828003F, -92.3420029F), new Vector2(-653.044006F, -91.7839966F), new Vector2(-653.044006F, -91.1119995F));
+ builder.AddCubicBezier(new Vector2(-653.044006F, -90.4639969F), new Vector2(-652.828003F, -89.9059982F), new Vector2(-652.395996F, -89.4380035F));
+ builder.AddCubicBezier(new Vector2(-651.963989F, -88.9700012F), new Vector2(-651.400024F, -88.7360001F), new Vector2(-650.703979F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-650.031982F, -88.7360001F), new Vector2(-649.473999F, -88.9700012F), new Vector2(-649.030029F, -89.4380035F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0967()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-669.478027F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-670.30603F, -93.6139984F), new Vector2(-670.953979F, -94.2679977F), new Vector2(-671.421997F, -95.1080017F));
+ builder.AddCubicBezier(new Vector2(-671.890015F, -95.947998F), new Vector2(-672.124023F, -96.9079971F), new Vector2(-672.124023F, -97.987999F));
+ builder.AddCubicBezier(new Vector2(-672.124023F, -99.0680008F), new Vector2(-671.890015F, -100.022003F), new Vector2(-671.421997F, -100.849998F));
+ builder.AddCubicBezier(new Vector2(-670.953979F, -101.678001F), new Vector2(-670.312012F, -102.325996F), new Vector2(-669.495972F, -102.793999F));
+ builder.AddCubicBezier(new Vector2(-668.679993F, -103.262001F), new Vector2(-667.731995F, -103.496002F), new Vector2(-666.651978F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-665.596008F, -103.496002F), new Vector2(-664.666016F, -103.262001F), new Vector2(-663.862F, -102.793999F));
+ builder.AddCubicBezier(new Vector2(-663.057983F, -102.325996F), new Vector2(-662.434021F, -101.678001F), new Vector2(-661.98999F, -100.849998F));
+ builder.AddCubicBezier(new Vector2(-661.546021F, -100.022003F), new Vector2(-661.323975F, -99.0559998F), new Vector2(-661.323975F, -97.9520035F));
+ builder.AddCubicBezier(new Vector2(-661.323975F, -96.8479996F), new Vector2(-661.546021F, -95.8820038F), new Vector2(-661.98999F, -95.0540009F));
+ builder.AddCubicBezier(new Vector2(-662.434021F, -94.2259979F), new Vector2(-663.052002F, -93.5839996F), new Vector2(-663.843994F, -93.1279984F));
+ builder.AddCubicBezier(new Vector2(-664.635986F, -92.6719971F), new Vector2(-665.572021F, -92.4440002F), new Vector2(-666.651978F, -92.4440002F));
+ builder.AddCubicBezier(new Vector2(-667.708008F, -92.4440002F), new Vector2(-668.650024F, -92.6780014F), new Vector2(-669.478027F, -93.1460037F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-663.736023F, -90.1760025F));
+ builder.AddCubicBezier(new Vector2(-662.703979F, -90.7040024F), new Vector2(-661.882019F, -91.4420013F), new Vector2(-661.27002F, -92.3899994F));
+ builder.AddCubicBezier(new Vector2(-660.65802F, -93.3379974F), new Vector2(-660.315979F, -94.435997F), new Vector2(-660.244019F, -95.6839981F));
+ builder.AddLine(new Vector2(-660.244019F, -100.220001F));
+ builder.AddCubicBezier(new Vector2(-660.315979F, -101.491997F), new Vector2(-660.651978F, -102.601997F), new Vector2(-661.252014F, -103.550003F));
+ builder.AddCubicBezier(new Vector2(-661.85199F, -104.498001F), new Vector2(-662.674011F, -105.236F), new Vector2(-663.718018F, -105.764F));
+ builder.AddCubicBezier(new Vector2(-664.762024F, -106.292F), new Vector2(-665.955994F, -106.556F), new Vector2(-667.299988F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-668.835999F, -106.556F), new Vector2(-670.228027F, -106.178001F), new Vector2(-671.476013F, -105.421997F));
+ builder.AddCubicBezier(new Vector2(-672.723999F, -104.666F), new Vector2(-673.702026F, -103.646004F), new Vector2(-674.409973F, -102.362F));
+ builder.AddCubicBezier(new Vector2(-675.117981F, -101.078003F), new Vector2(-675.471985F, -99.6200027F), new Vector2(-675.471985F, -97.987999F));
+ builder.AddCubicBezier(new Vector2(-675.471985F, -96.3560028F), new Vector2(-675.112F, -94.8860016F), new Vector2(-674.392029F, -93.5780029F));
+ builder.AddCubicBezier(new Vector2(-673.671997F, -92.2699966F), new Vector2(-672.69397F, -91.2440033F), new Vector2(-671.458008F, -90.5F));
+ builder.AddCubicBezier(new Vector2(-670.221985F, -89.7559967F), new Vector2(-668.823975F, -89.3840027F), new Vector2(-667.263977F, -89.3840027F));
+ builder.AddCubicBezier(new Vector2(-665.94397F, -89.3840027F), new Vector2(-664.768005F, -89.6480026F), new Vector2(-663.736023F, -90.1760025F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-662.565979F, -82.5979996F));
+ builder.AddCubicBezier(new Vector2(-661.210022F, -83.2819977F), new Vector2(-660.153992F, -84.2419968F), new Vector2(-659.39801F, -85.4779968F));
+ builder.AddCubicBezier(new Vector2(-658.642029F, -86.7139969F), new Vector2(-658.263977F, -88.1480026F), new Vector2(-658.263977F, -89.7799988F));
+ builder.AddLine(new Vector2(-658.263977F, -106.195999F));
+ builder.AddLine(new Vector2(-661.504028F, -106.195999F));
+ builder.AddLine(new Vector2(-661.504028F, -101.695999F));
+ builder.AddLine(new Vector2(-660.927979F, -97.8799973F));
+ builder.AddLine(new Vector2(-661.504028F, -94.0279999F));
+ builder.AddLine(new Vector2(-661.504028F, -89.7799988F));
+ builder.AddCubicBezier(new Vector2(-661.504028F, -88.2200012F), new Vector2(-662.02002F, -86.9779968F), new Vector2(-663.052002F, -86.0540009F));
+ builder.AddCubicBezier(new Vector2(-664.083984F, -85.1299973F), new Vector2(-665.463989F, -84.6679993F), new Vector2(-667.192017F, -84.6679993F));
+ builder.AddCubicBezier(new Vector2(-668.512024F, -84.6679993F), new Vector2(-669.651978F, -84.9020004F), new Vector2(-670.612F, -85.3700027F));
+ builder.AddCubicBezier(new Vector2(-671.572021F, -85.8379974F), new Vector2(-672.400024F, -86.5159988F), new Vector2(-673.096008F, -87.4039993F));
+ builder.AddLine(new Vector2(-675.219971F, -85.2799988F));
+ builder.AddCubicBezier(new Vector2(-674.380005F, -84.1039963F), new Vector2(-673.288025F, -83.1920013F), new Vector2(-671.94397F, -82.5439987F));
+ builder.AddCubicBezier(new Vector2(-670.599976F, -81.8960037F), new Vector2(-669.039978F, -81.5719986F), new Vector2(-667.263977F, -81.5719986F));
+ builder.AddCubicBezier(new Vector2(-665.487976F, -81.5719986F), new Vector2(-663.921997F, -81.9140015F), new Vector2(-662.565979F, -82.5979996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0968()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-690.843994F, -89.0960007F));
+ builder.AddLine(new Vector2(-690.843994F, -106.195999F));
+ builder.AddLine(new Vector2(-694.083984F, -106.195999F));
+ builder.AddLine(new Vector2(-694.083984F, -89.0960007F));
+ builder.AddLine(new Vector2(-690.843994F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-678.747986F, -89.0960007F));
+ builder.AddLine(new Vector2(-678.747986F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(-678.747986F, -100.891998F), new Vector2(-679.036011F, -102.001999F), new Vector2(-679.612F, -103.045998F));
+ builder.AddCubicBezier(new Vector2(-680.187988F, -104.089996F), new Vector2(-680.973999F, -104.935997F), new Vector2(-681.969971F, -105.584F));
+ builder.AddCubicBezier(new Vector2(-682.966003F, -106.232002F), new Vector2(-684.112F, -106.556F), new Vector2(-685.40802F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-686.703979F, -106.556F), new Vector2(-687.867981F, -106.262001F), new Vector2(-688.900024F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(-689.932007F, -105.085999F), new Vector2(-690.736023F, -104.288002F), new Vector2(-691.312012F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(-691.888F, -102.272003F), new Vector2(-692.176025F, -101.120003F), new Vector2(-692.176025F, -99.8239975F));
+ builder.AddLine(new Vector2(-690.843994F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(-690.843994F, -99.9319992F), new Vector2(-690.651978F, -100.699997F), new Vector2(-690.268005F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(-689.883972F, -102.043999F), new Vector2(-689.356018F, -102.571999F), new Vector2(-688.684021F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(-688.012024F, -103.339996F), new Vector2(-687.244019F, -103.531998F), new Vector2(-686.380005F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-685.083984F, -103.531998F), new Vector2(-684.033997F, -103.112F), new Vector2(-683.22998F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(-682.426025F, -101.431999F), new Vector2(-682.023987F, -100.363998F), new Vector2(-682.023987F, -99.0680008F));
+ builder.AddLine(new Vector2(-682.023987F, -89.0960007F));
+ builder.AddLine(new Vector2(-678.747986F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0969()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-699.015991F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-698.632019F, -110.606003F), new Vector2(-698.440002F, -111.103996F), new Vector2(-698.440002F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-698.440002F, -112.279999F), new Vector2(-698.632019F, -112.765999F), new Vector2(-699.015991F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-699.400024F, -113.557999F), new Vector2(-699.892029F, -113.755997F), new Vector2(-700.492004F, -113.755997F));
+ builder.AddCubicBezier(new Vector2(-701.09198F, -113.755997F), new Vector2(-701.583984F, -113.557999F), new Vector2(-701.968018F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-702.35199F, -112.765999F), new Vector2(-702.544006F, -112.279999F), new Vector2(-702.544006F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-702.544006F, -111.103996F), new Vector2(-702.35199F, -110.606003F), new Vector2(-701.968018F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-701.583984F, -109.814003F), new Vector2(-701.09198F, -109.615997F), new Vector2(-700.492004F, -109.615997F));
+ builder.AddCubicBezier(new Vector2(-699.892029F, -109.615997F), new Vector2(-699.400024F, -109.814003F), new Vector2(-699.015991F, -110.209999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-698.872009F, -89.0960007F));
+ builder.AddLine(new Vector2(-698.872009F, -106.195999F));
+ builder.AddLine(new Vector2(-702.14801F, -106.195999F));
+ builder.AddLine(new Vector2(-702.14801F, -89.0960007F));
+ builder.AddLine(new Vector2(-698.872009F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0970()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-706.864014F, -114.800003F));
+ builder.AddLine(new Vector2(-710.140015F, -114.800003F));
+ builder.AddLine(new Vector2(-710.140015F, -102.019997F));
+ builder.AddLine(new Vector2(-709.528015F, -97.8799973F));
+ builder.AddLine(new Vector2(-710.140015F, -93.7040024F));
+ builder.AddLine(new Vector2(-710.140015F, -89.0960007F));
+ builder.AddLine(new Vector2(-706.864014F, -89.0960007F));
+ builder.AddLine(new Vector2(-706.864014F, -114.800003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-718.185974F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(-719.013977F, -93.026001F), new Vector2(-719.661987F, -93.7160034F), new Vector2(-720.130005F, -94.6039963F));
+ builder.AddCubicBezier(new Vector2(-720.598022F, -95.4919968F), new Vector2(-720.83197F, -96.512001F), new Vector2(-720.83197F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(-720.83197F, -98.8160019F), new Vector2(-720.598022F, -99.8300018F), new Vector2(-720.130005F, -100.706001F));
+ builder.AddCubicBezier(new Vector2(-719.661987F, -101.582001F), new Vector2(-719.02002F, -102.265999F), new Vector2(-718.203979F, -102.758003F));
+ builder.AddCubicBezier(new Vector2(-717.388F, -103.25F), new Vector2(-716.440002F, -103.496002F), new Vector2(-715.359985F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-714.280029F, -103.496002F), new Vector2(-713.33197F, -103.244003F), new Vector2(-712.515991F, -102.739998F));
+ builder.AddCubicBezier(new Vector2(-711.700012F, -102.236F), new Vector2(-711.064026F, -101.545998F), new Vector2(-710.607971F, -100.669998F));
+ builder.AddCubicBezier(new Vector2(-710.151978F, -99.7939987F), new Vector2(-709.924011F, -98.7799988F), new Vector2(-709.924011F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(-709.924011F, -96.5F), new Vector2(-710.151978F, -95.4980011F), new Vector2(-710.607971F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(-711.064026F, -93.7460022F), new Vector2(-711.700012F, -93.0559998F), new Vector2(-712.515991F, -92.552002F));
+ builder.AddCubicBezier(new Vector2(-713.33197F, -92.0479965F), new Vector2(-714.280029F, -91.7959976F), new Vector2(-715.359985F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(-716.416016F, -91.7959976F), new Vector2(-717.357971F, -92.0419998F), new Vector2(-718.185974F, -92.5339966F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-712.372009F, -89.5459976F));
+ builder.AddCubicBezier(new Vector2(-711.340027F, -90.0859985F), new Vector2(-710.512024F, -90.8359985F), new Vector2(-709.888F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(-709.263977F, -92.7559967F), new Vector2(-708.916016F, -93.8479996F), new Vector2(-708.843994F, -95.0719986F));
+ builder.AddLine(new Vector2(-708.843994F, -100.220001F));
+ builder.AddCubicBezier(new Vector2(-708.916016F, -101.468002F), new Vector2(-709.27002F, -102.566002F), new Vector2(-709.906006F, -103.514F));
+ builder.AddCubicBezier(new Vector2(-710.541992F, -104.461998F), new Vector2(-711.375977F, -105.206001F), new Vector2(-712.40802F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(-713.440002F, -106.286003F), new Vector2(-714.604004F, -106.556F), new Vector2(-715.900024F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-717.460022F, -106.556F), new Vector2(-718.864014F, -106.160004F), new Vector2(-720.112F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(-721.359985F, -104.575996F), new Vector2(-722.349976F, -103.508003F), new Vector2(-723.08197F, -102.164001F));
+ builder.AddCubicBezier(new Vector2(-723.814026F, -100.82F), new Vector2(-724.179993F, -99.3079987F), new Vector2(-724.179993F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(-724.179993F, -95.947998F), new Vector2(-723.814026F, -94.435997F), new Vector2(-723.08197F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(-722.349976F, -91.7480011F), new Vector2(-721.359985F, -90.685997F), new Vector2(-720.112F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(-718.864014F, -89.1259995F), new Vector2(-717.460022F, -88.7360001F), new Vector2(-715.900024F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-714.580017F, -88.7360001F), new Vector2(-713.403992F, -89.0059967F), new Vector2(-712.372009F, -89.5459976F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0971()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-727.815979F, -114.800003F));
+ builder.AddLine(new Vector2(-731.09198F, -114.800003F));
+ builder.AddLine(new Vector2(-731.09198F, -102.019997F));
+ builder.AddLine(new Vector2(-730.47998F, -97.8799973F));
+ builder.AddLine(new Vector2(-731.09198F, -93.7040024F));
+ builder.AddLine(new Vector2(-731.09198F, -89.0960007F));
+ builder.AddLine(new Vector2(-727.815979F, -89.0960007F));
+ builder.AddLine(new Vector2(-727.815979F, -114.800003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-739.138F, -92.5339966F));
+ builder.AddCubicBezier(new Vector2(-739.966003F, -93.026001F), new Vector2(-740.614014F, -93.7160034F), new Vector2(-741.08197F, -94.6039963F));
+ builder.AddCubicBezier(new Vector2(-741.549988F, -95.4919968F), new Vector2(-741.783997F, -96.512001F), new Vector2(-741.783997F, -97.6640015F));
+ builder.AddCubicBezier(new Vector2(-741.783997F, -98.8160019F), new Vector2(-741.549988F, -99.8300018F), new Vector2(-741.08197F, -100.706001F));
+ builder.AddCubicBezier(new Vector2(-740.614014F, -101.582001F), new Vector2(-739.971985F, -102.265999F), new Vector2(-739.156006F, -102.758003F));
+ builder.AddCubicBezier(new Vector2(-738.340027F, -103.25F), new Vector2(-737.392029F, -103.496002F), new Vector2(-736.312012F, -103.496002F));
+ builder.AddCubicBezier(new Vector2(-735.231995F, -103.496002F), new Vector2(-734.283997F, -103.244003F), new Vector2(-733.468018F, -102.739998F));
+ builder.AddCubicBezier(new Vector2(-732.651978F, -102.236F), new Vector2(-732.015991F, -101.545998F), new Vector2(-731.559998F, -100.669998F));
+ builder.AddCubicBezier(new Vector2(-731.104004F, -99.7939987F), new Vector2(-730.875977F, -98.7799988F), new Vector2(-730.875977F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(-730.875977F, -96.5F), new Vector2(-731.104004F, -95.4980011F), new Vector2(-731.559998F, -94.6220016F));
+ builder.AddCubicBezier(new Vector2(-732.015991F, -93.7460022F), new Vector2(-732.651978F, -93.0559998F), new Vector2(-733.468018F, -92.552002F));
+ builder.AddCubicBezier(new Vector2(-734.283997F, -92.0479965F), new Vector2(-735.231995F, -91.7959976F), new Vector2(-736.312012F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(-737.367981F, -91.7959976F), new Vector2(-738.309998F, -92.0419998F), new Vector2(-739.138F, -92.5339966F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-733.323975F, -89.5459976F));
+ builder.AddCubicBezier(new Vector2(-732.291992F, -90.0859985F), new Vector2(-731.463989F, -90.8359985F), new Vector2(-730.840027F, -91.7959976F));
+ builder.AddCubicBezier(new Vector2(-730.216003F, -92.7559967F), new Vector2(-729.867981F, -93.8479996F), new Vector2(-729.796021F, -95.0719986F));
+ builder.AddLine(new Vector2(-729.796021F, -100.220001F));
+ builder.AddCubicBezier(new Vector2(-729.867981F, -101.468002F), new Vector2(-730.221985F, -102.566002F), new Vector2(-730.857971F, -103.514F));
+ builder.AddCubicBezier(new Vector2(-731.494019F, -104.461998F), new Vector2(-732.328003F, -105.206001F), new Vector2(-733.359985F, -105.746002F));
+ builder.AddCubicBezier(new Vector2(-734.392029F, -106.286003F), new Vector2(-735.55603F, -106.556F), new Vector2(-736.85199F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-738.411987F, -106.556F), new Vector2(-739.815979F, -106.160004F), new Vector2(-741.064026F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(-742.312012F, -104.575996F), new Vector2(-743.302002F, -103.508003F), new Vector2(-744.033997F, -102.164001F));
+ builder.AddCubicBezier(new Vector2(-744.765991F, -100.82F), new Vector2(-745.132019F, -99.3079987F), new Vector2(-745.132019F, -97.6279984F));
+ builder.AddCubicBezier(new Vector2(-745.132019F, -95.947998F), new Vector2(-744.765991F, -94.435997F), new Vector2(-744.033997F, -93.0920029F));
+ builder.AddCubicBezier(new Vector2(-743.302002F, -91.7480011F), new Vector2(-742.312012F, -90.685997F), new Vector2(-741.064026F, -89.9059982F));
+ builder.AddCubicBezier(new Vector2(-739.815979F, -89.1259995F), new Vector2(-738.411987F, -88.7360001F), new Vector2(-736.85199F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-735.531982F, -88.7360001F), new Vector2(-734.356018F, -89.0059967F), new Vector2(-733.323975F, -89.5459976F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0972()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-748.984009F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-748.599976F, -110.606003F), new Vector2(-748.40802F, -111.103996F), new Vector2(-748.40802F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-748.40802F, -112.279999F), new Vector2(-748.599976F, -112.765999F), new Vector2(-748.984009F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-749.367981F, -113.557999F), new Vector2(-749.859985F, -113.755997F), new Vector2(-750.460022F, -113.755997F));
+ builder.AddCubicBezier(new Vector2(-751.059998F, -113.755997F), new Vector2(-751.552002F, -113.557999F), new Vector2(-751.935974F, -113.162003F));
+ builder.AddCubicBezier(new Vector2(-752.320007F, -112.765999F), new Vector2(-752.512024F, -112.279999F), new Vector2(-752.512024F, -111.704002F));
+ builder.AddCubicBezier(new Vector2(-752.512024F, -111.103996F), new Vector2(-752.320007F, -110.606003F), new Vector2(-751.935974F, -110.209999F));
+ builder.AddCubicBezier(new Vector2(-751.552002F, -109.814003F), new Vector2(-751.059998F, -109.615997F), new Vector2(-750.460022F, -109.615997F));
+ builder.AddCubicBezier(new Vector2(-749.859985F, -109.615997F), new Vector2(-749.367981F, -109.814003F), new Vector2(-748.984009F, -110.209999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-748.840027F, -89.0960007F));
+ builder.AddLine(new Vector2(-748.840027F, -106.195999F));
+ builder.AddLine(new Vector2(-752.116028F, -106.195999F));
+ builder.AddLine(new Vector2(-752.116028F, -89.0960007F));
+ builder.AddLine(new Vector2(-748.840027F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0973()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-766.156006F, -89.0960007F));
+ builder.AddLine(new Vector2(-766.156006F, -114.800003F));
+ builder.AddLine(new Vector2(-769.395996F, -114.800003F));
+ builder.AddLine(new Vector2(-769.395996F, -89.0960007F));
+ builder.AddLine(new Vector2(-766.156006F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-754.276001F, -89.0960007F));
+ builder.AddLine(new Vector2(-763.276001F, -98.8519974F));
+ builder.AddLine(new Vector2(-763.419983F, -96.9800034F));
+ builder.AddLine(new Vector2(-754.599976F, -106.195999F));
+ builder.AddLine(new Vector2(-758.559998F, -106.195999F));
+ builder.AddLine(new Vector2(-766.44397F, -97.8440018F));
+ builder.AddLine(new Vector2(-758.452026F, -89.0960007F));
+ builder.AddLine(new Vector2(-754.276001F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0974()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-780.015991F, -103.244003F));
+ builder.AddLine(new Vector2(-780.015991F, -106.195999F));
+ builder.AddLine(new Vector2(-791.679993F, -106.195999F));
+ builder.AddLine(new Vector2(-791.679993F, -103.244003F));
+ builder.AddLine(new Vector2(-780.015991F, -103.244003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-784.228027F, -89.0960007F));
+ builder.AddLine(new Vector2(-784.228027F, -113.360001F));
+ builder.AddLine(new Vector2(-787.468018F, -113.360001F));
+ builder.AddLine(new Vector2(-787.468018F, -89.0960007F));
+ builder.AddLine(new Vector2(-784.228027F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0975()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-804.963989F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-805.804016F, -93.1279984F), new Vector2(-806.463989F, -93.8180008F), new Vector2(-806.94397F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-807.424011F, -95.5699997F), new Vector2(-807.664001F, -96.5719986F), new Vector2(-807.664001F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-807.664001F, -98.8040009F), new Vector2(-807.424011F, -99.788002F), new Vector2(-806.94397F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-806.463989F, -101.515999F), new Vector2(-805.804016F, -102.194F), new Vector2(-804.963989F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-804.124023F, -103.178001F), new Vector2(-803.176025F, -103.424004F), new Vector2(-802.119995F, -103.424004F));
+ builder.AddCubicBezier(new Vector2(-801.015991F, -103.424004F), new Vector2(-800.049988F, -103.178001F), new Vector2(-799.221985F, -102.685997F));
+ builder.AddCubicBezier(new Vector2(-798.393982F, -102.194F), new Vector2(-797.734009F, -101.515999F), new Vector2(-797.242004F, -100.652F));
+ builder.AddCubicBezier(new Vector2(-796.75F, -99.788002F), new Vector2(-796.504028F, -98.8040009F), new Vector2(-796.504028F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-796.504028F, -96.5719986F), new Vector2(-796.744019F, -95.5699997F), new Vector2(-797.223999F, -94.6940002F));
+ builder.AddCubicBezier(new Vector2(-797.703979F, -93.8180008F), new Vector2(-798.364014F, -93.1279984F), new Vector2(-799.203979F, -92.6240005F));
+ builder.AddCubicBezier(new Vector2(-800.044006F, -92.1200027F), new Vector2(-801.015991F, -91.8679962F), new Vector2(-802.119995F, -91.8679962F));
+ builder.AddCubicBezier(new Vector2(-803.176025F, -91.8679962F), new Vector2(-804.124023F, -92.1200027F), new Vector2(-804.963989F, -92.6240005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-797.565979F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-796.210022F, -90.7160034F), new Vector2(-795.135986F, -91.7900009F), new Vector2(-794.343994F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-793.552002F, -94.5019989F), new Vector2(-793.156006F, -96.0199966F), new Vector2(-793.156006F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-793.156006F, -99.3560028F), new Vector2(-793.552002F, -100.856003F), new Vector2(-794.343994F, -102.199997F));
+ builder.AddCubicBezier(new Vector2(-795.135986F, -103.543999F), new Vector2(-796.210022F, -104.606003F), new Vector2(-797.565979F, -105.386002F));
+ builder.AddCubicBezier(new Vector2(-798.921997F, -106.166F), new Vector2(-800.440002F, -106.556F), new Vector2(-802.119995F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-803.776001F, -106.556F), new Vector2(-805.276001F, -106.160004F), new Vector2(-806.619995F, -105.367996F));
+ builder.AddCubicBezier(new Vector2(-807.963989F, -104.575996F), new Vector2(-809.031982F, -103.514F), new Vector2(-809.823975F, -102.181999F));
+ builder.AddCubicBezier(new Vector2(-810.616028F, -100.849998F), new Vector2(-811.012024F, -99.3560028F), new Vector2(-811.012024F, -97.6999969F));
+ builder.AddCubicBezier(new Vector2(-811.012024F, -96.0199966F), new Vector2(-810.616028F, -94.5019989F), new Vector2(-809.823975F, -93.1460037F));
+ builder.AddCubicBezier(new Vector2(-809.031982F, -91.7900009F), new Vector2(-807.963989F, -90.7160034F), new Vector2(-806.619995F, -89.9240036F));
+ builder.AddCubicBezier(new Vector2(-805.276001F, -89.1320038F), new Vector2(-803.776001F, -88.7360001F), new Vector2(-802.119995F, -88.7360001F));
+ builder.AddCubicBezier(new Vector2(-800.440002F, -88.7360001F), new Vector2(-798.921997F, -89.1320038F), new Vector2(-797.565979F, -89.9240036F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0976()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-826.383972F, -89.0960007F));
+ builder.AddLine(new Vector2(-826.383972F, -106.195999F));
+ builder.AddLine(new Vector2(-829.624023F, -106.195999F));
+ builder.AddLine(new Vector2(-829.624023F, -89.0960007F));
+ builder.AddLine(new Vector2(-826.383972F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-814.288025F, -89.0960007F));
+ builder.AddLine(new Vector2(-814.288025F, -99.7160034F));
+ builder.AddCubicBezier(new Vector2(-814.288025F, -100.891998F), new Vector2(-814.575989F, -102.001999F), new Vector2(-815.151978F, -103.045998F));
+ builder.AddCubicBezier(new Vector2(-815.728027F, -104.089996F), new Vector2(-816.513977F, -104.935997F), new Vector2(-817.51001F, -105.584F));
+ builder.AddCubicBezier(new Vector2(-818.505981F, -106.232002F), new Vector2(-819.651978F, -106.556F), new Vector2(-820.947998F, -106.556F));
+ builder.AddCubicBezier(new Vector2(-822.244019F, -106.556F), new Vector2(-823.40802F, -106.262001F), new Vector2(-824.440002F, -105.674004F));
+ builder.AddCubicBezier(new Vector2(-825.471985F, -105.085999F), new Vector2(-826.276001F, -104.288002F), new Vector2(-826.85199F, -103.279999F));
+ builder.AddCubicBezier(new Vector2(-827.427979F, -102.272003F), new Vector2(-827.716003F, -101.120003F), new Vector2(-827.716003F, -99.8239975F));
+ builder.AddLine(new Vector2(-826.383972F, -99.0680008F));
+ builder.AddCubicBezier(new Vector2(-826.383972F, -99.9319992F), new Vector2(-826.192017F, -100.699997F), new Vector2(-825.807983F, -101.372002F));
+ builder.AddCubicBezier(new Vector2(-825.424011F, -102.043999F), new Vector2(-824.895996F, -102.571999F), new Vector2(-824.223999F, -102.956001F));
+ builder.AddCubicBezier(new Vector2(-823.552002F, -103.339996F), new Vector2(-822.783997F, -103.531998F), new Vector2(-821.919983F, -103.531998F));
+ builder.AddCubicBezier(new Vector2(-820.624023F, -103.531998F), new Vector2(-819.573975F, -103.112F), new Vector2(-818.77002F, -102.272003F));
+ builder.AddCubicBezier(new Vector2(-817.966003F, -101.431999F), new Vector2(-817.564026F, -100.363998F), new Vector2(-817.564026F, -99.0680008F));
+ builder.AddLine(new Vector2(-817.564026F, -89.0960007F));
+ builder.AddLine(new Vector2(-814.288025F, -89.0960007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0977()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(829.184021F, -132.296005F));
+ builder.AddLine(new Vector2(829.184021F, -143.276001F));
+ builder.AddCubicBezier(new Vector2(829.184021F, -144.619995F), new Vector2(828.890015F, -145.772003F), new Vector2(828.302002F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(827.713989F, -147.692001F), new Vector2(826.927979F, -148.436005F), new Vector2(825.94397F, -148.964005F));
+ builder.AddCubicBezier(new Vector2(824.960022F, -149.492004F), new Vector2(823.843994F, -149.755997F), new Vector2(822.596008F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(821.395996F, -149.755997F), new Vector2(820.291992F, -149.485992F), new Vector2(819.283997F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(818.276001F, -148.406006F), new Vector2(817.453979F, -147.662003F), new Vector2(816.817993F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(816.182007F, -145.766006F), new Vector2(815.828003F, -144.632004F), new Vector2(815.755981F, -143.311996F));
+ builder.AddLine(new Vector2(817.59198F, -142.628006F));
+ builder.AddCubicBezier(new Vector2(817.59198F, -143.492004F), new Vector2(817.783997F, -144.223999F), new Vector2(818.16803F, -144.824005F));
+ builder.AddCubicBezier(new Vector2(818.552002F, -145.423996F), new Vector2(819.062012F, -145.891998F), new Vector2(819.697998F, -146.227997F));
+ builder.AddCubicBezier(new Vector2(820.333984F, -146.563995F), new Vector2(821.047974F, -146.731995F), new Vector2(821.840027F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(822.992004F, -146.731995F), new Vector2(823.958008F, -146.365997F), new Vector2(824.737976F, -145.634003F));
+ builder.AddCubicBezier(new Vector2(825.518005F, -144.901993F), new Vector2(825.90802F, -143.899994F), new Vector2(825.90802F, -142.628006F));
+ builder.AddLine(new Vector2(825.90802F, -132.296005F));
+ builder.AddLine(new Vector2(829.184021F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(817.59198F, -132.296005F));
+ builder.AddLine(new Vector2(817.59198F, -143.311996F));
+ builder.AddCubicBezier(new Vector2(817.59198F, -144.632004F), new Vector2(817.309998F, -145.772003F), new Vector2(816.745972F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(816.182007F, -147.692001F), new Vector2(815.414001F, -148.436005F), new Vector2(814.442017F, -148.964005F));
+ builder.AddCubicBezier(new Vector2(813.469971F, -149.492004F), new Vector2(812.383972F, -149.755997F), new Vector2(811.184021F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(809.960022F, -149.755997F), new Vector2(808.856018F, -149.485992F), new Vector2(807.872009F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(806.888F, -148.406006F), new Vector2(806.114014F, -147.656006F), new Vector2(805.549988F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(804.986023F, -145.735992F), new Vector2(804.703979F, -144.608002F), new Vector2(804.703979F, -143.311996F));
+ builder.AddLine(new Vector2(806.036011F, -142.628006F));
+ builder.AddCubicBezier(new Vector2(806.036011F, -143.492004F), new Vector2(806.228027F, -144.223999F), new Vector2(806.612F, -144.824005F));
+ builder.AddCubicBezier(new Vector2(806.995972F, -145.423996F), new Vector2(807.5F, -145.891998F), new Vector2(808.124023F, -146.227997F));
+ builder.AddCubicBezier(new Vector2(808.747986F, -146.563995F), new Vector2(809.455994F, -146.731995F), new Vector2(810.247986F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(811.424011F, -146.731995F), new Vector2(812.401978F, -146.365997F), new Vector2(813.182007F, -145.634003F));
+ builder.AddCubicBezier(new Vector2(813.961975F, -144.901993F), new Vector2(814.35199F, -143.899994F), new Vector2(814.35199F, -142.628006F));
+ builder.AddLine(new Vector2(814.35199F, -132.296005F));
+ builder.AddLine(new Vector2(817.59198F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(806.036011F, -132.296005F));
+ builder.AddLine(new Vector2(806.036011F, -149.395996F));
+ builder.AddLine(new Vector2(802.796021F, -149.395996F));
+ builder.AddLine(new Vector2(802.796021F, -132.296005F));
+ builder.AddLine(new Vector2(806.036011F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0978()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(796.856018F, -148.315994F));
+ builder.AddLine(new Vector2(799.231995F, -152.779999F));
+ builder.AddCubicBezier(new Vector2(799.544006F, -153.356003F), new Vector2(799.754028F, -153.830002F), new Vector2(799.862F, -154.201996F));
+ builder.AddCubicBezier(new Vector2(799.969971F, -154.574005F), new Vector2(800.023987F, -154.904007F), new Vector2(800.023987F, -155.192001F));
+ builder.AddCubicBezier(new Vector2(800.023987F, -155.863998F), new Vector2(799.783997F, -156.440002F), new Vector2(799.304016F, -156.919998F));
+ builder.AddCubicBezier(new Vector2(798.823975F, -157.399994F), new Vector2(798.271973F, -157.639999F), new Vector2(797.64801F, -157.639999F));
+ builder.AddCubicBezier(new Vector2(796.976013F, -157.639999F), new Vector2(796.406006F, -157.399994F), new Vector2(795.937988F, -156.919998F));
+ builder.AddCubicBezier(new Vector2(795.469971F, -156.440002F), new Vector2(795.236023F, -155.863998F), new Vector2(795.236023F, -155.192001F));
+ builder.AddCubicBezier(new Vector2(795.236023F, -154.544006F), new Vector2(795.445984F, -154.016006F), new Vector2(795.866028F, -153.608002F));
+ builder.AddCubicBezier(new Vector2(796.286011F, -153.199997F), new Vector2(796.747986F, -152.996002F), new Vector2(797.252014F, -152.996002F));
+ builder.AddCubicBezier(new Vector2(797.515991F, -152.996002F), new Vector2(797.737976F, -153.080002F), new Vector2(797.91803F, -153.248001F));
+ builder.AddCubicBezier(new Vector2(798.098022F, -153.416F), new Vector2(798.247986F, -153.632004F), new Vector2(798.367981F, -153.895996F));
+ builder.AddLine(new Vector2(797.216003F, -153.608002F));
+ builder.AddLine(new Vector2(794.984009F, -149.324005F));
+ builder.AddLine(new Vector2(796.856018F, -148.315994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0979()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(789.94397F, -132.296005F));
+ builder.AddLine(new Vector2(789.94397F, -157.279999F));
+ builder.AddLine(new Vector2(786.559998F, -157.279999F));
+ builder.AddLine(new Vector2(786.559998F, -132.296005F));
+ builder.AddLine(new Vector2(789.94397F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0980()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(770.64801F, -127.328003F));
+ builder.AddLine(new Vector2(773.059998F, -131.792007F));
+ builder.AddCubicBezier(new Vector2(773.372009F, -132.391998F), new Vector2(773.58197F, -132.878006F), new Vector2(773.690002F, -133.25F));
+ builder.AddCubicBezier(new Vector2(773.797974F, -133.621994F), new Vector2(773.85199F, -133.940002F), new Vector2(773.85199F, -134.203995F));
+ builder.AddCubicBezier(new Vector2(773.85199F, -134.899994F), new Vector2(773.612F, -135.481995F), new Vector2(773.132019F, -135.949997F));
+ builder.AddCubicBezier(new Vector2(772.651978F, -136.417999F), new Vector2(772.099976F, -136.651993F), new Vector2(771.476013F, -136.651993F));
+ builder.AddCubicBezier(new Vector2(770.780029F, -136.651993F), new Vector2(770.203979F, -136.417999F), new Vector2(769.747986F, -135.949997F));
+ builder.AddCubicBezier(new Vector2(769.291992F, -135.481995F), new Vector2(769.064026F, -134.899994F), new Vector2(769.064026F, -134.203995F));
+ builder.AddCubicBezier(new Vector2(769.064026F, -133.580002F), new Vector2(769.273987F, -133.057999F), new Vector2(769.69397F, -132.638F));
+ builder.AddCubicBezier(new Vector2(770.114014F, -132.218002F), new Vector2(770.575989F, -132.007996F), new Vector2(771.080017F, -132.007996F));
+ builder.AddCubicBezier(new Vector2(771.320007F, -132.007996F), new Vector2(771.536011F, -132.091995F), new Vector2(771.728027F, -132.259995F));
+ builder.AddCubicBezier(new Vector2(771.919983F, -132.427994F), new Vector2(772.075989F, -132.643997F), new Vector2(772.195984F, -132.908005F));
+ builder.AddLine(new Vector2(771.044006F, -132.619995F));
+ builder.AddLine(new Vector2(768.812012F, -128.335999F));
+ builder.AddLine(new Vector2(770.64801F, -127.328003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0981()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(763.286011F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(764.426025F, -134.276001F), new Vector2(764.995972F, -135.548004F), new Vector2(764.995972F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(764.995972F, -138.212006F), new Vector2(764.773987F, -139.063995F), new Vector2(764.330017F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(763.885986F, -140.360001F), new Vector2(763.315979F, -140.876007F), new Vector2(762.619995F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(761.924011F, -141.643997F), new Vector2(761.192017F, -141.949997F), new Vector2(760.424011F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(759.656006F, -142.406006F), new Vector2(758.91803F, -142.628006F), new Vector2(758.210022F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(757.502014F, -143.059998F), new Vector2(756.932007F, -143.324005F), new Vector2(756.5F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(756.067993F, -143.947998F), new Vector2(755.85199F, -144.391998F), new Vector2(755.85199F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(755.85199F, -145.520004F), new Vector2(756.098022F, -145.964005F), new Vector2(756.590027F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(757.08197F, -146.636002F), new Vector2(757.796021F, -146.804001F), new Vector2(758.731995F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(759.619995F, -146.804001F), new Vector2(760.411987F, -146.636002F), new Vector2(761.107971F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(761.804016F, -145.964005F), new Vector2(762.403992F, -145.483994F), new Vector2(762.90802F, -144.860001F));
+ builder.AddLine(new Vector2(764.995972F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(764.323975F, -147.884003F), new Vector2(763.466003F, -148.585999F), new Vector2(762.421997F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(761.377991F, -149.522003F), new Vector2(760.184021F, -149.755997F), new Vector2(758.840027F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(757.567993F, -149.755997F), new Vector2(756.476013F, -149.552002F), new Vector2(755.564026F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(754.651978F, -148.735992F), new Vector2(753.950012F, -148.154007F), new Vector2(753.458008F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(752.966003F, -146.641998F), new Vector2(752.719971F, -145.748001F), new Vector2(752.719971F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(752.719971F, -143.684006F), new Vector2(752.942017F, -142.850006F), new Vector2(753.385986F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(753.830017F, -141.578003F), new Vector2(754.400024F, -141.080002F), new Vector2(755.096008F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(755.791992F, -140.360001F), new Vector2(756.530029F, -140.072006F), new Vector2(757.309998F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(758.090027F, -139.639999F), new Vector2(758.828003F, -139.417999F), new Vector2(759.523987F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(760.219971F, -138.962006F), new Vector2(760.789978F, -138.673996F), new Vector2(761.234009F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(761.677979F, -137.977997F), new Vector2(761.900024F, -137.492004F), new Vector2(761.900024F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(761.900024F, -136.244003F), new Vector2(761.624023F, -135.757996F), new Vector2(761.072021F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(760.52002F, -135.061996F), new Vector2(759.73999F, -134.888F), new Vector2(758.731995F, -134.888F));
+ builder.AddCubicBezier(new Vector2(757.723999F, -134.888F), new Vector2(756.812012F, -135.074005F), new Vector2(755.995972F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(755.179993F, -135.817993F), new Vector2(754.460022F, -136.388F), new Vector2(753.835999F, -137.156006F));
+ builder.AddLine(new Vector2(751.747986F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(752.276001F, -134.419998F), new Vector2(752.893982F, -133.862F), new Vector2(753.60199F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(754.309998F, -132.925995F), new Vector2(755.096008F, -132.565994F), new Vector2(755.960022F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(756.823975F, -132.061996F), new Vector2(757.736023F, -131.936005F), new Vector2(758.695984F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(760.616028F, -131.936005F), new Vector2(762.145996F, -132.404007F), new Vector2(763.286011F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0982()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(745.664001F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(746.840027F, -133.195999F), new Vector2(747.848022F, -133.927994F), new Vector2(748.687988F, -134.888F));
+ builder.AddLine(new Vector2(746.599976F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(746.023987F, -136.339996F), new Vector2(745.333984F, -135.835999F), new Vector2(744.530029F, -135.5F));
+ builder.AddCubicBezier(new Vector2(743.726013F, -135.164001F), new Vector2(742.843994F, -134.996002F), new Vector2(741.883972F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(740.731995F, -134.996002F), new Vector2(739.711975F, -135.242004F), new Vector2(738.823975F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(737.935974F, -136.225998F), new Vector2(737.252014F, -136.921997F), new Vector2(736.771973F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(736.291992F, -138.722F), new Vector2(736.052002F, -139.772003F), new Vector2(736.052002F, -140.972F));
+ builder.AddCubicBezier(new Vector2(736.052002F, -142.147995F), new Vector2(736.280029F, -143.167999F), new Vector2(736.736023F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(737.192017F, -144.895996F), new Vector2(737.840027F, -145.567993F), new Vector2(738.679993F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(739.52002F, -146.528F), new Vector2(740.492004F, -146.768005F), new Vector2(741.596008F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(742.651978F, -146.768005F), new Vector2(743.552002F, -146.546005F), new Vector2(744.296021F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(745.039978F, -145.658005F), new Vector2(745.616028F, -145.033997F), new Vector2(746.023987F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(746.432007F, -143.425995F), new Vector2(746.635986F, -142.447998F), new Vector2(746.635986F, -141.296005F));
+ builder.AddLine(new Vector2(747.823975F, -142.339996F));
+ builder.AddLine(new Vector2(735.116028F, -142.339996F));
+ builder.AddLine(new Vector2(735.116028F, -139.639999F));
+ builder.AddLine(new Vector2(749.552002F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(749.624023F, -139.975998F), new Vector2(749.671997F, -140.281998F), new Vector2(749.695984F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(749.719971F, -140.834F), new Vector2(749.731995F, -141.091995F), new Vector2(749.731995F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(749.731995F, -142.964005F), new Vector2(749.390015F, -144.416F), new Vector2(748.705994F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(748.021973F, -146.960007F), new Vector2(747.067993F, -147.955994F), new Vector2(745.843994F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(744.619995F, -149.395996F), new Vector2(743.228027F, -149.755997F), new Vector2(741.66803F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(740.012024F, -149.755997F), new Vector2(738.518005F, -149.365997F), new Vector2(737.185974F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(735.854004F, -147.806F), new Vector2(734.797974F, -146.744003F), new Vector2(734.018005F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(733.237976F, -144.056F), new Vector2(732.848022F, -142.544006F), new Vector2(732.848022F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(732.848022F, -139.160004F), new Vector2(733.244019F, -137.636002F), new Vector2(734.036011F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(734.828003F, -134.947998F), new Vector2(735.901978F, -133.886002F), new Vector2(737.257996F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(738.614014F, -132.326004F), new Vector2(740.156006F, -131.936005F), new Vector2(741.883972F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(743.228027F, -131.936005F), new Vector2(744.487976F, -132.188004F), new Vector2(745.664001F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0983()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(720.716003F, -125.132004F));
+ builder.AddLine(new Vector2(723.955994F, -132.151993F));
+ builder.AddLine(new Vector2(722.119995F, -135.464005F));
+ builder.AddLine(new Vector2(717.116028F, -125.132004F));
+ builder.AddLine(new Vector2(720.716003F, -125.132004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(723.955994F, -132.151993F));
+ builder.AddLine(new Vector2(731.947998F, -149.395996F));
+ builder.AddLine(new Vector2(728.348022F, -149.395996F));
+ builder.AddLine(new Vector2(722.552002F, -135.895996F));
+ builder.AddLine(new Vector2(723.703979F, -135.895996F));
+ builder.AddLine(new Vector2(718.195984F, -149.395996F));
+ builder.AddLine(new Vector2(714.596008F, -149.395996F));
+ builder.AddLine(new Vector2(722.012024F, -132.151993F));
+ builder.AddLine(new Vector2(723.955994F, -132.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0984()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(714.271973F, -129.811996F));
+ builder.AddCubicBezier(new Vector2(712.567993F, -131.324005F), new Vector2(711.254028F, -133.255997F), new Vector2(710.330017F, -135.608002F));
+ builder.AddCubicBezier(new Vector2(709.406006F, -137.960007F), new Vector2(708.94397F, -140.587997F), new Vector2(708.94397F, -143.492004F));
+ builder.AddCubicBezier(new Vector2(708.94397F, -146.419998F), new Vector2(709.406006F, -149.059998F), new Vector2(710.330017F, -151.412003F));
+ builder.AddCubicBezier(new Vector2(711.254028F, -153.764008F), new Vector2(712.567993F, -155.684006F), new Vector2(714.271973F, -157.171997F));
+ builder.AddLine(new Vector2(712.400024F, -158.863998F));
+ builder.AddCubicBezier(new Vector2(711.080017F, -157.759995F), new Vector2(709.952026F, -156.397995F), new Vector2(709.015991F, -154.778F));
+ builder.AddCubicBezier(new Vector2(708.080017F, -153.158005F), new Vector2(707.359985F, -151.388F), new Vector2(706.856018F, -149.468002F));
+ builder.AddCubicBezier(new Vector2(706.35199F, -147.548004F), new Vector2(706.099976F, -145.556F), new Vector2(706.099976F, -143.492004F));
+ builder.AddCubicBezier(new Vector2(706.099976F, -141.427994F), new Vector2(706.35199F, -139.436005F), new Vector2(706.856018F, -137.516006F));
+ builder.AddCubicBezier(new Vector2(707.359985F, -135.595993F), new Vector2(708.080017F, -133.826004F), new Vector2(709.015991F, -132.205994F));
+ builder.AddCubicBezier(new Vector2(709.952026F, -130.585999F), new Vector2(711.080017F, -129.223999F), new Vector2(712.400024F, -128.119995F));
+ builder.AddLine(new Vector2(714.271973F, -129.811996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0985()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(694.021973F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(695.161987F, -134.276001F), new Vector2(695.731995F, -135.548004F), new Vector2(695.731995F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(695.731995F, -138.212006F), new Vector2(695.51001F, -139.063995F), new Vector2(695.065979F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(694.622009F, -140.360001F), new Vector2(694.052002F, -140.876007F), new Vector2(693.356018F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(692.659973F, -141.643997F), new Vector2(691.927979F, -141.949997F), new Vector2(691.159973F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(690.392029F, -142.406006F), new Vector2(689.653992F, -142.628006F), new Vector2(688.945984F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(688.237976F, -143.059998F), new Vector2(687.66803F, -143.324005F), new Vector2(687.236023F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(686.804016F, -143.947998F), new Vector2(686.588013F, -144.391998F), new Vector2(686.588013F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(686.588013F, -145.520004F), new Vector2(686.833984F, -145.964005F), new Vector2(687.325989F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(687.817993F, -146.636002F), new Vector2(688.531982F, -146.804001F), new Vector2(689.468018F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(690.356018F, -146.804001F), new Vector2(691.14801F, -146.636002F), new Vector2(691.843994F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(692.539978F, -145.964005F), new Vector2(693.140015F, -145.483994F), new Vector2(693.643982F, -144.860001F));
+ builder.AddLine(new Vector2(695.731995F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(695.059998F, -147.884003F), new Vector2(694.202026F, -148.585999F), new Vector2(693.15802F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(692.114014F, -149.522003F), new Vector2(690.919983F, -149.755997F), new Vector2(689.575989F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(688.304016F, -149.755997F), new Vector2(687.211975F, -149.552002F), new Vector2(686.299988F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(685.388F, -148.735992F), new Vector2(684.685974F, -148.154007F), new Vector2(684.19397F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(683.702026F, -146.641998F), new Vector2(683.455994F, -145.748001F), new Vector2(683.455994F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(683.455994F, -143.684006F), new Vector2(683.677979F, -142.850006F), new Vector2(684.122009F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(684.565979F, -141.578003F), new Vector2(685.135986F, -141.080002F), new Vector2(685.83197F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(686.528015F, -140.360001F), new Vector2(687.265991F, -140.072006F), new Vector2(688.046021F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(688.825989F, -139.639999F), new Vector2(689.564026F, -139.417999F), new Vector2(690.26001F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(690.955994F, -138.962006F), new Vector2(691.526001F, -138.673996F), new Vector2(691.969971F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(692.414001F, -137.977997F), new Vector2(692.635986F, -137.492004F), new Vector2(692.635986F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(692.635986F, -136.244003F), new Vector2(692.359985F, -135.757996F), new Vector2(691.807983F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(691.255981F, -135.061996F), new Vector2(690.476013F, -134.888F), new Vector2(689.468018F, -134.888F));
+ builder.AddCubicBezier(new Vector2(688.460022F, -134.888F), new Vector2(687.547974F, -135.074005F), new Vector2(686.731995F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(685.916016F, -135.817993F), new Vector2(685.195984F, -136.388F), new Vector2(684.572021F, -137.156006F));
+ builder.AddLine(new Vector2(682.484009F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(683.012024F, -134.419998F), new Vector2(683.630005F, -133.862F), new Vector2(684.338013F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(685.046021F, -132.925995F), new Vector2(685.83197F, -132.565994F), new Vector2(686.695984F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(687.559998F, -132.061996F), new Vector2(688.471985F, -131.936005F), new Vector2(689.432007F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(691.35199F, -131.936005F), new Vector2(692.882019F, -132.404007F), new Vector2(694.021973F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0986()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(667.507996F, -132.296005F));
+ builder.AddLine(new Vector2(667.507996F, -149.395996F));
+ builder.AddLine(new Vector2(664.268005F, -149.395996F));
+ builder.AddLine(new Vector2(664.268005F, -132.296005F));
+ builder.AddLine(new Vector2(667.507996F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(679.604004F, -132.296005F));
+ builder.AddLine(new Vector2(679.604004F, -142.916F));
+ builder.AddCubicBezier(new Vector2(679.604004F, -144.091995F), new Vector2(679.315979F, -145.201996F), new Vector2(678.73999F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(678.164001F, -147.289993F), new Vector2(677.377991F, -148.136002F), new Vector2(676.382019F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(675.385986F, -149.432007F), new Vector2(674.23999F, -149.755997F), new Vector2(672.94397F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(671.64801F, -149.755997F), new Vector2(670.484009F, -149.462006F), new Vector2(669.452026F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(668.419983F, -148.285995F), new Vector2(667.616028F, -147.488007F), new Vector2(667.039978F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(666.463989F, -145.472F), new Vector2(666.176025F, -144.320007F), new Vector2(666.176025F, -143.024002F));
+ builder.AddLine(new Vector2(667.507996F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(667.507996F, -143.132004F), new Vector2(667.700012F, -143.899994F), new Vector2(668.083984F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(668.468018F, -145.244003F), new Vector2(668.995972F, -145.772003F), new Vector2(669.66803F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(670.340027F, -146.539993F), new Vector2(671.107971F, -146.731995F), new Vector2(671.971985F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(673.268005F, -146.731995F), new Vector2(674.317993F, -146.311996F), new Vector2(675.122009F, -145.472F));
+ builder.AddCubicBezier(new Vector2(675.926025F, -144.632004F), new Vector2(676.328003F, -143.563995F), new Vector2(676.328003F, -142.268005F));
+ builder.AddLine(new Vector2(676.328003F, -132.296005F));
+ builder.AddLine(new Vector2(679.604004F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0987()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(656.671997F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(657.848022F, -133.195999F), new Vector2(658.856018F, -133.927994F), new Vector2(659.695984F, -134.888F));
+ builder.AddLine(new Vector2(657.607971F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(657.031982F, -136.339996F), new Vector2(656.34198F, -135.835999F), new Vector2(655.538025F, -135.5F));
+ builder.AddCubicBezier(new Vector2(654.734009F, -135.164001F), new Vector2(653.85199F, -134.996002F), new Vector2(652.892029F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(651.73999F, -134.996002F), new Vector2(650.719971F, -135.242004F), new Vector2(649.83197F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(648.94397F, -136.225998F), new Vector2(648.26001F, -136.921997F), new Vector2(647.780029F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(647.299988F, -138.722F), new Vector2(647.059998F, -139.772003F), new Vector2(647.059998F, -140.972F));
+ builder.AddCubicBezier(new Vector2(647.059998F, -142.147995F), new Vector2(647.288025F, -143.167999F), new Vector2(647.744019F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(648.200012F, -144.895996F), new Vector2(648.848022F, -145.567993F), new Vector2(649.687988F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(650.528015F, -146.528F), new Vector2(651.5F, -146.768005F), new Vector2(652.604004F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(653.659973F, -146.768005F), new Vector2(654.559998F, -146.546005F), new Vector2(655.304016F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(656.047974F, -145.658005F), new Vector2(656.624023F, -145.033997F), new Vector2(657.031982F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(657.440002F, -143.425995F), new Vector2(657.643982F, -142.447998F), new Vector2(657.643982F, -141.296005F));
+ builder.AddLine(new Vector2(658.83197F, -142.339996F));
+ builder.AddLine(new Vector2(646.124023F, -142.339996F));
+ builder.AddLine(new Vector2(646.124023F, -139.639999F));
+ builder.AddLine(new Vector2(660.559998F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(660.632019F, -139.975998F), new Vector2(660.679993F, -140.281998F), new Vector2(660.703979F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(660.728027F, -140.834F), new Vector2(660.73999F, -141.091995F), new Vector2(660.73999F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(660.73999F, -142.964005F), new Vector2(660.39801F, -144.416F), new Vector2(659.713989F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(659.030029F, -146.960007F), new Vector2(658.075989F, -147.955994F), new Vector2(656.85199F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(655.627991F, -149.395996F), new Vector2(654.236023F, -149.755997F), new Vector2(652.676025F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(651.02002F, -149.755997F), new Vector2(649.526001F, -149.365997F), new Vector2(648.19397F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(646.862F, -147.806F), new Vector2(645.80603F, -146.744003F), new Vector2(645.026001F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(644.245972F, -144.056F), new Vector2(643.856018F, -142.544006F), new Vector2(643.856018F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(643.856018F, -139.160004F), new Vector2(644.252014F, -137.636002F), new Vector2(645.044006F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(645.835999F, -134.947998F), new Vector2(646.909973F, -133.886002F), new Vector2(648.265991F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(649.622009F, -132.326004F), new Vector2(651.164001F, -131.936005F), new Vector2(652.892029F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(654.236023F, -131.936005F), new Vector2(655.495972F, -132.188004F), new Vector2(656.671997F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0988()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(638.815979F, -146.444F));
+ builder.AddLine(new Vector2(641.804016F, -147.632004F));
+ builder.AddLine(new Vector2(641.804016F, -149.395996F));
+ builder.AddLine(new Vector2(628.447998F, -149.395996F));
+ builder.AddLine(new Vector2(628.447998F, -146.444F));
+ builder.AddLine(new Vector2(638.815979F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(641.588013F, -132.296005F));
+ builder.AddLine(new Vector2(641.588013F, -135.248001F));
+ builder.AddLine(new Vector2(630.716003F, -135.248001F));
+ builder.AddLine(new Vector2(627.799988F, -134.059998F));
+ builder.AddLine(new Vector2(627.799988F, -132.296005F));
+ builder.AddLine(new Vector2(641.588013F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(631.651978F, -134.059998F));
+ builder.AddLine(new Vector2(641.804016F, -147.632004F));
+ builder.AddLine(new Vector2(637.987976F, -147.632004F));
+ builder.AddLine(new Vector2(627.799988F, -134.059998F));
+ builder.AddLine(new Vector2(631.651978F, -134.059998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0989()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(624.271973F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(624.656006F, -153.806F), new Vector2(624.848022F, -154.304001F), new Vector2(624.848022F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(624.848022F, -155.479996F), new Vector2(624.656006F, -155.966003F), new Vector2(624.271973F, -156.362F));
+ builder.AddCubicBezier(new Vector2(623.888F, -156.757996F), new Vector2(623.395996F, -156.955994F), new Vector2(622.796021F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(622.195984F, -156.955994F), new Vector2(621.703979F, -156.757996F), new Vector2(621.320007F, -156.362F));
+ builder.AddCubicBezier(new Vector2(620.935974F, -155.966003F), new Vector2(620.744019F, -155.479996F), new Vector2(620.744019F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(620.744019F, -154.304001F), new Vector2(620.935974F, -153.806F), new Vector2(621.320007F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(621.703979F, -153.014008F), new Vector2(622.195984F, -152.815994F), new Vector2(622.796021F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(623.395996F, -152.815994F), new Vector2(623.888F, -153.014008F), new Vector2(624.271973F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(624.416016F, -132.296005F));
+ builder.AddLine(new Vector2(624.416016F, -149.395996F));
+ builder.AddLine(new Vector2(621.140015F, -149.395996F));
+ builder.AddLine(new Vector2(621.140015F, -132.296005F));
+ builder.AddLine(new Vector2(624.416016F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0990()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(617.971985F, -146.444F));
+ builder.AddLine(new Vector2(617.971985F, -149.395996F));
+ builder.AddLine(new Vector2(606.307983F, -149.395996F));
+ builder.AddLine(new Vector2(606.307983F, -146.444F));
+ builder.AddLine(new Vector2(617.971985F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(613.76001F, -132.296005F));
+ builder.AddLine(new Vector2(613.76001F, -156.559998F));
+ builder.AddLine(new Vector2(610.52002F, -156.559998F));
+ builder.AddLine(new Vector2(610.52002F, -132.296005F));
+ builder.AddLine(new Vector2(613.76001F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0991()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(602.960022F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(603.343994F, -153.806F), new Vector2(603.536011F, -154.304001F), new Vector2(603.536011F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(603.536011F, -155.479996F), new Vector2(603.343994F, -155.966003F), new Vector2(602.960022F, -156.362F));
+ builder.AddCubicBezier(new Vector2(602.575989F, -156.757996F), new Vector2(602.083984F, -156.955994F), new Vector2(601.484009F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(600.883972F, -156.955994F), new Vector2(600.392029F, -156.757996F), new Vector2(600.007996F, -156.362F));
+ builder.AddCubicBezier(new Vector2(599.624023F, -155.966003F), new Vector2(599.432007F, -155.479996F), new Vector2(599.432007F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(599.432007F, -154.304001F), new Vector2(599.624023F, -153.806F), new Vector2(600.007996F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(600.392029F, -153.014008F), new Vector2(600.883972F, -152.815994F), new Vector2(601.484009F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(602.083984F, -152.815994F), new Vector2(602.575989F, -153.014008F), new Vector2(602.960022F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(603.104004F, -132.296005F));
+ builder.AddLine(new Vector2(603.104004F, -149.395996F));
+ builder.AddLine(new Vector2(599.828003F, -149.395996F));
+ builder.AddLine(new Vector2(599.828003F, -132.296005F));
+ builder.AddLine(new Vector2(603.104004F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0992()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(593.726013F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(594.866028F, -133.195999F), new Vector2(595.83197F, -133.904007F), new Vector2(596.624023F, -134.815994F));
+ builder.AddLine(new Vector2(594.5F, -136.975998F));
+ builder.AddCubicBezier(new Vector2(593.947998F, -136.352005F), new Vector2(593.294006F, -135.878006F), new Vector2(592.538025F, -135.554001F));
+ builder.AddCubicBezier(new Vector2(591.781982F, -135.229996F), new Vector2(590.947998F, -135.067993F), new Vector2(590.036011F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(588.955994F, -135.067993F), new Vector2(587.995972F, -135.320007F), new Vector2(587.156006F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(586.315979F, -136.328003F), new Vector2(585.656006F, -137.011993F), new Vector2(585.176025F, -137.876007F));
+ builder.AddCubicBezier(new Vector2(584.695984F, -138.740005F), new Vector2(584.455994F, -139.735992F), new Vector2(584.455994F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(584.455994F, -141.992004F), new Vector2(584.695984F, -142.988007F), new Vector2(585.176025F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(585.656006F, -144.716003F), new Vector2(586.315979F, -145.393997F), new Vector2(587.156006F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(587.995972F, -146.378006F), new Vector2(588.955994F, -146.623993F), new Vector2(590.036011F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(590.924011F, -146.623993F), new Vector2(591.752014F, -146.462006F), new Vector2(592.52002F, -146.138F));
+ builder.AddCubicBezier(new Vector2(593.288025F, -145.813995F), new Vector2(593.935974F, -145.339996F), new Vector2(594.463989F, -144.716003F));
+ builder.AddLine(new Vector2(596.624023F, -146.876007F));
+ builder.AddCubicBezier(new Vector2(595.807983F, -147.811996F), new Vector2(594.835999F, -148.526001F), new Vector2(593.708008F, -149.018005F));
+ builder.AddCubicBezier(new Vector2(592.580017F, -149.509995F), new Vector2(591.356018F, -149.755997F), new Vector2(590.036011F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(588.356018F, -149.755997F), new Vector2(586.838013F, -149.365997F), new Vector2(585.481995F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(584.125977F, -147.806F), new Vector2(583.057983F, -146.744003F), new Vector2(582.278015F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(581.497986F, -144.056F), new Vector2(581.107971F, -142.544006F), new Vector2(581.107971F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(581.107971F, -139.207993F), new Vector2(581.497986F, -137.701996F), new Vector2(582.278015F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(583.057983F, -134.990005F), new Vector2(584.125977F, -133.916F), new Vector2(585.481995F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(586.838013F, -132.332001F), new Vector2(588.356018F, -131.936005F), new Vector2(590.036011F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(591.356018F, -131.936005F), new Vector2(592.585999F, -132.188004F), new Vector2(593.726013F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0993()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(559.364014F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(558.523987F, -136.328003F), new Vector2(557.864014F, -137.018005F), new Vector2(557.383972F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(556.903992F, -138.770004F), new Vector2(556.664001F, -139.772003F), new Vector2(556.664001F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(556.664001F, -142.003998F), new Vector2(556.903992F, -142.988007F), new Vector2(557.383972F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(557.864014F, -144.716003F), new Vector2(558.523987F, -145.393997F), new Vector2(559.364014F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(560.203979F, -146.378006F), new Vector2(561.151978F, -146.623993F), new Vector2(562.208008F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(563.312012F, -146.623993F), new Vector2(564.278015F, -146.378006F), new Vector2(565.106018F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(565.934021F, -145.393997F), new Vector2(566.593994F, -144.716003F), new Vector2(567.085999F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(567.578003F, -142.988007F), new Vector2(567.823975F, -142.003998F), new Vector2(567.823975F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(567.823975F, -139.772003F), new Vector2(567.583984F, -138.770004F), new Vector2(567.104004F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(566.624023F, -137.018005F), new Vector2(565.963989F, -136.328003F), new Vector2(565.124023F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(564.283997F, -135.320007F), new Vector2(563.312012F, -135.067993F), new Vector2(562.208008F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(561.151978F, -135.067993F), new Vector2(560.203979F, -135.320007F), new Vector2(559.364014F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(566.762024F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(568.117981F, -133.916F), new Vector2(569.192017F, -134.990005F), new Vector2(569.984009F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(570.776001F, -137.701996F), new Vector2(571.171997F, -139.220001F), new Vector2(571.171997F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(571.171997F, -142.556F), new Vector2(570.776001F, -144.056F), new Vector2(569.984009F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(569.192017F, -146.744003F), new Vector2(568.117981F, -147.806F), new Vector2(566.762024F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(565.406006F, -149.365997F), new Vector2(563.888F, -149.755997F), new Vector2(562.208008F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(560.552002F, -149.755997F), new Vector2(559.052002F, -149.360001F), new Vector2(557.708008F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(556.364014F, -147.776001F), new Vector2(555.296021F, -146.714005F), new Vector2(554.504028F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(553.711975F, -144.050003F), new Vector2(553.315979F, -142.556F), new Vector2(553.315979F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(553.315979F, -139.220001F), new Vector2(553.711975F, -137.701996F), new Vector2(554.504028F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(555.296021F, -134.990005F), new Vector2(556.364014F, -133.916F), new Vector2(557.708008F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(559.052002F, -132.332001F), new Vector2(560.552002F, -131.936005F), new Vector2(562.208008F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(563.888F, -131.936005F), new Vector2(565.406006F, -132.332001F), new Vector2(566.762024F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0994()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(551.804016F, -146.444F));
+ builder.AddLine(new Vector2(551.804016F, -149.395996F));
+ builder.AddLine(new Vector2(540.140015F, -149.395996F));
+ builder.AddLine(new Vector2(540.140015F, -146.444F));
+ builder.AddLine(new Vector2(551.804016F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(547.59198F, -132.296005F));
+ builder.AddLine(new Vector2(547.59198F, -156.559998F));
+ builder.AddLine(new Vector2(544.35199F, -156.559998F));
+ builder.AddLine(new Vector2(544.35199F, -132.296005F));
+ builder.AddLine(new Vector2(547.59198F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0995()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(517.783997F, -132.296005F));
+ builder.AddLine(new Vector2(517.783997F, -149.395996F));
+ builder.AddLine(new Vector2(514.544006F, -149.395996F));
+ builder.AddLine(new Vector2(514.544006F, -132.296005F));
+ builder.AddLine(new Vector2(517.783997F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(529.880005F, -132.296005F));
+ builder.AddLine(new Vector2(529.880005F, -142.916F));
+ builder.AddCubicBezier(new Vector2(529.880005F, -144.091995F), new Vector2(529.59198F, -145.201996F), new Vector2(529.015991F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(528.440002F, -147.289993F), new Vector2(527.653992F, -148.136002F), new Vector2(526.65802F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(525.661987F, -149.432007F), new Vector2(524.515991F, -149.755997F), new Vector2(523.219971F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(521.924011F, -149.755997F), new Vector2(520.76001F, -149.462006F), new Vector2(519.728027F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(518.695984F, -148.285995F), new Vector2(517.892029F, -147.488007F), new Vector2(517.315979F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(516.73999F, -145.472F), new Vector2(516.452026F, -144.320007F), new Vector2(516.452026F, -143.024002F));
+ builder.AddLine(new Vector2(517.783997F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(517.783997F, -143.132004F), new Vector2(517.976013F, -143.899994F), new Vector2(518.359985F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(518.744019F, -145.244003F), new Vector2(519.271973F, -145.772003F), new Vector2(519.94397F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(520.616028F, -146.539993F), new Vector2(521.383972F, -146.731995F), new Vector2(522.247986F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(523.544006F, -146.731995F), new Vector2(524.593994F, -146.311996F), new Vector2(525.39801F, -145.472F));
+ builder.AddCubicBezier(new Vector2(526.202026F, -144.632004F), new Vector2(526.604004F, -143.563995F), new Vector2(526.604004F, -142.268005F));
+ builder.AddLine(new Vector2(526.604004F, -132.296005F));
+ builder.AddLine(new Vector2(529.880005F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0996()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(499.135986F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(498.29599F, -136.328003F), new Vector2(497.635986F, -137.018005F), new Vector2(497.156006F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(496.675995F, -138.770004F), new Vector2(496.436005F, -139.772003F), new Vector2(496.436005F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(496.436005F, -142.003998F), new Vector2(496.675995F, -142.988007F), new Vector2(497.156006F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(497.635986F, -144.716003F), new Vector2(498.29599F, -145.393997F), new Vector2(499.135986F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(499.976013F, -146.378006F), new Vector2(500.924011F, -146.623993F), new Vector2(501.980011F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(503.084015F, -146.623993F), new Vector2(504.049988F, -146.378006F), new Vector2(504.877991F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(505.705994F, -145.393997F), new Vector2(506.365997F, -144.716003F), new Vector2(506.858002F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(507.350006F, -142.988007F), new Vector2(507.596008F, -142.003998F), new Vector2(507.596008F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(507.596008F, -139.772003F), new Vector2(507.355988F, -138.770004F), new Vector2(506.876007F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(506.395996F, -137.018005F), new Vector2(505.735992F, -136.328003F), new Vector2(504.895996F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(504.056F, -135.320007F), new Vector2(503.084015F, -135.067993F), new Vector2(501.980011F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(500.924011F, -135.067993F), new Vector2(499.976013F, -135.320007F), new Vector2(499.135986F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(506.533997F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(507.890015F, -133.916F), new Vector2(508.963989F, -134.990005F), new Vector2(509.756012F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(510.548004F, -137.701996F), new Vector2(510.944F, -139.220001F), new Vector2(510.944F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(510.944F, -142.556F), new Vector2(510.548004F, -144.056F), new Vector2(509.756012F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(508.963989F, -146.744003F), new Vector2(507.890015F, -147.806F), new Vector2(506.533997F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(505.178009F, -149.365997F), new Vector2(503.660004F, -149.755997F), new Vector2(501.980011F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(500.324005F, -149.755997F), new Vector2(498.824005F, -149.360001F), new Vector2(497.480011F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(496.135986F, -147.776001F), new Vector2(495.067993F, -146.714005F), new Vector2(494.276001F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(493.484009F, -144.050003F), new Vector2(493.088013F, -142.556F), new Vector2(493.088013F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(493.088013F, -139.220001F), new Vector2(493.484009F, -137.701996F), new Vector2(494.276001F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(495.067993F, -134.990005F), new Vector2(496.135986F, -133.916F), new Vector2(497.480011F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(498.824005F, -132.332001F), new Vector2(500.324005F, -131.936005F), new Vector2(501.980011F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(503.660004F, -131.936005F), new Vector2(505.178009F, -132.332001F), new Vector2(506.533997F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0997()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(489.272003F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(489.656006F, -153.806F), new Vector2(489.847992F, -154.304001F), new Vector2(489.847992F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(489.847992F, -155.479996F), new Vector2(489.656006F, -155.966003F), new Vector2(489.272003F, -156.362F));
+ builder.AddCubicBezier(new Vector2(488.888F, -156.757996F), new Vector2(488.395996F, -156.955994F), new Vector2(487.79599F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(487.196014F, -156.955994F), new Vector2(486.70401F, -156.757996F), new Vector2(486.320007F, -156.362F));
+ builder.AddCubicBezier(new Vector2(485.936005F, -155.966003F), new Vector2(485.743988F, -155.479996F), new Vector2(485.743988F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(485.743988F, -154.304001F), new Vector2(485.936005F, -153.806F), new Vector2(486.320007F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(486.70401F, -153.014008F), new Vector2(487.196014F, -152.815994F), new Vector2(487.79599F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(488.395996F, -152.815994F), new Vector2(488.888F, -153.014008F), new Vector2(489.272003F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(489.415985F, -132.296005F));
+ builder.AddLine(new Vector2(489.415985F, -149.395996F));
+ builder.AddLine(new Vector2(486.140015F, -149.395996F));
+ builder.AddLine(new Vector2(486.140015F, -132.296005F));
+ builder.AddLine(new Vector2(489.415985F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0998()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(480.794006F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(481.93399F, -134.276001F), new Vector2(482.503998F, -135.548004F), new Vector2(482.503998F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(482.503998F, -138.212006F), new Vector2(482.282013F, -139.063995F), new Vector2(481.838013F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(481.394012F, -140.360001F), new Vector2(480.824005F, -140.876007F), new Vector2(480.127991F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(479.432007F, -141.643997F), new Vector2(478.700012F, -141.949997F), new Vector2(477.932007F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(477.164001F, -142.406006F), new Vector2(476.425995F, -142.628006F), new Vector2(475.717987F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(475.01001F, -143.059998F), new Vector2(474.440002F, -143.324005F), new Vector2(474.007996F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(473.575989F, -143.947998F), new Vector2(473.359985F, -144.391998F), new Vector2(473.359985F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(473.359985F, -145.520004F), new Vector2(473.605988F, -145.964005F), new Vector2(474.097992F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(474.589996F, -146.636002F), new Vector2(475.303986F, -146.804001F), new Vector2(476.23999F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(477.127991F, -146.804001F), new Vector2(477.920013F, -146.636002F), new Vector2(478.615997F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(479.312012F, -145.964005F), new Vector2(479.911987F, -145.483994F), new Vector2(480.415985F, -144.860001F));
+ builder.AddLine(new Vector2(482.503998F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(481.832001F, -147.884003F), new Vector2(480.973999F, -148.585999F), new Vector2(479.929993F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(478.885986F, -149.522003F), new Vector2(477.691986F, -149.755997F), new Vector2(476.347992F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(475.075989F, -149.755997F), new Vector2(473.984009F, -149.552002F), new Vector2(473.071991F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(472.160004F, -148.735992F), new Vector2(471.458008F, -148.154007F), new Vector2(470.966003F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(470.473999F, -146.641998F), new Vector2(470.227997F, -145.748001F), new Vector2(470.227997F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(470.227997F, -143.684006F), new Vector2(470.450012F, -142.850006F), new Vector2(470.894012F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(471.338013F, -141.578003F), new Vector2(471.90799F, -141.080002F), new Vector2(472.604004F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(473.299988F, -140.360001F), new Vector2(474.037994F, -140.072006F), new Vector2(474.817993F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(475.597992F, -139.639999F), new Vector2(476.335999F, -139.417999F), new Vector2(477.032013F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(477.727997F, -138.962006F), new Vector2(478.298004F, -138.673996F), new Vector2(478.742004F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(479.186005F, -137.977997F), new Vector2(479.40799F, -137.492004F), new Vector2(479.40799F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(479.40799F, -136.244003F), new Vector2(479.131989F, -135.757996F), new Vector2(478.579987F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(478.028015F, -135.061996F), new Vector2(477.247986F, -134.888F), new Vector2(476.23999F, -134.888F));
+ builder.AddCubicBezier(new Vector2(475.231995F, -134.888F), new Vector2(474.320007F, -135.074005F), new Vector2(473.503998F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(472.687988F, -135.817993F), new Vector2(471.967987F, -136.388F), new Vector2(471.343994F, -137.156006F));
+ builder.AddLine(new Vector2(469.256012F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(469.783997F, -134.419998F), new Vector2(470.402008F, -133.862F), new Vector2(471.109985F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(471.817993F, -132.925995F), new Vector2(472.604004F, -132.565994F), new Vector2(473.467987F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(474.332001F, -132.061996F), new Vector2(475.243988F, -131.936005F), new Vector2(476.20401F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(478.123993F, -131.936005F), new Vector2(479.653992F, -132.404007F), new Vector2(480.794006F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_0999()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(462.884003F, -132.925995F));
+ builder.AddCubicBezier(new Vector2(463.988007F, -133.537994F), new Vector2(464.85199F, -134.408005F), new Vector2(465.476013F, -135.535995F));
+ builder.AddCubicBezier(new Vector2(466.100006F, -136.664001F), new Vector2(466.411987F, -137.972F), new Vector2(466.411987F, -139.460007F));
+ builder.AddLine(new Vector2(466.411987F, -149.395996F));
+ builder.AddLine(new Vector2(463.171997F, -149.395996F));
+ builder.AddLine(new Vector2(463.171997F, -139.604004F));
+ builder.AddCubicBezier(new Vector2(463.171997F, -138.188004F), new Vector2(462.812012F, -137.078003F), new Vector2(462.09201F, -136.274002F));
+ builder.AddCubicBezier(new Vector2(461.372009F, -135.470001F), new Vector2(460.376007F, -135.067993F), new Vector2(459.104004F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(458.264008F, -135.067993F), new Vector2(457.532013F, -135.248001F), new Vector2(456.90799F, -135.608002F));
+ builder.AddCubicBezier(new Vector2(456.283997F, -135.968002F), new Vector2(455.809998F, -136.490005F), new Vector2(455.485992F, -137.173996F));
+ builder.AddCubicBezier(new Vector2(455.161987F, -137.858002F), new Vector2(455F, -138.667999F), new Vector2(455F, -139.604004F));
+ builder.AddLine(new Vector2(455F, -149.395996F));
+ builder.AddLine(new Vector2(451.76001F, -149.395996F));
+ builder.AddLine(new Vector2(451.76001F, -139.460007F));
+ builder.AddCubicBezier(new Vector2(451.76001F, -137.972F), new Vector2(452.071991F, -136.664001F), new Vector2(452.696014F, -135.535995F));
+ builder.AddCubicBezier(new Vector2(453.320007F, -134.408005F), new Vector2(454.190002F, -133.537994F), new Vector2(455.306F, -132.925995F));
+ builder.AddCubicBezier(new Vector2(456.421997F, -132.313995F), new Vector2(457.687988F, -132.007996F), new Vector2(459.104004F, -132.007996F));
+ builder.AddCubicBezier(new Vector2(460.519989F, -132.007996F), new Vector2(461.779999F, -132.313995F), new Vector2(462.884003F, -132.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1000()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(448.951996F, -146.444F));
+ builder.AddLine(new Vector2(448.951996F, -149.395996F));
+ builder.AddLine(new Vector2(436.063995F, -149.395996F));
+ builder.AddLine(new Vector2(436.063995F, -146.444F));
+ builder.AddLine(new Vector2(448.951996F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(443.515991F, -132.296005F));
+ builder.AddLine(new Vector2(443.515991F, -151.951996F));
+ builder.AddCubicBezier(new Vector2(443.515991F, -153.007996F), new Vector2(443.798004F, -153.830002F), new Vector2(444.362F, -154.417999F));
+ builder.AddCubicBezier(new Vector2(444.925995F, -155.005997F), new Vector2(445.723999F, -155.300003F), new Vector2(446.756012F, -155.300003F));
+ builder.AddCubicBezier(new Vector2(447.308014F, -155.300003F), new Vector2(447.776001F, -155.216003F), new Vector2(448.160004F, -155.048004F));
+ builder.AddCubicBezier(new Vector2(448.544006F, -154.880005F), new Vector2(448.891998F, -154.628006F), new Vector2(449.20401F, -154.292007F));
+ builder.AddLine(new Vector2(451.328003F, -156.380005F));
+ builder.AddCubicBezier(new Vector2(450.727997F, -157.028F), new Vector2(450.067993F, -157.520004F), new Vector2(449.347992F, -157.856003F));
+ builder.AddCubicBezier(new Vector2(448.627991F, -158.192001F), new Vector2(447.776001F, -158.360001F), new Vector2(446.791992F, -158.360001F));
+ builder.AddCubicBezier(new Vector2(445.496002F, -158.360001F), new Vector2(444.355988F, -158.084F), new Vector2(443.372009F, -157.531998F));
+ builder.AddCubicBezier(new Vector2(442.388F, -156.979996F), new Vector2(441.619995F, -156.223999F), new Vector2(441.067993F, -155.264008F));
+ builder.AddCubicBezier(new Vector2(440.515991F, -154.304001F), new Vector2(440.23999F, -153.199997F), new Vector2(440.23999F, -151.951996F));
+ builder.AddLine(new Vector2(440.23999F, -132.296005F));
+ builder.AddLine(new Vector2(443.515991F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1001()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(421.556F, -132.296005F));
+ builder.AddLine(new Vector2(421.556F, -149.395996F));
+ builder.AddLine(new Vector2(418.31601F, -149.395996F));
+ builder.AddLine(new Vector2(418.31601F, -132.296005F));
+ builder.AddLine(new Vector2(421.556F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(433.652008F, -132.296005F));
+ builder.AddLine(new Vector2(433.652008F, -142.916F));
+ builder.AddCubicBezier(new Vector2(433.652008F, -144.091995F), new Vector2(433.364014F, -145.201996F), new Vector2(432.787994F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(432.212006F, -147.289993F), new Vector2(431.425995F, -148.136002F), new Vector2(430.429993F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(429.43399F, -149.432007F), new Vector2(428.287994F, -149.755997F), new Vector2(426.992004F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(425.696014F, -149.755997F), new Vector2(424.532013F, -149.462006F), new Vector2(423.5F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(422.467987F, -148.285995F), new Vector2(421.664001F, -147.488007F), new Vector2(421.088013F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(420.511993F, -145.472F), new Vector2(420.223999F, -144.320007F), new Vector2(420.223999F, -143.024002F));
+ builder.AddLine(new Vector2(421.556F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(421.556F, -143.132004F), new Vector2(421.747986F, -143.899994F), new Vector2(422.131989F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(422.515991F, -145.244003F), new Vector2(423.044006F, -145.772003F), new Vector2(423.716003F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(424.388F, -146.539993F), new Vector2(425.156006F, -146.731995F), new Vector2(426.019989F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(427.31601F, -146.731995F), new Vector2(428.365997F, -146.311996F), new Vector2(429.170013F, -145.472F));
+ builder.AddCubicBezier(new Vector2(429.973999F, -144.632004F), new Vector2(430.376007F, -143.563995F), new Vector2(430.376007F, -142.268005F));
+ builder.AddLine(new Vector2(430.376007F, -132.296005F));
+ builder.AddLine(new Vector2(433.652008F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1002()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(402.90799F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(402.067993F, -136.328003F), new Vector2(401.40799F, -137.018005F), new Vector2(400.928009F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(400.447998F, -138.770004F), new Vector2(400.208008F, -139.772003F), new Vector2(400.208008F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(400.208008F, -142.003998F), new Vector2(400.447998F, -142.988007F), new Vector2(400.928009F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(401.40799F, -144.716003F), new Vector2(402.067993F, -145.393997F), new Vector2(402.90799F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(403.747986F, -146.378006F), new Vector2(404.696014F, -146.623993F), new Vector2(405.752014F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(406.855988F, -146.623993F), new Vector2(407.821991F, -146.378006F), new Vector2(408.649994F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(409.477997F, -145.393997F), new Vector2(410.138F, -144.716003F), new Vector2(410.630005F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(411.122009F, -142.988007F), new Vector2(411.368011F, -142.003998F), new Vector2(411.368011F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(411.368011F, -139.772003F), new Vector2(411.127991F, -138.770004F), new Vector2(410.64801F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(410.167999F, -137.018005F), new Vector2(409.507996F, -136.328003F), new Vector2(408.667999F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(407.828003F, -135.320007F), new Vector2(406.855988F, -135.067993F), new Vector2(405.752014F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(404.696014F, -135.067993F), new Vector2(403.747986F, -135.320007F), new Vector2(402.90799F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(410.306F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(411.661987F, -133.916F), new Vector2(412.735992F, -134.990005F), new Vector2(413.528015F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(414.320007F, -137.701996F), new Vector2(414.716003F, -139.220001F), new Vector2(414.716003F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(414.716003F, -142.556F), new Vector2(414.320007F, -144.056F), new Vector2(413.528015F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(412.735992F, -146.744003F), new Vector2(411.661987F, -147.806F), new Vector2(410.306F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(408.950012F, -149.365997F), new Vector2(407.432007F, -149.755997F), new Vector2(405.752014F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(404.096008F, -149.755997F), new Vector2(402.596008F, -149.360001F), new Vector2(401.252014F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(399.90799F, -147.776001F), new Vector2(398.839996F, -146.714005F), new Vector2(398.048004F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(397.256012F, -144.050003F), new Vector2(396.859985F, -142.556F), new Vector2(396.859985F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(396.859985F, -139.220001F), new Vector2(397.256012F, -137.701996F), new Vector2(398.048004F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(398.839996F, -134.990005F), new Vector2(399.90799F, -133.916F), new Vector2(401.252014F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(402.596008F, -132.332001F), new Vector2(404.096008F, -131.936005F), new Vector2(405.752014F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(407.432007F, -131.936005F), new Vector2(408.950012F, -132.332001F), new Vector2(410.306F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1003()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(392.197998F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(393.338013F, -133.195999F), new Vector2(394.303986F, -133.904007F), new Vector2(395.096008F, -134.815994F));
+ builder.AddLine(new Vector2(392.971985F, -136.975998F));
+ builder.AddCubicBezier(new Vector2(392.420013F, -136.352005F), new Vector2(391.765991F, -135.878006F), new Vector2(391.01001F, -135.554001F));
+ builder.AddCubicBezier(new Vector2(390.253998F, -135.229996F), new Vector2(389.420013F, -135.067993F), new Vector2(388.507996F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(387.428009F, -135.067993F), new Vector2(386.467987F, -135.320007F), new Vector2(385.627991F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(384.787994F, -136.328003F), new Vector2(384.127991F, -137.011993F), new Vector2(383.64801F, -137.876007F));
+ builder.AddCubicBezier(new Vector2(383.167999F, -138.740005F), new Vector2(382.928009F, -139.735992F), new Vector2(382.928009F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(382.928009F, -141.992004F), new Vector2(383.167999F, -142.988007F), new Vector2(383.64801F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(384.127991F, -144.716003F), new Vector2(384.787994F, -145.393997F), new Vector2(385.627991F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(386.467987F, -146.378006F), new Vector2(387.428009F, -146.623993F), new Vector2(388.507996F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(389.395996F, -146.623993F), new Vector2(390.223999F, -146.462006F), new Vector2(390.992004F, -146.138F));
+ builder.AddCubicBezier(new Vector2(391.76001F, -145.813995F), new Vector2(392.40799F, -145.339996F), new Vector2(392.936005F, -144.716003F));
+ builder.AddLine(new Vector2(395.096008F, -146.876007F));
+ builder.AddCubicBezier(new Vector2(394.279999F, -147.811996F), new Vector2(393.308014F, -148.526001F), new Vector2(392.179993F, -149.018005F));
+ builder.AddCubicBezier(new Vector2(391.052002F, -149.509995F), new Vector2(389.828003F, -149.755997F), new Vector2(388.507996F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(386.828003F, -149.755997F), new Vector2(385.309998F, -149.365997F), new Vector2(383.95401F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(382.597992F, -147.806F), new Vector2(381.529999F, -146.744003F), new Vector2(380.75F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(379.970001F, -144.056F), new Vector2(379.579987F, -142.544006F), new Vector2(379.579987F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(379.579987F, -139.207993F), new Vector2(379.970001F, -137.701996F), new Vector2(380.75F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(381.529999F, -134.990005F), new Vector2(382.597992F, -133.916F), new Vector2(383.95401F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(385.309998F, -132.332001F), new Vector2(386.828003F, -131.936005F), new Vector2(388.507996F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(389.828003F, -131.936005F), new Vector2(391.058014F, -132.188004F), new Vector2(392.197998F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1004()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(368.528015F, -158F));
+ builder.AddLine(new Vector2(365.252014F, -158F));
+ builder.AddLine(new Vector2(365.252014F, -145.220001F));
+ builder.AddLine(new Vector2(365.864014F, -141.080002F));
+ builder.AddLine(new Vector2(365.252014F, -136.904007F));
+ builder.AddLine(new Vector2(365.252014F, -132.296005F));
+ builder.AddLine(new Vector2(368.528015F, -132.296005F));
+ builder.AddLine(new Vector2(368.528015F, -158F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(357.205994F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(356.377991F, -136.225998F), new Vector2(355.730011F, -136.916F), new Vector2(355.261993F, -137.804001F));
+ builder.AddCubicBezier(new Vector2(354.794006F, -138.692001F), new Vector2(354.559998F, -139.712006F), new Vector2(354.559998F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(354.559998F, -142.016006F), new Vector2(354.794006F, -143.029999F), new Vector2(355.261993F, -143.906006F));
+ builder.AddCubicBezier(new Vector2(355.730011F, -144.781998F), new Vector2(356.372009F, -145.466003F), new Vector2(357.187988F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(358.003998F, -146.449997F), new Vector2(358.951996F, -146.695999F), new Vector2(360.032013F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(361.112F, -146.695999F), new Vector2(362.059998F, -146.444F), new Vector2(362.876007F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(363.691986F, -145.436005F), new Vector2(364.328003F, -144.746002F), new Vector2(364.783997F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(365.23999F, -142.994003F), new Vector2(365.467987F, -141.979996F), new Vector2(365.467987F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(365.467987F, -139.699997F), new Vector2(365.23999F, -138.697998F), new Vector2(364.783997F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(364.328003F, -136.945999F), new Vector2(363.691986F, -136.255997F), new Vector2(362.876007F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(362.059998F, -135.248001F), new Vector2(361.112F, -134.996002F), new Vector2(360.032013F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(358.976013F, -134.996002F), new Vector2(358.033997F, -135.242004F), new Vector2(357.205994F, -135.733994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(363.019989F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(364.052002F, -133.285995F), new Vector2(364.880005F, -134.035995F), new Vector2(365.503998F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(366.127991F, -135.955994F), new Vector2(366.476013F, -137.048004F), new Vector2(366.548004F, -138.272003F));
+ builder.AddLine(new Vector2(366.548004F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(366.476013F, -144.667999F), new Vector2(366.122009F, -145.766006F), new Vector2(365.485992F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(364.850006F, -147.662003F), new Vector2(364.015991F, -148.406006F), new Vector2(362.984009F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(361.951996F, -149.485992F), new Vector2(360.787994F, -149.755997F), new Vector2(359.492004F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(357.932007F, -149.755997F), new Vector2(356.528015F, -149.360001F), new Vector2(355.279999F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(354.032013F, -147.776001F), new Vector2(353.041992F, -146.707993F), new Vector2(352.309998F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(351.578003F, -144.020004F), new Vector2(351.212006F, -142.507996F), new Vector2(351.212006F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(351.212006F, -139.147995F), new Vector2(351.578003F, -137.636002F), new Vector2(352.309998F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(353.041992F, -134.947998F), new Vector2(354.032013F, -133.886002F), new Vector2(355.279999F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(356.528015F, -132.326004F), new Vector2(357.932007F, -131.936005F), new Vector2(359.492004F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(360.812012F, -131.936005F), new Vector2(361.988007F, -132.205994F), new Vector2(363.019989F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1005()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(335.803986F, -132.296005F));
+ builder.AddLine(new Vector2(335.803986F, -149.395996F));
+ builder.AddLine(new Vector2(332.563995F, -149.395996F));
+ builder.AddLine(new Vector2(332.563995F, -132.296005F));
+ builder.AddLine(new Vector2(335.803986F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(347.899994F, -132.296005F));
+ builder.AddLine(new Vector2(347.899994F, -142.916F));
+ builder.AddCubicBezier(new Vector2(347.899994F, -144.091995F), new Vector2(347.612F, -145.201996F), new Vector2(347.036011F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(346.459991F, -147.289993F), new Vector2(345.674011F, -148.136002F), new Vector2(344.678009F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(343.682007F, -149.432007F), new Vector2(342.536011F, -149.755997F), new Vector2(341.23999F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(339.944F, -149.755997F), new Vector2(338.779999F, -149.462006F), new Vector2(337.747986F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(336.716003F, -148.285995F), new Vector2(335.911987F, -147.488007F), new Vector2(335.335999F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(334.76001F, -145.472F), new Vector2(334.471985F, -144.320007F), new Vector2(334.471985F, -143.024002F));
+ builder.AddLine(new Vector2(335.803986F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(335.803986F, -143.132004F), new Vector2(335.996002F, -143.899994F), new Vector2(336.380005F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(336.764008F, -145.244003F), new Vector2(337.291992F, -145.772003F), new Vector2(337.963989F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(338.635986F, -146.539993F), new Vector2(339.403992F, -146.731995F), new Vector2(340.268005F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(341.563995F, -146.731995F), new Vector2(342.614014F, -146.311996F), new Vector2(343.417999F, -145.472F));
+ builder.AddCubicBezier(new Vector2(344.221985F, -144.632004F), new Vector2(344.623993F, -143.563995F), new Vector2(344.623993F, -142.268005F));
+ builder.AddLine(new Vector2(344.623993F, -132.296005F));
+ builder.AddLine(new Vector2(347.899994F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1006()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(327.847992F, -132.296005F));
+ builder.AddLine(new Vector2(327.847992F, -149.395996F));
+ builder.AddLine(new Vector2(324.571991F, -149.395996F));
+ builder.AddLine(new Vector2(324.571991F, -145.220001F));
+ builder.AddLine(new Vector2(325.18399F, -141.080002F));
+ builder.AddLine(new Vector2(324.571991F, -136.904007F));
+ builder.AddLine(new Vector2(324.571991F, -132.296005F));
+ builder.AddLine(new Vector2(327.847992F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(316.544006F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(315.70401F, -136.255997F), new Vector2(315.049988F, -136.945999F), new Vector2(314.582001F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(314.114014F, -138.697998F), new Vector2(313.880005F, -139.712006F), new Vector2(313.880005F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(313.880005F, -141.992004F), new Vector2(314.114014F, -142.994003F), new Vector2(314.582001F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(315.049988F, -144.746002F), new Vector2(315.697998F, -145.436005F), new Vector2(316.526001F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(317.354004F, -146.444F), new Vector2(318.308014F, -146.695999F), new Vector2(319.388F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(320.467987F, -146.695999F), new Vector2(321.410004F, -146.449997F), new Vector2(322.213989F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(323.018005F, -145.466003F), new Vector2(323.64801F, -144.776001F), new Vector2(324.104004F, -143.888F));
+ builder.AddCubicBezier(new Vector2(324.559998F, -143F), new Vector2(324.787994F, -141.979996F), new Vector2(324.787994F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(324.787994F, -139.123993F), new Vector2(324.29599F, -137.725998F), new Vector2(323.312012F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(322.328003F, -135.542007F), new Vector2(321.032013F, -134.996002F), new Vector2(319.424011F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(318.343994F, -134.996002F), new Vector2(317.384003F, -135.248001F), new Vector2(316.544006F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(322.376007F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(323.40799F, -133.285995F), new Vector2(324.230011F, -134.035995F), new Vector2(324.84201F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(325.45401F, -135.955994F), new Vector2(325.79599F, -137.048004F), new Vector2(325.868011F, -138.272003F));
+ builder.AddLine(new Vector2(325.868011F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(325.79599F, -144.667999F), new Vector2(325.447998F, -145.766006F), new Vector2(324.824005F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(324.200012F, -147.662003F), new Vector2(323.377991F, -148.406006F), new Vector2(322.358002F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(321.338013F, -149.485992F), new Vector2(320.179993F, -149.755997F), new Vector2(318.884003F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(317.299988F, -149.755997F), new Vector2(315.877991F, -149.360001F), new Vector2(314.618011F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(313.358002F, -147.776001F), new Vector2(312.362F, -146.707993F), new Vector2(311.630005F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(310.89801F, -144.020004F), new Vector2(310.532013F, -142.507996F), new Vector2(310.532013F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(310.532013F, -139.147995F), new Vector2(310.89801F, -137.636002F), new Vector2(311.630005F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(312.362F, -134.947998F), new Vector2(313.358002F, -133.886002F), new Vector2(314.618011F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(315.877991F, -132.326004F), new Vector2(317.299988F, -131.936005F), new Vector2(318.884003F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(320.179993F, -131.936005F), new Vector2(321.343994F, -132.205994F), new Vector2(322.376007F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1007()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(298.813995F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(299.95401F, -134.276001F), new Vector2(300.523987F, -135.548004F), new Vector2(300.523987F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(300.523987F, -138.212006F), new Vector2(300.302002F, -139.063995F), new Vector2(299.858002F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(299.414001F, -140.360001F), new Vector2(298.843994F, -140.876007F), new Vector2(298.14801F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(297.451996F, -141.643997F), new Vector2(296.720001F, -141.949997F), new Vector2(295.951996F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(295.18399F, -142.406006F), new Vector2(294.446014F, -142.628006F), new Vector2(293.738007F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(293.029999F, -143.059998F), new Vector2(292.459991F, -143.324005F), new Vector2(292.028015F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(291.596008F, -143.947998F), new Vector2(291.380005F, -144.391998F), new Vector2(291.380005F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(291.380005F, -145.520004F), new Vector2(291.626007F, -145.964005F), new Vector2(292.118011F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(292.609985F, -146.636002F), new Vector2(293.324005F, -146.804001F), new Vector2(294.26001F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(295.14801F, -146.804001F), new Vector2(295.940002F, -146.636002F), new Vector2(296.635986F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(297.332001F, -145.964005F), new Vector2(297.932007F, -145.483994F), new Vector2(298.436005F, -144.860001F));
+ builder.AddLine(new Vector2(300.523987F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(299.85199F, -147.884003F), new Vector2(298.993988F, -148.585999F), new Vector2(297.950012F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(296.906006F, -149.522003F), new Vector2(295.712006F, -149.755997F), new Vector2(294.368011F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(293.096008F, -149.755997F), new Vector2(292.003998F, -149.552002F), new Vector2(291.09201F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(290.179993F, -148.735992F), new Vector2(289.477997F, -148.154007F), new Vector2(288.985992F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(288.493988F, -146.641998F), new Vector2(288.247986F, -145.748001F), new Vector2(288.247986F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(288.247986F, -143.684006F), new Vector2(288.470001F, -142.850006F), new Vector2(288.914001F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(289.358002F, -141.578003F), new Vector2(289.928009F, -141.080002F), new Vector2(290.623993F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(291.320007F, -140.360001F), new Vector2(292.058014F, -140.072006F), new Vector2(292.838013F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(293.618011F, -139.639999F), new Vector2(294.355988F, -139.417999F), new Vector2(295.052002F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(295.747986F, -138.962006F), new Vector2(296.317993F, -138.673996F), new Vector2(296.761993F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(297.205994F, -137.977997F), new Vector2(297.428009F, -137.492004F), new Vector2(297.428009F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(297.428009F, -136.244003F), new Vector2(297.152008F, -135.757996F), new Vector2(296.600006F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(296.048004F, -135.061996F), new Vector2(295.268005F, -134.888F), new Vector2(294.26001F, -134.888F));
+ builder.AddCubicBezier(new Vector2(293.252014F, -134.888F), new Vector2(292.339996F, -135.074005F), new Vector2(291.523987F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(290.708008F, -135.817993F), new Vector2(289.988007F, -136.388F), new Vector2(289.364014F, -137.156006F));
+ builder.AddLine(new Vector2(287.276001F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(287.803986F, -134.419998F), new Vector2(288.421997F, -133.862F), new Vector2(289.130005F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(289.838013F, -132.925995F), new Vector2(290.623993F, -132.565994F), new Vector2(291.488007F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(292.35199F, -132.061996F), new Vector2(293.264008F, -131.936005F), new Vector2(294.223999F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(296.144012F, -131.936005F), new Vector2(297.674011F, -132.404007F), new Vector2(298.813995F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1008()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(273.380005F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(272.540009F, -136.328003F), new Vector2(271.880005F, -137.018005F), new Vector2(271.399994F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(270.920013F, -138.770004F), new Vector2(270.679993F, -139.772003F), new Vector2(270.679993F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(270.679993F, -142.003998F), new Vector2(270.920013F, -142.988007F), new Vector2(271.399994F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(271.880005F, -144.716003F), new Vector2(272.540009F, -145.393997F), new Vector2(273.380005F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(274.220001F, -146.378006F), new Vector2(275.167999F, -146.623993F), new Vector2(276.223999F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(277.328003F, -146.623993F), new Vector2(278.294006F, -146.378006F), new Vector2(279.122009F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(279.950012F, -145.393997F), new Vector2(280.609985F, -144.716003F), new Vector2(281.10199F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(281.593994F, -142.988007F), new Vector2(281.839996F, -142.003998F), new Vector2(281.839996F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(281.839996F, -139.772003F), new Vector2(281.600006F, -138.770004F), new Vector2(281.119995F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(280.640015F, -137.018005F), new Vector2(279.980011F, -136.328003F), new Vector2(279.140015F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(278.299988F, -135.320007F), new Vector2(277.328003F, -135.067993F), new Vector2(276.223999F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(275.167999F, -135.067993F), new Vector2(274.220001F, -135.320007F), new Vector2(273.380005F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(280.778015F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(282.134003F, -133.916F), new Vector2(283.208008F, -134.990005F), new Vector2(284F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(284.791992F, -137.701996F), new Vector2(285.187988F, -139.220001F), new Vector2(285.187988F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(285.187988F, -142.556F), new Vector2(284.791992F, -144.056F), new Vector2(284F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(283.208008F, -146.744003F), new Vector2(282.134003F, -147.806F), new Vector2(280.778015F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(279.421997F, -149.365997F), new Vector2(277.903992F, -149.755997F), new Vector2(276.223999F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(274.567993F, -149.755997F), new Vector2(273.067993F, -149.360001F), new Vector2(271.723999F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(270.380005F, -147.776001F), new Vector2(269.312012F, -146.714005F), new Vector2(268.519989F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(267.727997F, -144.050003F), new Vector2(267.332001F, -142.556F), new Vector2(267.332001F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(267.332001F, -139.220001F), new Vector2(267.727997F, -137.701996F), new Vector2(268.519989F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(269.312012F, -134.990005F), new Vector2(270.380005F, -133.916F), new Vector2(271.723999F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(273.067993F, -132.332001F), new Vector2(274.567993F, -131.936005F), new Vector2(276.223999F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(277.903992F, -131.936005F), new Vector2(279.421997F, -132.332001F), new Vector2(280.778015F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1009()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(263.731995F, -132.296005F));
+ builder.AddLine(new Vector2(263.731995F, -149.395996F));
+ builder.AddLine(new Vector2(260.455994F, -149.395996F));
+ builder.AddLine(new Vector2(260.455994F, -145.220001F));
+ builder.AddLine(new Vector2(261.067993F, -141.080002F));
+ builder.AddLine(new Vector2(260.455994F, -136.904007F));
+ builder.AddLine(new Vector2(260.455994F, -132.296005F));
+ builder.AddLine(new Vector2(263.731995F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(252.427994F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(251.587997F, -136.255997F), new Vector2(250.934006F, -136.945999F), new Vector2(250.466003F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(249.998001F, -138.697998F), new Vector2(249.764008F, -139.712006F), new Vector2(249.764008F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(249.764008F, -141.992004F), new Vector2(249.998001F, -142.994003F), new Vector2(250.466003F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(250.934006F, -144.746002F), new Vector2(251.582001F, -145.436005F), new Vector2(252.410004F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(253.238007F, -146.444F), new Vector2(254.192001F, -146.695999F), new Vector2(255.272003F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(256.35199F, -146.695999F), new Vector2(257.294006F, -146.449997F), new Vector2(258.097992F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(258.902008F, -145.466003F), new Vector2(259.532013F, -144.776001F), new Vector2(259.988007F, -143.888F));
+ builder.AddCubicBezier(new Vector2(260.444F, -143F), new Vector2(260.671997F, -141.979996F), new Vector2(260.671997F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(260.671997F, -139.123993F), new Vector2(260.179993F, -137.725998F), new Vector2(259.196014F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(258.212006F, -135.542007F), new Vector2(256.915985F, -134.996002F), new Vector2(255.307999F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(254.227997F, -134.996002F), new Vector2(253.268005F, -135.248001F), new Vector2(252.427994F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(258.26001F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(259.291992F, -133.285995F), new Vector2(260.114014F, -134.035995F), new Vector2(260.726013F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(261.338013F, -135.955994F), new Vector2(261.679993F, -137.048004F), new Vector2(261.752014F, -138.272003F));
+ builder.AddLine(new Vector2(261.752014F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(261.679993F, -144.667999F), new Vector2(261.332001F, -145.766006F), new Vector2(260.708008F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(260.084015F, -147.662003F), new Vector2(259.261993F, -148.406006F), new Vector2(258.242004F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(257.221985F, -149.485992F), new Vector2(256.063995F, -149.755997F), new Vector2(254.768005F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(253.184006F, -149.755997F), new Vector2(251.761993F, -149.360001F), new Vector2(250.501999F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(249.242004F, -147.776001F), new Vector2(248.246002F, -146.707993F), new Vector2(247.514008F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(246.781998F, -144.020004F), new Vector2(246.416F, -142.507996F), new Vector2(246.416F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(246.416F, -139.147995F), new Vector2(246.781998F, -137.636002F), new Vector2(247.514008F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(248.246002F, -134.947998F), new Vector2(249.242004F, -133.886002F), new Vector2(250.501999F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(251.761993F, -132.326004F), new Vector2(253.184006F, -131.936005F), new Vector2(254.768005F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(256.063995F, -131.936005F), new Vector2(257.227997F, -132.205994F), new Vector2(258.26001F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1010()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(231.007996F, -132.296005F));
+ builder.AddLine(new Vector2(231.007996F, -158F));
+ builder.AddLine(new Vector2(227.768005F, -158F));
+ builder.AddLine(new Vector2(227.768005F, -132.296005F));
+ builder.AddLine(new Vector2(231.007996F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(243.104004F, -132.296005F));
+ builder.AddLine(new Vector2(243.104004F, -142.916F));
+ builder.AddCubicBezier(new Vector2(243.104004F, -144.259995F), new Vector2(242.815994F, -145.447998F), new Vector2(242.240005F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(241.664001F, -147.511993F), new Vector2(240.878006F, -148.315994F), new Vector2(239.882004F, -148.891998F));
+ builder.AddCubicBezier(new Vector2(238.886002F, -149.468002F), new Vector2(237.740005F, -149.755997F), new Vector2(236.444F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(235.147995F, -149.755997F), new Vector2(233.983994F, -149.462006F), new Vector2(232.951996F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(231.919998F, -148.285995F), new Vector2(231.115997F, -147.488007F), new Vector2(230.539993F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(229.964005F, -145.472F), new Vector2(229.675995F, -144.320007F), new Vector2(229.675995F, -143.024002F));
+ builder.AddLine(new Vector2(231.007996F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(231.007996F, -143.132004F), new Vector2(231.199997F, -143.899994F), new Vector2(231.584F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(231.968002F, -145.244003F), new Vector2(232.496002F, -145.772003F), new Vector2(233.167999F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(233.839996F, -146.539993F), new Vector2(234.608002F, -146.731995F), new Vector2(235.472F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(236.768005F, -146.731995F), new Vector2(237.817993F, -146.311996F), new Vector2(238.621994F, -145.472F));
+ builder.AddCubicBezier(new Vector2(239.425995F, -144.632004F), new Vector2(239.828003F, -143.563995F), new Vector2(239.828003F, -142.268005F));
+ builder.AddLine(new Vector2(239.828003F, -132.296005F));
+ builder.AddLine(new Vector2(243.104004F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1011()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(221.666F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(222.806F, -133.195999F), new Vector2(223.772003F, -133.904007F), new Vector2(224.563995F, -134.815994F));
+ builder.AddLine(new Vector2(222.440002F, -136.975998F));
+ builder.AddCubicBezier(new Vector2(221.888F, -136.352005F), new Vector2(221.233994F, -135.878006F), new Vector2(220.477997F, -135.554001F));
+ builder.AddCubicBezier(new Vector2(219.722F, -135.229996F), new Vector2(218.888F, -135.067993F), new Vector2(217.975998F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(216.895996F, -135.067993F), new Vector2(215.936005F, -135.320007F), new Vector2(215.095993F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(214.255997F, -136.328003F), new Vector2(213.595993F, -137.011993F), new Vector2(213.115997F, -137.876007F));
+ builder.AddCubicBezier(new Vector2(212.636002F, -138.740005F), new Vector2(212.395996F, -139.735992F), new Vector2(212.395996F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(212.395996F, -141.992004F), new Vector2(212.636002F, -142.988007F), new Vector2(213.115997F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(213.595993F, -144.716003F), new Vector2(214.255997F, -145.393997F), new Vector2(215.095993F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(215.936005F, -146.378006F), new Vector2(216.895996F, -146.623993F), new Vector2(217.975998F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(218.863998F, -146.623993F), new Vector2(219.692001F, -146.462006F), new Vector2(220.460007F, -146.138F));
+ builder.AddCubicBezier(new Vector2(221.227997F, -145.813995F), new Vector2(221.876007F, -145.339996F), new Vector2(222.404007F, -144.716003F));
+ builder.AddLine(new Vector2(224.563995F, -146.876007F));
+ builder.AddCubicBezier(new Vector2(223.748001F, -147.811996F), new Vector2(222.776001F, -148.526001F), new Vector2(221.647995F, -149.018005F));
+ builder.AddCubicBezier(new Vector2(220.520004F, -149.509995F), new Vector2(219.296005F, -149.755997F), new Vector2(217.975998F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(216.296005F, -149.755997F), new Vector2(214.778F, -149.365997F), new Vector2(213.421997F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(212.065994F, -147.806F), new Vector2(210.998001F, -146.744003F), new Vector2(210.218002F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(209.438004F, -144.056F), new Vector2(209.048004F, -142.544006F), new Vector2(209.048004F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(209.048004F, -139.207993F), new Vector2(209.438004F, -137.701996F), new Vector2(210.218002F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(210.998001F, -134.990005F), new Vector2(212.065994F, -133.916F), new Vector2(213.421997F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(214.778F, -132.332001F), new Vector2(216.296005F, -131.936005F), new Vector2(217.975998F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(219.296005F, -131.936005F), new Vector2(220.526001F, -132.188004F), new Vector2(221.666F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1012()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(195.115997F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(196.292007F, -133.195999F), new Vector2(197.300003F, -133.927994F), new Vector2(198.139999F, -134.888F));
+ builder.AddLine(new Vector2(196.052002F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(195.475998F, -136.339996F), new Vector2(194.785995F, -135.835999F), new Vector2(193.981995F, -135.5F));
+ builder.AddCubicBezier(new Vector2(193.177994F, -135.164001F), new Vector2(192.296005F, -134.996002F), new Vector2(191.335999F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(190.184006F, -134.996002F), new Vector2(189.164001F, -135.242004F), new Vector2(188.276001F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(187.388F, -136.225998F), new Vector2(186.703995F, -136.921997F), new Vector2(186.223999F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(185.744003F, -138.722F), new Vector2(185.503998F, -139.772003F), new Vector2(185.503998F, -140.972F));
+ builder.AddCubicBezier(new Vector2(185.503998F, -142.147995F), new Vector2(185.731995F, -143.167999F), new Vector2(186.188004F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(186.643997F, -144.895996F), new Vector2(187.292007F, -145.567993F), new Vector2(188.132004F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(188.972F, -146.528F), new Vector2(189.944F, -146.768005F), new Vector2(191.048004F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(192.104004F, -146.768005F), new Vector2(193.003998F, -146.546005F), new Vector2(193.748001F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(194.492004F, -145.658005F), new Vector2(195.067993F, -145.033997F), new Vector2(195.475998F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(195.884003F, -143.425995F), new Vector2(196.087997F, -142.447998F), new Vector2(196.087997F, -141.296005F));
+ builder.AddLine(new Vector2(197.276001F, -142.339996F));
+ builder.AddLine(new Vector2(184.567993F, -142.339996F));
+ builder.AddLine(new Vector2(184.567993F, -139.639999F));
+ builder.AddLine(new Vector2(199.003998F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(199.076004F, -139.975998F), new Vector2(199.123993F, -140.281998F), new Vector2(199.147995F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(199.171997F, -140.834F), new Vector2(199.184006F, -141.091995F), new Vector2(199.184006F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(199.184006F, -142.964005F), new Vector2(198.841995F, -144.416F), new Vector2(198.158005F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(197.473999F, -146.960007F), new Vector2(196.520004F, -147.955994F), new Vector2(195.296005F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(194.072006F, -149.395996F), new Vector2(192.679993F, -149.755997F), new Vector2(191.119995F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(189.464005F, -149.755997F), new Vector2(187.970001F, -149.365997F), new Vector2(186.638F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(185.306F, -147.806F), new Vector2(184.25F, -146.744003F), new Vector2(183.470001F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(182.690002F, -144.056F), new Vector2(182.300003F, -142.544006F), new Vector2(182.300003F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(182.300003F, -139.160004F), new Vector2(182.695999F, -137.636002F), new Vector2(183.488007F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(184.279999F, -134.947998F), new Vector2(185.354004F, -133.886002F), new Vector2(186.710007F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(188.065994F, -132.326004F), new Vector2(189.608002F, -131.936005F), new Vector2(191.335999F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(192.679993F, -131.936005F), new Vector2(193.940002F, -132.188004F), new Vector2(195.115997F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1013()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(173.912003F, -145.544006F));
+ builder.AddCubicBezier(new Vector2(174.679993F, -146.311996F), new Vector2(175.664001F, -146.695999F), new Vector2(176.863998F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(177.440002F, -146.695999F), new Vector2(177.944F, -146.612F), new Vector2(178.376007F, -146.444F));
+ builder.AddCubicBezier(new Vector2(178.807999F, -146.276001F), new Vector2(179.203995F, -146F), new Vector2(179.563995F, -145.615997F));
+ builder.AddLine(new Vector2(181.688004F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(181.087997F, -148.507996F), new Vector2(180.440002F, -149.005997F), new Vector2(179.744003F, -149.306F));
+ builder.AddCubicBezier(new Vector2(179.048004F, -149.606003F), new Vector2(178.268005F, -149.755997F), new Vector2(177.404007F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(175.507996F, -149.755997F), new Vector2(174.056F, -149.108002F), new Vector2(173.048004F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(172.039993F, -146.516006F), new Vector2(171.535995F, -144.776001F), new Vector2(171.535995F, -142.591995F));
+ builder.AddLine(new Vector2(172.759995F, -142.016006F));
+ builder.AddCubicBezier(new Vector2(172.759995F, -143.600006F), new Vector2(173.143997F, -144.776001F), new Vector2(173.912003F, -145.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(172.759995F, -132.296005F));
+ builder.AddLine(new Vector2(172.759995F, -149.395996F));
+ builder.AddLine(new Vector2(169.520004F, -149.395996F));
+ builder.AddLine(new Vector2(169.520004F, -132.296005F));
+ builder.AddLine(new Vector2(172.759995F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1014()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(154.112F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(153.272003F, -136.328003F), new Vector2(152.612F, -137.018005F), new Vector2(152.132004F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(151.651993F, -138.770004F), new Vector2(151.412003F, -139.772003F), new Vector2(151.412003F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(151.412003F, -142.003998F), new Vector2(151.651993F, -142.988007F), new Vector2(152.132004F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(152.612F, -144.716003F), new Vector2(153.272003F, -145.393997F), new Vector2(154.112F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(154.951996F, -146.378006F), new Vector2(155.899994F, -146.623993F), new Vector2(156.955994F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(158.059998F, -146.623993F), new Vector2(159.026001F, -146.378006F), new Vector2(159.854004F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(160.682007F, -145.393997F), new Vector2(161.341995F, -144.716003F), new Vector2(161.834F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(162.326004F, -142.988007F), new Vector2(162.572006F, -142.003998F), new Vector2(162.572006F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(162.572006F, -139.772003F), new Vector2(162.332001F, -138.770004F), new Vector2(161.852005F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(161.371994F, -137.018005F), new Vector2(160.712006F, -136.328003F), new Vector2(159.871994F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(159.031998F, -135.320007F), new Vector2(158.059998F, -135.067993F), new Vector2(156.955994F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(155.899994F, -135.067993F), new Vector2(154.951996F, -135.320007F), new Vector2(154.112F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(161.509995F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(162.865997F, -133.916F), new Vector2(163.940002F, -134.990005F), new Vector2(164.731995F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(165.524002F, -137.701996F), new Vector2(165.919998F, -139.220001F), new Vector2(165.919998F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(165.919998F, -142.556F), new Vector2(165.524002F, -144.056F), new Vector2(164.731995F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(163.940002F, -146.744003F), new Vector2(162.865997F, -147.806F), new Vector2(161.509995F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(160.154007F, -149.365997F), new Vector2(158.636002F, -149.755997F), new Vector2(156.955994F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(155.300003F, -149.755997F), new Vector2(153.800003F, -149.360001F), new Vector2(152.455994F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(151.112F, -147.776001F), new Vector2(150.044006F, -146.714005F), new Vector2(149.251999F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(148.460007F, -144.050003F), new Vector2(148.063995F, -142.556F), new Vector2(148.063995F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(148.063995F, -139.220001F), new Vector2(148.460007F, -137.701996F), new Vector2(149.251999F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(150.044006F, -134.990005F), new Vector2(151.112F, -133.916F), new Vector2(152.455994F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(153.800003F, -132.332001F), new Vector2(155.300003F, -131.936005F), new Vector2(156.955994F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(158.636002F, -131.936005F), new Vector2(160.154007F, -132.332001F), new Vector2(161.509995F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1015()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(144.787994F, -132.296005F));
+ builder.AddLine(new Vector2(144.787994F, -143.276001F));
+ builder.AddCubicBezier(new Vector2(144.787994F, -144.619995F), new Vector2(144.494003F, -145.772003F), new Vector2(143.906006F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(143.317993F, -147.692001F), new Vector2(142.531998F, -148.436005F), new Vector2(141.548004F, -148.964005F));
+ builder.AddCubicBezier(new Vector2(140.563995F, -149.492004F), new Vector2(139.447998F, -149.755997F), new Vector2(138.199997F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(137F, -149.755997F), new Vector2(135.895996F, -149.485992F), new Vector2(134.888F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(133.880005F, -148.406006F), new Vector2(133.057999F, -147.662003F), new Vector2(132.421997F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(131.785995F, -145.766006F), new Vector2(131.432007F, -144.632004F), new Vector2(131.360001F, -143.311996F));
+ builder.AddLine(new Vector2(133.195999F, -142.628006F));
+ builder.AddCubicBezier(new Vector2(133.195999F, -143.492004F), new Vector2(133.388F, -144.223999F), new Vector2(133.772003F, -144.824005F));
+ builder.AddCubicBezier(new Vector2(134.156006F, -145.423996F), new Vector2(134.666F, -145.891998F), new Vector2(135.302002F, -146.227997F));
+ builder.AddCubicBezier(new Vector2(135.938004F, -146.563995F), new Vector2(136.651993F, -146.731995F), new Vector2(137.444F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(138.595993F, -146.731995F), new Vector2(139.561996F, -146.365997F), new Vector2(140.341995F, -145.634003F));
+ builder.AddCubicBezier(new Vector2(141.121994F, -144.901993F), new Vector2(141.511993F, -143.899994F), new Vector2(141.511993F, -142.628006F));
+ builder.AddLine(new Vector2(141.511993F, -132.296005F));
+ builder.AddLine(new Vector2(144.787994F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(133.195999F, -132.296005F));
+ builder.AddLine(new Vector2(133.195999F, -143.311996F));
+ builder.AddCubicBezier(new Vector2(133.195999F, -144.632004F), new Vector2(132.914001F, -145.772003F), new Vector2(132.350006F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(131.785995F, -147.692001F), new Vector2(131.018005F, -148.436005F), new Vector2(130.046005F, -148.964005F));
+ builder.AddCubicBezier(new Vector2(129.074005F, -149.492004F), new Vector2(127.987999F, -149.755997F), new Vector2(126.788002F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(125.564003F, -149.755997F), new Vector2(124.459999F, -149.485992F), new Vector2(123.475998F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(122.491997F, -148.406006F), new Vector2(121.718002F, -147.656006F), new Vector2(121.153999F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(120.589996F, -145.735992F), new Vector2(120.307999F, -144.608002F), new Vector2(120.307999F, -143.311996F));
+ builder.AddLine(new Vector2(121.639999F, -142.628006F));
+ builder.AddCubicBezier(new Vector2(121.639999F, -143.492004F), new Vector2(121.832001F, -144.223999F), new Vector2(122.216003F, -144.824005F));
+ builder.AddCubicBezier(new Vector2(122.599998F, -145.423996F), new Vector2(123.103996F, -145.891998F), new Vector2(123.727997F, -146.227997F));
+ builder.AddCubicBezier(new Vector2(124.351997F, -146.563995F), new Vector2(125.059998F, -146.731995F), new Vector2(125.851997F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(127.028F, -146.731995F), new Vector2(128.005997F, -146.365997F), new Vector2(128.785995F, -145.634003F));
+ builder.AddCubicBezier(new Vector2(129.565994F, -144.901993F), new Vector2(129.955994F, -143.899994F), new Vector2(129.955994F, -142.628006F));
+ builder.AddLine(new Vector2(129.955994F, -132.296005F));
+ builder.AddLine(new Vector2(133.195999F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(121.639999F, -132.296005F));
+ builder.AddLine(new Vector2(121.639999F, -149.395996F));
+ builder.AddLine(new Vector2(118.400002F, -149.395996F));
+ builder.AddLine(new Vector2(118.400002F, -132.296005F));
+ builder.AddLine(new Vector2(121.639999F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1016()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(103.351997F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(104.528F, -133.195999F), new Vector2(105.536003F, -133.927994F), new Vector2(106.375999F, -134.888F));
+ builder.AddLine(new Vector2(104.288002F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(103.711998F, -136.339996F), new Vector2(103.022003F, -135.835999F), new Vector2(102.218002F, -135.5F));
+ builder.AddCubicBezier(new Vector2(101.414001F, -135.164001F), new Vector2(100.531998F, -134.996002F), new Vector2(99.5719986F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(98.4199982F, -134.996002F), new Vector2(97.4000015F, -135.242004F), new Vector2(96.512001F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(95.6240005F, -136.225998F), new Vector2(94.9400024F, -136.921997F), new Vector2(94.4599991F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(93.9800034F, -138.722F), new Vector2(93.7399979F, -139.772003F), new Vector2(93.7399979F, -140.972F));
+ builder.AddCubicBezier(new Vector2(93.7399979F, -142.147995F), new Vector2(93.9680023F, -143.167999F), new Vector2(94.4240036F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(94.8799973F, -144.895996F), new Vector2(95.5279999F, -145.567993F), new Vector2(96.3679962F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(97.2080002F, -146.528F), new Vector2(98.1800003F, -146.768005F), new Vector2(99.2839966F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(100.339996F, -146.768005F), new Vector2(101.239998F, -146.546005F), new Vector2(101.984001F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(102.727997F, -145.658005F), new Vector2(103.304001F, -145.033997F), new Vector2(103.711998F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(104.120003F, -143.425995F), new Vector2(104.323997F, -142.447998F), new Vector2(104.323997F, -141.296005F));
+ builder.AddLine(new Vector2(105.512001F, -142.339996F));
+ builder.AddLine(new Vector2(92.8040009F, -142.339996F));
+ builder.AddLine(new Vector2(92.8040009F, -139.639999F));
+ builder.AddLine(new Vector2(107.239998F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(107.311996F, -139.975998F), new Vector2(107.360001F, -140.281998F), new Vector2(107.384003F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(107.407997F, -140.834F), new Vector2(107.419998F, -141.091995F), new Vector2(107.419998F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(107.419998F, -142.964005F), new Vector2(107.078003F, -144.416F), new Vector2(106.393997F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(105.709999F, -146.960007F), new Vector2(104.755997F, -147.955994F), new Vector2(103.531998F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(102.307999F, -149.395996F), new Vector2(100.916F, -149.755997F), new Vector2(99.3560028F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(97.6999969F, -149.755997F), new Vector2(96.2060013F, -149.365997F), new Vector2(94.8740005F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(93.5419998F, -147.806F), new Vector2(92.4860001F, -146.744003F), new Vector2(91.7060013F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(90.9260025F, -144.056F), new Vector2(90.5360031F, -142.544006F), new Vector2(90.5360031F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(90.5360031F, -139.160004F), new Vector2(90.9319992F, -137.636002F), new Vector2(91.723999F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(92.5159988F, -134.947998F), new Vector2(93.5899963F, -133.886002F), new Vector2(94.9459991F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(96.302002F, -132.326004F), new Vector2(97.8440018F, -131.936005F), new Vector2(99.5719986F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(100.916F, -131.936005F), new Vector2(102.176003F, -132.188004F), new Vector2(103.351997F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1017()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(86.3059998F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(87.4459991F, -134.276001F), new Vector2(88.0159988F, -135.548004F), new Vector2(88.0159988F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(88.0159988F, -138.212006F), new Vector2(87.7939987F, -139.063995F), new Vector2(87.3499985F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(86.9059982F, -140.360001F), new Vector2(86.3359985F, -140.876007F), new Vector2(85.6399994F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(84.9440002F, -141.643997F), new Vector2(84.211998F, -141.949997F), new Vector2(83.4440002F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(82.6760025F, -142.406006F), new Vector2(81.9380035F, -142.628006F), new Vector2(81.2300034F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(80.5220032F, -143.059998F), new Vector2(79.9520035F, -143.324005F), new Vector2(79.5199966F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(79.0879974F, -143.947998F), new Vector2(78.8720016F, -144.391998F), new Vector2(78.8720016F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(78.8720016F, -145.520004F), new Vector2(79.1179962F, -145.964005F), new Vector2(79.6100006F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(80.1019974F, -146.636002F), new Vector2(80.8160019F, -146.804001F), new Vector2(81.7519989F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(82.6399994F, -146.804001F), new Vector2(83.4319992F, -146.636002F), new Vector2(84.1279984F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(84.8239975F, -145.964005F), new Vector2(85.4240036F, -145.483994F), new Vector2(85.9280014F, -144.860001F));
+ builder.AddLine(new Vector2(88.0159988F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(87.3440018F, -147.884003F), new Vector2(86.4860001F, -148.585999F), new Vector2(85.4420013F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(84.3980026F, -149.522003F), new Vector2(83.2040024F, -149.755997F), new Vector2(81.8600006F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(80.5879974F, -149.755997F), new Vector2(79.4960022F, -149.552002F), new Vector2(78.5839996F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(77.6719971F, -148.735992F), new Vector2(76.9700012F, -148.154007F), new Vector2(76.4779968F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(75.9860001F, -146.641998F), new Vector2(75.7399979F, -145.748001F), new Vector2(75.7399979F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(75.7399979F, -143.684006F), new Vector2(75.961998F, -142.850006F), new Vector2(76.4059982F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(76.8499985F, -141.578003F), new Vector2(77.4199982F, -141.080002F), new Vector2(78.1159973F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(78.8119965F, -140.360001F), new Vector2(79.5500031F, -140.072006F), new Vector2(80.3300018F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(81.1100006F, -139.639999F), new Vector2(81.8479996F, -139.417999F), new Vector2(82.5439987F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(83.2399979F, -138.962006F), new Vector2(83.8099976F, -138.673996F), new Vector2(84.2539978F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(84.697998F, -137.977997F), new Vector2(84.9199982F, -137.492004F), new Vector2(84.9199982F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(84.9199982F, -136.244003F), new Vector2(84.6439972F, -135.757996F), new Vector2(84.0920029F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(83.5400009F, -135.061996F), new Vector2(82.7600021F, -134.888F), new Vector2(81.7519989F, -134.888F));
+ builder.AddCubicBezier(new Vector2(80.7440033F, -134.888F), new Vector2(79.8320007F, -135.074005F), new Vector2(79.0159988F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(78.1999969F, -135.817993F), new Vector2(77.4800034F, -136.388F), new Vector2(76.8560028F, -137.156006F));
+ builder.AddLine(new Vector2(74.7679977F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(75.2959976F, -134.419998F), new Vector2(75.9140015F, -133.862F), new Vector2(76.6220016F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(77.3300018F, -132.925995F), new Vector2(78.1159973F, -132.565994F), new Vector2(78.9800034F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(79.8440018F, -132.061996F), new Vector2(80.7559967F, -131.936005F), new Vector2(81.7160034F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(83.6360016F, -131.936005F), new Vector2(85.1660004F, -132.404007F), new Vector2(86.3059998F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1018()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(68.3960037F, -132.925995F));
+ builder.AddCubicBezier(new Vector2(69.5F, -133.537994F), new Vector2(70.3639984F, -134.408005F), new Vector2(70.987999F, -135.535995F));
+ builder.AddCubicBezier(new Vector2(71.6119995F, -136.664001F), new Vector2(71.9240036F, -137.972F), new Vector2(71.9240036F, -139.460007F));
+ builder.AddLine(new Vector2(71.9240036F, -149.395996F));
+ builder.AddLine(new Vector2(68.6839981F, -149.395996F));
+ builder.AddLine(new Vector2(68.6839981F, -139.604004F));
+ builder.AddCubicBezier(new Vector2(68.6839981F, -138.188004F), new Vector2(68.3239975F, -137.078003F), new Vector2(67.6039963F, -136.274002F));
+ builder.AddCubicBezier(new Vector2(66.8840027F, -135.470001F), new Vector2(65.8880005F, -135.067993F), new Vector2(64.6159973F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(63.776001F, -135.067993F), new Vector2(63.0439987F, -135.248001F), new Vector2(62.4199982F, -135.608002F));
+ builder.AddCubicBezier(new Vector2(61.7960014F, -135.968002F), new Vector2(61.3219986F, -136.490005F), new Vector2(60.9980011F, -137.173996F));
+ builder.AddCubicBezier(new Vector2(60.6739998F, -137.858002F), new Vector2(60.512001F, -138.667999F), new Vector2(60.512001F, -139.604004F));
+ builder.AddLine(new Vector2(60.512001F, -149.395996F));
+ builder.AddLine(new Vector2(57.2719994F, -149.395996F));
+ builder.AddLine(new Vector2(57.2719994F, -139.460007F));
+ builder.AddCubicBezier(new Vector2(57.2719994F, -137.972F), new Vector2(57.5839996F, -136.664001F), new Vector2(58.2080002F, -135.535995F));
+ builder.AddCubicBezier(new Vector2(58.8320007F, -134.408005F), new Vector2(59.7019997F, -133.537994F), new Vector2(60.8180008F, -132.925995F));
+ builder.AddCubicBezier(new Vector2(61.9339981F, -132.313995F), new Vector2(63.2000008F, -132.007996F), new Vector2(64.6159973F, -132.007996F));
+ builder.AddCubicBezier(new Vector2(66.0319977F, -132.007996F), new Vector2(67.2919998F, -132.313995F), new Vector2(68.3960037F, -132.925995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1019()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(52.987999F, -132.296005F));
+ builder.AddLine(new Vector2(52.987999F, -149.395996F));
+ builder.AddLine(new Vector2(49.7120018F, -149.395996F));
+ builder.AddLine(new Vector2(49.7120018F, -145.220001F));
+ builder.AddLine(new Vector2(50.3240013F, -141.080002F));
+ builder.AddLine(new Vector2(49.7120018F, -136.904007F));
+ builder.AddLine(new Vector2(49.7120018F, -132.296005F));
+ builder.AddLine(new Vector2(52.987999F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(41.6839981F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(40.8440018F, -136.255997F), new Vector2(40.1899986F, -136.945999F), new Vector2(39.7220001F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(39.2540016F, -138.697998F), new Vector2(39.0200005F, -139.712006F), new Vector2(39.0200005F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(39.0200005F, -141.992004F), new Vector2(39.2540016F, -142.994003F), new Vector2(39.7220001F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(40.1899986F, -144.746002F), new Vector2(40.8380013F, -145.436005F), new Vector2(41.6660004F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(42.4939995F, -146.444F), new Vector2(43.4480019F, -146.695999F), new Vector2(44.5279999F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(45.6080017F, -146.695999F), new Vector2(46.5499992F, -146.449997F), new Vector2(47.3540001F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(48.1580009F, -145.466003F), new Vector2(48.7879982F, -144.776001F), new Vector2(49.2439995F, -143.888F));
+ builder.AddCubicBezier(new Vector2(49.7000008F, -143F), new Vector2(49.9280014F, -141.979996F), new Vector2(49.9280014F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(49.9280014F, -139.123993F), new Vector2(49.4360008F, -137.725998F), new Vector2(48.4519997F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(47.4679985F, -135.542007F), new Vector2(46.1720009F, -134.996002F), new Vector2(44.5639992F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(43.4840012F, -134.996002F), new Vector2(42.5239983F, -135.248001F), new Vector2(41.6839981F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(47.5159988F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(48.5480003F, -133.285995F), new Vector2(49.3699989F, -134.035995F), new Vector2(49.9819984F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(50.5940018F, -135.955994F), new Vector2(50.9360008F, -137.048004F), new Vector2(51.0079994F, -138.272003F));
+ builder.AddLine(new Vector2(51.0079994F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(50.9360008F, -144.667999F), new Vector2(50.5880013F, -145.766006F), new Vector2(49.9640007F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(49.3400002F, -147.662003F), new Vector2(48.5180016F, -148.406006F), new Vector2(47.4980011F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(46.4780006F, -149.485992F), new Vector2(45.3199997F, -149.755997F), new Vector2(44.0239983F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(42.4399986F, -149.755997F), new Vector2(41.0180016F, -149.360001F), new Vector2(39.7579994F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(38.4980011F, -147.776001F), new Vector2(37.5019989F, -146.707993F), new Vector2(36.7700005F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(36.0379982F, -144.020004F), new Vector2(35.6720009F, -142.507996F), new Vector2(35.6720009F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(35.6720009F, -139.147995F), new Vector2(36.0379982F, -137.636002F), new Vector2(36.7700005F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(37.5019989F, -134.947998F), new Vector2(38.4980011F, -133.886002F), new Vector2(39.7579994F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(41.0180016F, -132.326004F), new Vector2(42.4399986F, -131.936005F), new Vector2(44.0239983F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(45.3199997F, -131.936005F), new Vector2(46.4840012F, -132.205994F), new Vector2(47.5159988F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1020()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(30.9740009F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(32.1139984F, -133.195999F), new Vector2(33.0800018F, -133.904007F), new Vector2(33.8720016F, -134.815994F));
+ builder.AddLine(new Vector2(31.7479992F, -136.975998F));
+ builder.AddCubicBezier(new Vector2(31.1959991F, -136.352005F), new Vector2(30.5419998F, -135.878006F), new Vector2(29.7859993F, -135.554001F));
+ builder.AddCubicBezier(new Vector2(29.0300007F, -135.229996F), new Vector2(28.1959991F, -135.067993F), new Vector2(27.2840004F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(26.2040005F, -135.067993F), new Vector2(25.2439995F, -135.320007F), new Vector2(24.4039993F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(23.5639992F, -136.328003F), new Vector2(22.9039993F, -137.011993F), new Vector2(22.4239998F, -137.876007F));
+ builder.AddCubicBezier(new Vector2(21.9440002F, -138.740005F), new Vector2(21.7040005F, -139.735992F), new Vector2(21.7040005F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(21.7040005F, -141.992004F), new Vector2(21.9440002F, -142.988007F), new Vector2(22.4239998F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(22.9039993F, -144.716003F), new Vector2(23.5639992F, -145.393997F), new Vector2(24.4039993F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(25.2439995F, -146.378006F), new Vector2(26.2040005F, -146.623993F), new Vector2(27.2840004F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(28.1720009F, -146.623993F), new Vector2(29F, -146.462006F), new Vector2(29.7679996F, -146.138F));
+ builder.AddCubicBezier(new Vector2(30.5359993F, -145.813995F), new Vector2(31.184F, -145.339996F), new Vector2(31.7119999F, -144.716003F));
+ builder.AddLine(new Vector2(33.8720016F, -146.876007F));
+ builder.AddCubicBezier(new Vector2(33.0559998F, -147.811996F), new Vector2(32.0839996F, -148.526001F), new Vector2(30.9559994F, -149.018005F));
+ builder.AddCubicBezier(new Vector2(29.8279991F, -149.509995F), new Vector2(28.6040001F, -149.755997F), new Vector2(27.2840004F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(25.6040001F, -149.755997F), new Vector2(24.0860004F, -149.365997F), new Vector2(22.7299995F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(21.3740005F, -147.806F), new Vector2(20.3059998F, -146.744003F), new Vector2(19.5259991F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(18.7460003F, -144.056F), new Vector2(18.3560009F, -142.544006F), new Vector2(18.3560009F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(18.3560009F, -139.207993F), new Vector2(18.7460003F, -137.701996F), new Vector2(19.5259991F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(20.3059998F, -134.990005F), new Vector2(21.3740005F, -133.916F), new Vector2(22.7299995F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(24.0860004F, -132.332001F), new Vector2(25.6040001F, -131.936005F), new Vector2(27.2840004F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(28.6040001F, -131.936005F), new Vector2(29.8339996F, -132.188004F), new Vector2(30.9740009F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1021()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(7.26800013F, -132.296005F));
+ builder.AddLine(new Vector2(7.26800013F, -158F));
+ builder.AddLine(new Vector2(4.02799988F, -158F));
+ builder.AddLine(new Vector2(4.02799988F, -132.296005F));
+ builder.AddLine(new Vector2(7.26800013F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1022()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-0.723999977F, -132.296005F));
+ builder.AddLine(new Vector2(-0.723999977F, -158F));
+ builder.AddLine(new Vector2(-3.96399999F, -158F));
+ builder.AddLine(new Vector2(-3.96399999F, -132.296005F));
+ builder.AddLine(new Vector2(-0.723999977F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1023()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-8.89599991F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-8.51200008F, -153.806F), new Vector2(-8.31999969F, -154.304001F), new Vector2(-8.31999969F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-8.31999969F, -155.479996F), new Vector2(-8.51200008F, -155.966003F), new Vector2(-8.89599991F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-9.27999973F, -156.757996F), new Vector2(-9.77200031F, -156.955994F), new Vector2(-10.3719997F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(-10.9720001F, -156.955994F), new Vector2(-11.4639997F, -156.757996F), new Vector2(-11.8479996F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-12.2320004F, -155.966003F), new Vector2(-12.4239998F, -155.479996F), new Vector2(-12.4239998F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-12.4239998F, -154.304001F), new Vector2(-12.2320004F, -153.806F), new Vector2(-11.8479996F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-11.4639997F, -153.014008F), new Vector2(-10.9720001F, -152.815994F), new Vector2(-10.3719997F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(-9.77200031F, -152.815994F), new Vector2(-9.27999973F, -153.014008F), new Vector2(-8.89599991F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-8.75199986F, -132.296005F));
+ builder.AddLine(new Vector2(-8.75199986F, -149.395996F));
+ builder.AddLine(new Vector2(-12.0279999F, -149.395996F));
+ builder.AddLine(new Vector2(-12.0279999F, -132.296005F));
+ builder.AddLine(new Vector2(-8.75199986F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1024()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-31.9720001F, -132.296005F));
+ builder.AddLine(new Vector2(-27.0039997F, -145.184006F));
+ builder.AddLine(new Vector2(-28.1919994F, -145.184006F));
+ builder.AddLine(new Vector2(-23.2600002F, -132.296005F));
+ builder.AddLine(new Vector2(-21.3519993F, -132.296005F));
+ builder.AddLine(new Vector2(-14.6199999F, -149.395996F));
+ builder.AddLine(new Vector2(-18.0039997F, -149.395996F));
+ builder.AddLine(new Vector2(-22.8999996F, -136.076004F));
+ builder.AddLine(new Vector2(-21.8199997F, -136.076004F));
+ builder.AddLine(new Vector2(-26.6800003F, -149.395996F));
+ builder.AddLine(new Vector2(-28.552F, -149.395996F));
+ builder.AddLine(new Vector2(-33.4119987F, -136.076004F));
+ builder.AddLine(new Vector2(-32.3320007F, -136.076004F));
+ builder.AddLine(new Vector2(-37.2280006F, -149.395996F));
+ builder.AddLine(new Vector2(-40.6119995F, -149.395996F));
+ builder.AddLine(new Vector2(-33.8800011F, -132.296005F));
+ builder.AddLine(new Vector2(-31.9720001F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1025()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-62.6800003F, -132.296005F));
+ builder.AddLine(new Vector2(-62.6800003F, -158F));
+ builder.AddLine(new Vector2(-65.9199982F, -158F));
+ builder.AddLine(new Vector2(-65.9199982F, -132.296005F));
+ builder.AddLine(new Vector2(-62.6800003F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-50.5839996F, -132.296005F));
+ builder.AddLine(new Vector2(-50.5839996F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-50.5839996F, -144.259995F), new Vector2(-50.8720016F, -145.447998F), new Vector2(-51.4480019F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-52.0239983F, -147.511993F), new Vector2(-52.8100014F, -148.315994F), new Vector2(-53.8059998F, -148.891998F));
+ builder.AddCubicBezier(new Vector2(-54.8019981F, -149.468002F), new Vector2(-55.9480019F, -149.755997F), new Vector2(-57.2439995F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-58.5400009F, -149.755997F), new Vector2(-59.7039986F, -149.462006F), new Vector2(-60.7360001F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-61.7680016F, -148.285995F), new Vector2(-62.5719986F, -147.488007F), new Vector2(-63.1479988F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-63.723999F, -145.472F), new Vector2(-64.012001F, -144.320007F), new Vector2(-64.012001F, -143.024002F));
+ builder.AddLine(new Vector2(-62.6800003F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-62.6800003F, -143.132004F), new Vector2(-62.487999F, -143.899994F), new Vector2(-62.1040001F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-61.7200012F, -145.244003F), new Vector2(-61.1920013F, -145.772003F), new Vector2(-60.5200005F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-59.8479996F, -146.539993F), new Vector2(-59.0800018F, -146.731995F), new Vector2(-58.2159996F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-56.9199982F, -146.731995F), new Vector2(-55.8699989F, -146.311996F), new Vector2(-55.0660019F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-54.262001F, -144.632004F), new Vector2(-53.8600006F, -143.563995F), new Vector2(-53.8600006F, -142.268005F));
+ builder.AddLine(new Vector2(-53.8600006F, -132.296005F));
+ builder.AddLine(new Vector2(-50.5839996F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1026()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-72.0220032F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-70.8820038F, -133.195999F), new Vector2(-69.9160004F, -133.904007F), new Vector2(-69.1240005F, -134.815994F));
+ builder.AddLine(new Vector2(-71.2480011F, -136.975998F));
+ builder.AddCubicBezier(new Vector2(-71.8000031F, -136.352005F), new Vector2(-72.4540024F, -135.878006F), new Vector2(-73.2099991F, -135.554001F));
+ builder.AddCubicBezier(new Vector2(-73.9660034F, -135.229996F), new Vector2(-74.8000031F, -135.067993F), new Vector2(-75.711998F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-76.7919998F, -135.067993F), new Vector2(-77.7519989F, -135.320007F), new Vector2(-78.5920029F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-79.4319992F, -136.328003F), new Vector2(-80.0920029F, -137.011993F), new Vector2(-80.5719986F, -137.876007F));
+ builder.AddCubicBezier(new Vector2(-81.052002F, -138.740005F), new Vector2(-81.2919998F, -139.735992F), new Vector2(-81.2919998F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-81.2919998F, -141.992004F), new Vector2(-81.052002F, -142.988007F), new Vector2(-80.5719986F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-80.0920029F, -144.716003F), new Vector2(-79.4319992F, -145.393997F), new Vector2(-78.5920029F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-77.7519989F, -146.378006F), new Vector2(-76.7919998F, -146.623993F), new Vector2(-75.711998F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-74.8239975F, -146.623993F), new Vector2(-73.9960022F, -146.462006F), new Vector2(-73.2279968F, -146.138F));
+ builder.AddCubicBezier(new Vector2(-72.4599991F, -145.813995F), new Vector2(-71.8119965F, -145.339996F), new Vector2(-71.2839966F, -144.716003F));
+ builder.AddLine(new Vector2(-69.1240005F, -146.876007F));
+ builder.AddCubicBezier(new Vector2(-69.9400024F, -147.811996F), new Vector2(-70.9120026F, -148.526001F), new Vector2(-72.0400009F, -149.018005F));
+ builder.AddCubicBezier(new Vector2(-73.1679993F, -149.509995F), new Vector2(-74.3919983F, -149.755997F), new Vector2(-75.711998F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-77.3919983F, -149.755997F), new Vector2(-78.9100037F, -149.365997F), new Vector2(-80.2659988F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-81.6220016F, -147.806F), new Vector2(-82.6900024F, -146.744003F), new Vector2(-83.4700012F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-84.25F, -144.056F), new Vector2(-84.6399994F, -142.544006F), new Vector2(-84.6399994F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-84.6399994F, -139.207993F), new Vector2(-84.25F, -137.701996F), new Vector2(-83.4700012F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-82.6900024F, -134.990005F), new Vector2(-81.6220016F, -133.916F), new Vector2(-80.2659988F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-78.9100037F, -132.332001F), new Vector2(-77.3919983F, -131.936005F), new Vector2(-75.711998F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-74.3919983F, -131.936005F), new Vector2(-73.1620026F, -132.188004F), new Vector2(-72.0220032F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1027()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-88.4560013F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-88.0719986F, -153.806F), new Vector2(-87.8799973F, -154.304001F), new Vector2(-87.8799973F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-87.8799973F, -155.479996F), new Vector2(-88.0719986F, -155.966003F), new Vector2(-88.4560013F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-88.8399963F, -156.757996F), new Vector2(-89.3320007F, -156.955994F), new Vector2(-89.9319992F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(-90.5319977F, -156.955994F), new Vector2(-91.0240021F, -156.757996F), new Vector2(-91.4079971F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-91.7919998F, -155.966003F), new Vector2(-91.9840012F, -155.479996F), new Vector2(-91.9840012F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-91.9840012F, -154.304001F), new Vector2(-91.7919998F, -153.806F), new Vector2(-91.4079971F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-91.0240021F, -153.014008F), new Vector2(-90.5319977F, -152.815994F), new Vector2(-89.9319992F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(-89.3320007F, -152.815994F), new Vector2(-88.8399963F, -153.014008F), new Vector2(-88.4560013F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-88.3119965F, -132.296005F));
+ builder.AddLine(new Vector2(-88.3119965F, -149.395996F));
+ builder.AddLine(new Vector2(-91.5879974F, -149.395996F));
+ builder.AddLine(new Vector2(-91.5879974F, -132.296005F));
+ builder.AddLine(new Vector2(-88.3119965F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1028()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-108.075996F, -132.296005F));
+ builder.AddLine(new Vector2(-108.075996F, -158F));
+ builder.AddLine(new Vector2(-111.316002F, -158F));
+ builder.AddLine(new Vector2(-111.316002F, -132.296005F));
+ builder.AddLine(new Vector2(-108.075996F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-95.9800034F, -132.296005F));
+ builder.AddLine(new Vector2(-95.9800034F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-95.9800034F, -144.259995F), new Vector2(-96.2679977F, -145.447998F), new Vector2(-96.8440018F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-97.4199982F, -147.511993F), new Vector2(-98.2060013F, -148.315994F), new Vector2(-99.2020035F, -148.891998F));
+ builder.AddCubicBezier(new Vector2(-100.197998F, -149.468002F), new Vector2(-101.344002F, -149.755997F), new Vector2(-102.639999F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-103.935997F, -149.755997F), new Vector2(-105.099998F, -149.462006F), new Vector2(-106.132004F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-107.164001F, -148.285995F), new Vector2(-107.968002F, -147.488007F), new Vector2(-108.543999F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-109.120003F, -145.472F), new Vector2(-109.407997F, -144.320007F), new Vector2(-109.407997F, -143.024002F));
+ builder.AddLine(new Vector2(-108.075996F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-108.075996F, -143.132004F), new Vector2(-107.884003F, -143.899994F), new Vector2(-107.5F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-107.115997F, -145.244003F), new Vector2(-106.587997F, -145.772003F), new Vector2(-105.916F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-105.244003F, -146.539993F), new Vector2(-104.475998F, -146.731995F), new Vector2(-103.612F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-102.316002F, -146.731995F), new Vector2(-101.265999F, -146.311996F), new Vector2(-100.461998F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-99.6579971F, -144.632004F), new Vector2(-99.2559967F, -143.563995F), new Vector2(-99.2559967F, -142.268005F));
+ builder.AddLine(new Vector2(-99.2559967F, -132.296005F));
+ builder.AddLine(new Vector2(-95.9800034F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1029()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-131.548004F, -132.296005F));
+ builder.AddLine(new Vector2(-126.580002F, -145.184006F));
+ builder.AddLine(new Vector2(-127.767998F, -145.184006F));
+ builder.AddLine(new Vector2(-122.835999F, -132.296005F));
+ builder.AddLine(new Vector2(-120.928001F, -132.296005F));
+ builder.AddLine(new Vector2(-114.195999F, -149.395996F));
+ builder.AddLine(new Vector2(-117.580002F, -149.395996F));
+ builder.AddLine(new Vector2(-122.475998F, -136.076004F));
+ builder.AddLine(new Vector2(-121.396004F, -136.076004F));
+ builder.AddLine(new Vector2(-126.255997F, -149.395996F));
+ builder.AddLine(new Vector2(-128.128006F, -149.395996F));
+ builder.AddLine(new Vector2(-132.988007F, -136.076004F));
+ builder.AddLine(new Vector2(-131.908005F, -136.076004F));
+ builder.AddLine(new Vector2(-136.804001F, -149.395996F));
+ builder.AddLine(new Vector2(-140.188004F, -149.395996F));
+ builder.AddLine(new Vector2(-133.455994F, -132.296005F));
+ builder.AddLine(new Vector2(-131.548004F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1030()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-153.651993F, -127.328003F));
+ builder.AddLine(new Vector2(-151.240005F, -131.792007F));
+ builder.AddCubicBezier(new Vector2(-150.927994F, -132.391998F), new Vector2(-150.718002F, -132.878006F), new Vector2(-150.610001F, -133.25F));
+ builder.AddCubicBezier(new Vector2(-150.501999F, -133.621994F), new Vector2(-150.447998F, -133.940002F), new Vector2(-150.447998F, -134.203995F));
+ builder.AddCubicBezier(new Vector2(-150.447998F, -134.899994F), new Vector2(-150.688004F, -135.481995F), new Vector2(-151.167999F, -135.949997F));
+ builder.AddCubicBezier(new Vector2(-151.647995F, -136.417999F), new Vector2(-152.199997F, -136.651993F), new Vector2(-152.824005F, -136.651993F));
+ builder.AddCubicBezier(new Vector2(-153.520004F, -136.651993F), new Vector2(-154.095993F, -136.417999F), new Vector2(-154.552002F, -135.949997F));
+ builder.AddCubicBezier(new Vector2(-155.007996F, -135.481995F), new Vector2(-155.235992F, -134.899994F), new Vector2(-155.235992F, -134.203995F));
+ builder.AddCubicBezier(new Vector2(-155.235992F, -133.580002F), new Vector2(-155.026001F, -133.057999F), new Vector2(-154.606003F, -132.638F));
+ builder.AddCubicBezier(new Vector2(-154.186005F, -132.218002F), new Vector2(-153.723999F, -132.007996F), new Vector2(-153.220001F, -132.007996F));
+ builder.AddCubicBezier(new Vector2(-152.979996F, -132.007996F), new Vector2(-152.764008F, -132.091995F), new Vector2(-152.572006F, -132.259995F));
+ builder.AddCubicBezier(new Vector2(-152.380005F, -132.427994F), new Vector2(-152.223999F, -132.643997F), new Vector2(-152.104004F, -132.908005F));
+ builder.AddLine(new Vector2(-153.255997F, -132.619995F));
+ builder.AddLine(new Vector2(-155.488007F, -128.335999F));
+ builder.AddLine(new Vector2(-153.651993F, -127.328003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1031()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-172.156006F, -132.296005F));
+ builder.AddLine(new Vector2(-172.156006F, -149.395996F));
+ builder.AddLine(new Vector2(-175.395996F, -149.395996F));
+ builder.AddLine(new Vector2(-175.395996F, -132.296005F));
+ builder.AddLine(new Vector2(-172.156006F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-160.059998F, -132.296005F));
+ builder.AddLine(new Vector2(-160.059998F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-160.059998F, -144.091995F), new Vector2(-160.348007F, -145.201996F), new Vector2(-160.923996F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(-161.5F, -147.289993F), new Vector2(-162.285995F, -148.136002F), new Vector2(-163.281998F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(-164.278F, -149.432007F), new Vector2(-165.423996F, -149.755997F), new Vector2(-166.720001F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-168.016006F, -149.755997F), new Vector2(-169.179993F, -149.462006F), new Vector2(-170.212006F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-171.244003F, -148.285995F), new Vector2(-172.048004F, -147.488007F), new Vector2(-172.623993F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-173.199997F, -145.472F), new Vector2(-173.488007F, -144.320007F), new Vector2(-173.488007F, -143.024002F));
+ builder.AddLine(new Vector2(-172.156006F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-172.156006F, -143.132004F), new Vector2(-171.964005F, -143.899994F), new Vector2(-171.580002F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-171.195999F, -145.244003F), new Vector2(-170.667999F, -145.772003F), new Vector2(-169.996002F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-169.324005F, -146.539993F), new Vector2(-168.556F, -146.731995F), new Vector2(-167.692001F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-166.395996F, -146.731995F), new Vector2(-165.345993F, -146.311996F), new Vector2(-164.542007F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-163.738007F, -144.632004F), new Vector2(-163.335999F, -143.563995F), new Vector2(-163.335999F, -142.268005F));
+ builder.AddLine(new Vector2(-163.335999F, -132.296005F));
+ builder.AddLine(new Vector2(-160.059998F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1032()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-190.804001F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-191.643997F, -136.328003F), new Vector2(-192.304001F, -137.018005F), new Vector2(-192.783997F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-193.264008F, -138.770004F), new Vector2(-193.503998F, -139.772003F), new Vector2(-193.503998F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-193.503998F, -142.003998F), new Vector2(-193.264008F, -142.988007F), new Vector2(-192.783997F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-192.304001F, -144.716003F), new Vector2(-191.643997F, -145.393997F), new Vector2(-190.804001F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-189.964005F, -146.378006F), new Vector2(-189.016006F, -146.623993F), new Vector2(-187.960007F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-186.856003F, -146.623993F), new Vector2(-185.889999F, -146.378006F), new Vector2(-185.061996F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-184.233994F, -145.393997F), new Vector2(-183.574005F, -144.716003F), new Vector2(-183.082001F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-182.589996F, -142.988007F), new Vector2(-182.343994F, -142.003998F), new Vector2(-182.343994F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-182.343994F, -139.772003F), new Vector2(-182.584F, -138.770004F), new Vector2(-183.063995F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-183.544006F, -137.018005F), new Vector2(-184.203995F, -136.328003F), new Vector2(-185.044006F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-185.884003F, -135.320007F), new Vector2(-186.856003F, -135.067993F), new Vector2(-187.960007F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-189.016006F, -135.067993F), new Vector2(-189.964005F, -135.320007F), new Vector2(-190.804001F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-183.406006F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-182.050003F, -133.916F), new Vector2(-180.975998F, -134.990005F), new Vector2(-180.184006F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-179.391998F, -137.701996F), new Vector2(-178.996002F, -139.220001F), new Vector2(-178.996002F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-178.996002F, -142.556F), new Vector2(-179.391998F, -144.056F), new Vector2(-180.184006F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-180.975998F, -146.744003F), new Vector2(-182.050003F, -147.806F), new Vector2(-183.406006F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-184.761993F, -149.365997F), new Vector2(-186.279999F, -149.755997F), new Vector2(-187.960007F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-189.615997F, -149.755997F), new Vector2(-191.115997F, -149.360001F), new Vector2(-192.460007F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-193.804001F, -147.776001F), new Vector2(-194.871994F, -146.714005F), new Vector2(-195.664001F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(-196.455994F, -144.050003F), new Vector2(-196.852005F, -142.556F), new Vector2(-196.852005F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-196.852005F, -139.220001F), new Vector2(-196.455994F, -137.701996F), new Vector2(-195.664001F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-194.871994F, -134.990005F), new Vector2(-193.804001F, -133.916F), new Vector2(-192.460007F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-191.115997F, -132.332001F), new Vector2(-189.615997F, -131.936005F), new Vector2(-187.960007F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-186.279999F, -131.936005F), new Vector2(-184.761993F, -132.332001F), new Vector2(-183.406006F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1033()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-200.667999F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-200.283997F, -153.806F), new Vector2(-200.091995F, -154.304001F), new Vector2(-200.091995F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-200.091995F, -155.479996F), new Vector2(-200.283997F, -155.966003F), new Vector2(-200.667999F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-201.052002F, -156.757996F), new Vector2(-201.544006F, -156.955994F), new Vector2(-202.143997F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(-202.744003F, -156.955994F), new Vector2(-203.235992F, -156.757996F), new Vector2(-203.619995F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-204.003998F, -155.966003F), new Vector2(-204.195999F, -155.479996F), new Vector2(-204.195999F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-204.195999F, -154.304001F), new Vector2(-204.003998F, -153.806F), new Vector2(-203.619995F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-203.235992F, -153.014008F), new Vector2(-202.744003F, -152.815994F), new Vector2(-202.143997F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(-201.544006F, -152.815994F), new Vector2(-201.052002F, -153.014008F), new Vector2(-200.667999F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-200.524002F, -132.296005F));
+ builder.AddLine(new Vector2(-200.524002F, -149.395996F));
+ builder.AddLine(new Vector2(-203.800003F, -149.395996F));
+ builder.AddLine(new Vector2(-203.800003F, -132.296005F));
+ builder.AddLine(new Vector2(-200.524002F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1034()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-206.968002F, -146.444F));
+ builder.AddLine(new Vector2(-206.968002F, -149.395996F));
+ builder.AddLine(new Vector2(-218.632004F, -149.395996F));
+ builder.AddLine(new Vector2(-218.632004F, -146.444F));
+ builder.AddLine(new Vector2(-206.968002F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-211.179993F, -132.296005F));
+ builder.AddLine(new Vector2(-211.179993F, -156.559998F));
+ builder.AddLine(new Vector2(-214.419998F, -156.559998F));
+ builder.AddLine(new Vector2(-214.419998F, -132.296005F));
+ builder.AddLine(new Vector2(-211.179993F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1035()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-221.692001F, -132.296005F));
+ builder.AddLine(new Vector2(-221.692001F, -149.395996F));
+ builder.AddLine(new Vector2(-224.968002F, -149.395996F));
+ builder.AddLine(new Vector2(-224.968002F, -145.220001F));
+ builder.AddLine(new Vector2(-224.356003F, -141.080002F));
+ builder.AddLine(new Vector2(-224.968002F, -136.904007F));
+ builder.AddLine(new Vector2(-224.968002F, -132.296005F));
+ builder.AddLine(new Vector2(-221.692001F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-232.996002F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-233.835999F, -136.255997F), new Vector2(-234.490005F, -136.945999F), new Vector2(-234.957993F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-235.425995F, -138.697998F), new Vector2(-235.660004F, -139.712006F), new Vector2(-235.660004F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-235.660004F, -141.992004F), new Vector2(-235.425995F, -142.994003F), new Vector2(-234.957993F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-234.490005F, -144.746002F), new Vector2(-233.841995F, -145.436005F), new Vector2(-233.014008F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-232.186005F, -146.444F), new Vector2(-231.231995F, -146.695999F), new Vector2(-230.151993F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-229.072006F, -146.695999F), new Vector2(-228.130005F, -146.449997F), new Vector2(-227.326004F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-226.522003F, -145.466003F), new Vector2(-225.891998F, -144.776001F), new Vector2(-225.436005F, -143.888F));
+ builder.AddCubicBezier(new Vector2(-224.979996F, -143F), new Vector2(-224.751999F, -141.979996F), new Vector2(-224.751999F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-224.751999F, -139.123993F), new Vector2(-225.244003F, -137.725998F), new Vector2(-226.227997F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(-227.212006F, -135.542007F), new Vector2(-228.507996F, -134.996002F), new Vector2(-230.115997F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-231.195999F, -134.996002F), new Vector2(-232.156006F, -135.248001F), new Vector2(-232.996002F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-227.164001F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-226.132004F, -133.285995F), new Vector2(-225.309998F, -134.035995F), new Vector2(-224.697998F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-224.085999F, -135.955994F), new Vector2(-223.744003F, -137.048004F), new Vector2(-223.671997F, -138.272003F));
+ builder.AddLine(new Vector2(-223.671997F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-223.744003F, -144.667999F), new Vector2(-224.091995F, -145.766006F), new Vector2(-224.716003F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-225.339996F, -147.662003F), new Vector2(-226.162003F, -148.406006F), new Vector2(-227.182007F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-228.201996F, -149.485992F), new Vector2(-229.360001F, -149.755997F), new Vector2(-230.656006F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-232.240005F, -149.755997F), new Vector2(-233.662003F, -149.360001F), new Vector2(-234.921997F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-236.182007F, -147.776001F), new Vector2(-237.177994F, -146.707993F), new Vector2(-237.910004F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-238.641998F, -144.020004F), new Vector2(-239.007996F, -142.507996F), new Vector2(-239.007996F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-239.007996F, -139.147995F), new Vector2(-238.641998F, -137.636002F), new Vector2(-237.910004F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-237.177994F, -134.947998F), new Vector2(-236.182007F, -133.886002F), new Vector2(-234.921997F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-233.662003F, -132.326004F), new Vector2(-232.240005F, -131.936005F), new Vector2(-230.656006F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-229.360001F, -131.936005F), new Vector2(-228.195999F, -132.205994F), new Vector2(-227.164001F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1036()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-254.416F, -132.296005F));
+ builder.AddLine(new Vector2(-254.416F, -149.395996F));
+ builder.AddLine(new Vector2(-257.656006F, -149.395996F));
+ builder.AddLine(new Vector2(-257.656006F, -132.296005F));
+ builder.AddLine(new Vector2(-254.416F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-242.320007F, -132.296005F));
+ builder.AddLine(new Vector2(-242.320007F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-242.320007F, -144.091995F), new Vector2(-242.608002F, -145.201996F), new Vector2(-243.184006F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(-243.759995F, -147.289993F), new Vector2(-244.546005F, -148.136002F), new Vector2(-245.542007F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(-246.537994F, -149.432007F), new Vector2(-247.684006F, -149.755997F), new Vector2(-248.979996F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-250.276001F, -149.755997F), new Vector2(-251.440002F, -149.462006F), new Vector2(-252.472F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-253.503998F, -148.285995F), new Vector2(-254.307999F, -147.488007F), new Vector2(-254.884003F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-255.460007F, -145.472F), new Vector2(-255.748001F, -144.320007F), new Vector2(-255.748001F, -143.024002F));
+ builder.AddLine(new Vector2(-254.416F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-254.416F, -143.132004F), new Vector2(-254.223999F, -143.899994F), new Vector2(-253.839996F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-253.455994F, -145.244003F), new Vector2(-252.927994F, -145.772003F), new Vector2(-252.255997F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-251.584F, -146.539993F), new Vector2(-250.815994F, -146.731995F), new Vector2(-249.951996F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-248.656006F, -146.731995F), new Vector2(-247.606003F, -146.311996F), new Vector2(-246.802002F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-245.998001F, -144.632004F), new Vector2(-245.595993F, -143.563995F), new Vector2(-245.595993F, -142.268005F));
+ builder.AddLine(new Vector2(-245.595993F, -132.296005F));
+ builder.AddLine(new Vector2(-242.320007F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1037()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-272.70401F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-271.528015F, -133.195999F), new Vector2(-270.519989F, -133.927994F), new Vector2(-269.679993F, -134.888F));
+ builder.AddLine(new Vector2(-271.768005F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(-272.343994F, -136.339996F), new Vector2(-273.033997F, -135.835999F), new Vector2(-273.838013F, -135.5F));
+ builder.AddCubicBezier(new Vector2(-274.641998F, -135.164001F), new Vector2(-275.523987F, -134.996002F), new Vector2(-276.484009F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-277.635986F, -134.996002F), new Vector2(-278.656006F, -135.242004F), new Vector2(-279.544006F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-280.432007F, -136.225998F), new Vector2(-281.115997F, -136.921997F), new Vector2(-281.596008F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-282.075989F, -138.722F), new Vector2(-282.31601F, -139.772003F), new Vector2(-282.31601F, -140.972F));
+ builder.AddCubicBezier(new Vector2(-282.31601F, -142.147995F), new Vector2(-282.088013F, -143.167999F), new Vector2(-281.631989F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(-281.175995F, -144.895996F), new Vector2(-280.528015F, -145.567993F), new Vector2(-279.687988F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(-278.847992F, -146.528F), new Vector2(-277.876007F, -146.768005F), new Vector2(-276.772003F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(-275.716003F, -146.768005F), new Vector2(-274.81601F, -146.546005F), new Vector2(-274.071991F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(-273.328003F, -145.658005F), new Vector2(-272.752014F, -145.033997F), new Vector2(-272.343994F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(-271.936005F, -143.425995F), new Vector2(-271.731995F, -142.447998F), new Vector2(-271.731995F, -141.296005F));
+ builder.AddLine(new Vector2(-270.544006F, -142.339996F));
+ builder.AddLine(new Vector2(-283.252014F, -142.339996F));
+ builder.AddLine(new Vector2(-283.252014F, -139.639999F));
+ builder.AddLine(new Vector2(-268.81601F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(-268.743988F, -139.975998F), new Vector2(-268.696014F, -140.281998F), new Vector2(-268.671997F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(-268.64801F, -140.834F), new Vector2(-268.635986F, -141.091995F), new Vector2(-268.635986F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(-268.635986F, -142.964005F), new Vector2(-268.977997F, -144.416F), new Vector2(-269.661987F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(-270.346008F, -146.960007F), new Vector2(-271.299988F, -147.955994F), new Vector2(-272.523987F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(-273.747986F, -149.395996F), new Vector2(-275.140015F, -149.755997F), new Vector2(-276.700012F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-278.355988F, -149.755997F), new Vector2(-279.850006F, -149.365997F), new Vector2(-281.182007F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-282.514008F, -147.806F), new Vector2(-283.570007F, -146.744003F), new Vector2(-284.350006F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-285.130005F, -144.056F), new Vector2(-285.519989F, -142.544006F), new Vector2(-285.519989F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-285.519989F, -139.160004F), new Vector2(-285.123993F, -137.636002F), new Vector2(-284.332001F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-283.540009F, -134.947998F), new Vector2(-282.466003F, -133.886002F), new Vector2(-281.109985F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-279.753998F, -132.326004F), new Vector2(-278.212006F, -131.936005F), new Vector2(-276.484009F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-275.140015F, -131.936005F), new Vector2(-273.880005F, -132.188004F), new Vector2(-272.70401F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1038()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-300.891998F, -132.296005F));
+ builder.AddLine(new Vector2(-300.891998F, -158F));
+ builder.AddLine(new Vector2(-304.131989F, -158F));
+ builder.AddLine(new Vector2(-304.131989F, -132.296005F));
+ builder.AddLine(new Vector2(-300.891998F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-288.79599F, -132.296005F));
+ builder.AddLine(new Vector2(-288.79599F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-288.79599F, -144.259995F), new Vector2(-289.084015F, -145.447998F), new Vector2(-289.660004F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-290.235992F, -147.511993F), new Vector2(-291.022003F, -148.315994F), new Vector2(-292.018005F, -148.891998F));
+ builder.AddCubicBezier(new Vector2(-293.014008F, -149.468002F), new Vector2(-294.160004F, -149.755997F), new Vector2(-295.455994F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-296.752014F, -149.755997F), new Vector2(-297.915985F, -149.462006F), new Vector2(-298.947998F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-299.980011F, -148.285995F), new Vector2(-300.783997F, -147.488007F), new Vector2(-301.359985F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-301.936005F, -145.472F), new Vector2(-302.223999F, -144.320007F), new Vector2(-302.223999F, -143.024002F));
+ builder.AddLine(new Vector2(-300.891998F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-300.891998F, -143.132004F), new Vector2(-300.700012F, -143.899994F), new Vector2(-300.31601F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-299.932007F, -145.244003F), new Vector2(-299.403992F, -145.772003F), new Vector2(-298.731995F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-298.059998F, -146.539993F), new Vector2(-297.291992F, -146.731995F), new Vector2(-296.428009F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-295.131989F, -146.731995F), new Vector2(-294.082001F, -146.311996F), new Vector2(-293.278015F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-292.473999F, -144.632004F), new Vector2(-292.071991F, -143.563995F), new Vector2(-292.071991F, -142.268005F));
+ builder.AddLine(new Vector2(-292.071991F, -132.296005F));
+ builder.AddLine(new Vector2(-288.79599F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1039()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-307.299988F, -146.444F));
+ builder.AddLine(new Vector2(-307.299988F, -149.395996F));
+ builder.AddLine(new Vector2(-318.963989F, -149.395996F));
+ builder.AddLine(new Vector2(-318.963989F, -146.444F));
+ builder.AddLine(new Vector2(-307.299988F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-311.511993F, -132.296005F));
+ builder.AddLine(new Vector2(-311.511993F, -156.559998F));
+ builder.AddLine(new Vector2(-314.752014F, -156.559998F));
+ builder.AddLine(new Vector2(-314.752014F, -132.296005F));
+ builder.AddLine(new Vector2(-311.511993F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1040()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-332.428009F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-331.252014F, -133.195999F), new Vector2(-330.243988F, -133.927994F), new Vector2(-329.403992F, -134.888F));
+ builder.AddLine(new Vector2(-331.492004F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(-332.067993F, -136.339996F), new Vector2(-332.757996F, -135.835999F), new Vector2(-333.562012F, -135.5F));
+ builder.AddCubicBezier(new Vector2(-334.365997F, -135.164001F), new Vector2(-335.247986F, -134.996002F), new Vector2(-336.208008F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-337.359985F, -134.996002F), new Vector2(-338.380005F, -135.242004F), new Vector2(-339.268005F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-340.156006F, -136.225998F), new Vector2(-340.839996F, -136.921997F), new Vector2(-341.320007F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-341.799988F, -138.722F), new Vector2(-342.040009F, -139.772003F), new Vector2(-342.040009F, -140.972F));
+ builder.AddCubicBezier(new Vector2(-342.040009F, -142.147995F), new Vector2(-341.812012F, -143.167999F), new Vector2(-341.355988F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(-340.899994F, -144.895996F), new Vector2(-340.252014F, -145.567993F), new Vector2(-339.411987F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(-338.571991F, -146.528F), new Vector2(-337.600006F, -146.768005F), new Vector2(-336.496002F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(-335.440002F, -146.768005F), new Vector2(-334.540009F, -146.546005F), new Vector2(-333.79599F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(-333.052002F, -145.658005F), new Vector2(-332.476013F, -145.033997F), new Vector2(-332.067993F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(-331.660004F, -143.425995F), new Vector2(-331.455994F, -142.447998F), new Vector2(-331.455994F, -141.296005F));
+ builder.AddLine(new Vector2(-330.268005F, -142.339996F));
+ builder.AddLine(new Vector2(-342.976013F, -142.339996F));
+ builder.AddLine(new Vector2(-342.976013F, -139.639999F));
+ builder.AddLine(new Vector2(-328.540009F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(-328.467987F, -139.975998F), new Vector2(-328.420013F, -140.281998F), new Vector2(-328.395996F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(-328.372009F, -140.834F), new Vector2(-328.359985F, -141.091995F), new Vector2(-328.359985F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(-328.359985F, -142.964005F), new Vector2(-328.701996F, -144.416F), new Vector2(-329.385986F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(-330.070007F, -146.960007F), new Vector2(-331.023987F, -147.955994F), new Vector2(-332.247986F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(-333.471985F, -149.395996F), new Vector2(-334.864014F, -149.755997F), new Vector2(-336.424011F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-338.079987F, -149.755997F), new Vector2(-339.574005F, -149.365997F), new Vector2(-340.906006F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-342.238007F, -147.806F), new Vector2(-343.294006F, -146.744003F), new Vector2(-344.074005F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-344.854004F, -144.056F), new Vector2(-345.243988F, -142.544006F), new Vector2(-345.243988F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-345.243988F, -139.160004F), new Vector2(-344.847992F, -137.636002F), new Vector2(-344.056F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-343.264008F, -134.947998F), new Vector2(-342.190002F, -133.886002F), new Vector2(-340.834015F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-339.477997F, -132.326004F), new Vector2(-337.936005F, -131.936005F), new Vector2(-336.208008F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-334.864014F, -131.936005F), new Vector2(-333.604004F, -132.188004F), new Vector2(-332.428009F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1041()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-348.843994F, -158F));
+ builder.AddLine(new Vector2(-352.119995F, -158F));
+ builder.AddLine(new Vector2(-352.119995F, -145.220001F));
+ builder.AddLine(new Vector2(-351.507996F, -141.080002F));
+ builder.AddLine(new Vector2(-352.119995F, -136.904007F));
+ builder.AddLine(new Vector2(-352.119995F, -132.296005F));
+ builder.AddLine(new Vector2(-348.843994F, -132.296005F));
+ builder.AddLine(new Vector2(-348.843994F, -158F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-360.165985F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-360.993988F, -136.225998F), new Vector2(-361.641998F, -136.916F), new Vector2(-362.109985F, -137.804001F));
+ builder.AddCubicBezier(new Vector2(-362.578003F, -138.692001F), new Vector2(-362.812012F, -139.712006F), new Vector2(-362.812012F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-362.812012F, -142.016006F), new Vector2(-362.578003F, -143.029999F), new Vector2(-362.109985F, -143.906006F));
+ builder.AddCubicBezier(new Vector2(-361.641998F, -144.781998F), new Vector2(-361F, -145.466003F), new Vector2(-360.18399F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-359.368011F, -146.449997F), new Vector2(-358.420013F, -146.695999F), new Vector2(-357.339996F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-356.26001F, -146.695999F), new Vector2(-355.312012F, -146.444F), new Vector2(-354.496002F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-353.679993F, -145.436005F), new Vector2(-353.044006F, -144.746002F), new Vector2(-352.588013F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-352.131989F, -142.994003F), new Vector2(-351.903992F, -141.979996F), new Vector2(-351.903992F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-351.903992F, -139.699997F), new Vector2(-352.131989F, -138.697998F), new Vector2(-352.588013F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-353.044006F, -136.945999F), new Vector2(-353.679993F, -136.255997F), new Vector2(-354.496002F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-355.312012F, -135.248001F), new Vector2(-356.26001F, -134.996002F), new Vector2(-357.339996F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-358.395996F, -134.996002F), new Vector2(-359.338013F, -135.242004F), new Vector2(-360.165985F, -135.733994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-354.35199F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-353.320007F, -133.285995F), new Vector2(-352.492004F, -134.035995F), new Vector2(-351.868011F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-351.243988F, -135.955994F), new Vector2(-350.895996F, -137.048004F), new Vector2(-350.824005F, -138.272003F));
+ builder.AddLine(new Vector2(-350.824005F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-350.895996F, -144.667999F), new Vector2(-351.25F, -145.766006F), new Vector2(-351.885986F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-352.522003F, -147.662003F), new Vector2(-353.355988F, -148.406006F), new Vector2(-354.388F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-355.420013F, -149.485992F), new Vector2(-356.584015F, -149.755997F), new Vector2(-357.880005F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-359.440002F, -149.755997F), new Vector2(-360.843994F, -149.360001F), new Vector2(-362.09201F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-363.339996F, -147.776001F), new Vector2(-364.329987F, -146.707993F), new Vector2(-365.062012F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-365.794006F, -144.020004F), new Vector2(-366.160004F, -142.507996F), new Vector2(-366.160004F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-366.160004F, -139.147995F), new Vector2(-365.794006F, -137.636002F), new Vector2(-365.062012F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-364.329987F, -134.947998F), new Vector2(-363.339996F, -133.886002F), new Vector2(-362.09201F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-360.843994F, -132.326004F), new Vector2(-359.440002F, -131.936005F), new Vector2(-357.880005F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-356.559998F, -131.936005F), new Vector2(-355.384003F, -132.205994F), new Vector2(-354.35199F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1042()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-370.011993F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-369.627991F, -153.806F), new Vector2(-369.436005F, -154.304001F), new Vector2(-369.436005F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-369.436005F, -155.479996F), new Vector2(-369.627991F, -155.966003F), new Vector2(-370.011993F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-370.395996F, -156.757996F), new Vector2(-370.888F, -156.955994F), new Vector2(-371.488007F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(-372.088013F, -156.955994F), new Vector2(-372.579987F, -156.757996F), new Vector2(-372.963989F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-373.347992F, -155.966003F), new Vector2(-373.540009F, -155.479996F), new Vector2(-373.540009F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-373.540009F, -154.304001F), new Vector2(-373.347992F, -153.806F), new Vector2(-372.963989F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-372.579987F, -153.014008F), new Vector2(-372.088013F, -152.815994F), new Vector2(-371.488007F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(-370.888F, -152.815994F), new Vector2(-370.395996F, -153.014008F), new Vector2(-370.011993F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-369.868011F, -132.296005F));
+ builder.AddLine(new Vector2(-369.868011F, -149.395996F));
+ builder.AddLine(new Vector2(-373.144012F, -149.395996F));
+ builder.AddLine(new Vector2(-373.144012F, -132.296005F));
+ builder.AddLine(new Vector2(-369.868011F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1043()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-383.764008F, -132.296005F));
+ builder.AddLine(new Vector2(-375.915985F, -149.395996F));
+ builder.AddLine(new Vector2(-379.372009F, -149.395996F));
+ builder.AddLine(new Vector2(-385.708008F, -134.960007F));
+ builder.AddLine(new Vector2(-383.619995F, -134.960007F));
+ builder.AddLine(new Vector2(-389.920013F, -149.395996F));
+ builder.AddLine(new Vector2(-393.519989F, -149.395996F));
+ builder.AddLine(new Vector2(-385.671997F, -132.296005F));
+ builder.AddLine(new Vector2(-383.764008F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1044()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-396.471985F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-396.088013F, -153.806F), new Vector2(-395.895996F, -154.304001F), new Vector2(-395.895996F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-395.895996F, -155.479996F), new Vector2(-396.088013F, -155.966003F), new Vector2(-396.471985F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-396.855988F, -156.757996F), new Vector2(-397.347992F, -156.955994F), new Vector2(-397.947998F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(-398.548004F, -156.955994F), new Vector2(-399.040009F, -156.757996F), new Vector2(-399.424011F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-399.808014F, -155.966003F), new Vector2(-400F, -155.479996F), new Vector2(-400F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-400F, -154.304001F), new Vector2(-399.808014F, -153.806F), new Vector2(-399.424011F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-399.040009F, -153.014008F), new Vector2(-398.548004F, -152.815994F), new Vector2(-397.947998F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(-397.347992F, -152.815994F), new Vector2(-396.855988F, -153.014008F), new Vector2(-396.471985F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-396.328003F, -132.296005F));
+ builder.AddLine(new Vector2(-396.328003F, -149.395996F));
+ builder.AddLine(new Vector2(-399.604004F, -149.395996F));
+ builder.AddLine(new Vector2(-399.604004F, -132.296005F));
+ builder.AddLine(new Vector2(-396.328003F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1045()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-404.320007F, -158F));
+ builder.AddLine(new Vector2(-407.596008F, -158F));
+ builder.AddLine(new Vector2(-407.596008F, -145.220001F));
+ builder.AddLine(new Vector2(-406.984009F, -141.080002F));
+ builder.AddLine(new Vector2(-407.596008F, -136.904007F));
+ builder.AddLine(new Vector2(-407.596008F, -132.296005F));
+ builder.AddLine(new Vector2(-404.320007F, -132.296005F));
+ builder.AddLine(new Vector2(-404.320007F, -158F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-415.641998F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-416.470001F, -136.225998F), new Vector2(-417.118011F, -136.916F), new Vector2(-417.585999F, -137.804001F));
+ builder.AddCubicBezier(new Vector2(-418.053986F, -138.692001F), new Vector2(-418.287994F, -139.712006F), new Vector2(-418.287994F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-418.287994F, -142.016006F), new Vector2(-418.053986F, -143.029999F), new Vector2(-417.585999F, -143.906006F));
+ builder.AddCubicBezier(new Vector2(-417.118011F, -144.781998F), new Vector2(-416.476013F, -145.466003F), new Vector2(-415.660004F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-414.843994F, -146.449997F), new Vector2(-413.895996F, -146.695999F), new Vector2(-412.81601F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-411.735992F, -146.695999F), new Vector2(-410.787994F, -146.444F), new Vector2(-409.971985F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-409.156006F, -145.436005F), new Vector2(-408.519989F, -144.746002F), new Vector2(-408.063995F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-407.608002F, -142.994003F), new Vector2(-407.380005F, -141.979996F), new Vector2(-407.380005F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-407.380005F, -139.699997F), new Vector2(-407.608002F, -138.697998F), new Vector2(-408.063995F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-408.519989F, -136.945999F), new Vector2(-409.156006F, -136.255997F), new Vector2(-409.971985F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-410.787994F, -135.248001F), new Vector2(-411.735992F, -134.996002F), new Vector2(-412.81601F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-413.872009F, -134.996002F), new Vector2(-414.813995F, -135.242004F), new Vector2(-415.641998F, -135.733994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-409.828003F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-408.79599F, -133.285995F), new Vector2(-407.967987F, -134.035995F), new Vector2(-407.343994F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-406.720001F, -135.955994F), new Vector2(-406.372009F, -137.048004F), new Vector2(-406.299988F, -138.272003F));
+ builder.AddLine(new Vector2(-406.299988F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-406.372009F, -144.667999F), new Vector2(-406.726013F, -145.766006F), new Vector2(-407.362F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-407.997986F, -147.662003F), new Vector2(-408.832001F, -148.406006F), new Vector2(-409.864014F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-410.895996F, -149.485992F), new Vector2(-412.059998F, -149.755997F), new Vector2(-413.355988F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-414.915985F, -149.755997F), new Vector2(-416.320007F, -149.360001F), new Vector2(-417.567993F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-418.81601F, -147.776001F), new Vector2(-419.806F, -146.707993F), new Vector2(-420.537994F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-421.269989F, -144.020004F), new Vector2(-421.635986F, -142.507996F), new Vector2(-421.635986F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-421.635986F, -139.147995F), new Vector2(-421.269989F, -137.636002F), new Vector2(-420.537994F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-419.806F, -134.947998F), new Vector2(-418.81601F, -133.886002F), new Vector2(-417.567993F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-416.320007F, -132.326004F), new Vector2(-414.915985F, -131.936005F), new Vector2(-413.355988F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-412.036011F, -131.936005F), new Vector2(-410.859985F, -132.205994F), new Vector2(-409.828003F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1046()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-443.415985F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-444.256012F, -136.328003F), new Vector2(-444.915985F, -137.018005F), new Vector2(-445.395996F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-445.876007F, -138.770004F), new Vector2(-446.115997F, -139.772003F), new Vector2(-446.115997F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-446.115997F, -142.003998F), new Vector2(-445.876007F, -142.988007F), new Vector2(-445.395996F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-444.915985F, -144.716003F), new Vector2(-444.256012F, -145.393997F), new Vector2(-443.415985F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-442.575989F, -146.378006F), new Vector2(-441.627991F, -146.623993F), new Vector2(-440.571991F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-439.467987F, -146.623993F), new Vector2(-438.502014F, -146.378006F), new Vector2(-437.674011F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-436.846008F, -145.393997F), new Vector2(-436.186005F, -144.716003F), new Vector2(-435.694F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-435.201996F, -142.988007F), new Vector2(-434.955994F, -142.003998F), new Vector2(-434.955994F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-434.955994F, -139.772003F), new Vector2(-435.196014F, -138.770004F), new Vector2(-435.675995F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-436.156006F, -137.018005F), new Vector2(-436.81601F, -136.328003F), new Vector2(-437.656006F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-438.496002F, -135.320007F), new Vector2(-439.467987F, -135.067993F), new Vector2(-440.571991F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-441.627991F, -135.067993F), new Vector2(-442.575989F, -135.320007F), new Vector2(-443.415985F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-436.018005F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-434.661987F, -133.916F), new Vector2(-433.588013F, -134.990005F), new Vector2(-432.79599F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-432.003998F, -137.701996F), new Vector2(-431.608002F, -139.220001F), new Vector2(-431.608002F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-431.608002F, -142.556F), new Vector2(-432.003998F, -144.056F), new Vector2(-432.79599F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-433.588013F, -146.744003F), new Vector2(-434.661987F, -147.806F), new Vector2(-436.018005F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-437.373993F, -149.365997F), new Vector2(-438.891998F, -149.755997F), new Vector2(-440.571991F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-442.227997F, -149.755997F), new Vector2(-443.727997F, -149.360001F), new Vector2(-445.071991F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-446.415985F, -147.776001F), new Vector2(-447.484009F, -146.714005F), new Vector2(-448.276001F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(-449.067993F, -144.050003F), new Vector2(-449.463989F, -142.556F), new Vector2(-449.463989F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-449.463989F, -139.220001F), new Vector2(-449.067993F, -137.701996F), new Vector2(-448.276001F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-447.484009F, -134.990005F), new Vector2(-446.415985F, -133.916F), new Vector2(-445.071991F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-443.727997F, -132.332001F), new Vector2(-442.227997F, -131.936005F), new Vector2(-440.571991F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-438.891998F, -131.936005F), new Vector2(-437.373993F, -132.332001F), new Vector2(-436.018005F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1047()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-450.976013F, -146.444F));
+ builder.AddLine(new Vector2(-450.976013F, -149.395996F));
+ builder.AddLine(new Vector2(-462.640015F, -149.395996F));
+ builder.AddLine(new Vector2(-462.640015F, -146.444F));
+ builder.AddLine(new Vector2(-450.976013F, -146.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-455.187988F, -132.296005F));
+ builder.AddLine(new Vector2(-455.187988F, -156.559998F));
+ builder.AddLine(new Vector2(-458.428009F, -156.559998F));
+ builder.AddLine(new Vector2(-458.428009F, -132.296005F));
+ builder.AddLine(new Vector2(-455.187988F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1048()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-473.854004F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(-472.713989F, -134.276001F), new Vector2(-472.144012F, -135.548004F), new Vector2(-472.144012F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(-472.144012F, -138.212006F), new Vector2(-472.365997F, -139.063995F), new Vector2(-472.809998F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(-473.253998F, -140.360001F), new Vector2(-473.824005F, -140.876007F), new Vector2(-474.519989F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(-475.216003F, -141.643997F), new Vector2(-475.947998F, -141.949997F), new Vector2(-476.716003F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(-477.484009F, -142.406006F), new Vector2(-478.221985F, -142.628006F), new Vector2(-478.929993F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(-479.638F, -143.059998F), new Vector2(-480.208008F, -143.324005F), new Vector2(-480.640015F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(-481.071991F, -143.947998F), new Vector2(-481.287994F, -144.391998F), new Vector2(-481.287994F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(-481.287994F, -145.520004F), new Vector2(-481.041992F, -145.964005F), new Vector2(-480.549988F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-480.058014F, -146.636002F), new Vector2(-479.343994F, -146.804001F), new Vector2(-478.40799F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(-477.519989F, -146.804001F), new Vector2(-476.727997F, -146.636002F), new Vector2(-476.032013F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-475.335999F, -145.964005F), new Vector2(-474.735992F, -145.483994F), new Vector2(-474.231995F, -144.860001F));
+ builder.AddLine(new Vector2(-472.144012F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(-472.81601F, -147.884003F), new Vector2(-473.674011F, -148.585999F), new Vector2(-474.717987F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(-475.761993F, -149.522003F), new Vector2(-476.955994F, -149.755997F), new Vector2(-478.299988F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-479.571991F, -149.755997F), new Vector2(-480.664001F, -149.552002F), new Vector2(-481.575989F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(-482.488007F, -148.735992F), new Vector2(-483.190002F, -148.154007F), new Vector2(-483.682007F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(-484.174011F, -146.641998F), new Vector2(-484.420013F, -145.748001F), new Vector2(-484.420013F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(-484.420013F, -143.684006F), new Vector2(-484.197998F, -142.850006F), new Vector2(-483.753998F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(-483.309998F, -141.578003F), new Vector2(-482.73999F, -141.080002F), new Vector2(-482.044006F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(-481.347992F, -140.360001F), new Vector2(-480.609985F, -140.072006F), new Vector2(-479.829987F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(-479.049988F, -139.639999F), new Vector2(-478.312012F, -139.417999F), new Vector2(-477.615997F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(-476.920013F, -138.962006F), new Vector2(-476.350006F, -138.673996F), new Vector2(-475.906006F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(-475.462006F, -137.977997F), new Vector2(-475.23999F, -137.492004F), new Vector2(-475.23999F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(-475.23999F, -136.244003F), new Vector2(-475.515991F, -135.757996F), new Vector2(-476.067993F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(-476.619995F, -135.061996F), new Vector2(-477.399994F, -134.888F), new Vector2(-478.40799F, -134.888F));
+ builder.AddCubicBezier(new Vector2(-479.415985F, -134.888F), new Vector2(-480.328003F, -135.074005F), new Vector2(-481.144012F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(-481.959991F, -135.817993F), new Vector2(-482.679993F, -136.388F), new Vector2(-483.303986F, -137.156006F));
+ builder.AddLine(new Vector2(-485.391998F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-484.864014F, -134.419998F), new Vector2(-484.246002F, -133.862F), new Vector2(-483.537994F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(-482.829987F, -132.925995F), new Vector2(-482.044006F, -132.565994F), new Vector2(-481.179993F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(-480.31601F, -132.061996F), new Vector2(-479.403992F, -131.936005F), new Vector2(-478.444F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-476.523987F, -131.936005F), new Vector2(-474.993988F, -132.404007F), new Vector2(-473.854004F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1049()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-493.563995F, -145.544006F));
+ builder.AddCubicBezier(new Vector2(-492.79599F, -146.311996F), new Vector2(-491.812012F, -146.695999F), new Vector2(-490.612F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-490.036011F, -146.695999F), new Vector2(-489.532013F, -146.612F), new Vector2(-489.100006F, -146.444F));
+ builder.AddCubicBezier(new Vector2(-488.667999F, -146.276001F), new Vector2(-488.272003F, -146F), new Vector2(-487.911987F, -145.615997F));
+ builder.AddLine(new Vector2(-485.787994F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(-486.388F, -148.507996F), new Vector2(-487.036011F, -149.005997F), new Vector2(-487.731995F, -149.306F));
+ builder.AddCubicBezier(new Vector2(-488.428009F, -149.606003F), new Vector2(-489.208008F, -149.755997F), new Vector2(-490.071991F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-491.967987F, -149.755997F), new Vector2(-493.420013F, -149.108002F), new Vector2(-494.428009F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(-495.436005F, -146.516006F), new Vector2(-495.940002F, -144.776001F), new Vector2(-495.940002F, -142.591995F));
+ builder.AddLine(new Vector2(-494.716003F, -142.016006F));
+ builder.AddCubicBezier(new Vector2(-494.716003F, -143.600006F), new Vector2(-494.332001F, -144.776001F), new Vector2(-493.563995F, -145.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-494.716003F, -132.296005F));
+ builder.AddLine(new Vector2(-494.716003F, -149.395996F));
+ builder.AddLine(new Vector2(-497.955994F, -149.395996F));
+ builder.AddLine(new Vector2(-497.955994F, -132.296005F));
+ builder.AddLine(new Vector2(-494.716003F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1050()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-505.552002F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-504.376007F, -133.195999F), new Vector2(-503.368011F, -133.927994F), new Vector2(-502.528015F, -134.888F));
+ builder.AddLine(new Vector2(-504.615997F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(-505.191986F, -136.339996F), new Vector2(-505.881989F, -135.835999F), new Vector2(-506.686005F, -135.5F));
+ builder.AddCubicBezier(new Vector2(-507.48999F, -135.164001F), new Vector2(-508.372009F, -134.996002F), new Vector2(-509.332001F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-510.484009F, -134.996002F), new Vector2(-511.503998F, -135.242004F), new Vector2(-512.392029F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-513.280029F, -136.225998F), new Vector2(-513.963989F, -136.921997F), new Vector2(-514.44397F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-514.924011F, -138.722F), new Vector2(-515.164001F, -139.772003F), new Vector2(-515.164001F, -140.972F));
+ builder.AddCubicBezier(new Vector2(-515.164001F, -142.147995F), new Vector2(-514.935974F, -143.167999F), new Vector2(-514.47998F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(-514.023987F, -144.895996F), new Vector2(-513.375977F, -145.567993F), new Vector2(-512.536011F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(-511.696014F, -146.528F), new Vector2(-510.723999F, -146.768005F), new Vector2(-509.619995F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(-508.563995F, -146.768005F), new Vector2(-507.664001F, -146.546005F), new Vector2(-506.920013F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(-506.175995F, -145.658005F), new Vector2(-505.600006F, -145.033997F), new Vector2(-505.191986F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(-504.783997F, -143.425995F), new Vector2(-504.579987F, -142.447998F), new Vector2(-504.579987F, -141.296005F));
+ builder.AddLine(new Vector2(-503.391998F, -142.339996F));
+ builder.AddLine(new Vector2(-516.099976F, -142.339996F));
+ builder.AddLine(new Vector2(-516.099976F, -139.639999F));
+ builder.AddLine(new Vector2(-501.664001F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(-501.59201F, -139.975998F), new Vector2(-501.544006F, -140.281998F), new Vector2(-501.519989F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(-501.496002F, -140.834F), new Vector2(-501.484009F, -141.091995F), new Vector2(-501.484009F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(-501.484009F, -142.964005F), new Vector2(-501.825989F, -144.416F), new Vector2(-502.51001F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(-503.194F, -146.960007F), new Vector2(-504.14801F, -147.955994F), new Vector2(-505.372009F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(-506.596008F, -149.395996F), new Vector2(-507.988007F, -149.755997F), new Vector2(-509.548004F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-511.20401F, -149.755997F), new Vector2(-512.697998F, -149.365997F), new Vector2(-514.030029F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-515.362F, -147.806F), new Vector2(-516.41803F, -146.744003F), new Vector2(-517.197998F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-517.978027F, -144.056F), new Vector2(-518.367981F, -142.544006F), new Vector2(-518.367981F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-518.367981F, -139.160004F), new Vector2(-517.971985F, -137.636002F), new Vector2(-517.179993F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-516.388F, -134.947998F), new Vector2(-515.314026F, -133.886002F), new Vector2(-513.958008F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-512.60199F, -132.326004F), new Vector2(-511.059998F, -131.936005F), new Vector2(-509.332001F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-507.988007F, -131.936005F), new Vector2(-506.727997F, -132.188004F), new Vector2(-505.552002F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1051()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-521.968018F, -158F));
+ builder.AddLine(new Vector2(-525.244019F, -158F));
+ builder.AddLine(new Vector2(-525.244019F, -145.220001F));
+ builder.AddLine(new Vector2(-524.632019F, -141.080002F));
+ builder.AddLine(new Vector2(-525.244019F, -136.904007F));
+ builder.AddLine(new Vector2(-525.244019F, -132.296005F));
+ builder.AddLine(new Vector2(-521.968018F, -132.296005F));
+ builder.AddLine(new Vector2(-521.968018F, -158F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-533.289978F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-534.117981F, -136.225998F), new Vector2(-534.765991F, -136.916F), new Vector2(-535.234009F, -137.804001F));
+ builder.AddCubicBezier(new Vector2(-535.702026F, -138.692001F), new Vector2(-535.935974F, -139.712006F), new Vector2(-535.935974F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-535.935974F, -142.016006F), new Vector2(-535.702026F, -143.029999F), new Vector2(-535.234009F, -143.906006F));
+ builder.AddCubicBezier(new Vector2(-534.765991F, -144.781998F), new Vector2(-534.124023F, -145.466003F), new Vector2(-533.307983F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-532.492004F, -146.449997F), new Vector2(-531.544006F, -146.695999F), new Vector2(-530.463989F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-529.383972F, -146.695999F), new Vector2(-528.435974F, -146.444F), new Vector2(-527.619995F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-526.804016F, -145.436005F), new Vector2(-526.16803F, -144.746002F), new Vector2(-525.711975F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-525.255981F, -142.994003F), new Vector2(-525.028015F, -141.979996F), new Vector2(-525.028015F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-525.028015F, -139.699997F), new Vector2(-525.255981F, -138.697998F), new Vector2(-525.711975F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-526.16803F, -136.945999F), new Vector2(-526.804016F, -136.255997F), new Vector2(-527.619995F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-528.435974F, -135.248001F), new Vector2(-529.383972F, -134.996002F), new Vector2(-530.463989F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-531.52002F, -134.996002F), new Vector2(-532.461975F, -135.242004F), new Vector2(-533.289978F, -135.733994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-527.476013F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-526.44397F, -133.285995F), new Vector2(-525.616028F, -134.035995F), new Vector2(-524.992004F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-524.367981F, -135.955994F), new Vector2(-524.02002F, -137.048004F), new Vector2(-523.947998F, -138.272003F));
+ builder.AddLine(new Vector2(-523.947998F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-524.02002F, -144.667999F), new Vector2(-524.374023F, -145.766006F), new Vector2(-525.01001F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-525.645996F, -147.662003F), new Vector2(-526.47998F, -148.406006F), new Vector2(-527.512024F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-528.544006F, -149.485992F), new Vector2(-529.708008F, -149.755997F), new Vector2(-531.004028F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-532.564026F, -149.755997F), new Vector2(-533.968018F, -149.360001F), new Vector2(-535.216003F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-536.463989F, -147.776001F), new Vector2(-537.453979F, -146.707993F), new Vector2(-538.185974F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-538.91803F, -144.020004F), new Vector2(-539.283997F, -142.507996F), new Vector2(-539.283997F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-539.283997F, -139.147995F), new Vector2(-538.91803F, -137.636002F), new Vector2(-538.185974F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-537.453979F, -134.947998F), new Vector2(-536.463989F, -133.886002F), new Vector2(-535.216003F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-533.968018F, -132.326004F), new Vector2(-532.564026F, -131.936005F), new Vector2(-531.004028F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-529.684021F, -131.936005F), new Vector2(-528.507996F, -132.205994F), new Vector2(-527.476013F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1052()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-554.692017F, -132.296005F));
+ builder.AddLine(new Vector2(-554.692017F, -149.395996F));
+ builder.AddLine(new Vector2(-557.932007F, -149.395996F));
+ builder.AddLine(new Vector2(-557.932007F, -132.296005F));
+ builder.AddLine(new Vector2(-554.692017F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-542.596008F, -132.296005F));
+ builder.AddLine(new Vector2(-542.596008F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-542.596008F, -144.091995F), new Vector2(-542.883972F, -145.201996F), new Vector2(-543.460022F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(-544.036011F, -147.289993F), new Vector2(-544.822021F, -148.136002F), new Vector2(-545.817993F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(-546.814026F, -149.432007F), new Vector2(-547.960022F, -149.755997F), new Vector2(-549.255981F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-550.552002F, -149.755997F), new Vector2(-551.716003F, -149.462006F), new Vector2(-552.747986F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-553.780029F, -148.285995F), new Vector2(-554.583984F, -147.488007F), new Vector2(-555.159973F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-555.736023F, -145.472F), new Vector2(-556.023987F, -144.320007F), new Vector2(-556.023987F, -143.024002F));
+ builder.AddLine(new Vector2(-554.692017F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-554.692017F, -143.132004F), new Vector2(-554.5F, -143.899994F), new Vector2(-554.116028F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-553.731995F, -145.244003F), new Vector2(-553.203979F, -145.772003F), new Vector2(-552.531982F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-551.859985F, -146.539993F), new Vector2(-551.09198F, -146.731995F), new Vector2(-550.228027F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-548.932007F, -146.731995F), new Vector2(-547.882019F, -146.311996F), new Vector2(-547.078003F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-546.273987F, -144.632004F), new Vector2(-545.872009F, -143.563995F), new Vector2(-545.872009F, -142.268005F));
+ builder.AddLine(new Vector2(-545.872009F, -132.296005F));
+ builder.AddLine(new Vector2(-542.596008F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1053()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-562.64801F, -132.296005F));
+ builder.AddLine(new Vector2(-562.64801F, -149.395996F));
+ builder.AddLine(new Vector2(-565.924011F, -149.395996F));
+ builder.AddLine(new Vector2(-565.924011F, -145.220001F));
+ builder.AddLine(new Vector2(-565.312012F, -141.080002F));
+ builder.AddLine(new Vector2(-565.924011F, -136.904007F));
+ builder.AddLine(new Vector2(-565.924011F, -132.296005F));
+ builder.AddLine(new Vector2(-562.64801F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-573.952026F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-574.791992F, -136.255997F), new Vector2(-575.445984F, -136.945999F), new Vector2(-575.914001F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-576.382019F, -138.697998F), new Vector2(-576.616028F, -139.712006F), new Vector2(-576.616028F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-576.616028F, -141.992004F), new Vector2(-576.382019F, -142.994003F), new Vector2(-575.914001F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-575.445984F, -144.746002F), new Vector2(-574.797974F, -145.436005F), new Vector2(-573.969971F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-573.142029F, -146.444F), new Vector2(-572.187988F, -146.695999F), new Vector2(-571.107971F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-570.028015F, -146.695999F), new Vector2(-569.085999F, -146.449997F), new Vector2(-568.281982F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-567.478027F, -145.466003F), new Vector2(-566.848022F, -144.776001F), new Vector2(-566.392029F, -143.888F));
+ builder.AddCubicBezier(new Vector2(-565.935974F, -143F), new Vector2(-565.708008F, -141.979996F), new Vector2(-565.708008F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-565.708008F, -139.123993F), new Vector2(-566.200012F, -137.725998F), new Vector2(-567.184021F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(-568.16803F, -135.542007F), new Vector2(-569.463989F, -134.996002F), new Vector2(-571.072021F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-572.151978F, -134.996002F), new Vector2(-573.112F, -135.248001F), new Vector2(-573.952026F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-568.119995F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-567.088013F, -133.285995F), new Vector2(-566.265991F, -134.035995F), new Vector2(-565.653992F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-565.041992F, -135.955994F), new Vector2(-564.700012F, -137.048004F), new Vector2(-564.627991F, -138.272003F));
+ builder.AddLine(new Vector2(-564.627991F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-564.700012F, -144.667999F), new Vector2(-565.047974F, -145.766006F), new Vector2(-565.671997F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-566.296021F, -147.662003F), new Vector2(-567.117981F, -148.406006F), new Vector2(-568.138F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-569.15802F, -149.485992F), new Vector2(-570.315979F, -149.755997F), new Vector2(-571.612F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-573.195984F, -149.755997F), new Vector2(-574.617981F, -149.360001F), new Vector2(-575.877991F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-577.138F, -147.776001F), new Vector2(-578.133972F, -146.707993F), new Vector2(-578.866028F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-579.598022F, -144.020004F), new Vector2(-579.963989F, -142.507996F), new Vector2(-579.963989F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-579.963989F, -139.147995F), new Vector2(-579.598022F, -137.636002F), new Vector2(-578.866028F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-578.133972F, -134.947998F), new Vector2(-577.138F, -133.886002F), new Vector2(-575.877991F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-574.617981F, -132.326004F), new Vector2(-573.195984F, -131.936005F), new Vector2(-571.612F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-570.315979F, -131.936005F), new Vector2(-569.151978F, -132.205994F), new Vector2(-568.119995F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1054()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-583.635986F, -132.296005F));
+ builder.AddLine(new Vector2(-583.635986F, -158F));
+ builder.AddLine(new Vector2(-586.875977F, -158F));
+ builder.AddLine(new Vector2(-586.875977F, -132.296005F));
+ builder.AddLine(new Vector2(-583.635986F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1055()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-592.221985F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(-591.08197F, -134.276001F), new Vector2(-590.512024F, -135.548004F), new Vector2(-590.512024F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(-590.512024F, -138.212006F), new Vector2(-590.734009F, -139.063995F), new Vector2(-591.177979F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(-591.622009F, -140.360001F), new Vector2(-592.192017F, -140.876007F), new Vector2(-592.888F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(-593.583984F, -141.643997F), new Vector2(-594.315979F, -141.949997F), new Vector2(-595.083984F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(-595.85199F, -142.406006F), new Vector2(-596.590027F, -142.628006F), new Vector2(-597.297974F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(-598.005981F, -143.059998F), new Vector2(-598.575989F, -143.324005F), new Vector2(-599.007996F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(-599.440002F, -143.947998F), new Vector2(-599.656006F, -144.391998F), new Vector2(-599.656006F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(-599.656006F, -145.520004F), new Vector2(-599.409973F, -145.964005F), new Vector2(-598.91803F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-598.426025F, -146.636002F), new Vector2(-597.711975F, -146.804001F), new Vector2(-596.776001F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(-595.888F, -146.804001F), new Vector2(-595.096008F, -146.636002F), new Vector2(-594.400024F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-593.703979F, -145.964005F), new Vector2(-593.104004F, -145.483994F), new Vector2(-592.599976F, -144.860001F));
+ builder.AddLine(new Vector2(-590.512024F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(-591.184021F, -147.884003F), new Vector2(-592.041992F, -148.585999F), new Vector2(-593.085999F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(-594.130005F, -149.522003F), new Vector2(-595.323975F, -149.755997F), new Vector2(-596.66803F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-597.940002F, -149.755997F), new Vector2(-599.031982F, -149.552002F), new Vector2(-599.94397F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(-600.856018F, -148.735992F), new Vector2(-601.557983F, -148.154007F), new Vector2(-602.049988F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(-602.541992F, -146.641998F), new Vector2(-602.788025F, -145.748001F), new Vector2(-602.788025F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(-602.788025F, -143.684006F), new Vector2(-602.565979F, -142.850006F), new Vector2(-602.122009F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(-601.677979F, -141.578003F), new Vector2(-601.107971F, -141.080002F), new Vector2(-600.411987F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(-599.716003F, -140.360001F), new Vector2(-598.978027F, -140.072006F), new Vector2(-598.197998F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(-597.41803F, -139.639999F), new Vector2(-596.679993F, -139.417999F), new Vector2(-595.984009F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(-595.288025F, -138.962006F), new Vector2(-594.718018F, -138.673996F), new Vector2(-594.273987F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(-593.830017F, -137.977997F), new Vector2(-593.607971F, -137.492004F), new Vector2(-593.607971F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(-593.607971F, -136.244003F), new Vector2(-593.883972F, -135.757996F), new Vector2(-594.435974F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(-594.987976F, -135.061996F), new Vector2(-595.768005F, -134.888F), new Vector2(-596.776001F, -134.888F));
+ builder.AddCubicBezier(new Vector2(-597.783997F, -134.888F), new Vector2(-598.695984F, -135.074005F), new Vector2(-599.512024F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(-600.328003F, -135.817993F), new Vector2(-601.047974F, -136.388F), new Vector2(-601.671997F, -137.156006F));
+ builder.AddLine(new Vector2(-603.76001F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-603.231995F, -134.419998F), new Vector2(-602.614014F, -133.862F), new Vector2(-601.906006F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(-601.197998F, -132.925995F), new Vector2(-600.411987F, -132.565994F), new Vector2(-599.547974F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(-598.684021F, -132.061996F), new Vector2(-597.771973F, -131.936005F), new Vector2(-596.812012F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-594.892029F, -131.936005F), new Vector2(-593.362F, -132.404007F), new Vector2(-592.221985F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1056()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-614.416016F, -158F));
+ builder.AddLine(new Vector2(-617.692017F, -158F));
+ builder.AddLine(new Vector2(-617.692017F, -145.220001F));
+ builder.AddLine(new Vector2(-617.080017F, -141.080002F));
+ builder.AddLine(new Vector2(-617.692017F, -136.904007F));
+ builder.AddLine(new Vector2(-617.692017F, -132.296005F));
+ builder.AddLine(new Vector2(-614.416016F, -132.296005F));
+ builder.AddLine(new Vector2(-614.416016F, -158F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-625.737976F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-626.565979F, -136.225998F), new Vector2(-627.213989F, -136.916F), new Vector2(-627.682007F, -137.804001F));
+ builder.AddCubicBezier(new Vector2(-628.150024F, -138.692001F), new Vector2(-628.383972F, -139.712006F), new Vector2(-628.383972F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-628.383972F, -142.016006F), new Vector2(-628.150024F, -143.029999F), new Vector2(-627.682007F, -143.906006F));
+ builder.AddCubicBezier(new Vector2(-627.213989F, -144.781998F), new Vector2(-626.572021F, -145.466003F), new Vector2(-625.755981F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-624.940002F, -146.449997F), new Vector2(-623.992004F, -146.695999F), new Vector2(-622.911987F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-621.83197F, -146.695999F), new Vector2(-620.883972F, -146.444F), new Vector2(-620.067993F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-619.252014F, -145.436005F), new Vector2(-618.616028F, -144.746002F), new Vector2(-618.159973F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-617.703979F, -142.994003F), new Vector2(-617.476013F, -141.979996F), new Vector2(-617.476013F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-617.476013F, -139.699997F), new Vector2(-617.703979F, -138.697998F), new Vector2(-618.159973F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-618.616028F, -136.945999F), new Vector2(-619.252014F, -136.255997F), new Vector2(-620.067993F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-620.883972F, -135.248001F), new Vector2(-621.83197F, -134.996002F), new Vector2(-622.911987F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-623.968018F, -134.996002F), new Vector2(-624.909973F, -135.242004F), new Vector2(-625.737976F, -135.733994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-619.924011F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-618.892029F, -133.285995F), new Vector2(-618.064026F, -134.035995F), new Vector2(-617.440002F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-616.815979F, -135.955994F), new Vector2(-616.468018F, -137.048004F), new Vector2(-616.395996F, -138.272003F));
+ builder.AddLine(new Vector2(-616.395996F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-616.468018F, -144.667999F), new Vector2(-616.822021F, -145.766006F), new Vector2(-617.458008F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-618.093994F, -147.662003F), new Vector2(-618.927979F, -148.406006F), new Vector2(-619.960022F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-620.992004F, -149.485992F), new Vector2(-622.156006F, -149.755997F), new Vector2(-623.452026F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-625.012024F, -149.755997F), new Vector2(-626.416016F, -149.360001F), new Vector2(-627.664001F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-628.911987F, -147.776001F), new Vector2(-629.901978F, -146.707993F), new Vector2(-630.633972F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-631.366028F, -144.020004F), new Vector2(-631.731995F, -142.507996F), new Vector2(-631.731995F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-631.731995F, -139.147995F), new Vector2(-631.366028F, -137.636002F), new Vector2(-630.633972F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-629.901978F, -134.947998F), new Vector2(-628.911987F, -133.886002F), new Vector2(-627.664001F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-626.416016F, -132.326004F), new Vector2(-625.012024F, -131.936005F), new Vector2(-623.452026F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-622.132019F, -131.936005F), new Vector2(-620.955994F, -132.205994F), new Vector2(-619.924011F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1057()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-647.140015F, -132.296005F));
+ builder.AddLine(new Vector2(-647.140015F, -149.395996F));
+ builder.AddLine(new Vector2(-650.380005F, -149.395996F));
+ builder.AddLine(new Vector2(-650.380005F, -132.296005F));
+ builder.AddLine(new Vector2(-647.140015F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-635.044006F, -132.296005F));
+ builder.AddLine(new Vector2(-635.044006F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-635.044006F, -144.091995F), new Vector2(-635.33197F, -145.201996F), new Vector2(-635.90802F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(-636.484009F, -147.289993F), new Vector2(-637.27002F, -148.136002F), new Vector2(-638.265991F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(-639.262024F, -149.432007F), new Vector2(-640.40802F, -149.755997F), new Vector2(-641.703979F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-643F, -149.755997F), new Vector2(-644.164001F, -149.462006F), new Vector2(-645.195984F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-646.228027F, -148.285995F), new Vector2(-647.031982F, -147.488007F), new Vector2(-647.607971F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-648.184021F, -145.472F), new Vector2(-648.471985F, -144.320007F), new Vector2(-648.471985F, -143.024002F));
+ builder.AddLine(new Vector2(-647.140015F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-647.140015F, -143.132004F), new Vector2(-646.947998F, -143.899994F), new Vector2(-646.564026F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-646.179993F, -145.244003F), new Vector2(-645.651978F, -145.772003F), new Vector2(-644.97998F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-644.307983F, -146.539993F), new Vector2(-643.539978F, -146.731995F), new Vector2(-642.676025F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-641.380005F, -146.731995F), new Vector2(-640.330017F, -146.311996F), new Vector2(-639.526001F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-638.721985F, -144.632004F), new Vector2(-638.320007F, -143.563995F), new Vector2(-638.320007F, -142.268005F));
+ builder.AddLine(new Vector2(-638.320007F, -132.296005F));
+ builder.AddLine(new Vector2(-635.044006F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1058()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-655.096008F, -132.296005F));
+ builder.AddLine(new Vector2(-655.096008F, -149.395996F));
+ builder.AddLine(new Vector2(-658.372009F, -149.395996F));
+ builder.AddLine(new Vector2(-658.372009F, -145.220001F));
+ builder.AddLine(new Vector2(-657.76001F, -141.080002F));
+ builder.AddLine(new Vector2(-658.372009F, -136.904007F));
+ builder.AddLine(new Vector2(-658.372009F, -132.296005F));
+ builder.AddLine(new Vector2(-655.096008F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-666.400024F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-667.23999F, -136.255997F), new Vector2(-667.893982F, -136.945999F), new Vector2(-668.362F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-668.830017F, -138.697998F), new Vector2(-669.064026F, -139.712006F), new Vector2(-669.064026F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-669.064026F, -141.992004F), new Vector2(-668.830017F, -142.994003F), new Vector2(-668.362F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-667.893982F, -144.746002F), new Vector2(-667.245972F, -145.436005F), new Vector2(-666.41803F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-665.590027F, -146.444F), new Vector2(-664.635986F, -146.695999F), new Vector2(-663.55603F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-662.476013F, -146.695999F), new Vector2(-661.533997F, -146.449997F), new Vector2(-660.72998F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-659.926025F, -145.466003F), new Vector2(-659.296021F, -144.776001F), new Vector2(-658.840027F, -143.888F));
+ builder.AddCubicBezier(new Vector2(-658.383972F, -143F), new Vector2(-658.156006F, -141.979996F), new Vector2(-658.156006F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-658.156006F, -139.123993F), new Vector2(-658.64801F, -137.725998F), new Vector2(-659.632019F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(-660.616028F, -135.542007F), new Vector2(-661.911987F, -134.996002F), new Vector2(-663.52002F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-664.599976F, -134.996002F), new Vector2(-665.559998F, -135.248001F), new Vector2(-666.400024F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-660.567993F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-659.536011F, -133.285995F), new Vector2(-658.713989F, -134.035995F), new Vector2(-658.10199F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-657.48999F, -135.955994F), new Vector2(-657.14801F, -137.048004F), new Vector2(-657.075989F, -138.272003F));
+ builder.AddLine(new Vector2(-657.075989F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-657.14801F, -144.667999F), new Vector2(-657.495972F, -145.766006F), new Vector2(-658.119995F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-658.744019F, -147.662003F), new Vector2(-659.565979F, -148.406006F), new Vector2(-660.585999F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-661.606018F, -149.485992F), new Vector2(-662.763977F, -149.755997F), new Vector2(-664.059998F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-665.643982F, -149.755997F), new Vector2(-667.065979F, -149.360001F), new Vector2(-668.325989F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-669.585999F, -147.776001F), new Vector2(-670.58197F, -146.707993F), new Vector2(-671.314026F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-672.046021F, -144.020004F), new Vector2(-672.411987F, -142.507996F), new Vector2(-672.411987F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-672.411987F, -139.147995F), new Vector2(-672.046021F, -137.636002F), new Vector2(-671.314026F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-670.58197F, -134.947998F), new Vector2(-669.585999F, -133.886002F), new Vector2(-668.325989F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-667.065979F, -132.326004F), new Vector2(-665.643982F, -131.936005F), new Vector2(-664.059998F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-662.763977F, -131.936005F), new Vector2(-661.599976F, -132.205994F), new Vector2(-660.567993F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1059()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-684.130005F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(-682.98999F, -134.276001F), new Vector2(-682.419983F, -135.548004F), new Vector2(-682.419983F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(-682.419983F, -138.212006F), new Vector2(-682.642029F, -139.063995F), new Vector2(-683.085999F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(-683.530029F, -140.360001F), new Vector2(-684.099976F, -140.876007F), new Vector2(-684.796021F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(-685.492004F, -141.643997F), new Vector2(-686.223999F, -141.949997F), new Vector2(-686.992004F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(-687.76001F, -142.406006F), new Vector2(-688.497986F, -142.628006F), new Vector2(-689.205994F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(-689.914001F, -143.059998F), new Vector2(-690.484009F, -143.324005F), new Vector2(-690.916016F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(-691.348022F, -143.947998F), new Vector2(-691.564026F, -144.391998F), new Vector2(-691.564026F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(-691.564026F, -145.520004F), new Vector2(-691.317993F, -145.964005F), new Vector2(-690.825989F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-690.333984F, -146.636002F), new Vector2(-689.619995F, -146.804001F), new Vector2(-688.684021F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(-687.796021F, -146.804001F), new Vector2(-687.004028F, -146.636002F), new Vector2(-686.307983F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-685.612F, -145.964005F), new Vector2(-685.012024F, -145.483994F), new Vector2(-684.507996F, -144.860001F));
+ builder.AddLine(new Vector2(-682.419983F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(-683.09198F, -147.884003F), new Vector2(-683.950012F, -148.585999F), new Vector2(-684.994019F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(-686.038025F, -149.522003F), new Vector2(-687.231995F, -149.755997F), new Vector2(-688.575989F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-689.848022F, -149.755997F), new Vector2(-690.940002F, -149.552002F), new Vector2(-691.85199F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(-692.763977F, -148.735992F), new Vector2(-693.466003F, -148.154007F), new Vector2(-693.958008F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(-694.450012F, -146.641998F), new Vector2(-694.695984F, -145.748001F), new Vector2(-694.695984F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(-694.695984F, -143.684006F), new Vector2(-694.473999F, -142.850006F), new Vector2(-694.030029F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(-693.585999F, -141.578003F), new Vector2(-693.015991F, -141.080002F), new Vector2(-692.320007F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(-691.624023F, -140.360001F), new Vector2(-690.885986F, -140.072006F), new Vector2(-690.106018F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(-689.325989F, -139.639999F), new Vector2(-688.588013F, -139.417999F), new Vector2(-687.892029F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(-687.195984F, -138.962006F), new Vector2(-686.625977F, -138.673996F), new Vector2(-686.182007F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(-685.737976F, -137.977997F), new Vector2(-685.515991F, -137.492004F), new Vector2(-685.515991F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(-685.515991F, -136.244003F), new Vector2(-685.791992F, -135.757996F), new Vector2(-686.343994F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(-686.895996F, -135.061996F), new Vector2(-687.676025F, -134.888F), new Vector2(-688.684021F, -134.888F));
+ builder.AddCubicBezier(new Vector2(-689.692017F, -134.888F), new Vector2(-690.604004F, -135.074005F), new Vector2(-691.419983F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(-692.236023F, -135.817993F), new Vector2(-692.955994F, -136.388F), new Vector2(-693.580017F, -137.156006F));
+ builder.AddLine(new Vector2(-695.66803F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-695.140015F, -134.419998F), new Vector2(-694.521973F, -133.862F), new Vector2(-693.814026F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(-693.106018F, -132.925995F), new Vector2(-692.320007F, -132.565994F), new Vector2(-691.455994F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(-690.59198F, -132.061996F), new Vector2(-689.679993F, -131.936005F), new Vector2(-688.719971F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-686.799988F, -131.936005F), new Vector2(-685.27002F, -132.404007F), new Vector2(-684.130005F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1060()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-709.564026F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-710.403992F, -136.328003F), new Vector2(-711.064026F, -137.018005F), new Vector2(-711.544006F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-712.023987F, -138.770004F), new Vector2(-712.263977F, -139.772003F), new Vector2(-712.263977F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-712.263977F, -142.003998F), new Vector2(-712.023987F, -142.988007F), new Vector2(-711.544006F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-711.064026F, -144.716003F), new Vector2(-710.403992F, -145.393997F), new Vector2(-709.564026F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-708.723999F, -146.378006F), new Vector2(-707.776001F, -146.623993F), new Vector2(-706.719971F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-705.616028F, -146.623993F), new Vector2(-704.650024F, -146.378006F), new Vector2(-703.822021F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-702.994019F, -145.393997F), new Vector2(-702.333984F, -144.716003F), new Vector2(-701.84198F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-701.349976F, -142.988007F), new Vector2(-701.104004F, -142.003998F), new Vector2(-701.104004F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-701.104004F, -139.772003F), new Vector2(-701.343994F, -138.770004F), new Vector2(-701.823975F, -137.893997F));
+ builder.AddCubicBezier(new Vector2(-702.304016F, -137.018005F), new Vector2(-702.963989F, -136.328003F), new Vector2(-703.804016F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-704.643982F, -135.320007F), new Vector2(-705.616028F, -135.067993F), new Vector2(-706.719971F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-707.776001F, -135.067993F), new Vector2(-708.723999F, -135.320007F), new Vector2(-709.564026F, -135.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-702.166016F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-700.809998F, -133.916F), new Vector2(-699.736023F, -134.990005F), new Vector2(-698.94397F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-698.151978F, -137.701996F), new Vector2(-697.755981F, -139.220001F), new Vector2(-697.755981F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-697.755981F, -142.556F), new Vector2(-698.151978F, -144.056F), new Vector2(-698.94397F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-699.736023F, -146.744003F), new Vector2(-700.809998F, -147.806F), new Vector2(-702.166016F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-703.521973F, -149.365997F), new Vector2(-705.039978F, -149.755997F), new Vector2(-706.719971F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-708.375977F, -149.755997F), new Vector2(-709.875977F, -149.360001F), new Vector2(-711.219971F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-712.564026F, -147.776001F), new Vector2(-713.632019F, -146.714005F), new Vector2(-714.424011F, -145.382004F));
+ builder.AddCubicBezier(new Vector2(-715.216003F, -144.050003F), new Vector2(-715.612F, -142.556F), new Vector2(-715.612F, -140.899994F));
+ builder.AddCubicBezier(new Vector2(-715.612F, -139.220001F), new Vector2(-715.216003F, -137.701996F), new Vector2(-714.424011F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-713.632019F, -134.990005F), new Vector2(-712.564026F, -133.916F), new Vector2(-711.219971F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-709.875977F, -132.332001F), new Vector2(-708.375977F, -131.936005F), new Vector2(-706.719971F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-705.039978F, -131.936005F), new Vector2(-703.521973F, -132.332001F), new Vector2(-702.166016F, -133.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1061()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-719.427979F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-719.044006F, -153.806F), new Vector2(-718.85199F, -154.304001F), new Vector2(-718.85199F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-718.85199F, -155.479996F), new Vector2(-719.044006F, -155.966003F), new Vector2(-719.427979F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-719.812012F, -156.757996F), new Vector2(-720.304016F, -156.955994F), new Vector2(-720.903992F, -156.955994F));
+ builder.AddCubicBezier(new Vector2(-721.504028F, -156.955994F), new Vector2(-721.995972F, -156.757996F), new Vector2(-722.380005F, -156.362F));
+ builder.AddCubicBezier(new Vector2(-722.763977F, -155.966003F), new Vector2(-722.955994F, -155.479996F), new Vector2(-722.955994F, -154.904007F));
+ builder.AddCubicBezier(new Vector2(-722.955994F, -154.304001F), new Vector2(-722.763977F, -153.806F), new Vector2(-722.380005F, -153.410004F));
+ builder.AddCubicBezier(new Vector2(-721.995972F, -153.014008F), new Vector2(-721.504028F, -152.815994F), new Vector2(-720.903992F, -152.815994F));
+ builder.AddCubicBezier(new Vector2(-720.304016F, -152.815994F), new Vector2(-719.812012F, -153.014008F), new Vector2(-719.427979F, -153.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-719.283997F, -132.296005F));
+ builder.AddLine(new Vector2(-719.283997F, -149.395996F));
+ builder.AddLine(new Vector2(-722.559998F, -149.395996F));
+ builder.AddLine(new Vector2(-722.559998F, -132.296005F));
+ builder.AddLine(new Vector2(-719.283997F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1062()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-732.604004F, -145.544006F));
+ builder.AddCubicBezier(new Vector2(-731.835999F, -146.311996F), new Vector2(-730.85199F, -146.695999F), new Vector2(-729.651978F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-729.075989F, -146.695999F), new Vector2(-728.572021F, -146.612F), new Vector2(-728.140015F, -146.444F));
+ builder.AddCubicBezier(new Vector2(-727.708008F, -146.276001F), new Vector2(-727.312012F, -146F), new Vector2(-726.952026F, -145.615997F));
+ builder.AddLine(new Vector2(-724.828003F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(-725.427979F, -148.507996F), new Vector2(-726.075989F, -149.005997F), new Vector2(-726.771973F, -149.306F));
+ builder.AddCubicBezier(new Vector2(-727.468018F, -149.606003F), new Vector2(-728.247986F, -149.755997F), new Vector2(-729.112F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-731.007996F, -149.755997F), new Vector2(-732.460022F, -149.108002F), new Vector2(-733.468018F, -147.811996F));
+ builder.AddCubicBezier(new Vector2(-734.476013F, -146.516006F), new Vector2(-734.97998F, -144.776001F), new Vector2(-734.97998F, -142.591995F));
+ builder.AddLine(new Vector2(-733.755981F, -142.016006F));
+ builder.AddCubicBezier(new Vector2(-733.755981F, -143.600006F), new Vector2(-733.372009F, -144.776001F), new Vector2(-732.604004F, -145.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-733.755981F, -132.296005F));
+ builder.AddLine(new Vector2(-733.755981F, -149.395996F));
+ builder.AddLine(new Vector2(-736.995972F, -149.395996F));
+ builder.AddLine(new Vector2(-736.995972F, -132.296005F));
+ builder.AddLine(new Vector2(-733.755981F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1063()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-741.711975F, -132.296005F));
+ builder.AddLine(new Vector2(-741.711975F, -149.395996F));
+ builder.AddLine(new Vector2(-744.987976F, -149.395996F));
+ builder.AddLine(new Vector2(-744.987976F, -145.220001F));
+ builder.AddLine(new Vector2(-744.375977F, -141.080002F));
+ builder.AddLine(new Vector2(-744.987976F, -136.904007F));
+ builder.AddLine(new Vector2(-744.987976F, -132.296005F));
+ builder.AddLine(new Vector2(-741.711975F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-753.015991F, -135.751999F));
+ builder.AddCubicBezier(new Vector2(-753.856018F, -136.255997F), new Vector2(-754.51001F, -136.945999F), new Vector2(-754.978027F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-755.445984F, -138.697998F), new Vector2(-755.679993F, -139.712006F), new Vector2(-755.679993F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-755.679993F, -141.992004F), new Vector2(-755.445984F, -142.994003F), new Vector2(-754.978027F, -143.869995F));
+ builder.AddCubicBezier(new Vector2(-754.51001F, -144.746002F), new Vector2(-753.862F, -145.436005F), new Vector2(-753.033997F, -145.940002F));
+ builder.AddCubicBezier(new Vector2(-752.205994F, -146.444F), new Vector2(-751.252014F, -146.695999F), new Vector2(-750.171997F, -146.695999F));
+ builder.AddCubicBezier(new Vector2(-749.09198F, -146.695999F), new Vector2(-748.150024F, -146.449997F), new Vector2(-747.346008F, -145.957993F));
+ builder.AddCubicBezier(new Vector2(-746.541992F, -145.466003F), new Vector2(-745.911987F, -144.776001F), new Vector2(-745.455994F, -143.888F));
+ builder.AddCubicBezier(new Vector2(-745F, -143F), new Vector2(-744.771973F, -141.979996F), new Vector2(-744.771973F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-744.771973F, -139.123993F), new Vector2(-745.263977F, -137.725998F), new Vector2(-746.247986F, -136.634003F));
+ builder.AddCubicBezier(new Vector2(-747.231995F, -135.542007F), new Vector2(-748.528015F, -134.996002F), new Vector2(-750.135986F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-751.216003F, -134.996002F), new Vector2(-752.176025F, -135.248001F), new Vector2(-753.015991F, -135.751999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-747.184021F, -132.746002F));
+ builder.AddCubicBezier(new Vector2(-746.151978F, -133.285995F), new Vector2(-745.330017F, -134.035995F), new Vector2(-744.718018F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-744.106018F, -135.955994F), new Vector2(-743.763977F, -137.048004F), new Vector2(-743.692017F, -138.272003F));
+ builder.AddLine(new Vector2(-743.692017F, -143.419998F));
+ builder.AddCubicBezier(new Vector2(-743.763977F, -144.667999F), new Vector2(-744.112F, -145.766006F), new Vector2(-744.736023F, -146.714005F));
+ builder.AddCubicBezier(new Vector2(-745.359985F, -147.662003F), new Vector2(-746.182007F, -148.406006F), new Vector2(-747.202026F, -148.945999F));
+ builder.AddCubicBezier(new Vector2(-748.221985F, -149.485992F), new Vector2(-749.380005F, -149.755997F), new Vector2(-750.676025F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-752.26001F, -149.755997F), new Vector2(-753.682007F, -149.360001F), new Vector2(-754.942017F, -148.567993F));
+ builder.AddCubicBezier(new Vector2(-756.202026F, -147.776001F), new Vector2(-757.197998F, -146.707993F), new Vector2(-757.929993F, -145.363998F));
+ builder.AddCubicBezier(new Vector2(-758.661987F, -144.020004F), new Vector2(-759.028015F, -142.507996F), new Vector2(-759.028015F, -140.828003F));
+ builder.AddCubicBezier(new Vector2(-759.028015F, -139.147995F), new Vector2(-758.661987F, -137.636002F), new Vector2(-757.929993F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-757.197998F, -134.947998F), new Vector2(-756.202026F, -133.886002F), new Vector2(-754.942017F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-753.682007F, -132.326004F), new Vector2(-752.26001F, -131.936005F), new Vector2(-750.676025F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-749.380005F, -131.936005F), new Vector2(-748.216003F, -132.205994F), new Vector2(-747.184021F, -132.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1064()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-774.435974F, -132.296005F));
+ builder.AddLine(new Vector2(-774.435974F, -149.395996F));
+ builder.AddLine(new Vector2(-777.676025F, -149.395996F));
+ builder.AddLine(new Vector2(-777.676025F, -132.296005F));
+ builder.AddLine(new Vector2(-774.435974F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-762.340027F, -132.296005F));
+ builder.AddLine(new Vector2(-762.340027F, -142.916F));
+ builder.AddCubicBezier(new Vector2(-762.340027F, -144.091995F), new Vector2(-762.627991F, -145.201996F), new Vector2(-763.203979F, -146.246002F));
+ builder.AddCubicBezier(new Vector2(-763.780029F, -147.289993F), new Vector2(-764.565979F, -148.136002F), new Vector2(-765.562012F, -148.783997F));
+ builder.AddCubicBezier(new Vector2(-766.557983F, -149.432007F), new Vector2(-767.703979F, -149.755997F), new Vector2(-769F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-770.296021F, -149.755997F), new Vector2(-771.460022F, -149.462006F), new Vector2(-772.492004F, -148.873993F));
+ builder.AddCubicBezier(new Vector2(-773.523987F, -148.285995F), new Vector2(-774.328003F, -147.488007F), new Vector2(-774.903992F, -146.479996F));
+ builder.AddCubicBezier(new Vector2(-775.47998F, -145.472F), new Vector2(-775.768005F, -144.320007F), new Vector2(-775.768005F, -143.024002F));
+ builder.AddLine(new Vector2(-774.435974F, -142.268005F));
+ builder.AddCubicBezier(new Vector2(-774.435974F, -143.132004F), new Vector2(-774.244019F, -143.899994F), new Vector2(-773.859985F, -144.572006F));
+ builder.AddCubicBezier(new Vector2(-773.476013F, -145.244003F), new Vector2(-772.947998F, -145.772003F), new Vector2(-772.276001F, -146.156006F));
+ builder.AddCubicBezier(new Vector2(-771.604004F, -146.539993F), new Vector2(-770.835999F, -146.731995F), new Vector2(-769.971985F, -146.731995F));
+ builder.AddCubicBezier(new Vector2(-768.676025F, -146.731995F), new Vector2(-767.625977F, -146.311996F), new Vector2(-766.822021F, -145.472F));
+ builder.AddCubicBezier(new Vector2(-766.018005F, -144.632004F), new Vector2(-765.616028F, -143.563995F), new Vector2(-765.616028F, -142.268005F));
+ builder.AddLine(new Vector2(-765.616028F, -132.296005F));
+ builder.AddLine(new Vector2(-762.340027F, -132.296005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1065()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-785.271973F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-784.096008F, -133.195999F), new Vector2(-783.088013F, -133.927994F), new Vector2(-782.247986F, -134.888F));
+ builder.AddLine(new Vector2(-784.335999F, -137.011993F));
+ builder.AddCubicBezier(new Vector2(-784.911987F, -136.339996F), new Vector2(-785.60199F, -135.835999F), new Vector2(-786.406006F, -135.5F));
+ builder.AddCubicBezier(new Vector2(-787.210022F, -135.164001F), new Vector2(-788.09198F, -134.996002F), new Vector2(-789.052002F, -134.996002F));
+ builder.AddCubicBezier(new Vector2(-790.203979F, -134.996002F), new Vector2(-791.223999F, -135.242004F), new Vector2(-792.112F, -135.733994F));
+ builder.AddCubicBezier(new Vector2(-793F, -136.225998F), new Vector2(-793.684021F, -136.921997F), new Vector2(-794.164001F, -137.822006F));
+ builder.AddCubicBezier(new Vector2(-794.643982F, -138.722F), new Vector2(-794.883972F, -139.772003F), new Vector2(-794.883972F, -140.972F));
+ builder.AddCubicBezier(new Vector2(-794.883972F, -142.147995F), new Vector2(-794.656006F, -143.167999F), new Vector2(-794.200012F, -144.031998F));
+ builder.AddCubicBezier(new Vector2(-793.744019F, -144.895996F), new Vector2(-793.096008F, -145.567993F), new Vector2(-792.255981F, -146.048004F));
+ builder.AddCubicBezier(new Vector2(-791.416016F, -146.528F), new Vector2(-790.44397F, -146.768005F), new Vector2(-789.340027F, -146.768005F));
+ builder.AddCubicBezier(new Vector2(-788.283997F, -146.768005F), new Vector2(-787.383972F, -146.546005F), new Vector2(-786.640015F, -146.102005F));
+ builder.AddCubicBezier(new Vector2(-785.895996F, -145.658005F), new Vector2(-785.320007F, -145.033997F), new Vector2(-784.911987F, -144.229996F));
+ builder.AddCubicBezier(new Vector2(-784.504028F, -143.425995F), new Vector2(-784.299988F, -142.447998F), new Vector2(-784.299988F, -141.296005F));
+ builder.AddLine(new Vector2(-783.112F, -142.339996F));
+ builder.AddLine(new Vector2(-795.820007F, -142.339996F));
+ builder.AddLine(new Vector2(-795.820007F, -139.639999F));
+ builder.AddLine(new Vector2(-781.383972F, -139.639999F));
+ builder.AddCubicBezier(new Vector2(-781.312012F, -139.975998F), new Vector2(-781.263977F, -140.281998F), new Vector2(-781.23999F, -140.557999F));
+ builder.AddCubicBezier(new Vector2(-781.216003F, -140.834F), new Vector2(-781.203979F, -141.091995F), new Vector2(-781.203979F, -141.332001F));
+ builder.AddCubicBezier(new Vector2(-781.203979F, -142.964005F), new Vector2(-781.546021F, -144.416F), new Vector2(-782.22998F, -145.688004F));
+ builder.AddCubicBezier(new Vector2(-782.914001F, -146.960007F), new Vector2(-783.867981F, -147.955994F), new Vector2(-785.09198F, -148.675995F));
+ builder.AddCubicBezier(new Vector2(-786.315979F, -149.395996F), new Vector2(-787.708008F, -149.755997F), new Vector2(-789.268005F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-790.924011F, -149.755997F), new Vector2(-792.41803F, -149.365997F), new Vector2(-793.75F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-795.08197F, -147.806F), new Vector2(-796.138F, -146.744003F), new Vector2(-796.91803F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-797.697998F, -144.056F), new Vector2(-798.088013F, -142.544006F), new Vector2(-798.088013F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-798.088013F, -139.160004F), new Vector2(-797.692017F, -137.636002F), new Vector2(-796.900024F, -136.292007F));
+ builder.AddCubicBezier(new Vector2(-796.107971F, -134.947998F), new Vector2(-795.033997F, -133.886002F), new Vector2(-793.677979F, -133.106003F));
+ builder.AddCubicBezier(new Vector2(-792.322021F, -132.326004F), new Vector2(-790.780029F, -131.936005F), new Vector2(-789.052002F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-787.708008F, -131.936005F), new Vector2(-786.447998F, -132.188004F), new Vector2(-785.271973F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1066()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-802.75F, -132.692001F));
+ builder.AddCubicBezier(new Vector2(-801.609985F, -133.195999F), new Vector2(-800.643982F, -133.904007F), new Vector2(-799.85199F, -134.815994F));
+ builder.AddLine(new Vector2(-801.976013F, -136.975998F));
+ builder.AddCubicBezier(new Vector2(-802.528015F, -136.352005F), new Vector2(-803.182007F, -135.878006F), new Vector2(-803.937988F, -135.554001F));
+ builder.AddCubicBezier(new Vector2(-804.69397F, -135.229996F), new Vector2(-805.528015F, -135.067993F), new Vector2(-806.440002F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-807.52002F, -135.067993F), new Vector2(-808.47998F, -135.320007F), new Vector2(-809.320007F, -135.824005F));
+ builder.AddCubicBezier(new Vector2(-810.159973F, -136.328003F), new Vector2(-810.820007F, -137.011993F), new Vector2(-811.299988F, -137.876007F));
+ builder.AddCubicBezier(new Vector2(-811.780029F, -138.740005F), new Vector2(-812.02002F, -139.735992F), new Vector2(-812.02002F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-812.02002F, -141.992004F), new Vector2(-811.780029F, -142.988007F), new Vector2(-811.299988F, -143.852005F));
+ builder.AddCubicBezier(new Vector2(-810.820007F, -144.716003F), new Vector2(-810.159973F, -145.393997F), new Vector2(-809.320007F, -145.886002F));
+ builder.AddCubicBezier(new Vector2(-808.47998F, -146.378006F), new Vector2(-807.52002F, -146.623993F), new Vector2(-806.440002F, -146.623993F));
+ builder.AddCubicBezier(new Vector2(-805.552002F, -146.623993F), new Vector2(-804.723999F, -146.462006F), new Vector2(-803.955994F, -146.138F));
+ builder.AddCubicBezier(new Vector2(-803.187988F, -145.813995F), new Vector2(-802.539978F, -145.339996F), new Vector2(-802.012024F, -144.716003F));
+ builder.AddLine(new Vector2(-799.85199F, -146.876007F));
+ builder.AddCubicBezier(new Vector2(-800.66803F, -147.811996F), new Vector2(-801.640015F, -148.526001F), new Vector2(-802.768005F, -149.018005F));
+ builder.AddCubicBezier(new Vector2(-803.895996F, -149.509995F), new Vector2(-805.119995F, -149.755997F), new Vector2(-806.440002F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-808.119995F, -149.755997F), new Vector2(-809.638F, -149.365997F), new Vector2(-810.994019F, -148.585999F));
+ builder.AddCubicBezier(new Vector2(-812.349976F, -147.806F), new Vector2(-813.41803F, -146.744003F), new Vector2(-814.197998F, -145.399994F));
+ builder.AddCubicBezier(new Vector2(-814.978027F, -144.056F), new Vector2(-815.367981F, -142.544006F), new Vector2(-815.367981F, -140.863998F));
+ builder.AddCubicBezier(new Vector2(-815.367981F, -139.207993F), new Vector2(-814.978027F, -137.701996F), new Vector2(-814.197998F, -136.345993F));
+ builder.AddCubicBezier(new Vector2(-813.41803F, -134.990005F), new Vector2(-812.349976F, -133.916F), new Vector2(-810.994019F, -133.123993F));
+ builder.AddCubicBezier(new Vector2(-809.638F, -132.332001F), new Vector2(-808.119995F, -131.936005F), new Vector2(-806.440002F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-805.119995F, -131.936005F), new Vector2(-803.890015F, -132.188004F), new Vector2(-802.75F, -132.692001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1067()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-819.598022F, -133.339996F));
+ builder.AddCubicBezier(new Vector2(-818.458008F, -134.276001F), new Vector2(-817.888F, -135.548004F), new Vector2(-817.888F, -137.156006F));
+ builder.AddCubicBezier(new Vector2(-817.888F, -138.212006F), new Vector2(-818.109985F, -139.063995F), new Vector2(-818.554016F, -139.712006F));
+ builder.AddCubicBezier(new Vector2(-818.997986F, -140.360001F), new Vector2(-819.567993F, -140.876007F), new Vector2(-820.263977F, -141.259995F));
+ builder.AddCubicBezier(new Vector2(-820.960022F, -141.643997F), new Vector2(-821.692017F, -141.949997F), new Vector2(-822.460022F, -142.177994F));
+ builder.AddCubicBezier(new Vector2(-823.228027F, -142.406006F), new Vector2(-823.966003F, -142.628006F), new Vector2(-824.674011F, -142.843994F));
+ builder.AddCubicBezier(new Vector2(-825.382019F, -143.059998F), new Vector2(-825.952026F, -143.324005F), new Vector2(-826.383972F, -143.636002F));
+ builder.AddCubicBezier(new Vector2(-826.815979F, -143.947998F), new Vector2(-827.031982F, -144.391998F), new Vector2(-827.031982F, -144.968002F));
+ builder.AddCubicBezier(new Vector2(-827.031982F, -145.520004F), new Vector2(-826.786011F, -145.964005F), new Vector2(-826.294006F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-825.802002F, -146.636002F), new Vector2(-825.088013F, -146.804001F), new Vector2(-824.151978F, -146.804001F));
+ builder.AddCubicBezier(new Vector2(-823.263977F, -146.804001F), new Vector2(-822.471985F, -146.636002F), new Vector2(-821.776001F, -146.300003F));
+ builder.AddCubicBezier(new Vector2(-821.080017F, -145.964005F), new Vector2(-820.47998F, -145.483994F), new Vector2(-819.976013F, -144.860001F));
+ builder.AddLine(new Vector2(-817.888F, -146.947998F));
+ builder.AddCubicBezier(new Vector2(-818.559998F, -147.884003F), new Vector2(-819.41803F, -148.585999F), new Vector2(-820.461975F, -149.054001F));
+ builder.AddCubicBezier(new Vector2(-821.505981F, -149.522003F), new Vector2(-822.700012F, -149.755997F), new Vector2(-824.044006F, -149.755997F));
+ builder.AddCubicBezier(new Vector2(-825.315979F, -149.755997F), new Vector2(-826.40802F, -149.552002F), new Vector2(-827.320007F, -149.143997F));
+ builder.AddCubicBezier(new Vector2(-828.231995F, -148.735992F), new Vector2(-828.934021F, -148.154007F), new Vector2(-829.426025F, -147.397995F));
+ builder.AddCubicBezier(new Vector2(-829.91803F, -146.641998F), new Vector2(-830.164001F, -145.748001F), new Vector2(-830.164001F, -144.716003F));
+ builder.AddCubicBezier(new Vector2(-830.164001F, -143.684006F), new Vector2(-829.942017F, -142.850006F), new Vector2(-829.497986F, -142.214005F));
+ builder.AddCubicBezier(new Vector2(-829.054016F, -141.578003F), new Vector2(-828.484009F, -141.080002F), new Vector2(-827.788025F, -140.720001F));
+ builder.AddCubicBezier(new Vector2(-827.09198F, -140.360001F), new Vector2(-826.354004F, -140.072006F), new Vector2(-825.573975F, -139.856003F));
+ builder.AddCubicBezier(new Vector2(-824.794006F, -139.639999F), new Vector2(-824.05603F, -139.417999F), new Vector2(-823.359985F, -139.190002F));
+ builder.AddCubicBezier(new Vector2(-822.664001F, -138.962006F), new Vector2(-822.093994F, -138.673996F), new Vector2(-821.650024F, -138.326004F));
+ builder.AddCubicBezier(new Vector2(-821.205994F, -137.977997F), new Vector2(-820.984009F, -137.492004F), new Vector2(-820.984009F, -136.867996F));
+ builder.AddCubicBezier(new Vector2(-820.984009F, -136.244003F), new Vector2(-821.26001F, -135.757996F), new Vector2(-821.812012F, -135.410004F));
+ builder.AddCubicBezier(new Vector2(-822.364014F, -135.061996F), new Vector2(-823.143982F, -134.888F), new Vector2(-824.151978F, -134.888F));
+ builder.AddCubicBezier(new Vector2(-825.159973F, -134.888F), new Vector2(-826.072021F, -135.074005F), new Vector2(-826.888F, -135.445999F));
+ builder.AddCubicBezier(new Vector2(-827.703979F, -135.817993F), new Vector2(-828.424011F, -136.388F), new Vector2(-829.047974F, -137.156006F));
+ builder.AddLine(new Vector2(-831.135986F, -135.067993F));
+ builder.AddCubicBezier(new Vector2(-830.607971F, -134.419998F), new Vector2(-829.98999F, -133.862F), new Vector2(-829.281982F, -133.393997F));
+ builder.AddCubicBezier(new Vector2(-828.573975F, -132.925995F), new Vector2(-827.788025F, -132.565994F), new Vector2(-826.924011F, -132.313995F));
+ builder.AddCubicBezier(new Vector2(-826.059998F, -132.061996F), new Vector2(-825.14801F, -131.936005F), new Vector2(-824.187988F, -131.936005F));
+ builder.AddCubicBezier(new Vector2(-822.268005F, -131.936005F), new Vector2(-820.737976F, -132.404007F), new Vector2(-819.598022F, -133.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1068()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(684.104004F, -201.199997F));
+ builder.AddLine(new Vector2(680.828003F, -201.199997F));
+ builder.AddLine(new Vector2(680.828003F, -188.419998F));
+ builder.AddLine(new Vector2(681.440002F, -184.279999F));
+ builder.AddLine(new Vector2(680.828003F, -180.104004F));
+ builder.AddLine(new Vector2(680.828003F, -175.496002F));
+ builder.AddLine(new Vector2(684.104004F, -175.496002F));
+ builder.AddLine(new Vector2(684.104004F, -201.199997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(672.781982F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(671.953979F, -179.425995F), new Vector2(671.30603F, -180.115997F), new Vector2(670.838013F, -181.003998F));
+ builder.AddCubicBezier(new Vector2(670.369995F, -181.891998F), new Vector2(670.135986F, -182.912003F), new Vector2(670.135986F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(670.135986F, -185.216003F), new Vector2(670.369995F, -186.229996F), new Vector2(670.838013F, -187.106003F));
+ builder.AddCubicBezier(new Vector2(671.30603F, -187.981995F), new Vector2(671.947998F, -188.666F), new Vector2(672.763977F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(673.580017F, -189.649994F), new Vector2(674.528015F, -189.895996F), new Vector2(675.607971F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(676.687988F, -189.895996F), new Vector2(677.635986F, -189.643997F), new Vector2(678.452026F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(679.268005F, -188.636002F), new Vector2(679.903992F, -187.945999F), new Vector2(680.359985F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(680.815979F, -186.194F), new Vector2(681.044006F, -185.179993F), new Vector2(681.044006F, -184.028F));
+ builder.AddCubicBezier(new Vector2(681.044006F, -182.899994F), new Vector2(680.815979F, -181.897995F), new Vector2(680.359985F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(679.903992F, -180.145996F), new Vector2(679.268005F, -179.455994F), new Vector2(678.452026F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(677.635986F, -178.447998F), new Vector2(676.687988F, -178.195999F), new Vector2(675.607971F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(674.552002F, -178.195999F), new Vector2(673.609985F, -178.442001F), new Vector2(672.781982F, -178.934006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(678.596008F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(679.627991F, -176.485992F), new Vector2(680.455994F, -177.235992F), new Vector2(681.080017F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(681.703979F, -179.156006F), new Vector2(682.052002F, -180.248001F), new Vector2(682.124023F, -181.472F));
+ builder.AddLine(new Vector2(682.124023F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(682.052002F, -187.867996F), new Vector2(681.697998F, -188.966003F), new Vector2(681.062012F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(680.426025F, -190.862F), new Vector2(679.59198F, -191.606003F), new Vector2(678.559998F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(677.528015F, -192.686005F), new Vector2(676.364014F, -192.955994F), new Vector2(675.067993F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(673.507996F, -192.955994F), new Vector2(672.104004F, -192.559998F), new Vector2(670.856018F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(669.607971F, -190.975998F), new Vector2(668.617981F, -189.908005F), new Vector2(667.885986F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(667.153992F, -187.220001F), new Vector2(666.788025F, -185.707993F), new Vector2(666.788025F, -184.028F));
+ builder.AddCubicBezier(new Vector2(666.788025F, -182.348007F), new Vector2(667.153992F, -180.835999F), new Vector2(667.885986F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(668.617981F, -178.147995F), new Vector2(669.607971F, -177.085999F), new Vector2(670.856018F, -176.306F));
+ builder.AddCubicBezier(new Vector2(672.104004F, -175.526001F), new Vector2(673.507996F, -175.136002F), new Vector2(675.067993F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(676.388F, -175.136002F), new Vector2(677.564026F, -175.406006F), new Vector2(678.596008F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1069()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(660.271973F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(661.447998F, -176.395996F), new Vector2(662.455994F, -177.128006F), new Vector2(663.296021F, -178.087997F));
+ builder.AddLine(new Vector2(661.208008F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(660.632019F, -179.539993F), new Vector2(659.942017F, -179.035995F), new Vector2(659.138F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(658.333984F, -178.363998F), new Vector2(657.452026F, -178.195999F), new Vector2(656.492004F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(655.340027F, -178.195999F), new Vector2(654.320007F, -178.442001F), new Vector2(653.432007F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(652.544006F, -179.425995F), new Vector2(651.859985F, -180.121994F), new Vector2(651.380005F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(650.900024F, -181.921997F), new Vector2(650.659973F, -182.972F), new Vector2(650.659973F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(650.659973F, -185.348007F), new Vector2(650.888F, -186.367996F), new Vector2(651.343994F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(651.799988F, -188.095993F), new Vector2(652.447998F, -188.768005F), new Vector2(653.288025F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(654.127991F, -189.727997F), new Vector2(655.099976F, -189.968002F), new Vector2(656.203979F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(657.26001F, -189.968002F), new Vector2(658.159973F, -189.746002F), new Vector2(658.903992F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(659.64801F, -188.858002F), new Vector2(660.223999F, -188.233994F), new Vector2(660.632019F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(661.039978F, -186.626007F), new Vector2(661.244019F, -185.647995F), new Vector2(661.244019F, -184.496002F));
+ builder.AddLine(new Vector2(662.432007F, -185.539993F));
+ builder.AddLine(new Vector2(649.723999F, -185.539993F));
+ builder.AddLine(new Vector2(649.723999F, -182.839996F));
+ builder.AddLine(new Vector2(664.159973F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(664.231995F, -183.175995F), new Vector2(664.280029F, -183.481995F), new Vector2(664.304016F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(664.328003F, -184.033997F), new Vector2(664.340027F, -184.292007F), new Vector2(664.340027F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(664.340027F, -186.164001F), new Vector2(663.997986F, -187.615997F), new Vector2(663.314026F, -188.888F));
+ builder.AddCubicBezier(new Vector2(662.630005F, -190.160004F), new Vector2(661.676025F, -191.156006F), new Vector2(660.452026F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(659.228027F, -192.595993F), new Vector2(657.835999F, -192.955994F), new Vector2(656.276001F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(654.619995F, -192.955994F), new Vector2(653.125977F, -192.565994F), new Vector2(651.794006F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(650.461975F, -191.005997F), new Vector2(649.406006F, -189.944F), new Vector2(648.625977F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(647.846008F, -187.255997F), new Vector2(647.455994F, -185.744003F), new Vector2(647.455994F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(647.455994F, -182.360001F), new Vector2(647.85199F, -180.835999F), new Vector2(648.643982F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(649.435974F, -178.147995F), new Vector2(650.51001F, -177.085999F), new Vector2(651.866028F, -176.306F));
+ builder.AddCubicBezier(new Vector2(653.221985F, -175.526001F), new Vector2(654.763977F, -175.136002F), new Vector2(656.492004F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(657.835999F, -175.136002F), new Vector2(659.096008F, -175.388F), new Vector2(660.271973F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1070()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(645.94397F, -189.643997F));
+ builder.AddLine(new Vector2(645.94397F, -192.595993F));
+ builder.AddLine(new Vector2(634.280029F, -192.595993F));
+ builder.AddLine(new Vector2(634.280029F, -189.643997F));
+ builder.AddLine(new Vector2(645.94397F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(641.731995F, -175.496002F));
+ builder.AddLine(new Vector2(641.731995F, -199.759995F));
+ builder.AddLine(new Vector2(638.492004F, -199.759995F));
+ builder.AddLine(new Vector2(638.492004F, -175.496002F));
+ builder.AddLine(new Vector2(641.731995F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1071()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(631.219971F, -175.496002F));
+ builder.AddLine(new Vector2(631.219971F, -192.595993F));
+ builder.AddLine(new Vector2(627.94397F, -192.595993F));
+ builder.AddLine(new Vector2(627.94397F, -188.419998F));
+ builder.AddLine(new Vector2(628.55603F, -184.279999F));
+ builder.AddLine(new Vector2(627.94397F, -180.104004F));
+ builder.AddLine(new Vector2(627.94397F, -175.496002F));
+ builder.AddLine(new Vector2(631.219971F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(619.916016F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(619.075989F, -179.455994F), new Vector2(618.421997F, -180.145996F), new Vector2(617.953979F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(617.486023F, -181.897995F), new Vector2(617.252014F, -182.912003F), new Vector2(617.252014F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(617.252014F, -185.192001F), new Vector2(617.486023F, -186.194F), new Vector2(617.953979F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(618.421997F, -187.945999F), new Vector2(619.070007F, -188.636002F), new Vector2(619.89801F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(620.726013F, -189.643997F), new Vector2(621.679993F, -189.895996F), new Vector2(622.76001F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(623.840027F, -189.895996F), new Vector2(624.781982F, -189.649994F), new Vector2(625.585999F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(626.390015F, -188.666F), new Vector2(627.02002F, -187.975998F), new Vector2(627.476013F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(627.932007F, -186.199997F), new Vector2(628.159973F, -185.179993F), new Vector2(628.159973F, -184.028F));
+ builder.AddCubicBezier(new Vector2(628.159973F, -182.324005F), new Vector2(627.66803F, -180.925995F), new Vector2(626.684021F, -179.834F));
+ builder.AddCubicBezier(new Vector2(625.700012F, -178.742004F), new Vector2(624.403992F, -178.195999F), new Vector2(622.796021F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(621.716003F, -178.195999F), new Vector2(620.755981F, -178.447998F), new Vector2(619.916016F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(625.747986F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(626.780029F, -176.485992F), new Vector2(627.60199F, -177.235992F), new Vector2(628.213989F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(628.825989F, -179.156006F), new Vector2(629.16803F, -180.248001F), new Vector2(629.23999F, -181.472F));
+ builder.AddLine(new Vector2(629.23999F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(629.16803F, -187.867996F), new Vector2(628.820007F, -188.966003F), new Vector2(628.195984F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(627.572021F, -190.862F), new Vector2(626.75F, -191.606003F), new Vector2(625.72998F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(624.710022F, -192.686005F), new Vector2(623.552002F, -192.955994F), new Vector2(622.255981F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(620.671997F, -192.955994F), new Vector2(619.25F, -192.559998F), new Vector2(617.98999F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(616.72998F, -190.975998F), new Vector2(615.734009F, -189.908005F), new Vector2(615.002014F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(614.27002F, -187.220001F), new Vector2(613.903992F, -185.707993F), new Vector2(613.903992F, -184.028F));
+ builder.AddCubicBezier(new Vector2(613.903992F, -182.348007F), new Vector2(614.27002F, -180.835999F), new Vector2(615.002014F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(615.734009F, -178.147995F), new Vector2(616.72998F, -177.085999F), new Vector2(617.98999F, -176.306F));
+ builder.AddCubicBezier(new Vector2(619.25F, -175.526001F), new Vector2(620.671997F, -175.136002F), new Vector2(622.255981F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(623.552002F, -175.136002F), new Vector2(624.716003F, -175.406006F), new Vector2(625.747986F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1072()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(609.205994F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(610.346008F, -176.395996F), new Vector2(611.312012F, -177.104004F), new Vector2(612.104004F, -178.016006F));
+ builder.AddLine(new Vector2(609.97998F, -180.175995F));
+ builder.AddCubicBezier(new Vector2(609.427979F, -179.552002F), new Vector2(608.773987F, -179.078003F), new Vector2(608.018005F, -178.753998F));
+ builder.AddCubicBezier(new Vector2(607.262024F, -178.429993F), new Vector2(606.427979F, -178.268005F), new Vector2(605.515991F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(604.435974F, -178.268005F), new Vector2(603.476013F, -178.520004F), new Vector2(602.635986F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(601.796021F, -179.528F), new Vector2(601.135986F, -180.212006F), new Vector2(600.656006F, -181.076004F));
+ builder.AddCubicBezier(new Vector2(600.176025F, -181.940002F), new Vector2(599.935974F, -182.936005F), new Vector2(599.935974F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(599.935974F, -185.192001F), new Vector2(600.176025F, -186.188004F), new Vector2(600.656006F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(601.135986F, -187.916F), new Vector2(601.796021F, -188.593994F), new Vector2(602.635986F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(603.476013F, -189.578003F), new Vector2(604.435974F, -189.824005F), new Vector2(605.515991F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(606.403992F, -189.824005F), new Vector2(607.231995F, -189.662003F), new Vector2(608F, -189.337997F));
+ builder.AddCubicBezier(new Vector2(608.768005F, -189.014008F), new Vector2(609.416016F, -188.539993F), new Vector2(609.94397F, -187.916F));
+ builder.AddLine(new Vector2(612.104004F, -190.076004F));
+ builder.AddCubicBezier(new Vector2(611.288025F, -191.011993F), new Vector2(610.315979F, -191.725998F), new Vector2(609.187988F, -192.218002F));
+ builder.AddCubicBezier(new Vector2(608.059998F, -192.710007F), new Vector2(606.835999F, -192.955994F), new Vector2(605.515991F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(603.835999F, -192.955994F), new Vector2(602.317993F, -192.565994F), new Vector2(600.961975F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(599.606018F, -191.005997F), new Vector2(598.538025F, -189.944F), new Vector2(597.757996F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(596.978027F, -187.255997F), new Vector2(596.588013F, -185.744003F), new Vector2(596.588013F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(596.588013F, -182.408005F), new Vector2(596.978027F, -180.901993F), new Vector2(597.757996F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(598.538025F, -178.190002F), new Vector2(599.606018F, -177.115997F), new Vector2(600.961975F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(602.317993F, -175.531998F), new Vector2(603.835999F, -175.136002F), new Vector2(605.515991F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(606.835999F, -175.136002F), new Vector2(608.065979F, -175.388F), new Vector2(609.205994F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1073()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(592.771973F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(593.156006F, -197.005997F), new Vector2(593.348022F, -197.503998F), new Vector2(593.348022F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(593.348022F, -198.679993F), new Vector2(593.156006F, -199.166F), new Vector2(592.771973F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(592.388F, -199.957993F), new Vector2(591.895996F, -200.156006F), new Vector2(591.296021F, -200.156006F));
+ builder.AddCubicBezier(new Vector2(590.695984F, -200.156006F), new Vector2(590.203979F, -199.957993F), new Vector2(589.820007F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(589.435974F, -199.166F), new Vector2(589.244019F, -198.679993F), new Vector2(589.244019F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(589.244019F, -197.503998F), new Vector2(589.435974F, -197.005997F), new Vector2(589.820007F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(590.203979F, -196.214005F), new Vector2(590.695984F, -196.016006F), new Vector2(591.296021F, -196.016006F));
+ builder.AddCubicBezier(new Vector2(591.895996F, -196.016006F), new Vector2(592.388F, -196.214005F), new Vector2(592.771973F, -196.610001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(592.916016F, -175.496002F));
+ builder.AddLine(new Vector2(592.916016F, -192.595993F));
+ builder.AddLine(new Vector2(589.640015F, -192.595993F));
+ builder.AddLine(new Vector2(589.640015F, -175.496002F));
+ builder.AddLine(new Vector2(592.916016F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1074()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(579.596008F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(580.364014F, -189.511993F), new Vector2(581.348022F, -189.895996F), new Vector2(582.547974F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(583.124023F, -189.895996F), new Vector2(583.627991F, -189.811996F), new Vector2(584.059998F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(584.492004F, -189.475998F), new Vector2(584.888F, -189.199997F), new Vector2(585.247986F, -188.815994F));
+ builder.AddLine(new Vector2(587.372009F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(586.771973F, -191.707993F), new Vector2(586.124023F, -192.205994F), new Vector2(585.427979F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(584.731995F, -192.806F), new Vector2(583.952026F, -192.955994F), new Vector2(583.088013F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(581.192017F, -192.955994F), new Vector2(579.73999F, -192.307999F), new Vector2(578.731995F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(577.723999F, -189.716003F), new Vector2(577.219971F, -187.975998F), new Vector2(577.219971F, -185.792007F));
+ builder.AddLine(new Vector2(578.44397F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(578.44397F, -186.800003F), new Vector2(578.828003F, -187.975998F), new Vector2(579.596008F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(578.44397F, -175.496002F));
+ builder.AddLine(new Vector2(578.44397F, -192.595993F));
+ builder.AddLine(new Vector2(575.203979F, -192.595993F));
+ builder.AddLine(new Vector2(575.203979F, -175.496002F));
+ builder.AddLine(new Vector2(578.44397F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1075()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(559.885986F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(559.057983F, -179.455994F), new Vector2(558.421997F, -180.145996F), new Vector2(557.978027F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(557.533997F, -181.897995F), new Vector2(557.312012F, -182.899994F), new Vector2(557.312012F, -184.028F));
+ builder.AddCubicBezier(new Vector2(557.312012F, -185.179993F), new Vector2(557.539978F, -186.194F), new Vector2(557.995972F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(558.452026F, -187.945999F), new Vector2(559.088013F, -188.636002F), new Vector2(559.903992F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(560.719971F, -189.643997F), new Vector2(561.656006F, -189.895996F), new Vector2(562.711975F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(563.791992F, -189.895996F), new Vector2(564.73999F, -189.643997F), new Vector2(565.55603F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(566.372009F, -188.636002F), new Vector2(567.013977F, -187.945999F), new Vector2(567.481995F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(567.950012F, -186.194F), new Vector2(568.184021F, -185.192001F), new Vector2(568.184021F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(568.184021F, -182.912003F), new Vector2(567.950012F, -181.897995F), new Vector2(567.481995F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(567.013977F, -180.145996F), new Vector2(566.372009F, -179.455994F), new Vector2(565.55603F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(564.73999F, -178.447998F), new Vector2(563.791992F, -178.195999F), new Vector2(562.711975F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(561.656006F, -178.195999F), new Vector2(560.713989F, -178.447998F), new Vector2(559.885986F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(557.492004F, -175.496002F));
+ builder.AddLine(new Vector2(557.492004F, -180.104004F));
+ builder.AddLine(new Vector2(556.880005F, -184.279999F));
+ builder.AddLine(new Vector2(557.492004F, -188.419998F));
+ builder.AddLine(new Vector2(557.492004F, -201.199997F));
+ builder.AddLine(new Vector2(554.252014F, -201.199997F));
+ builder.AddLine(new Vector2(554.252014F, -175.496002F));
+ builder.AddLine(new Vector2(557.492004F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(567.481995F, -176.306F));
+ builder.AddCubicBezier(new Vector2(568.742004F, -177.085999F), new Vector2(569.731995F, -178.147995F), new Vector2(570.452026F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(571.171997F, -180.835999F), new Vector2(571.531982F, -182.348007F), new Vector2(571.531982F, -184.028F));
+ builder.AddCubicBezier(new Vector2(571.531982F, -185.707993F), new Vector2(571.171997F, -187.220001F), new Vector2(570.452026F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(569.731995F, -189.908005F), new Vector2(568.742004F, -190.975998F), new Vector2(567.481995F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(566.221985F, -192.559998F), new Vector2(564.812012F, -192.955994F), new Vector2(563.252014F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(561.97998F, -192.955994F), new Vector2(560.822021F, -192.686005F), new Vector2(559.778015F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(558.734009F, -191.606003F), new Vector2(557.893982F, -190.862F), new Vector2(557.257996F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(556.622009F, -188.966003F), new Vector2(556.268005F, -187.867996F), new Vector2(556.195984F, -186.619995F));
+ builder.AddLine(new Vector2(556.195984F, -181.472F));
+ builder.AddCubicBezier(new Vector2(556.268005F, -180.248001F), new Vector2(556.616028F, -179.156006F), new Vector2(557.23999F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(557.864014F, -177.235992F), new Vector2(558.697998F, -176.485992F), new Vector2(559.742004F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(560.786011F, -175.406006F), new Vector2(561.955994F, -175.136002F), new Vector2(563.252014F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(564.812012F, -175.136002F), new Vector2(566.221985F, -175.526001F), new Vector2(567.481995F, -176.306F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1076()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(549.536011F, -175.496002F));
+ builder.AddLine(new Vector2(549.536011F, -192.595993F));
+ builder.AddLine(new Vector2(546.26001F, -192.595993F));
+ builder.AddLine(new Vector2(546.26001F, -188.419998F));
+ builder.AddLine(new Vector2(546.872009F, -184.279999F));
+ builder.AddLine(new Vector2(546.26001F, -180.104004F));
+ builder.AddLine(new Vector2(546.26001F, -175.496002F));
+ builder.AddLine(new Vector2(549.536011F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(538.231995F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(537.392029F, -179.455994F), new Vector2(536.737976F, -180.145996F), new Vector2(536.27002F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(535.802002F, -181.897995F), new Vector2(535.567993F, -182.912003F), new Vector2(535.567993F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(535.567993F, -185.192001F), new Vector2(535.802002F, -186.194F), new Vector2(536.27002F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(536.737976F, -187.945999F), new Vector2(537.385986F, -188.636002F), new Vector2(538.213989F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(539.041992F, -189.643997F), new Vector2(539.995972F, -189.895996F), new Vector2(541.075989F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(542.156006F, -189.895996F), new Vector2(543.098022F, -189.649994F), new Vector2(543.901978F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(544.705994F, -188.666F), new Vector2(545.335999F, -187.975998F), new Vector2(545.791992F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(546.247986F, -186.199997F), new Vector2(546.476013F, -185.179993F), new Vector2(546.476013F, -184.028F));
+ builder.AddCubicBezier(new Vector2(546.476013F, -182.324005F), new Vector2(545.984009F, -180.925995F), new Vector2(545F, -179.834F));
+ builder.AddCubicBezier(new Vector2(544.015991F, -178.742004F), new Vector2(542.719971F, -178.195999F), new Vector2(541.112F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(540.031982F, -178.195999F), new Vector2(539.072021F, -178.447998F), new Vector2(538.231995F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(544.064026F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(545.096008F, -176.485992F), new Vector2(545.91803F, -177.235992F), new Vector2(546.530029F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(547.142029F, -179.156006F), new Vector2(547.484009F, -180.248001F), new Vector2(547.55603F, -181.472F));
+ builder.AddLine(new Vector2(547.55603F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(547.484009F, -187.867996F), new Vector2(547.135986F, -188.966003F), new Vector2(546.512024F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(545.888F, -190.862F), new Vector2(545.065979F, -191.606003F), new Vector2(544.046021F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(543.026001F, -192.686005F), new Vector2(541.867981F, -192.955994F), new Vector2(540.572021F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(538.987976F, -192.955994F), new Vector2(537.565979F, -192.559998F), new Vector2(536.30603F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(535.046021F, -190.975998F), new Vector2(534.049988F, -189.908005F), new Vector2(533.317993F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(532.585999F, -187.220001F), new Vector2(532.219971F, -185.707993F), new Vector2(532.219971F, -184.028F));
+ builder.AddCubicBezier(new Vector2(532.219971F, -182.348007F), new Vector2(532.585999F, -180.835999F), new Vector2(533.317993F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(534.049988F, -178.147995F), new Vector2(535.046021F, -177.085999F), new Vector2(536.30603F, -176.306F));
+ builder.AddCubicBezier(new Vector2(537.565979F, -175.526001F), new Vector2(538.987976F, -175.136002F), new Vector2(540.572021F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(541.867981F, -175.136002F), new Vector2(543.031982F, -175.406006F), new Vector2(544.064026F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1077()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(531.031982F, -189.643997F));
+ builder.AddLine(new Vector2(531.031982F, -192.595993F));
+ builder.AddLine(new Vector2(518.143982F, -192.595993F));
+ builder.AddLine(new Vector2(518.143982F, -189.643997F));
+ builder.AddLine(new Vector2(531.031982F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(525.596008F, -175.496002F));
+ builder.AddLine(new Vector2(525.596008F, -195.151993F));
+ builder.AddCubicBezier(new Vector2(525.596008F, -196.207993F), new Vector2(525.877991F, -197.029999F), new Vector2(526.442017F, -197.617996F));
+ builder.AddCubicBezier(new Vector2(527.005981F, -198.205994F), new Vector2(527.804016F, -198.5F), new Vector2(528.835999F, -198.5F));
+ builder.AddCubicBezier(new Vector2(529.388F, -198.5F), new Vector2(529.856018F, -198.416F), new Vector2(530.23999F, -198.248001F));
+ builder.AddCubicBezier(new Vector2(530.624023F, -198.080002F), new Vector2(530.971985F, -197.828003F), new Vector2(531.283997F, -197.492004F));
+ builder.AddLine(new Vector2(533.40802F, -199.580002F));
+ builder.AddCubicBezier(new Vector2(532.807983F, -200.227997F), new Vector2(532.14801F, -200.720001F), new Vector2(531.427979F, -201.056F));
+ builder.AddCubicBezier(new Vector2(530.708008F, -201.391998F), new Vector2(529.856018F, -201.559998F), new Vector2(528.872009F, -201.559998F));
+ builder.AddCubicBezier(new Vector2(527.575989F, -201.559998F), new Vector2(526.435974F, -201.283997F), new Vector2(525.452026F, -200.731995F));
+ builder.AddCubicBezier(new Vector2(524.468018F, -200.179993F), new Vector2(523.700012F, -199.423996F), new Vector2(523.14801F, -198.464005F));
+ builder.AddCubicBezier(new Vector2(522.596008F, -197.503998F), new Vector2(522.320007F, -196.399994F), new Vector2(522.320007F, -195.151993F));
+ builder.AddLine(new Vector2(522.320007F, -175.496002F));
+ builder.AddLine(new Vector2(525.596008F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1078()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(496.526001F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(495.697998F, -180.014008F), new Vector2(495.049988F, -180.667999F), new Vector2(494.582001F, -181.507996F));
+ builder.AddCubicBezier(new Vector2(494.114014F, -182.348007F), new Vector2(493.880005F, -183.307999F), new Vector2(493.880005F, -184.388F));
+ builder.AddCubicBezier(new Vector2(493.880005F, -185.468002F), new Vector2(494.114014F, -186.421997F), new Vector2(494.582001F, -187.25F));
+ builder.AddCubicBezier(new Vector2(495.049988F, -188.078003F), new Vector2(495.691986F, -188.725998F), new Vector2(496.507996F, -189.194F));
+ builder.AddCubicBezier(new Vector2(497.324005F, -189.662003F), new Vector2(498.272003F, -189.895996F), new Vector2(499.35199F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(500.40799F, -189.895996F), new Vector2(501.338013F, -189.662003F), new Vector2(502.141998F, -189.194F));
+ builder.AddCubicBezier(new Vector2(502.946014F, -188.725998F), new Vector2(503.570007F, -188.078003F), new Vector2(504.014008F, -187.25F));
+ builder.AddCubicBezier(new Vector2(504.458008F, -186.421997F), new Vector2(504.679993F, -185.455994F), new Vector2(504.679993F, -184.352005F));
+ builder.AddCubicBezier(new Vector2(504.679993F, -183.248001F), new Vector2(504.458008F, -182.281998F), new Vector2(504.014008F, -181.453995F));
+ builder.AddCubicBezier(new Vector2(503.570007F, -180.626007F), new Vector2(502.951996F, -179.983994F), new Vector2(502.160004F, -179.528F));
+ builder.AddCubicBezier(new Vector2(501.368011F, -179.072006F), new Vector2(500.432007F, -178.843994F), new Vector2(499.35199F, -178.843994F));
+ builder.AddCubicBezier(new Vector2(498.29599F, -178.843994F), new Vector2(497.354004F, -179.078003F), new Vector2(496.526001F, -179.546005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(502.268005F, -176.576004F));
+ builder.AddCubicBezier(new Vector2(503.299988F, -177.104004F), new Vector2(504.122009F, -177.841995F), new Vector2(504.734009F, -178.789993F));
+ builder.AddCubicBezier(new Vector2(505.346008F, -179.738007F), new Vector2(505.687988F, -180.835999F), new Vector2(505.76001F, -182.084F));
+ builder.AddLine(new Vector2(505.76001F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(505.687988F, -187.891998F), new Vector2(505.35199F, -189.001999F), new Vector2(504.752014F, -189.949997F));
+ builder.AddCubicBezier(new Vector2(504.152008F, -190.897995F), new Vector2(503.329987F, -191.636002F), new Vector2(502.286011F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(501.242004F, -192.692001F), new Vector2(500.048004F, -192.955994F), new Vector2(498.70401F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(497.167999F, -192.955994F), new Vector2(495.776001F, -192.578003F), new Vector2(494.528015F, -191.822006F));
+ builder.AddCubicBezier(new Vector2(493.279999F, -191.065994F), new Vector2(492.302002F, -190.046005F), new Vector2(491.593994F, -188.761993F));
+ builder.AddCubicBezier(new Vector2(490.885986F, -187.477997F), new Vector2(490.532013F, -186.020004F), new Vector2(490.532013F, -184.388F));
+ builder.AddCubicBezier(new Vector2(490.532013F, -182.755997F), new Vector2(490.891998F, -181.285995F), new Vector2(491.612F, -179.977997F));
+ builder.AddCubicBezier(new Vector2(492.332001F, -178.669998F), new Vector2(493.309998F, -177.643997F), new Vector2(494.54599F, -176.899994F));
+ builder.AddCubicBezier(new Vector2(495.782013F, -176.156006F), new Vector2(497.179993F, -175.783997F), new Vector2(498.73999F, -175.783997F));
+ builder.AddCubicBezier(new Vector2(500.059998F, -175.783997F), new Vector2(501.235992F, -176.048004F), new Vector2(502.268005F, -176.576004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(503.437988F, -168.998001F));
+ builder.AddCubicBezier(new Vector2(504.794006F, -169.682007F), new Vector2(505.850006F, -170.641998F), new Vector2(506.605988F, -171.878006F));
+ builder.AddCubicBezier(new Vector2(507.362F, -173.113998F), new Vector2(507.73999F, -174.548004F), new Vector2(507.73999F, -176.179993F));
+ builder.AddLine(new Vector2(507.73999F, -192.595993F));
+ builder.AddLine(new Vector2(504.5F, -192.595993F));
+ builder.AddLine(new Vector2(504.5F, -188.095993F));
+ builder.AddLine(new Vector2(505.075989F, -184.279999F));
+ builder.AddLine(new Vector2(504.5F, -180.427994F));
+ builder.AddLine(new Vector2(504.5F, -176.179993F));
+ builder.AddCubicBezier(new Vector2(504.5F, -174.619995F), new Vector2(503.984009F, -173.378006F), new Vector2(502.951996F, -172.453995F));
+ builder.AddCubicBezier(new Vector2(501.920013F, -171.529999F), new Vector2(500.540009F, -171.067993F), new Vector2(498.812012F, -171.067993F));
+ builder.AddCubicBezier(new Vector2(497.492004F, -171.067993F), new Vector2(496.35199F, -171.302002F), new Vector2(495.391998F, -171.770004F));
+ builder.AddCubicBezier(new Vector2(494.432007F, -172.238007F), new Vector2(493.604004F, -172.916F), new Vector2(492.90799F, -173.804001F));
+ builder.AddLine(new Vector2(490.783997F, -171.679993F));
+ builder.AddCubicBezier(new Vector2(491.623993F, -170.503998F), new Vector2(492.716003F, -169.591995F), new Vector2(494.059998F, -168.944F));
+ builder.AddCubicBezier(new Vector2(495.403992F, -168.296005F), new Vector2(496.963989F, -167.972F), new Vector2(498.73999F, -167.972F));
+ builder.AddCubicBezier(new Vector2(500.515991F, -167.972F), new Vector2(502.082001F, -168.313995F), new Vector2(503.437988F, -168.998001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1079()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(475.160004F, -175.496002F));
+ builder.AddLine(new Vector2(475.160004F, -192.595993F));
+ builder.AddLine(new Vector2(471.920013F, -192.595993F));
+ builder.AddLine(new Vector2(471.920013F, -175.496002F));
+ builder.AddLine(new Vector2(475.160004F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(487.256012F, -175.496002F));
+ builder.AddLine(new Vector2(487.256012F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(487.256012F, -187.292007F), new Vector2(486.967987F, -188.401993F), new Vector2(486.391998F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(485.81601F, -190.490005F), new Vector2(485.029999F, -191.335999F), new Vector2(484.033997F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(483.037994F, -192.632004F), new Vector2(481.891998F, -192.955994F), new Vector2(480.596008F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(479.299988F, -192.955994F), new Vector2(478.135986F, -192.662003F), new Vector2(477.104004F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(476.071991F, -191.485992F), new Vector2(475.268005F, -190.688004F), new Vector2(474.691986F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(474.115997F, -188.671997F), new Vector2(473.828003F, -187.520004F), new Vector2(473.828003F, -186.223999F));
+ builder.AddLine(new Vector2(475.160004F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(475.160004F, -186.332001F), new Vector2(475.35199F, -187.100006F), new Vector2(475.735992F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(476.119995F, -188.444F), new Vector2(476.64801F, -188.972F), new Vector2(477.320007F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(477.992004F, -189.740005F), new Vector2(478.76001F, -189.932007F), new Vector2(479.623993F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(480.920013F, -189.932007F), new Vector2(481.970001F, -189.511993F), new Vector2(482.773987F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(483.578003F, -187.832001F), new Vector2(483.980011F, -186.764008F), new Vector2(483.980011F, -185.468002F));
+ builder.AddLine(new Vector2(483.980011F, -175.496002F));
+ builder.AddLine(new Vector2(487.256012F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1080()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(466.988007F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(467.372009F, -197.005997F), new Vector2(467.563995F, -197.503998F), new Vector2(467.563995F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(467.563995F, -198.679993F), new Vector2(467.372009F, -199.166F), new Vector2(466.988007F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(466.604004F, -199.957993F), new Vector2(466.112F, -200.156006F), new Vector2(465.511993F, -200.156006F));
+ builder.AddCubicBezier(new Vector2(464.911987F, -200.156006F), new Vector2(464.420013F, -199.957993F), new Vector2(464.036011F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(463.652008F, -199.166F), new Vector2(463.459991F, -198.679993F), new Vector2(463.459991F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(463.459991F, -197.503998F), new Vector2(463.652008F, -197.005997F), new Vector2(464.036011F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(464.420013F, -196.214005F), new Vector2(464.911987F, -196.016006F), new Vector2(465.511993F, -196.016006F));
+ builder.AddCubicBezier(new Vector2(466.112F, -196.016006F), new Vector2(466.604004F, -196.214005F), new Vector2(466.988007F, -196.610001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(467.131989F, -175.496002F));
+ builder.AddLine(new Vector2(467.131989F, -192.595993F));
+ builder.AddLine(new Vector2(463.855988F, -192.595993F));
+ builder.AddLine(new Vector2(463.855988F, -175.496002F));
+ builder.AddLine(new Vector2(467.131989F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1081()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(449.81601F, -175.496002F));
+ builder.AddLine(new Vector2(449.81601F, -201.199997F));
+ builder.AddLine(new Vector2(446.575989F, -201.199997F));
+ builder.AddLine(new Vector2(446.575989F, -175.496002F));
+ builder.AddLine(new Vector2(449.81601F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(461.696014F, -175.496002F));
+ builder.AddLine(new Vector2(452.696014F, -185.251999F));
+ builder.AddLine(new Vector2(452.552002F, -183.380005F));
+ builder.AddLine(new Vector2(461.372009F, -192.595993F));
+ builder.AddLine(new Vector2(457.411987F, -192.595993F));
+ builder.AddLine(new Vector2(449.528015F, -184.244003F));
+ builder.AddLine(new Vector2(457.519989F, -175.496002F));
+ builder.AddLine(new Vector2(461.696014F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1082()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(441.859985F, -175.496002F));
+ builder.AddLine(new Vector2(441.859985F, -192.595993F));
+ builder.AddLine(new Vector2(438.584015F, -192.595993F));
+ builder.AddLine(new Vector2(438.584015F, -188.419998F));
+ builder.AddLine(new Vector2(439.196014F, -184.279999F));
+ builder.AddLine(new Vector2(438.584015F, -180.104004F));
+ builder.AddLine(new Vector2(438.584015F, -175.496002F));
+ builder.AddLine(new Vector2(441.859985F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(430.556F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(429.716003F, -179.455994F), new Vector2(429.062012F, -180.145996F), new Vector2(428.593994F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(428.126007F, -181.897995F), new Vector2(427.891998F, -182.912003F), new Vector2(427.891998F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(427.891998F, -185.192001F), new Vector2(428.126007F, -186.194F), new Vector2(428.593994F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(429.062012F, -187.945999F), new Vector2(429.709991F, -188.636002F), new Vector2(430.537994F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(431.365997F, -189.643997F), new Vector2(432.320007F, -189.895996F), new Vector2(433.399994F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(434.480011F, -189.895996F), new Vector2(435.421997F, -189.649994F), new Vector2(436.226013F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(437.029999F, -188.666F), new Vector2(437.660004F, -187.975998F), new Vector2(438.115997F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(438.571991F, -186.199997F), new Vector2(438.799988F, -185.179993F), new Vector2(438.799988F, -184.028F));
+ builder.AddCubicBezier(new Vector2(438.799988F, -182.324005F), new Vector2(438.308014F, -180.925995F), new Vector2(437.324005F, -179.834F));
+ builder.AddCubicBezier(new Vector2(436.339996F, -178.742004F), new Vector2(435.044006F, -178.195999F), new Vector2(433.436005F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(432.355988F, -178.195999F), new Vector2(431.395996F, -178.447998F), new Vector2(430.556F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(436.388F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(437.420013F, -176.485992F), new Vector2(438.242004F, -177.235992F), new Vector2(438.854004F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(439.466003F, -179.156006F), new Vector2(439.808014F, -180.248001F), new Vector2(439.880005F, -181.472F));
+ builder.AddLine(new Vector2(439.880005F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(439.808014F, -187.867996F), new Vector2(439.459991F, -188.966003F), new Vector2(438.835999F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(438.212006F, -190.862F), new Vector2(437.390015F, -191.606003F), new Vector2(436.369995F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(435.350006F, -192.686005F), new Vector2(434.191986F, -192.955994F), new Vector2(432.895996F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(431.312012F, -192.955994F), new Vector2(429.890015F, -192.559998F), new Vector2(428.630005F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(427.369995F, -190.975998F), new Vector2(426.373993F, -189.908005F), new Vector2(425.641998F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(424.910004F, -187.220001F), new Vector2(424.544006F, -185.707993F), new Vector2(424.544006F, -184.028F));
+ builder.AddCubicBezier(new Vector2(424.544006F, -182.348007F), new Vector2(424.910004F, -180.835999F), new Vector2(425.641998F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(426.373993F, -178.147995F), new Vector2(427.369995F, -177.085999F), new Vector2(428.630005F, -176.306F));
+ builder.AddCubicBezier(new Vector2(429.890015F, -175.526001F), new Vector2(431.312012F, -175.136002F), new Vector2(432.895996F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(434.191986F, -175.136002F), new Vector2(435.355988F, -175.406006F), new Vector2(436.388F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1083()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(421.231995F, -175.496002F));
+ builder.AddLine(new Vector2(421.231995F, -186.475998F));
+ builder.AddCubicBezier(new Vector2(421.231995F, -187.820007F), new Vector2(420.937988F, -188.972F), new Vector2(420.350006F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(419.761993F, -190.891998F), new Vector2(418.976013F, -191.636002F), new Vector2(417.992004F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(417.007996F, -192.692001F), new Vector2(415.891998F, -192.955994F), new Vector2(414.644012F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(413.444F, -192.955994F), new Vector2(412.339996F, -192.686005F), new Vector2(411.332001F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(410.324005F, -191.606003F), new Vector2(409.502014F, -190.862F), new Vector2(408.865997F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(408.230011F, -188.966003F), new Vector2(407.876007F, -187.832001F), new Vector2(407.803986F, -186.511993F));
+ builder.AddLine(new Vector2(409.640015F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(409.640015F, -186.692001F), new Vector2(409.832001F, -187.423996F), new Vector2(410.216003F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(410.600006F, -188.623993F), new Vector2(411.109985F, -189.091995F), new Vector2(411.746002F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(412.381989F, -189.764008F), new Vector2(413.096008F, -189.932007F), new Vector2(413.888F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(415.040009F, -189.932007F), new Vector2(416.006012F, -189.565994F), new Vector2(416.786011F, -188.834F));
+ builder.AddCubicBezier(new Vector2(417.56601F, -188.102005F), new Vector2(417.955994F, -187.100006F), new Vector2(417.955994F, -185.828003F));
+ builder.AddLine(new Vector2(417.955994F, -175.496002F));
+ builder.AddLine(new Vector2(421.231995F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(409.640015F, -175.496002F));
+ builder.AddLine(new Vector2(409.640015F, -186.511993F));
+ builder.AddCubicBezier(new Vector2(409.640015F, -187.832001F), new Vector2(409.358002F, -188.972F), new Vector2(408.794006F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(408.230011F, -190.891998F), new Vector2(407.462006F, -191.636002F), new Vector2(406.48999F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(405.518005F, -192.692001F), new Vector2(404.432007F, -192.955994F), new Vector2(403.231995F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(402.007996F, -192.955994F), new Vector2(400.903992F, -192.686005F), new Vector2(399.920013F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(398.936005F, -191.606003F), new Vector2(398.161987F, -190.856003F), new Vector2(397.597992F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(397.033997F, -188.936005F), new Vector2(396.752014F, -187.807999F), new Vector2(396.752014F, -186.511993F));
+ builder.AddLine(new Vector2(398.084015F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(398.084015F, -186.692001F), new Vector2(398.276001F, -187.423996F), new Vector2(398.660004F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(399.044006F, -188.623993F), new Vector2(399.548004F, -189.091995F), new Vector2(400.171997F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(400.79599F, -189.764008F), new Vector2(401.503998F, -189.932007F), new Vector2(402.29599F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(403.471985F, -189.932007F), new Vector2(404.450012F, -189.565994F), new Vector2(405.230011F, -188.834F));
+ builder.AddCubicBezier(new Vector2(406.01001F, -188.102005F), new Vector2(406.399994F, -187.100006F), new Vector2(406.399994F, -185.828003F));
+ builder.AddLine(new Vector2(406.399994F, -175.496002F));
+ builder.AddLine(new Vector2(409.640015F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(398.084015F, -175.496002F));
+ builder.AddLine(new Vector2(398.084015F, -192.595993F));
+ builder.AddLine(new Vector2(394.843994F, -192.595993F));
+ builder.AddLine(new Vector2(394.843994F, -175.496002F));
+ builder.AddLine(new Vector2(398.084015F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1084()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(373.208008F, -168.332001F));
+ builder.AddLine(new Vector2(376.447998F, -175.352005F));
+ builder.AddLine(new Vector2(374.612F, -178.664001F));
+ builder.AddLine(new Vector2(369.608002F, -168.332001F));
+ builder.AddLine(new Vector2(373.208008F, -168.332001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(376.447998F, -175.352005F));
+ builder.AddLine(new Vector2(384.440002F, -192.595993F));
+ builder.AddLine(new Vector2(380.839996F, -192.595993F));
+ builder.AddLine(new Vector2(375.044006F, -179.095993F));
+ builder.AddLine(new Vector2(376.196014F, -179.095993F));
+ builder.AddLine(new Vector2(370.687988F, -192.595993F));
+ builder.AddLine(new Vector2(367.088013F, -192.595993F));
+ builder.AddLine(new Vector2(374.503998F, -175.352005F));
+ builder.AddLine(new Vector2(376.447998F, -175.352005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1085()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(354.217987F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(353.390015F, -179.455994F), new Vector2(352.753998F, -180.145996F), new Vector2(352.309998F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(351.865997F, -181.897995F), new Vector2(351.644012F, -182.899994F), new Vector2(351.644012F, -184.028F));
+ builder.AddCubicBezier(new Vector2(351.644012F, -185.179993F), new Vector2(351.872009F, -186.194F), new Vector2(352.328003F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(352.783997F, -187.945999F), new Vector2(353.420013F, -188.636002F), new Vector2(354.235992F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(355.052002F, -189.643997F), new Vector2(355.988007F, -189.895996F), new Vector2(357.044006F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(358.123993F, -189.895996F), new Vector2(359.071991F, -189.643997F), new Vector2(359.888F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(360.70401F, -188.636002F), new Vector2(361.346008F, -187.945999F), new Vector2(361.813995F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(362.282013F, -186.194F), new Vector2(362.515991F, -185.192001F), new Vector2(362.515991F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(362.515991F, -182.912003F), new Vector2(362.282013F, -181.897995F), new Vector2(361.813995F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(361.346008F, -180.145996F), new Vector2(360.70401F, -179.455994F), new Vector2(359.888F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(359.071991F, -178.447998F), new Vector2(358.123993F, -178.195999F), new Vector2(357.044006F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(355.988007F, -178.195999F), new Vector2(355.04599F, -178.447998F), new Vector2(354.217987F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(351.824005F, -175.496002F));
+ builder.AddLine(new Vector2(351.824005F, -180.104004F));
+ builder.AddLine(new Vector2(351.212006F, -184.279999F));
+ builder.AddLine(new Vector2(351.824005F, -188.419998F));
+ builder.AddLine(new Vector2(351.824005F, -201.199997F));
+ builder.AddLine(new Vector2(348.584015F, -201.199997F));
+ builder.AddLine(new Vector2(348.584015F, -175.496002F));
+ builder.AddLine(new Vector2(351.824005F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(361.813995F, -176.306F));
+ builder.AddCubicBezier(new Vector2(363.074005F, -177.085999F), new Vector2(364.063995F, -178.147995F), new Vector2(364.783997F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(365.503998F, -180.835999F), new Vector2(365.864014F, -182.348007F), new Vector2(365.864014F, -184.028F));
+ builder.AddCubicBezier(new Vector2(365.864014F, -185.707993F), new Vector2(365.503998F, -187.220001F), new Vector2(364.783997F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(364.063995F, -189.908005F), new Vector2(363.074005F, -190.975998F), new Vector2(361.813995F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(360.553986F, -192.559998F), new Vector2(359.144012F, -192.955994F), new Vector2(357.584015F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(356.312012F, -192.955994F), new Vector2(355.153992F, -192.686005F), new Vector2(354.109985F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(353.06601F, -191.606003F), new Vector2(352.226013F, -190.862F), new Vector2(351.589996F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(350.95401F, -188.966003F), new Vector2(350.600006F, -187.867996F), new Vector2(350.528015F, -186.619995F));
+ builder.AddLine(new Vector2(350.528015F, -181.472F));
+ builder.AddCubicBezier(new Vector2(350.600006F, -180.248001F), new Vector2(350.947998F, -179.156006F), new Vector2(351.571991F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(352.196014F, -177.235992F), new Vector2(353.029999F, -176.485992F), new Vector2(354.074005F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(355.118011F, -175.406006F), new Vector2(356.287994F, -175.136002F), new Vector2(357.584015F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(359.144012F, -175.136002F), new Vector2(360.553986F, -175.526001F), new Vector2(361.813995F, -176.306F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1086()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(320.899994F, -175.496002F));
+ builder.AddLine(new Vector2(325.868011F, -188.384003F));
+ builder.AddLine(new Vector2(324.679993F, -188.384003F));
+ builder.AddLine(new Vector2(329.612F, -175.496002F));
+ builder.AddLine(new Vector2(331.519989F, -175.496002F));
+ builder.AddLine(new Vector2(338.252014F, -192.595993F));
+ builder.AddLine(new Vector2(334.868011F, -192.595993F));
+ builder.AddLine(new Vector2(329.971985F, -179.276001F));
+ builder.AddLine(new Vector2(331.052002F, -179.276001F));
+ builder.AddLine(new Vector2(326.191986F, -192.595993F));
+ builder.AddLine(new Vector2(324.320007F, -192.595993F));
+ builder.AddLine(new Vector2(319.459991F, -179.276001F));
+ builder.AddLine(new Vector2(320.540009F, -179.276001F));
+ builder.AddLine(new Vector2(315.644012F, -192.595993F));
+ builder.AddLine(new Vector2(312.26001F, -192.595993F));
+ builder.AddLine(new Vector2(318.992004F, -175.496002F));
+ builder.AddLine(new Vector2(320.899994F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1087()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(309.488007F, -175.496002F));
+ builder.AddLine(new Vector2(309.488007F, -192.595993F));
+ builder.AddLine(new Vector2(306.212006F, -192.595993F));
+ builder.AddLine(new Vector2(306.212006F, -188.419998F));
+ builder.AddLine(new Vector2(306.824005F, -184.279999F));
+ builder.AddLine(new Vector2(306.212006F, -180.104004F));
+ builder.AddLine(new Vector2(306.212006F, -175.496002F));
+ builder.AddLine(new Vector2(309.488007F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(298.18399F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(297.343994F, -179.455994F), new Vector2(296.690002F, -180.145996F), new Vector2(296.221985F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(295.753998F, -181.897995F), new Vector2(295.519989F, -182.912003F), new Vector2(295.519989F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(295.519989F, -185.192001F), new Vector2(295.753998F, -186.194F), new Vector2(296.221985F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(296.690002F, -187.945999F), new Vector2(297.338013F, -188.636002F), new Vector2(298.165985F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(298.993988F, -189.643997F), new Vector2(299.947998F, -189.895996F), new Vector2(301.028015F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(302.108002F, -189.895996F), new Vector2(303.049988F, -189.649994F), new Vector2(303.854004F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(304.65799F, -188.666F), new Vector2(305.287994F, -187.975998F), new Vector2(305.743988F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(306.200012F, -186.199997F), new Vector2(306.428009F, -185.179993F), new Vector2(306.428009F, -184.028F));
+ builder.AddCubicBezier(new Vector2(306.428009F, -182.324005F), new Vector2(305.936005F, -180.925995F), new Vector2(304.951996F, -179.834F));
+ builder.AddCubicBezier(new Vector2(303.967987F, -178.742004F), new Vector2(302.671997F, -178.195999F), new Vector2(301.063995F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(299.984009F, -178.195999F), new Vector2(299.023987F, -178.447998F), new Vector2(298.18399F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(304.015991F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(305.048004F, -176.485992F), new Vector2(305.869995F, -177.235992F), new Vector2(306.481995F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(307.093994F, -179.156006F), new Vector2(307.436005F, -180.248001F), new Vector2(307.507996F, -181.472F));
+ builder.AddLine(new Vector2(307.507996F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(307.436005F, -187.867996F), new Vector2(307.088013F, -188.966003F), new Vector2(306.463989F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(305.839996F, -190.862F), new Vector2(305.018005F, -191.606003F), new Vector2(303.997986F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(302.977997F, -192.686005F), new Vector2(301.820007F, -192.955994F), new Vector2(300.523987F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(298.940002F, -192.955994F), new Vector2(297.518005F, -192.559998F), new Vector2(296.257996F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(294.997986F, -190.975998F), new Vector2(294.002014F, -189.908005F), new Vector2(293.269989F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(292.537994F, -187.220001F), new Vector2(292.171997F, -185.707993F), new Vector2(292.171997F, -184.028F));
+ builder.AddCubicBezier(new Vector2(292.171997F, -182.348007F), new Vector2(292.537994F, -180.835999F), new Vector2(293.269989F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(294.002014F, -178.147995F), new Vector2(294.997986F, -177.085999F), new Vector2(296.257996F, -176.306F));
+ builder.AddCubicBezier(new Vector2(297.518005F, -175.526001F), new Vector2(298.940002F, -175.136002F), new Vector2(300.523987F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(301.820007F, -175.136002F), new Vector2(302.984009F, -175.406006F), new Vector2(304.015991F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1088()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(288.5F, -175.496002F));
+ builder.AddLine(new Vector2(288.5F, -201.199997F));
+ builder.AddLine(new Vector2(285.26001F, -201.199997F));
+ builder.AddLine(new Vector2(285.26001F, -175.496002F));
+ builder.AddLine(new Vector2(288.5F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1089()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(273.056F, -175.496002F));
+ builder.AddLine(new Vector2(273.056F, -201.199997F));
+ builder.AddLine(new Vector2(269.81601F, -201.199997F));
+ builder.AddLine(new Vector2(269.81601F, -175.496002F));
+ builder.AddLine(new Vector2(273.056F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1090()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(265.100006F, -175.496002F));
+ builder.AddLine(new Vector2(265.100006F, -192.595993F));
+ builder.AddLine(new Vector2(261.824005F, -192.595993F));
+ builder.AddLine(new Vector2(261.824005F, -188.419998F));
+ builder.AddLine(new Vector2(262.436005F, -184.279999F));
+ builder.AddLine(new Vector2(261.824005F, -180.104004F));
+ builder.AddLine(new Vector2(261.824005F, -175.496002F));
+ builder.AddLine(new Vector2(265.100006F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(253.796005F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(252.955994F, -179.455994F), new Vector2(252.302002F, -180.145996F), new Vector2(251.834F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(251.365997F, -181.897995F), new Vector2(251.132004F, -182.912003F), new Vector2(251.132004F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(251.132004F, -185.192001F), new Vector2(251.365997F, -186.194F), new Vector2(251.834F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(252.302002F, -187.945999F), new Vector2(252.949997F, -188.636002F), new Vector2(253.778F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(254.606003F, -189.643997F), new Vector2(255.559998F, -189.895996F), new Vector2(256.640015F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(257.720001F, -189.895996F), new Vector2(258.661987F, -189.649994F), new Vector2(259.466003F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(260.269989F, -188.666F), new Vector2(260.899994F, -187.975998F), new Vector2(261.355988F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(261.812012F, -186.199997F), new Vector2(262.040009F, -185.179993F), new Vector2(262.040009F, -184.028F));
+ builder.AddCubicBezier(new Vector2(262.040009F, -182.324005F), new Vector2(261.548004F, -180.925995F), new Vector2(260.563995F, -179.834F));
+ builder.AddCubicBezier(new Vector2(259.579987F, -178.742004F), new Vector2(258.283997F, -178.195999F), new Vector2(256.675995F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(255.595993F, -178.195999F), new Vector2(254.636002F, -178.447998F), new Vector2(253.796005F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(259.627991F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(260.660004F, -176.485992F), new Vector2(261.481995F, -177.235992F), new Vector2(262.093994F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(262.705994F, -179.156006F), new Vector2(263.048004F, -180.248001F), new Vector2(263.119995F, -181.472F));
+ builder.AddLine(new Vector2(263.119995F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(263.048004F, -187.867996F), new Vector2(262.700012F, -188.966003F), new Vector2(262.075989F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(261.451996F, -190.862F), new Vector2(260.630005F, -191.606003F), new Vector2(259.609985F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(258.589996F, -192.686005F), new Vector2(257.432007F, -192.955994F), new Vector2(256.135986F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(254.552002F, -192.955994F), new Vector2(253.130005F, -192.559998F), new Vector2(251.869995F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(250.610001F, -190.975998F), new Vector2(249.613998F, -189.908005F), new Vector2(248.882004F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(248.149994F, -187.220001F), new Vector2(247.783997F, -185.707993F), new Vector2(247.783997F, -184.028F));
+ builder.AddCubicBezier(new Vector2(247.783997F, -182.348007F), new Vector2(248.149994F, -180.835999F), new Vector2(248.882004F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(249.613998F, -178.147995F), new Vector2(250.610001F, -177.085999F), new Vector2(251.869995F, -176.306F));
+ builder.AddCubicBezier(new Vector2(253.130005F, -175.526001F), new Vector2(254.552002F, -175.136002F), new Vector2(256.135986F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(257.432007F, -175.136002F), new Vector2(258.596008F, -175.406006F), new Vector2(259.627991F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1091()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(243.932007F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(244.315994F, -197.005997F), new Vector2(244.507996F, -197.503998F), new Vector2(244.507996F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(244.507996F, -198.679993F), new Vector2(244.315994F, -199.166F), new Vector2(243.932007F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(243.548004F, -199.957993F), new Vector2(243.056F, -200.156006F), new Vector2(242.455994F, -200.156006F));
+ builder.AddCubicBezier(new Vector2(241.856003F, -200.156006F), new Vector2(241.363998F, -199.957993F), new Vector2(240.979996F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(240.595993F, -199.166F), new Vector2(240.404007F, -198.679993F), new Vector2(240.404007F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(240.404007F, -197.503998F), new Vector2(240.595993F, -197.005997F), new Vector2(240.979996F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(241.363998F, -196.214005F), new Vector2(241.856003F, -196.016006F), new Vector2(242.455994F, -196.016006F));
+ builder.AddCubicBezier(new Vector2(243.056F, -196.016006F), new Vector2(243.548004F, -196.214005F), new Vector2(243.932007F, -196.610001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(244.076004F, -175.496002F));
+ builder.AddLine(new Vector2(244.076004F, -192.595993F));
+ builder.AddLine(new Vector2(240.800003F, -192.595993F));
+ builder.AddLine(new Vector2(240.800003F, -175.496002F));
+ builder.AddLine(new Vector2(244.076004F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1092()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(237.632004F, -189.643997F));
+ builder.AddLine(new Vector2(237.632004F, -192.595993F));
+ builder.AddLine(new Vector2(225.968002F, -192.595993F));
+ builder.AddLine(new Vector2(225.968002F, -189.643997F));
+ builder.AddLine(new Vector2(237.632004F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(233.419998F, -175.496002F));
+ builder.AddLine(new Vector2(233.419998F, -199.759995F));
+ builder.AddLine(new Vector2(230.179993F, -199.759995F));
+ builder.AddLine(new Vector2(230.179993F, -175.496002F));
+ builder.AddLine(new Vector2(233.419998F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1093()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(217.544006F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(218.311996F, -189.511993F), new Vector2(219.296005F, -189.895996F), new Vector2(220.496002F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(221.072006F, -189.895996F), new Vector2(221.576004F, -189.811996F), new Vector2(222.007996F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(222.440002F, -189.475998F), new Vector2(222.835999F, -189.199997F), new Vector2(223.195999F, -188.815994F));
+ builder.AddLine(new Vector2(225.320007F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(224.720001F, -191.707993F), new Vector2(224.072006F, -192.205994F), new Vector2(223.376007F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(222.679993F, -192.806F), new Vector2(221.899994F, -192.955994F), new Vector2(221.035995F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(219.139999F, -192.955994F), new Vector2(217.688004F, -192.307999F), new Vector2(216.679993F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(215.671997F, -189.716003F), new Vector2(215.167999F, -187.975998F), new Vector2(215.167999F, -185.792007F));
+ builder.AddLine(new Vector2(216.391998F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(216.391998F, -186.800003F), new Vector2(216.776001F, -187.975998F), new Vector2(217.544006F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(216.391998F, -175.496002F));
+ builder.AddLine(new Vector2(216.391998F, -192.595993F));
+ builder.AddLine(new Vector2(213.151993F, -192.595993F));
+ builder.AddLine(new Vector2(213.151993F, -175.496002F));
+ builder.AddLine(new Vector2(216.391998F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1094()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(208.436005F, -175.496002F));
+ builder.AddLine(new Vector2(208.436005F, -192.595993F));
+ builder.AddLine(new Vector2(205.160004F, -192.595993F));
+ builder.AddLine(new Vector2(205.160004F, -188.419998F));
+ builder.AddLine(new Vector2(205.772003F, -184.279999F));
+ builder.AddLine(new Vector2(205.160004F, -180.104004F));
+ builder.AddLine(new Vector2(205.160004F, -175.496002F));
+ builder.AddLine(new Vector2(208.436005F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(197.132004F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(196.292007F, -179.455994F), new Vector2(195.638F, -180.145996F), new Vector2(195.169998F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(194.701996F, -181.897995F), new Vector2(194.468002F, -182.912003F), new Vector2(194.468002F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(194.468002F, -185.192001F), new Vector2(194.701996F, -186.194F), new Vector2(195.169998F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(195.638F, -187.945999F), new Vector2(196.285995F, -188.636002F), new Vector2(197.113998F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(197.942001F, -189.643997F), new Vector2(198.895996F, -189.895996F), new Vector2(199.975998F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(201.056F, -189.895996F), new Vector2(201.998001F, -189.649994F), new Vector2(202.802002F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(203.606003F, -188.666F), new Vector2(204.235992F, -187.975998F), new Vector2(204.692001F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(205.147995F, -186.199997F), new Vector2(205.376007F, -185.179993F), new Vector2(205.376007F, -184.028F));
+ builder.AddCubicBezier(new Vector2(205.376007F, -182.324005F), new Vector2(204.884003F, -180.925995F), new Vector2(203.899994F, -179.834F));
+ builder.AddCubicBezier(new Vector2(202.916F, -178.742004F), new Vector2(201.619995F, -178.195999F), new Vector2(200.011993F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(198.932007F, -178.195999F), new Vector2(197.972F, -178.447998F), new Vector2(197.132004F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(202.964005F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(203.996002F, -176.485992F), new Vector2(204.817993F, -177.235992F), new Vector2(205.429993F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(206.042007F, -179.156006F), new Vector2(206.384003F, -180.248001F), new Vector2(206.455994F, -181.472F));
+ builder.AddLine(new Vector2(206.455994F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(206.384003F, -187.867996F), new Vector2(206.035995F, -188.966003F), new Vector2(205.412003F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(204.787994F, -190.862F), new Vector2(203.966003F, -191.606003F), new Vector2(202.945999F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(201.925995F, -192.686005F), new Vector2(200.768005F, -192.955994F), new Vector2(199.472F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(197.888F, -192.955994F), new Vector2(196.466003F, -192.559998F), new Vector2(195.205994F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(193.945999F, -190.975998F), new Vector2(192.949997F, -189.908005F), new Vector2(192.218002F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(191.485992F, -187.220001F), new Vector2(191.119995F, -185.707993F), new Vector2(191.119995F, -184.028F));
+ builder.AddCubicBezier(new Vector2(191.119995F, -182.348007F), new Vector2(191.485992F, -180.835999F), new Vector2(192.218002F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(192.949997F, -178.147995F), new Vector2(193.945999F, -177.085999F), new Vector2(195.205994F, -176.306F));
+ builder.AddCubicBezier(new Vector2(196.466003F, -175.526001F), new Vector2(197.888F, -175.136002F), new Vector2(199.472F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(200.768005F, -175.136002F), new Vector2(201.932007F, -175.406006F), new Vector2(202.964005F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1095()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(187.807999F, -175.496002F));
+ builder.AddLine(new Vector2(187.807999F, -186.475998F));
+ builder.AddCubicBezier(new Vector2(187.807999F, -187.820007F), new Vector2(187.514008F, -188.972F), new Vector2(186.925995F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(186.337997F, -190.891998F), new Vector2(185.552002F, -191.636002F), new Vector2(184.567993F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(183.584F, -192.692001F), new Vector2(182.468002F, -192.955994F), new Vector2(181.220001F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(180.020004F, -192.955994F), new Vector2(178.916F, -192.686005F), new Vector2(177.908005F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(176.899994F, -191.606003F), new Vector2(176.078003F, -190.862F), new Vector2(175.442001F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(174.806F, -188.966003F), new Vector2(174.451996F, -187.832001F), new Vector2(174.380005F, -186.511993F));
+ builder.AddLine(new Vector2(176.216003F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(176.216003F, -186.692001F), new Vector2(176.408005F, -187.423996F), new Vector2(176.792007F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(177.175995F, -188.623993F), new Vector2(177.686005F, -189.091995F), new Vector2(178.322006F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(178.957993F, -189.764008F), new Vector2(179.671997F, -189.932007F), new Vector2(180.464005F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(181.615997F, -189.932007F), new Vector2(182.582001F, -189.565994F), new Vector2(183.362F, -188.834F));
+ builder.AddCubicBezier(new Vector2(184.141998F, -188.102005F), new Vector2(184.531998F, -187.100006F), new Vector2(184.531998F, -185.828003F));
+ builder.AddLine(new Vector2(184.531998F, -175.496002F));
+ builder.AddLine(new Vector2(187.807999F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(176.216003F, -175.496002F));
+ builder.AddLine(new Vector2(176.216003F, -186.511993F));
+ builder.AddCubicBezier(new Vector2(176.216003F, -187.832001F), new Vector2(175.934006F, -188.972F), new Vector2(175.369995F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(174.806F, -190.891998F), new Vector2(174.037994F, -191.636002F), new Vector2(173.065994F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(172.093994F, -192.692001F), new Vector2(171.007996F, -192.955994F), new Vector2(169.807999F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(168.584F, -192.955994F), new Vector2(167.479996F, -192.686005F), new Vector2(166.496002F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(165.511993F, -191.606003F), new Vector2(164.738007F, -190.856003F), new Vector2(164.173996F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(163.610001F, -188.936005F), new Vector2(163.328003F, -187.807999F), new Vector2(163.328003F, -186.511993F));
+ builder.AddLine(new Vector2(164.660004F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(164.660004F, -186.692001F), new Vector2(164.852005F, -187.423996F), new Vector2(165.235992F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(165.619995F, -188.623993F), new Vector2(166.123993F, -189.091995F), new Vector2(166.748001F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(167.371994F, -189.764008F), new Vector2(168.080002F, -189.932007F), new Vector2(168.871994F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(170.048004F, -189.932007F), new Vector2(171.026001F, -189.565994F), new Vector2(171.806F, -188.834F));
+ builder.AddCubicBezier(new Vector2(172.585999F, -188.102005F), new Vector2(172.975998F, -187.100006F), new Vector2(172.975998F, -185.828003F));
+ builder.AddLine(new Vector2(172.975998F, -175.496002F));
+ builder.AddLine(new Vector2(176.216003F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(164.660004F, -175.496002F));
+ builder.AddLine(new Vector2(164.660004F, -192.595993F));
+ builder.AddLine(new Vector2(161.419998F, -192.595993F));
+ builder.AddLine(new Vector2(161.419998F, -175.496002F));
+ builder.AddLine(new Vector2(164.660004F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1096()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(148.621994F, -176.539993F));
+ builder.AddCubicBezier(new Vector2(149.761993F, -177.475998F), new Vector2(150.332001F, -178.748001F), new Vector2(150.332001F, -180.356003F));
+ builder.AddCubicBezier(new Vector2(150.332001F, -181.412003F), new Vector2(150.110001F, -182.264008F), new Vector2(149.666F, -182.912003F));
+ builder.AddCubicBezier(new Vector2(149.222F, -183.559998F), new Vector2(148.651993F, -184.076004F), new Vector2(147.955994F, -184.460007F));
+ builder.AddCubicBezier(new Vector2(147.259995F, -184.843994F), new Vector2(146.528F, -185.149994F), new Vector2(145.759995F, -185.378006F));
+ builder.AddCubicBezier(new Vector2(144.992004F, -185.606003F), new Vector2(144.253998F, -185.828003F), new Vector2(143.546005F, -186.044006F));
+ builder.AddCubicBezier(new Vector2(142.837997F, -186.259995F), new Vector2(142.268005F, -186.524002F), new Vector2(141.835999F, -186.835999F));
+ builder.AddCubicBezier(new Vector2(141.404007F, -187.147995F), new Vector2(141.188004F, -187.591995F), new Vector2(141.188004F, -188.167999F));
+ builder.AddCubicBezier(new Vector2(141.188004F, -188.720001F), new Vector2(141.434006F, -189.164001F), new Vector2(141.925995F, -189.5F));
+ builder.AddCubicBezier(new Vector2(142.417999F, -189.835999F), new Vector2(143.132004F, -190.003998F), new Vector2(144.067993F, -190.003998F));
+ builder.AddCubicBezier(new Vector2(144.955994F, -190.003998F), new Vector2(145.748001F, -189.835999F), new Vector2(146.444F, -189.5F));
+ builder.AddCubicBezier(new Vector2(147.139999F, -189.164001F), new Vector2(147.740005F, -188.684006F), new Vector2(148.244003F, -188.059998F));
+ builder.AddLine(new Vector2(150.332001F, -190.147995F));
+ builder.AddCubicBezier(new Vector2(149.660004F, -191.084F), new Vector2(148.802002F, -191.785995F), new Vector2(147.757996F, -192.253998F));
+ builder.AddCubicBezier(new Vector2(146.714005F, -192.722F), new Vector2(145.520004F, -192.955994F), new Vector2(144.175995F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(142.904007F, -192.955994F), new Vector2(141.811996F, -192.751999F), new Vector2(140.899994F, -192.343994F));
+ builder.AddCubicBezier(new Vector2(139.988007F, -191.936005F), new Vector2(139.285995F, -191.354004F), new Vector2(138.794006F, -190.598007F));
+ builder.AddCubicBezier(new Vector2(138.302002F, -189.841995F), new Vector2(138.056F, -188.947998F), new Vector2(138.056F, -187.916F));
+ builder.AddCubicBezier(new Vector2(138.056F, -186.884003F), new Vector2(138.278F, -186.050003F), new Vector2(138.722F, -185.414001F));
+ builder.AddCubicBezier(new Vector2(139.166F, -184.778F), new Vector2(139.735992F, -184.279999F), new Vector2(140.432007F, -183.919998F));
+ builder.AddCubicBezier(new Vector2(141.128006F, -183.559998F), new Vector2(141.865997F, -183.272003F), new Vector2(142.645996F, -183.056F));
+ builder.AddCubicBezier(new Vector2(143.425995F, -182.839996F), new Vector2(144.164001F, -182.617996F), new Vector2(144.860001F, -182.389999F));
+ builder.AddCubicBezier(new Vector2(145.556F, -182.162003F), new Vector2(146.126007F, -181.873993F), new Vector2(146.570007F, -181.526001F));
+ builder.AddCubicBezier(new Vector2(147.014008F, -181.177994F), new Vector2(147.235992F, -180.692001F), new Vector2(147.235992F, -180.067993F));
+ builder.AddCubicBezier(new Vector2(147.235992F, -179.444F), new Vector2(146.960007F, -178.957993F), new Vector2(146.408005F, -178.610001F));
+ builder.AddCubicBezier(new Vector2(145.856003F, -178.261993F), new Vector2(145.076004F, -178.087997F), new Vector2(144.067993F, -178.087997F));
+ builder.AddCubicBezier(new Vector2(143.059998F, -178.087997F), new Vector2(142.147995F, -178.274002F), new Vector2(141.332001F, -178.645996F));
+ builder.AddCubicBezier(new Vector2(140.516006F, -179.018005F), new Vector2(139.796005F, -179.587997F), new Vector2(139.171997F, -180.356003F));
+ builder.AddLine(new Vector2(137.084F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(137.612F, -177.619995F), new Vector2(138.229996F, -177.061996F), new Vector2(138.938004F, -176.593994F));
+ builder.AddCubicBezier(new Vector2(139.645996F, -176.126007F), new Vector2(140.432007F, -175.766006F), new Vector2(141.296005F, -175.514008F));
+ builder.AddCubicBezier(new Vector2(142.160004F, -175.261993F), new Vector2(143.072006F, -175.136002F), new Vector2(144.031998F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(145.951996F, -175.136002F), new Vector2(147.481995F, -175.604004F), new Vector2(148.621994F, -176.539993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1097()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(135.787994F, -189.643997F));
+ builder.AddLine(new Vector2(135.787994F, -192.595993F));
+ builder.AddLine(new Vector2(124.124001F, -192.595993F));
+ builder.AddLine(new Vector2(124.124001F, -189.643997F));
+ builder.AddLine(new Vector2(135.787994F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(131.576004F, -175.496002F));
+ builder.AddLine(new Vector2(131.576004F, -199.759995F));
+ builder.AddLine(new Vector2(128.335999F, -199.759995F));
+ builder.AddLine(new Vector2(128.335999F, -175.496002F));
+ builder.AddLine(new Vector2(131.576004F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1098()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(120.776001F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(121.160004F, -197.005997F), new Vector2(121.351997F, -197.503998F), new Vector2(121.351997F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(121.351997F, -198.679993F), new Vector2(121.160004F, -199.166F), new Vector2(120.776001F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(120.391998F, -199.957993F), new Vector2(119.900002F, -200.156006F), new Vector2(119.300003F, -200.156006F));
+ builder.AddCubicBezier(new Vector2(118.699997F, -200.156006F), new Vector2(118.208F, -199.957993F), new Vector2(117.823997F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(117.440002F, -199.166F), new Vector2(117.248001F, -198.679993F), new Vector2(117.248001F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(117.248001F, -197.503998F), new Vector2(117.440002F, -197.005997F), new Vector2(117.823997F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(118.208F, -196.214005F), new Vector2(118.699997F, -196.016006F), new Vector2(119.300003F, -196.016006F));
+ builder.AddCubicBezier(new Vector2(119.900002F, -196.016006F), new Vector2(120.391998F, -196.214005F), new Vector2(120.776001F, -196.610001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(120.919998F, -175.496002F));
+ builder.AddLine(new Vector2(120.919998F, -192.595993F));
+ builder.AddLine(new Vector2(117.643997F, -192.595993F));
+ builder.AddLine(new Vector2(117.643997F, -175.496002F));
+ builder.AddLine(new Vector2(120.919998F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1099()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(99.5F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(100.267998F, -189.511993F), new Vector2(101.251999F, -189.895996F), new Vector2(102.452003F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(103.028F, -189.895996F), new Vector2(103.531998F, -189.811996F), new Vector2(103.963997F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(104.396004F, -189.475998F), new Vector2(104.792F, -189.199997F), new Vector2(105.152F, -188.815994F));
+ builder.AddLine(new Vector2(107.276001F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(106.676003F, -191.707993F), new Vector2(106.028F, -192.205994F), new Vector2(105.332001F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(104.636002F, -192.806F), new Vector2(103.856003F, -192.955994F), new Vector2(102.991997F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(101.096001F, -192.955994F), new Vector2(99.6439972F, -192.307999F), new Vector2(98.6360016F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(97.6279984F, -189.716003F), new Vector2(97.1240005F, -187.975998F), new Vector2(97.1240005F, -185.792007F));
+ builder.AddLine(new Vector2(98.3479996F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(98.3479996F, -186.800003F), new Vector2(98.7320023F, -187.975998F), new Vector2(99.5F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(98.3479996F, -175.496002F));
+ builder.AddLine(new Vector2(98.3479996F, -192.595993F));
+ builder.AddLine(new Vector2(95.1080017F, -192.595993F));
+ builder.AddLine(new Vector2(95.1080017F, -175.496002F));
+ builder.AddLine(new Vector2(98.3479996F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1100()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(87.512001F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(88.6880035F, -176.395996F), new Vector2(89.6959991F, -177.128006F), new Vector2(90.5360031F, -178.087997F));
+ builder.AddLine(new Vector2(88.447998F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(87.8720016F, -179.539993F), new Vector2(87.1819992F, -179.035995F), new Vector2(86.3779984F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(85.5739975F, -178.363998F), new Vector2(84.6920013F, -178.195999F), new Vector2(83.7320023F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(82.5800018F, -178.195999F), new Vector2(81.5599976F, -178.442001F), new Vector2(80.6719971F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(79.7839966F, -179.425995F), new Vector2(79.0999985F, -180.121994F), new Vector2(78.6200027F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(78.1399994F, -181.921997F), new Vector2(77.9000015F, -182.972F), new Vector2(77.9000015F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(77.9000015F, -185.348007F), new Vector2(78.1279984F, -186.367996F), new Vector2(78.5839996F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(79.0400009F, -188.095993F), new Vector2(79.6880035F, -188.768005F), new Vector2(80.5279999F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(81.3679962F, -189.727997F), new Vector2(82.3399963F, -189.968002F), new Vector2(83.4440002F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(84.5F, -189.968002F), new Vector2(85.4000015F, -189.746002F), new Vector2(86.1439972F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(86.8880005F, -188.858002F), new Vector2(87.4639969F, -188.233994F), new Vector2(87.8720016F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(88.2799988F, -186.626007F), new Vector2(88.4840012F, -185.647995F), new Vector2(88.4840012F, -184.496002F));
+ builder.AddLine(new Vector2(89.6719971F, -185.539993F));
+ builder.AddLine(new Vector2(76.9639969F, -185.539993F));
+ builder.AddLine(new Vector2(76.9639969F, -182.839996F));
+ builder.AddLine(new Vector2(91.4000015F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(91.4720001F, -183.175995F), new Vector2(91.5199966F, -183.481995F), new Vector2(91.5439987F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(91.5680008F, -184.033997F), new Vector2(91.5800018F, -184.292007F), new Vector2(91.5800018F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(91.5800018F, -186.164001F), new Vector2(91.237999F, -187.615997F), new Vector2(90.5540009F, -188.888F));
+ builder.AddCubicBezier(new Vector2(89.8700027F, -190.160004F), new Vector2(88.9160004F, -191.156006F), new Vector2(87.6920013F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(86.4680023F, -192.595993F), new Vector2(85.0759964F, -192.955994F), new Vector2(83.5159988F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(81.8600006F, -192.955994F), new Vector2(80.3659973F, -192.565994F), new Vector2(79.0339966F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(77.7020035F, -191.005997F), new Vector2(76.6460037F, -189.944F), new Vector2(75.8659973F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(75.0859985F, -187.255997F), new Vector2(74.6959991F, -185.744003F), new Vector2(74.6959991F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(74.6959991F, -182.360001F), new Vector2(75.0920029F, -180.835999F), new Vector2(75.8840027F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(76.6760025F, -178.147995F), new Vector2(77.75F, -177.085999F), new Vector2(79.1060028F, -176.306F));
+ builder.AddCubicBezier(new Vector2(80.461998F, -175.526001F), new Vector2(82.0039978F, -175.136002F), new Vector2(83.7320023F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(85.0759964F, -175.136002F), new Vector2(86.3359985F, -175.388F), new Vector2(87.512001F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1101()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(71.0960007F, -201.199997F));
+ builder.AddLine(new Vector2(67.8199997F, -201.199997F));
+ builder.AddLine(new Vector2(67.8199997F, -188.419998F));
+ builder.AddLine(new Vector2(68.4319992F, -184.279999F));
+ builder.AddLine(new Vector2(67.8199997F, -180.104004F));
+ builder.AddLine(new Vector2(67.8199997F, -175.496002F));
+ builder.AddLine(new Vector2(71.0960007F, -175.496002F));
+ builder.AddLine(new Vector2(71.0960007F, -201.199997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(59.7739983F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(58.9459991F, -179.425995F), new Vector2(58.2980003F, -180.115997F), new Vector2(57.8300018F, -181.003998F));
+ builder.AddCubicBezier(new Vector2(57.3619995F, -181.891998F), new Vector2(57.1279984F, -182.912003F), new Vector2(57.1279984F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(57.1279984F, -185.216003F), new Vector2(57.3619995F, -186.229996F), new Vector2(57.8300018F, -187.106003F));
+ builder.AddCubicBezier(new Vector2(58.2980003F, -187.981995F), new Vector2(58.9399986F, -188.666F), new Vector2(59.7560005F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(60.5719986F, -189.649994F), new Vector2(61.5200005F, -189.895996F), new Vector2(62.5999985F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(63.6800003F, -189.895996F), new Vector2(64.6279984F, -189.643997F), new Vector2(65.4440002F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(66.2600021F, -188.636002F), new Vector2(66.8960037F, -187.945999F), new Vector2(67.3519974F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(67.8079987F, -186.194F), new Vector2(68.0360031F, -185.179993F), new Vector2(68.0360031F, -184.028F));
+ builder.AddCubicBezier(new Vector2(68.0360031F, -182.899994F), new Vector2(67.8079987F, -181.897995F), new Vector2(67.3519974F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(66.8960037F, -180.145996F), new Vector2(66.2600021F, -179.455994F), new Vector2(65.4440002F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(64.6279984F, -178.447998F), new Vector2(63.6800003F, -178.195999F), new Vector2(62.5999985F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(61.5439987F, -178.195999F), new Vector2(60.6020012F, -178.442001F), new Vector2(59.7739983F, -178.934006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(65.5879974F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(66.6200027F, -176.485992F), new Vector2(67.447998F, -177.235992F), new Vector2(68.0719986F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(68.6959991F, -179.156006F), new Vector2(69.0439987F, -180.248001F), new Vector2(69.1159973F, -181.472F));
+ builder.AddLine(new Vector2(69.1159973F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(69.0439987F, -187.867996F), new Vector2(68.6900024F, -188.966003F), new Vector2(68.0540009F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(67.4179993F, -190.862F), new Vector2(66.5839996F, -191.606003F), new Vector2(65.552002F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(64.5199966F, -192.686005F), new Vector2(63.355999F, -192.955994F), new Vector2(62.0600014F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(60.5F, -192.955994F), new Vector2(59.0960007F, -192.559998F), new Vector2(57.8479996F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(56.5999985F, -190.975998F), new Vector2(55.6100006F, -189.908005F), new Vector2(54.8779984F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(54.1459999F, -187.220001F), new Vector2(53.7799988F, -185.707993F), new Vector2(53.7799988F, -184.028F));
+ builder.AddCubicBezier(new Vector2(53.7799988F, -182.348007F), new Vector2(54.1459999F, -180.835999F), new Vector2(54.8779984F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(55.6100006F, -178.147995F), new Vector2(56.5999985F, -177.085999F), new Vector2(57.8479996F, -176.306F));
+ builder.AddCubicBezier(new Vector2(59.0960007F, -175.526001F), new Vector2(60.5F, -175.136002F), new Vector2(62.0600014F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(63.3800011F, -175.136002F), new Vector2(64.5559998F, -175.406006F), new Vector2(65.5879974F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1102()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(38.3720016F, -175.496002F));
+ builder.AddLine(new Vector2(38.3720016F, -192.595993F));
+ builder.AddLine(new Vector2(35.132F, -192.595993F));
+ builder.AddLine(new Vector2(35.132F, -175.496002F));
+ builder.AddLine(new Vector2(38.3720016F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(50.4679985F, -175.496002F));
+ builder.AddLine(new Vector2(50.4679985F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(50.4679985F, -187.292007F), new Vector2(50.1800003F, -188.401993F), new Vector2(49.6040001F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(49.0279999F, -190.490005F), new Vector2(48.2420006F, -191.335999F), new Vector2(47.2459984F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(46.25F, -192.632004F), new Vector2(45.1040001F, -192.955994F), new Vector2(43.8079987F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(42.512001F, -192.955994F), new Vector2(41.3479996F, -192.662003F), new Vector2(40.3160019F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(39.2840004F, -191.485992F), new Vector2(38.4799995F, -190.688004F), new Vector2(37.9039993F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(37.3279991F, -188.671997F), new Vector2(37.0400009F, -187.520004F), new Vector2(37.0400009F, -186.223999F));
+ builder.AddLine(new Vector2(38.3720016F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(38.3720016F, -186.332001F), new Vector2(38.5639992F, -187.100006F), new Vector2(38.9480019F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(39.3320007F, -188.444F), new Vector2(39.8600006F, -188.972F), new Vector2(40.5320015F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(41.2039986F, -189.740005F), new Vector2(41.9720001F, -189.932007F), new Vector2(42.8359985F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(44.132F, -189.932007F), new Vector2(45.1819992F, -189.511993F), new Vector2(45.9860001F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(46.7900009F, -187.832001F), new Vector2(47.1920013F, -186.764008F), new Vector2(47.1920013F, -185.468002F));
+ builder.AddLine(new Vector2(47.1920013F, -175.496002F));
+ builder.AddLine(new Vector2(50.4679985F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1103()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(27.2479992F, -176.126007F));
+ builder.AddCubicBezier(new Vector2(28.3519993F, -176.738007F), new Vector2(29.2159996F, -177.608002F), new Vector2(29.8400002F, -178.735992F));
+ builder.AddCubicBezier(new Vector2(30.4640007F, -179.863998F), new Vector2(30.7759991F, -181.171997F), new Vector2(30.7759991F, -182.660004F));
+ builder.AddLine(new Vector2(30.7759991F, -192.595993F));
+ builder.AddLine(new Vector2(27.5359993F, -192.595993F));
+ builder.AddLine(new Vector2(27.5359993F, -182.804001F));
+ builder.AddCubicBezier(new Vector2(27.5359993F, -181.388F), new Vector2(27.1760006F, -180.278F), new Vector2(26.4559994F, -179.473999F));
+ builder.AddCubicBezier(new Vector2(25.7360001F, -178.669998F), new Vector2(24.7399998F, -178.268005F), new Vector2(23.4680004F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(22.6280003F, -178.268005F), new Vector2(21.8959999F, -178.447998F), new Vector2(21.2719994F, -178.807999F));
+ builder.AddCubicBezier(new Vector2(20.6480007F, -179.167999F), new Vector2(20.1739998F, -179.690002F), new Vector2(19.8500004F, -180.373993F));
+ builder.AddCubicBezier(new Vector2(19.5259991F, -181.057999F), new Vector2(19.3640003F, -181.867996F), new Vector2(19.3640003F, -182.804001F));
+ builder.AddLine(new Vector2(19.3640003F, -192.595993F));
+ builder.AddLine(new Vector2(16.1240005F, -192.595993F));
+ builder.AddLine(new Vector2(16.1240005F, -182.660004F));
+ builder.AddCubicBezier(new Vector2(16.1240005F, -181.171997F), new Vector2(16.4360008F, -179.863998F), new Vector2(17.0599995F, -178.735992F));
+ builder.AddCubicBezier(new Vector2(17.684F, -177.608002F), new Vector2(18.5540009F, -176.738007F), new Vector2(19.6700001F, -176.126007F));
+ builder.AddCubicBezier(new Vector2(20.7859993F, -175.514008F), new Vector2(22.052F, -175.207993F), new Vector2(23.4680004F, -175.207993F));
+ builder.AddCubicBezier(new Vector2(24.8840008F, -175.207993F), new Vector2(26.1439991F, -175.514008F), new Vector2(27.2479992F, -176.126007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1104()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-5.07999992F, -168.332001F));
+ builder.AddLine(new Vector2(-1.84000003F, -175.352005F));
+ builder.AddLine(new Vector2(-3.67600012F, -178.664001F));
+ builder.AddLine(new Vector2(-8.68000031F, -168.332001F));
+ builder.AddLine(new Vector2(-5.07999992F, -168.332001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-1.84000003F, -175.352005F));
+ builder.AddLine(new Vector2(6.15199995F, -192.595993F));
+ builder.AddLine(new Vector2(2.55200005F, -192.595993F));
+ builder.AddLine(new Vector2(-3.24399996F, -179.095993F));
+ builder.AddLine(new Vector2(-2.09200001F, -179.095993F));
+ builder.AddLine(new Vector2(-7.5999999F, -192.595993F));
+ builder.AddLine(new Vector2(-11.1999998F, -192.595993F));
+ builder.AddLine(new Vector2(-3.78399992F, -175.352005F));
+ builder.AddLine(new Vector2(-1.84000003F, -175.352005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1105()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-19.1560001F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(-18.3880005F, -189.511993F), new Vector2(-17.4039993F, -189.895996F), new Vector2(-16.2040005F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-15.6280003F, -189.895996F), new Vector2(-15.1239996F, -189.811996F), new Vector2(-14.6920004F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(-14.2600002F, -189.475998F), new Vector2(-13.8640003F, -189.199997F), new Vector2(-13.5039997F, -188.815994F));
+ builder.AddLine(new Vector2(-11.3800001F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-11.9799995F, -191.707993F), new Vector2(-12.6280003F, -192.205994F), new Vector2(-13.3240004F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(-14.0200005F, -192.806F), new Vector2(-14.8000002F, -192.955994F), new Vector2(-15.6639996F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-17.5599995F, -192.955994F), new Vector2(-19.0119991F, -192.307999F), new Vector2(-20.0200005F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-21.0279999F, -189.716003F), new Vector2(-21.5319996F, -187.975998F), new Vector2(-21.5319996F, -185.792007F));
+ builder.AddLine(new Vector2(-20.3080006F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(-20.3080006F, -186.800003F), new Vector2(-19.9239998F, -187.975998F), new Vector2(-19.1560001F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-20.3080006F, -175.496002F));
+ builder.AddLine(new Vector2(-20.3080006F, -192.595993F));
+ builder.AddLine(new Vector2(-23.5480003F, -192.595993F));
+ builder.AddLine(new Vector2(-23.5480003F, -175.496002F));
+ builder.AddLine(new Vector2(-20.3080006F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1106()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-26.7159996F, -189.643997F));
+ builder.AddLine(new Vector2(-26.7159996F, -192.595993F));
+ builder.AddLine(new Vector2(-38.3800011F, -192.595993F));
+ builder.AddLine(new Vector2(-38.3800011F, -189.643997F));
+ builder.AddLine(new Vector2(-26.7159996F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-30.9279995F, -175.496002F));
+ builder.AddLine(new Vector2(-30.9279995F, -199.759995F));
+ builder.AddLine(new Vector2(-34.1679993F, -199.759995F));
+ builder.AddLine(new Vector2(-34.1679993F, -175.496002F));
+ builder.AddLine(new Vector2(-30.9279995F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1107()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-53.0680008F, -175.496002F));
+ builder.AddLine(new Vector2(-53.0680008F, -192.595993F));
+ builder.AddLine(new Vector2(-56.3079987F, -192.595993F));
+ builder.AddLine(new Vector2(-56.3079987F, -175.496002F));
+ builder.AddLine(new Vector2(-53.0680008F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-40.9720001F, -175.496002F));
+ builder.AddLine(new Vector2(-40.9720001F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-40.9720001F, -187.292007F), new Vector2(-41.2599983F, -188.401993F), new Vector2(-41.8359985F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(-42.4119987F, -190.490005F), new Vector2(-43.1980019F, -191.335999F), new Vector2(-44.1940002F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(-45.1899986F, -192.632004F), new Vector2(-46.3359985F, -192.955994F), new Vector2(-47.632F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-48.9280014F, -192.955994F), new Vector2(-50.0919991F, -192.662003F), new Vector2(-51.1240005F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-52.1559982F, -191.485992F), new Vector2(-52.9599991F, -190.688004F), new Vector2(-53.5359993F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-54.1119995F, -188.671997F), new Vector2(-54.4000015F, -187.520004F), new Vector2(-54.4000015F, -186.223999F));
+ builder.AddLine(new Vector2(-53.0680008F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-53.0680008F, -186.332001F), new Vector2(-52.8759995F, -187.100006F), new Vector2(-52.4920006F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-52.1080017F, -188.444F), new Vector2(-51.5800018F, -188.972F), new Vector2(-50.9080009F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-50.2360001F, -189.740005F), new Vector2(-49.4679985F, -189.932007F), new Vector2(-48.6040001F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-47.3079987F, -189.932007F), new Vector2(-46.2579994F, -189.511993F), new Vector2(-45.4539986F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-44.6500015F, -187.832001F), new Vector2(-44.2480011F, -186.764008F), new Vector2(-44.2480011F, -185.468002F));
+ builder.AddLine(new Vector2(-44.2480011F, -175.496002F));
+ builder.AddLine(new Vector2(-40.9720001F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1108()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-64.1920013F, -176.126007F));
+ builder.AddCubicBezier(new Vector2(-63.0880013F, -176.738007F), new Vector2(-62.223999F, -177.608002F), new Vector2(-61.5999985F, -178.735992F));
+ builder.AddCubicBezier(new Vector2(-60.9760017F, -179.863998F), new Vector2(-60.6640015F, -181.171997F), new Vector2(-60.6640015F, -182.660004F));
+ builder.AddLine(new Vector2(-60.6640015F, -192.595993F));
+ builder.AddLine(new Vector2(-63.9039993F, -192.595993F));
+ builder.AddLine(new Vector2(-63.9039993F, -182.804001F));
+ builder.AddCubicBezier(new Vector2(-63.9039993F, -181.388F), new Vector2(-64.2639999F, -180.278F), new Vector2(-64.9840012F, -179.473999F));
+ builder.AddCubicBezier(new Vector2(-65.7040024F, -178.669998F), new Vector2(-66.6999969F, -178.268005F), new Vector2(-67.9720001F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-68.8119965F, -178.268005F), new Vector2(-69.5439987F, -178.447998F), new Vector2(-70.1679993F, -178.807999F));
+ builder.AddCubicBezier(new Vector2(-70.7919998F, -179.167999F), new Vector2(-71.2659988F, -179.690002F), new Vector2(-71.5899963F, -180.373993F));
+ builder.AddCubicBezier(new Vector2(-71.9140015F, -181.057999F), new Vector2(-72.0759964F, -181.867996F), new Vector2(-72.0759964F, -182.804001F));
+ builder.AddLine(new Vector2(-72.0759964F, -192.595993F));
+ builder.AddLine(new Vector2(-75.3160019F, -192.595993F));
+ builder.AddLine(new Vector2(-75.3160019F, -182.660004F));
+ builder.AddCubicBezier(new Vector2(-75.3160019F, -181.171997F), new Vector2(-75.0039978F, -179.863998F), new Vector2(-74.3799973F, -178.735992F));
+ builder.AddCubicBezier(new Vector2(-73.7559967F, -177.608002F), new Vector2(-72.8860016F, -176.738007F), new Vector2(-71.7699966F, -176.126007F));
+ builder.AddCubicBezier(new Vector2(-70.6539993F, -175.514008F), new Vector2(-69.3880005F, -175.207993F), new Vector2(-67.9720001F, -175.207993F));
+ builder.AddCubicBezier(new Vector2(-66.5559998F, -175.207993F), new Vector2(-65.2959976F, -175.514008F), new Vector2(-64.1920013F, -176.126007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1109()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-90.2919998F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-91.1320038F, -179.528F), new Vector2(-91.7919998F, -180.218002F), new Vector2(-92.2720032F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-92.7519989F, -181.970001F), new Vector2(-92.9919968F, -182.972F), new Vector2(-92.9919968F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-92.9919968F, -185.203995F), new Vector2(-92.7519989F, -186.188004F), new Vector2(-92.2720032F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-91.7919998F, -187.916F), new Vector2(-91.1320038F, -188.593994F), new Vector2(-90.2919998F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-89.4520035F, -189.578003F), new Vector2(-88.5039978F, -189.824005F), new Vector2(-87.447998F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-86.3440018F, -189.824005F), new Vector2(-85.3779984F, -189.578003F), new Vector2(-84.5500031F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-83.7220001F, -188.593994F), new Vector2(-83.0619965F, -187.916F), new Vector2(-82.5699997F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-82.0780029F, -186.188004F), new Vector2(-81.8320007F, -185.203995F), new Vector2(-81.8320007F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-81.8320007F, -182.972F), new Vector2(-82.0719986F, -181.970001F), new Vector2(-82.552002F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-83.0319977F, -180.218002F), new Vector2(-83.6920013F, -179.528F), new Vector2(-84.5319977F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-85.3720016F, -178.520004F), new Vector2(-86.3440018F, -178.268005F), new Vector2(-87.447998F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-88.5039978F, -178.268005F), new Vector2(-89.4520035F, -178.520004F), new Vector2(-90.2919998F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-82.8939972F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-81.538002F, -177.115997F), new Vector2(-80.4639969F, -178.190002F), new Vector2(-79.6719971F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-78.8799973F, -180.901993F), new Vector2(-78.4840012F, -182.419998F), new Vector2(-78.4840012F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-78.4840012F, -185.755997F), new Vector2(-78.8799973F, -187.255997F), new Vector2(-79.6719971F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-80.4639969F, -189.944F), new Vector2(-81.538002F, -191.005997F), new Vector2(-82.8939972F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-84.25F, -192.565994F), new Vector2(-85.7679977F, -192.955994F), new Vector2(-87.447998F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-89.1039963F, -192.955994F), new Vector2(-90.6039963F, -192.559998F), new Vector2(-91.947998F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-93.2919998F, -190.975998F), new Vector2(-94.3600006F, -189.914001F), new Vector2(-95.1520004F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(-95.9440002F, -187.25F), new Vector2(-96.3399963F, -185.755997F), new Vector2(-96.3399963F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-96.3399963F, -182.419998F), new Vector2(-95.9440002F, -180.901993F), new Vector2(-95.1520004F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-94.3600006F, -178.190002F), new Vector2(-93.2919998F, -177.115997F), new Vector2(-91.947998F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-90.6039963F, -175.531998F), new Vector2(-89.1039963F, -175.136002F), new Vector2(-87.447998F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-85.7679977F, -175.136002F), new Vector2(-84.25F, -175.531998F), new Vector2(-82.8939972F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1110()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-101.001999F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-99.8619995F, -176.395996F), new Vector2(-98.8960037F, -177.104004F), new Vector2(-98.1039963F, -178.016006F));
+ builder.AddLine(new Vector2(-100.227997F, -180.175995F));
+ builder.AddCubicBezier(new Vector2(-100.779999F, -179.552002F), new Vector2(-101.433998F, -179.078003F), new Vector2(-102.190002F, -178.753998F));
+ builder.AddCubicBezier(new Vector2(-102.945999F, -178.429993F), new Vector2(-103.779999F, -178.268005F), new Vector2(-104.692001F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-105.772003F, -178.268005F), new Vector2(-106.732002F, -178.520004F), new Vector2(-107.571999F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-108.412003F, -179.528F), new Vector2(-109.071999F, -180.212006F), new Vector2(-109.552002F, -181.076004F));
+ builder.AddCubicBezier(new Vector2(-110.031998F, -181.940002F), new Vector2(-110.272003F, -182.936005F), new Vector2(-110.272003F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-110.272003F, -185.192001F), new Vector2(-110.031998F, -186.188004F), new Vector2(-109.552002F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-109.071999F, -187.916F), new Vector2(-108.412003F, -188.593994F), new Vector2(-107.571999F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-106.732002F, -189.578003F), new Vector2(-105.772003F, -189.824005F), new Vector2(-104.692001F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-103.804001F, -189.824005F), new Vector2(-102.975998F, -189.662003F), new Vector2(-102.208F, -189.337997F));
+ builder.AddCubicBezier(new Vector2(-101.440002F, -189.014008F), new Vector2(-100.792F, -188.539993F), new Vector2(-100.264F, -187.916F));
+ builder.AddLine(new Vector2(-98.1039963F, -190.076004F));
+ builder.AddCubicBezier(new Vector2(-98.9199982F, -191.011993F), new Vector2(-99.8919983F, -191.725998F), new Vector2(-101.019997F, -192.218002F));
+ builder.AddCubicBezier(new Vector2(-102.148003F, -192.710007F), new Vector2(-103.372002F, -192.955994F), new Vector2(-104.692001F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-106.372002F, -192.955994F), new Vector2(-107.889999F, -192.565994F), new Vector2(-109.246002F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-110.601997F, -191.005997F), new Vector2(-111.669998F, -189.944F), new Vector2(-112.449997F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-113.230003F, -187.255997F), new Vector2(-113.620003F, -185.744003F), new Vector2(-113.620003F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-113.620003F, -182.408005F), new Vector2(-113.230003F, -180.901993F), new Vector2(-112.449997F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-111.669998F, -178.190002F), new Vector2(-110.601997F, -177.115997F), new Vector2(-109.246002F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-107.889999F, -175.531998F), new Vector2(-106.372002F, -175.136002F), new Vector2(-104.692001F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-103.372002F, -175.136002F), new Vector2(-102.141998F, -175.388F), new Vector2(-101.001999F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1111()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-127.552002F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-126.375999F, -176.395996F), new Vector2(-125.367996F, -177.128006F), new Vector2(-124.528F, -178.087997F));
+ builder.AddLine(new Vector2(-126.615997F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-127.192001F, -179.539993F), new Vector2(-127.882004F, -179.035995F), new Vector2(-128.686005F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-129.490005F, -178.363998F), new Vector2(-130.371994F, -178.195999F), new Vector2(-131.332001F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-132.483994F, -178.195999F), new Vector2(-133.503998F, -178.442001F), new Vector2(-134.391998F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-135.279999F, -179.425995F), new Vector2(-135.964005F, -180.121994F), new Vector2(-136.444F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-136.923996F, -181.921997F), new Vector2(-137.164001F, -182.972F), new Vector2(-137.164001F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-137.164001F, -185.348007F), new Vector2(-136.936005F, -186.367996F), new Vector2(-136.479996F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-136.024002F, -188.095993F), new Vector2(-135.376007F, -188.768005F), new Vector2(-134.535995F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-133.695999F, -189.727997F), new Vector2(-132.723999F, -189.968002F), new Vector2(-131.619995F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-130.563995F, -189.968002F), new Vector2(-129.664001F, -189.746002F), new Vector2(-128.919998F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-128.175995F, -188.858002F), new Vector2(-127.599998F, -188.233994F), new Vector2(-127.192001F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-126.783997F, -186.626007F), new Vector2(-126.580002F, -185.647995F), new Vector2(-126.580002F, -184.496002F));
+ builder.AddLine(new Vector2(-125.391998F, -185.539993F));
+ builder.AddLine(new Vector2(-138.100006F, -185.539993F));
+ builder.AddLine(new Vector2(-138.100006F, -182.839996F));
+ builder.AddLine(new Vector2(-123.664001F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-123.592003F, -183.175995F), new Vector2(-123.543999F, -183.481995F), new Vector2(-123.519997F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-123.496002F, -184.033997F), new Vector2(-123.484001F, -184.292007F), new Vector2(-123.484001F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-123.484001F, -186.164001F), new Vector2(-123.825996F, -187.615997F), new Vector2(-124.510002F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-125.194F, -190.160004F), new Vector2(-126.148003F, -191.156006F), new Vector2(-127.372002F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-128.595993F, -192.595993F), new Vector2(-129.988007F, -192.955994F), new Vector2(-131.548004F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-133.203995F, -192.955994F), new Vector2(-134.697998F, -192.565994F), new Vector2(-136.029999F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-137.362F, -191.005997F), new Vector2(-138.417999F, -189.944F), new Vector2(-139.197998F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-139.977997F, -187.255997F), new Vector2(-140.367996F, -185.744003F), new Vector2(-140.367996F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-140.367996F, -182.360001F), new Vector2(-139.972F, -180.835999F), new Vector2(-139.179993F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-138.388F, -178.147995F), new Vector2(-137.313995F, -177.085999F), new Vector2(-135.957993F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-134.602005F, -175.526001F), new Vector2(-133.059998F, -175.136002F), new Vector2(-131.332001F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-129.988007F, -175.136002F), new Vector2(-128.727997F, -175.388F), new Vector2(-127.552002F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1112()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-155.740005F, -175.496002F));
+ builder.AddLine(new Vector2(-155.740005F, -201.199997F));
+ builder.AddLine(new Vector2(-158.979996F, -201.199997F));
+ builder.AddLine(new Vector2(-158.979996F, -175.496002F));
+ builder.AddLine(new Vector2(-155.740005F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-143.643997F, -175.496002F));
+ builder.AddLine(new Vector2(-143.643997F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-143.643997F, -187.460007F), new Vector2(-143.932007F, -188.647995F), new Vector2(-144.507996F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-145.084F, -190.712006F), new Vector2(-145.869995F, -191.516006F), new Vector2(-146.865997F, -192.091995F));
+ builder.AddCubicBezier(new Vector2(-147.862F, -192.667999F), new Vector2(-149.007996F, -192.955994F), new Vector2(-150.304001F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-151.600006F, -192.955994F), new Vector2(-152.764008F, -192.662003F), new Vector2(-153.796005F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-154.828003F, -191.485992F), new Vector2(-155.632004F, -190.688004F), new Vector2(-156.207993F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-156.783997F, -188.671997F), new Vector2(-157.072006F, -187.520004F), new Vector2(-157.072006F, -186.223999F));
+ builder.AddLine(new Vector2(-155.740005F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-155.740005F, -186.332001F), new Vector2(-155.548004F, -187.100006F), new Vector2(-155.164001F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-154.779999F, -188.444F), new Vector2(-154.251999F, -188.972F), new Vector2(-153.580002F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-152.908005F, -189.740005F), new Vector2(-152.139999F, -189.932007F), new Vector2(-151.276001F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-149.979996F, -189.932007F), new Vector2(-148.929993F, -189.511993F), new Vector2(-148.126007F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-147.322006F, -187.832001F), new Vector2(-146.919998F, -186.764008F), new Vector2(-146.919998F, -185.468002F));
+ builder.AddLine(new Vector2(-146.919998F, -175.496002F));
+ builder.AddLine(new Vector2(-143.643997F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1113()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-162.147995F, -189.643997F));
+ builder.AddLine(new Vector2(-162.147995F, -192.595993F));
+ builder.AddLine(new Vector2(-173.811996F, -192.595993F));
+ builder.AddLine(new Vector2(-173.811996F, -189.643997F));
+ builder.AddLine(new Vector2(-162.147995F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-166.360001F, -175.496002F));
+ builder.AddLine(new Vector2(-166.360001F, -199.759995F));
+ builder.AddLine(new Vector2(-169.600006F, -199.759995F));
+ builder.AddLine(new Vector2(-169.600006F, -175.496002F));
+ builder.AddLine(new Vector2(-166.360001F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1114()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-184.395996F, -201.199997F));
+ builder.AddLine(new Vector2(-187.671997F, -201.199997F));
+ builder.AddLine(new Vector2(-187.671997F, -188.419998F));
+ builder.AddLine(new Vector2(-187.059998F, -184.279999F));
+ builder.AddLine(new Vector2(-187.671997F, -180.104004F));
+ builder.AddLine(new Vector2(-187.671997F, -175.496002F));
+ builder.AddLine(new Vector2(-184.395996F, -175.496002F));
+ builder.AddLine(new Vector2(-184.395996F, -201.199997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-195.718002F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-196.546005F, -179.425995F), new Vector2(-197.194F, -180.115997F), new Vector2(-197.662003F, -181.003998F));
+ builder.AddCubicBezier(new Vector2(-198.130005F, -181.891998F), new Vector2(-198.363998F, -182.912003F), new Vector2(-198.363998F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-198.363998F, -185.216003F), new Vector2(-198.130005F, -186.229996F), new Vector2(-197.662003F, -187.106003F));
+ builder.AddCubicBezier(new Vector2(-197.194F, -187.981995F), new Vector2(-196.552002F, -188.666F), new Vector2(-195.735992F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-194.919998F, -189.649994F), new Vector2(-193.972F, -189.895996F), new Vector2(-192.891998F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-191.811996F, -189.895996F), new Vector2(-190.863998F, -189.643997F), new Vector2(-190.048004F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-189.231995F, -188.636002F), new Vector2(-188.595993F, -187.945999F), new Vector2(-188.139999F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-187.684006F, -186.194F), new Vector2(-187.455994F, -185.179993F), new Vector2(-187.455994F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-187.455994F, -182.899994F), new Vector2(-187.684006F, -181.897995F), new Vector2(-188.139999F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-188.595993F, -180.145996F), new Vector2(-189.231995F, -179.455994F), new Vector2(-190.048004F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-190.863998F, -178.447998F), new Vector2(-191.811996F, -178.195999F), new Vector2(-192.891998F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-193.947998F, -178.195999F), new Vector2(-194.889999F, -178.442001F), new Vector2(-195.718002F, -178.934006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-189.904007F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-188.871994F, -176.485992F), new Vector2(-188.044006F, -177.235992F), new Vector2(-187.419998F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-186.796005F, -179.156006F), new Vector2(-186.447998F, -180.248001F), new Vector2(-186.376007F, -181.472F));
+ builder.AddLine(new Vector2(-186.376007F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-186.447998F, -187.867996F), new Vector2(-186.802002F, -188.966003F), new Vector2(-187.438004F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-188.074005F, -190.862F), new Vector2(-188.908005F, -191.606003F), new Vector2(-189.940002F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-190.972F, -192.686005F), new Vector2(-192.136002F, -192.955994F), new Vector2(-193.432007F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-194.992004F, -192.955994F), new Vector2(-196.395996F, -192.559998F), new Vector2(-197.643997F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-198.891998F, -190.975998F), new Vector2(-199.882004F, -189.908005F), new Vector2(-200.613998F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-201.345993F, -187.220001F), new Vector2(-201.712006F, -185.707993F), new Vector2(-201.712006F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-201.712006F, -182.348007F), new Vector2(-201.345993F, -180.835999F), new Vector2(-200.613998F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-199.882004F, -178.147995F), new Vector2(-198.891998F, -177.085999F), new Vector2(-197.643997F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-196.395996F, -175.526001F), new Vector2(-194.992004F, -175.136002F), new Vector2(-193.432007F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-192.112F, -175.136002F), new Vector2(-190.936005F, -175.406006F), new Vector2(-189.904007F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1115()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-205.348007F, -175.496002F));
+ builder.AddLine(new Vector2(-205.348007F, -192.595993F));
+ builder.AddLine(new Vector2(-208.623993F, -192.595993F));
+ builder.AddLine(new Vector2(-208.623993F, -188.419998F));
+ builder.AddLine(new Vector2(-208.011993F, -184.279999F));
+ builder.AddLine(new Vector2(-208.623993F, -180.104004F));
+ builder.AddLine(new Vector2(-208.623993F, -175.496002F));
+ builder.AddLine(new Vector2(-205.348007F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-216.651993F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-217.492004F, -179.455994F), new Vector2(-218.145996F, -180.145996F), new Vector2(-218.613998F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-219.082001F, -181.897995F), new Vector2(-219.315994F, -182.912003F), new Vector2(-219.315994F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-219.315994F, -185.192001F), new Vector2(-219.082001F, -186.194F), new Vector2(-218.613998F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-218.145996F, -187.945999F), new Vector2(-217.498001F, -188.636002F), new Vector2(-216.669998F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-215.841995F, -189.643997F), new Vector2(-214.888F, -189.895996F), new Vector2(-213.807999F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-212.727997F, -189.895996F), new Vector2(-211.785995F, -189.649994F), new Vector2(-210.981995F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-210.177994F, -188.666F), new Vector2(-209.548004F, -187.975998F), new Vector2(-209.091995F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(-208.636002F, -186.199997F), new Vector2(-208.408005F, -185.179993F), new Vector2(-208.408005F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-208.408005F, -182.324005F), new Vector2(-208.899994F, -180.925995F), new Vector2(-209.884003F, -179.834F));
+ builder.AddCubicBezier(new Vector2(-210.867996F, -178.742004F), new Vector2(-212.164001F, -178.195999F), new Vector2(-213.772003F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-214.852005F, -178.195999F), new Vector2(-215.811996F, -178.447998F), new Vector2(-216.651993F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-210.820007F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-209.787994F, -176.485992F), new Vector2(-208.966003F, -177.235992F), new Vector2(-208.354004F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-207.742004F, -179.156006F), new Vector2(-207.399994F, -180.248001F), new Vector2(-207.328003F, -181.472F));
+ builder.AddLine(new Vector2(-207.328003F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-207.399994F, -187.867996F), new Vector2(-207.748001F, -188.966003F), new Vector2(-208.371994F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-208.996002F, -190.862F), new Vector2(-209.817993F, -191.606003F), new Vector2(-210.837997F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-211.858002F, -192.686005F), new Vector2(-213.016006F, -192.955994F), new Vector2(-214.311996F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-215.895996F, -192.955994F), new Vector2(-217.317993F, -192.559998F), new Vector2(-218.578003F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-219.837997F, -190.975998F), new Vector2(-220.834F, -189.908005F), new Vector2(-221.565994F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-222.298004F, -187.220001F), new Vector2(-222.664001F, -185.707993F), new Vector2(-222.664001F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-222.664001F, -182.348007F), new Vector2(-222.298004F, -180.835999F), new Vector2(-221.565994F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-220.834F, -178.147995F), new Vector2(-219.837997F, -177.085999F), new Vector2(-218.578003F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-217.317993F, -175.526001F), new Vector2(-215.895996F, -175.136002F), new Vector2(-214.311996F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-213.016006F, -175.136002F), new Vector2(-211.852005F, -175.406006F), new Vector2(-210.820007F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1116()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-229.179993F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-228.003998F, -176.395996F), new Vector2(-226.996002F, -177.128006F), new Vector2(-226.156006F, -178.087997F));
+ builder.AddLine(new Vector2(-228.244003F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-228.820007F, -179.539993F), new Vector2(-229.509995F, -179.035995F), new Vector2(-230.313995F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-231.117996F, -178.363998F), new Vector2(-232F, -178.195999F), new Vector2(-232.960007F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-234.112F, -178.195999F), new Vector2(-235.132004F, -178.442001F), new Vector2(-236.020004F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-236.908005F, -179.425995F), new Vector2(-237.591995F, -180.121994F), new Vector2(-238.072006F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-238.552002F, -181.921997F), new Vector2(-238.792007F, -182.972F), new Vector2(-238.792007F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-238.792007F, -185.348007F), new Vector2(-238.563995F, -186.367996F), new Vector2(-238.108002F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-237.651993F, -188.095993F), new Vector2(-237.003998F, -188.768005F), new Vector2(-236.164001F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-235.324005F, -189.727997F), new Vector2(-234.352005F, -189.968002F), new Vector2(-233.248001F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-232.192001F, -189.968002F), new Vector2(-231.292007F, -189.746002F), new Vector2(-230.548004F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-229.804001F, -188.858002F), new Vector2(-229.227997F, -188.233994F), new Vector2(-228.820007F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-228.412003F, -186.626007F), new Vector2(-228.207993F, -185.647995F), new Vector2(-228.207993F, -184.496002F));
+ builder.AddLine(new Vector2(-227.020004F, -185.539993F));
+ builder.AddLine(new Vector2(-239.727997F, -185.539993F));
+ builder.AddLine(new Vector2(-239.727997F, -182.839996F));
+ builder.AddLine(new Vector2(-225.292007F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-225.220001F, -183.175995F), new Vector2(-225.171997F, -183.481995F), new Vector2(-225.147995F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-225.123993F, -184.033997F), new Vector2(-225.112F, -184.292007F), new Vector2(-225.112F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-225.112F, -186.164001F), new Vector2(-225.453995F, -187.615997F), new Vector2(-226.138F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-226.822006F, -190.160004F), new Vector2(-227.776001F, -191.156006F), new Vector2(-229F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-230.223999F, -192.595993F), new Vector2(-231.615997F, -192.955994F), new Vector2(-233.175995F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-234.832001F, -192.955994F), new Vector2(-236.326004F, -192.565994F), new Vector2(-237.658005F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-238.990005F, -191.005997F), new Vector2(-240.046005F, -189.944F), new Vector2(-240.826004F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-241.606003F, -187.255997F), new Vector2(-241.996002F, -185.744003F), new Vector2(-241.996002F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-241.996002F, -182.360001F), new Vector2(-241.600006F, -180.835999F), new Vector2(-240.807999F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-240.016006F, -178.147995F), new Vector2(-238.942001F, -177.085999F), new Vector2(-237.585999F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-236.229996F, -175.526001F), new Vector2(-234.688004F, -175.136002F), new Vector2(-232.960007F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-231.615997F, -175.136002F), new Vector2(-230.356003F, -175.388F), new Vector2(-229.179993F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1117()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-245.632004F, -175.496002F));
+ builder.AddLine(new Vector2(-245.632004F, -201.199997F));
+ builder.AddLine(new Vector2(-248.871994F, -201.199997F));
+ builder.AddLine(new Vector2(-248.871994F, -175.496002F));
+ builder.AddLine(new Vector2(-245.632004F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1118()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-270.507996F, -168.332001F));
+ builder.AddLine(new Vector2(-267.268005F, -175.352005F));
+ builder.AddLine(new Vector2(-269.104004F, -178.664001F));
+ builder.AddLine(new Vector2(-274.108002F, -168.332001F));
+ builder.AddLine(new Vector2(-270.507996F, -168.332001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-267.268005F, -175.352005F));
+ builder.AddLine(new Vector2(-259.276001F, -192.595993F));
+ builder.AddLine(new Vector2(-262.876007F, -192.595993F));
+ builder.AddLine(new Vector2(-268.671997F, -179.095993F));
+ builder.AddLine(new Vector2(-267.519989F, -179.095993F));
+ builder.AddLine(new Vector2(-273.028015F, -192.595993F));
+ builder.AddLine(new Vector2(-276.627991F, -192.595993F));
+ builder.AddLine(new Vector2(-269.212006F, -175.352005F));
+ builder.AddLine(new Vector2(-267.268005F, -175.352005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1119()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-279.579987F, -175.496002F));
+ builder.AddLine(new Vector2(-279.579987F, -201.199997F));
+ builder.AddLine(new Vector2(-282.820007F, -201.199997F));
+ builder.AddLine(new Vector2(-282.820007F, -175.496002F));
+ builder.AddLine(new Vector2(-279.579987F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1120()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-287.536011F, -175.496002F));
+ builder.AddLine(new Vector2(-287.536011F, -192.595993F));
+ builder.AddLine(new Vector2(-290.812012F, -192.595993F));
+ builder.AddLine(new Vector2(-290.812012F, -188.419998F));
+ builder.AddLine(new Vector2(-290.200012F, -184.279999F));
+ builder.AddLine(new Vector2(-290.812012F, -180.104004F));
+ builder.AddLine(new Vector2(-290.812012F, -175.496002F));
+ builder.AddLine(new Vector2(-287.536011F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-298.839996F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-299.679993F, -179.455994F), new Vector2(-300.334015F, -180.145996F), new Vector2(-300.802002F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-301.269989F, -181.897995F), new Vector2(-301.503998F, -182.912003F), new Vector2(-301.503998F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-301.503998F, -185.192001F), new Vector2(-301.269989F, -186.194F), new Vector2(-300.802002F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-300.334015F, -187.945999F), new Vector2(-299.686005F, -188.636002F), new Vector2(-298.858002F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-298.029999F, -189.643997F), new Vector2(-297.075989F, -189.895996F), new Vector2(-295.996002F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-294.915985F, -189.895996F), new Vector2(-293.973999F, -189.649994F), new Vector2(-293.170013F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-292.365997F, -188.666F), new Vector2(-291.735992F, -187.975998F), new Vector2(-291.279999F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(-290.824005F, -186.199997F), new Vector2(-290.596008F, -185.179993F), new Vector2(-290.596008F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-290.596008F, -182.324005F), new Vector2(-291.088013F, -180.925995F), new Vector2(-292.071991F, -179.834F));
+ builder.AddCubicBezier(new Vector2(-293.056F, -178.742004F), new Vector2(-294.35199F, -178.195999F), new Vector2(-295.959991F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-297.040009F, -178.195999F), new Vector2(-298F, -178.447998F), new Vector2(-298.839996F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-293.007996F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-291.976013F, -176.485992F), new Vector2(-291.153992F, -177.235992F), new Vector2(-290.541992F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-289.929993F, -179.156006F), new Vector2(-289.588013F, -180.248001F), new Vector2(-289.515991F, -181.472F));
+ builder.AddLine(new Vector2(-289.515991F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-289.588013F, -187.867996F), new Vector2(-289.936005F, -188.966003F), new Vector2(-290.559998F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-291.18399F, -190.862F), new Vector2(-292.006012F, -191.606003F), new Vector2(-293.026001F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-294.04599F, -192.686005F), new Vector2(-295.20401F, -192.955994F), new Vector2(-296.5F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-298.084015F, -192.955994F), new Vector2(-299.506012F, -192.559998F), new Vector2(-300.765991F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-302.026001F, -190.975998F), new Vector2(-303.022003F, -189.908005F), new Vector2(-303.753998F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-304.485992F, -187.220001F), new Vector2(-304.85199F, -185.707993F), new Vector2(-304.85199F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-304.85199F, -182.348007F), new Vector2(-304.485992F, -180.835999F), new Vector2(-303.753998F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-303.022003F, -178.147995F), new Vector2(-302.026001F, -177.085999F), new Vector2(-300.765991F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-299.506012F, -175.526001F), new Vector2(-298.084015F, -175.136002F), new Vector2(-296.5F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-295.20401F, -175.136002F), new Vector2(-294.040009F, -175.406006F), new Vector2(-293.007996F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1121()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-308.70401F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(-308.320007F, -197.005997F), new Vector2(-308.127991F, -197.503998F), new Vector2(-308.127991F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(-308.127991F, -198.679993F), new Vector2(-308.320007F, -199.166F), new Vector2(-308.70401F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(-309.088013F, -199.957993F), new Vector2(-309.579987F, -200.156006F), new Vector2(-310.179993F, -200.156006F));
+ builder.AddCubicBezier(new Vector2(-310.779999F, -200.156006F), new Vector2(-311.272003F, -199.957993F), new Vector2(-311.656006F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(-312.040009F, -199.166F), new Vector2(-312.231995F, -198.679993F), new Vector2(-312.231995F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(-312.231995F, -197.503998F), new Vector2(-312.040009F, -197.005997F), new Vector2(-311.656006F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(-311.272003F, -196.214005F), new Vector2(-310.779999F, -196.016006F), new Vector2(-310.179993F, -196.016006F));
+ builder.AddCubicBezier(new Vector2(-309.579987F, -196.016006F), new Vector2(-309.088013F, -196.214005F), new Vector2(-308.70401F, -196.610001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-308.559998F, -175.496002F));
+ builder.AddLine(new Vector2(-308.559998F, -192.595993F));
+ builder.AddLine(new Vector2(-311.835999F, -192.595993F));
+ builder.AddLine(new Vector2(-311.835999F, -175.496002F));
+ builder.AddLine(new Vector2(-308.559998F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1122()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-315.003998F, -189.643997F));
+ builder.AddLine(new Vector2(-315.003998F, -192.595993F));
+ builder.AddLine(new Vector2(-326.667999F, -192.595993F));
+ builder.AddLine(new Vector2(-326.667999F, -189.643997F));
+ builder.AddLine(new Vector2(-315.003998F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-319.216003F, -175.496002F));
+ builder.AddLine(new Vector2(-319.216003F, -199.759995F));
+ builder.AddLine(new Vector2(-322.455994F, -199.759995F));
+ builder.AddLine(new Vector2(-322.455994F, -175.496002F));
+ builder.AddLine(new Vector2(-319.216003F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1123()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-341.355988F, -175.496002F));
+ builder.AddLine(new Vector2(-341.355988F, -192.595993F));
+ builder.AddLine(new Vector2(-344.596008F, -192.595993F));
+ builder.AddLine(new Vector2(-344.596008F, -175.496002F));
+ builder.AddLine(new Vector2(-341.355988F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-329.26001F, -175.496002F));
+ builder.AddLine(new Vector2(-329.26001F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-329.26001F, -187.292007F), new Vector2(-329.548004F, -188.401993F), new Vector2(-330.123993F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(-330.700012F, -190.490005F), new Vector2(-331.485992F, -191.335999F), new Vector2(-332.481995F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(-333.477997F, -192.632004F), new Vector2(-334.623993F, -192.955994F), new Vector2(-335.920013F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-337.216003F, -192.955994F), new Vector2(-338.380005F, -192.662003F), new Vector2(-339.411987F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-340.444F, -191.485992F), new Vector2(-341.247986F, -190.688004F), new Vector2(-341.824005F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-342.399994F, -188.671997F), new Vector2(-342.687988F, -187.520004F), new Vector2(-342.687988F, -186.223999F));
+ builder.AddLine(new Vector2(-341.355988F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-341.355988F, -186.332001F), new Vector2(-341.164001F, -187.100006F), new Vector2(-340.779999F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-340.395996F, -188.444F), new Vector2(-339.868011F, -188.972F), new Vector2(-339.196014F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-338.523987F, -189.740005F), new Vector2(-337.756012F, -189.932007F), new Vector2(-336.891998F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-335.596008F, -189.932007F), new Vector2(-334.54599F, -189.511993F), new Vector2(-333.742004F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-332.937988F, -187.832001F), new Vector2(-332.536011F, -186.764008F), new Vector2(-332.536011F, -185.468002F));
+ builder.AddLine(new Vector2(-332.536011F, -175.496002F));
+ builder.AddLine(new Vector2(-329.26001F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1124()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-352.191986F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-351.015991F, -176.395996F), new Vector2(-350.007996F, -177.128006F), new Vector2(-349.167999F, -178.087997F));
+ builder.AddLine(new Vector2(-351.256012F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-351.832001F, -179.539993F), new Vector2(-352.522003F, -179.035995F), new Vector2(-353.325989F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-354.130005F, -178.363998F), new Vector2(-355.011993F, -178.195999F), new Vector2(-355.971985F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-357.123993F, -178.195999F), new Vector2(-358.144012F, -178.442001F), new Vector2(-359.032013F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-359.920013F, -179.425995F), new Vector2(-360.604004F, -180.121994F), new Vector2(-361.084015F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-361.563995F, -181.921997F), new Vector2(-361.803986F, -182.972F), new Vector2(-361.803986F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-361.803986F, -185.348007F), new Vector2(-361.575989F, -186.367996F), new Vector2(-361.119995F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-360.664001F, -188.095993F), new Vector2(-360.015991F, -188.768005F), new Vector2(-359.175995F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-358.335999F, -189.727997F), new Vector2(-357.364014F, -189.968002F), new Vector2(-356.26001F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-355.20401F, -189.968002F), new Vector2(-354.303986F, -189.746002F), new Vector2(-353.559998F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-352.81601F, -188.858002F), new Vector2(-352.23999F, -188.233994F), new Vector2(-351.832001F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-351.424011F, -186.626007F), new Vector2(-351.220001F, -185.647995F), new Vector2(-351.220001F, -184.496002F));
+ builder.AddLine(new Vector2(-350.032013F, -185.539993F));
+ builder.AddLine(new Vector2(-362.73999F, -185.539993F));
+ builder.AddLine(new Vector2(-362.73999F, -182.839996F));
+ builder.AddLine(new Vector2(-348.303986F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-348.231995F, -183.175995F), new Vector2(-348.18399F, -183.481995F), new Vector2(-348.160004F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-348.135986F, -184.033997F), new Vector2(-348.123993F, -184.292007F), new Vector2(-348.123993F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-348.123993F, -186.164001F), new Vector2(-348.466003F, -187.615997F), new Vector2(-349.149994F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-349.834015F, -190.160004F), new Vector2(-350.787994F, -191.156006F), new Vector2(-352.011993F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-353.235992F, -192.595993F), new Vector2(-354.627991F, -192.955994F), new Vector2(-356.187988F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-357.843994F, -192.955994F), new Vector2(-359.338013F, -192.565994F), new Vector2(-360.670013F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-362.002014F, -191.005997F), new Vector2(-363.058014F, -189.944F), new Vector2(-363.838013F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-364.618011F, -187.255997F), new Vector2(-365.007996F, -185.744003F), new Vector2(-365.007996F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-365.007996F, -182.360001F), new Vector2(-364.612F, -180.835999F), new Vector2(-363.820007F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-363.028015F, -178.147995F), new Vector2(-361.95401F, -177.085999F), new Vector2(-360.597992F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-359.242004F, -175.526001F), new Vector2(-357.700012F, -175.136002F), new Vector2(-355.971985F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-354.627991F, -175.136002F), new Vector2(-353.368011F, -175.388F), new Vector2(-352.191986F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1125()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-366.519989F, -189.643997F));
+ builder.AddLine(new Vector2(-366.519989F, -192.595993F));
+ builder.AddLine(new Vector2(-378.18399F, -192.595993F));
+ builder.AddLine(new Vector2(-378.18399F, -189.643997F));
+ builder.AddLine(new Vector2(-366.519989F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-370.731995F, -175.496002F));
+ builder.AddLine(new Vector2(-370.731995F, -199.759995F));
+ builder.AddLine(new Vector2(-373.971985F, -199.759995F));
+ builder.AddLine(new Vector2(-373.971985F, -175.496002F));
+ builder.AddLine(new Vector2(-370.731995F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1126()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-391.467987F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-392.308014F, -179.528F), new Vector2(-392.967987F, -180.218002F), new Vector2(-393.447998F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-393.928009F, -181.970001F), new Vector2(-394.167999F, -182.972F), new Vector2(-394.167999F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-394.167999F, -185.203995F), new Vector2(-393.928009F, -186.188004F), new Vector2(-393.447998F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-392.967987F, -187.916F), new Vector2(-392.308014F, -188.593994F), new Vector2(-391.467987F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-390.627991F, -189.578003F), new Vector2(-389.679993F, -189.824005F), new Vector2(-388.623993F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-387.519989F, -189.824005F), new Vector2(-386.553986F, -189.578003F), new Vector2(-385.726013F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-384.89801F, -188.593994F), new Vector2(-384.238007F, -187.916F), new Vector2(-383.746002F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-383.253998F, -186.188004F), new Vector2(-383.007996F, -185.203995F), new Vector2(-383.007996F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-383.007996F, -182.972F), new Vector2(-383.247986F, -181.970001F), new Vector2(-383.727997F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-384.208008F, -180.218002F), new Vector2(-384.868011F, -179.528F), new Vector2(-385.708008F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-386.548004F, -178.520004F), new Vector2(-387.519989F, -178.268005F), new Vector2(-388.623993F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-389.679993F, -178.268005F), new Vector2(-390.627991F, -178.520004F), new Vector2(-391.467987F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-384.070007F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-382.713989F, -177.115997F), new Vector2(-381.640015F, -178.190002F), new Vector2(-380.847992F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-380.056F, -180.901993F), new Vector2(-379.660004F, -182.419998F), new Vector2(-379.660004F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-379.660004F, -185.755997F), new Vector2(-380.056F, -187.255997F), new Vector2(-380.847992F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-381.640015F, -189.944F), new Vector2(-382.713989F, -191.005997F), new Vector2(-384.070007F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-385.425995F, -192.565994F), new Vector2(-386.944F, -192.955994F), new Vector2(-388.623993F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-390.279999F, -192.955994F), new Vector2(-391.779999F, -192.559998F), new Vector2(-393.123993F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-394.467987F, -190.975998F), new Vector2(-395.536011F, -189.914001F), new Vector2(-396.328003F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(-397.119995F, -187.25F), new Vector2(-397.515991F, -185.755997F), new Vector2(-397.515991F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-397.515991F, -182.419998F), new Vector2(-397.119995F, -180.901993F), new Vector2(-396.328003F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-395.536011F, -178.190002F), new Vector2(-394.467987F, -177.115997F), new Vector2(-393.123993F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-391.779999F, -175.531998F), new Vector2(-390.279999F, -175.136002F), new Vector2(-388.623993F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-386.944F, -175.136002F), new Vector2(-385.425995F, -175.531998F), new Vector2(-384.070007F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1127()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-411.717987F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-412.54599F, -179.455994F), new Vector2(-413.182007F, -180.145996F), new Vector2(-413.626007F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-414.070007F, -181.897995F), new Vector2(-414.291992F, -182.899994F), new Vector2(-414.291992F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-414.291992F, -185.179993F), new Vector2(-414.063995F, -186.194F), new Vector2(-413.608002F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-413.152008F, -187.945999F), new Vector2(-412.515991F, -188.636002F), new Vector2(-411.700012F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-410.884003F, -189.643997F), new Vector2(-409.947998F, -189.895996F), new Vector2(-408.891998F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-407.812012F, -189.895996F), new Vector2(-406.864014F, -189.643997F), new Vector2(-406.048004F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-405.231995F, -188.636002F), new Vector2(-404.589996F, -187.945999F), new Vector2(-404.122009F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-403.653992F, -186.194F), new Vector2(-403.420013F, -185.192001F), new Vector2(-403.420013F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-403.420013F, -182.912003F), new Vector2(-403.653992F, -181.897995F), new Vector2(-404.122009F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-404.589996F, -180.145996F), new Vector2(-405.231995F, -179.455994F), new Vector2(-406.048004F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-406.864014F, -178.447998F), new Vector2(-407.812012F, -178.195999F), new Vector2(-408.891998F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-409.947998F, -178.195999F), new Vector2(-410.890015F, -178.447998F), new Vector2(-411.717987F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-414.112F, -168.332001F));
+ builder.AddLine(new Vector2(-414.112F, -179.779999F));
+ builder.AddLine(new Vector2(-414.723999F, -183.955994F));
+ builder.AddLine(new Vector2(-414.112F, -188.095993F));
+ builder.AddLine(new Vector2(-414.112F, -192.595993F));
+ builder.AddLine(new Vector2(-417.35199F, -192.595993F));
+ builder.AddLine(new Vector2(-417.35199F, -168.332001F));
+ builder.AddLine(new Vector2(-414.112F, -168.332001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-404.122009F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-402.862F, -177.085999F), new Vector2(-401.872009F, -178.147995F), new Vector2(-401.152008F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-400.432007F, -180.835999F), new Vector2(-400.071991F, -182.348007F), new Vector2(-400.071991F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-400.071991F, -185.707993F), new Vector2(-400.432007F, -187.220001F), new Vector2(-401.152008F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-401.872009F, -189.908005F), new Vector2(-402.862F, -190.975998F), new Vector2(-404.122009F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-405.381989F, -192.559998F), new Vector2(-406.791992F, -192.955994F), new Vector2(-408.35199F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-409.623993F, -192.955994F), new Vector2(-410.782013F, -192.686005F), new Vector2(-411.825989F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-412.869995F, -191.606003F), new Vector2(-413.709991F, -190.862F), new Vector2(-414.346008F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-414.981995F, -188.966003F), new Vector2(-415.335999F, -187.867996F), new Vector2(-415.40799F, -186.619995F));
+ builder.AddLine(new Vector2(-415.40799F, -181.472F));
+ builder.AddCubicBezier(new Vector2(-415.335999F, -180.248001F), new Vector2(-414.988007F, -179.156006F), new Vector2(-414.364014F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-413.73999F, -177.235992F), new Vector2(-412.906006F, -176.485992F), new Vector2(-411.862F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-410.817993F, -175.406006F), new Vector2(-409.64801F, -175.136002F), new Vector2(-408.35199F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-406.791992F, -175.136002F), new Vector2(-405.381989F, -175.526001F), new Vector2(-404.122009F, -176.306F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1128()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-427.971985F, -189.643997F));
+ builder.AddLine(new Vector2(-427.971985F, -192.595993F));
+ builder.AddLine(new Vector2(-439.635986F, -192.595993F));
+ builder.AddLine(new Vector2(-439.635986F, -189.643997F));
+ builder.AddLine(new Vector2(-427.971985F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-432.18399F, -175.496002F));
+ builder.AddLine(new Vector2(-432.18399F, -199.759995F));
+ builder.AddLine(new Vector2(-435.424011F, -199.759995F));
+ builder.AddLine(new Vector2(-435.424011F, -175.496002F));
+ builder.AddLine(new Vector2(-432.18399F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1129()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-454.324005F, -175.496002F));
+ builder.AddLine(new Vector2(-454.324005F, -201.199997F));
+ builder.AddLine(new Vector2(-457.563995F, -201.199997F));
+ builder.AddLine(new Vector2(-457.563995F, -175.496002F));
+ builder.AddLine(new Vector2(-454.324005F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-442.227997F, -175.496002F));
+ builder.AddLine(new Vector2(-442.227997F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-442.227997F, -187.460007F), new Vector2(-442.515991F, -188.647995F), new Vector2(-443.09201F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-443.667999F, -190.712006F), new Vector2(-444.45401F, -191.516006F), new Vector2(-445.450012F, -192.091995F));
+ builder.AddCubicBezier(new Vector2(-446.446014F, -192.667999F), new Vector2(-447.59201F, -192.955994F), new Vector2(-448.888F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-450.18399F, -192.955994F), new Vector2(-451.347992F, -192.662003F), new Vector2(-452.380005F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-453.411987F, -191.485992F), new Vector2(-454.216003F, -190.688004F), new Vector2(-454.791992F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-455.368011F, -188.671997F), new Vector2(-455.656006F, -187.520004F), new Vector2(-455.656006F, -186.223999F));
+ builder.AddLine(new Vector2(-454.324005F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-454.324005F, -186.332001F), new Vector2(-454.131989F, -187.100006F), new Vector2(-453.747986F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-453.364014F, -188.444F), new Vector2(-452.835999F, -188.972F), new Vector2(-452.164001F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-451.492004F, -189.740005F), new Vector2(-450.723999F, -189.932007F), new Vector2(-449.859985F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-448.563995F, -189.932007F), new Vector2(-447.514008F, -189.511993F), new Vector2(-446.709991F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-445.906006F, -187.832001F), new Vector2(-445.503998F, -186.764008F), new Vector2(-445.503998F, -185.468002F));
+ builder.AddLine(new Vector2(-445.503998F, -175.496002F));
+ builder.AddLine(new Vector2(-442.227997F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1130()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-473.493988F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-474.321991F, -180.014008F), new Vector2(-474.970001F, -180.667999F), new Vector2(-475.437988F, -181.507996F));
+ builder.AddCubicBezier(new Vector2(-475.906006F, -182.348007F), new Vector2(-476.140015F, -183.307999F), new Vector2(-476.140015F, -184.388F));
+ builder.AddCubicBezier(new Vector2(-476.140015F, -185.468002F), new Vector2(-475.906006F, -186.421997F), new Vector2(-475.437988F, -187.25F));
+ builder.AddCubicBezier(new Vector2(-474.970001F, -188.078003F), new Vector2(-474.328003F, -188.725998F), new Vector2(-473.511993F, -189.194F));
+ builder.AddCubicBezier(new Vector2(-472.696014F, -189.662003F), new Vector2(-471.747986F, -189.895996F), new Vector2(-470.667999F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-469.612F, -189.895996F), new Vector2(-468.682007F, -189.662003F), new Vector2(-467.877991F, -189.194F));
+ builder.AddCubicBezier(new Vector2(-467.074005F, -188.725998F), new Vector2(-466.450012F, -188.078003F), new Vector2(-466.006012F, -187.25F));
+ builder.AddCubicBezier(new Vector2(-465.562012F, -186.421997F), new Vector2(-465.339996F, -185.455994F), new Vector2(-465.339996F, -184.352005F));
+ builder.AddCubicBezier(new Vector2(-465.339996F, -183.248001F), new Vector2(-465.562012F, -182.281998F), new Vector2(-466.006012F, -181.453995F));
+ builder.AddCubicBezier(new Vector2(-466.450012F, -180.626007F), new Vector2(-467.067993F, -179.983994F), new Vector2(-467.859985F, -179.528F));
+ builder.AddCubicBezier(new Vector2(-468.652008F, -179.072006F), new Vector2(-469.588013F, -178.843994F), new Vector2(-470.667999F, -178.843994F));
+ builder.AddCubicBezier(new Vector2(-471.723999F, -178.843994F), new Vector2(-472.665985F, -179.078003F), new Vector2(-473.493988F, -179.546005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-467.752014F, -176.576004F));
+ builder.AddCubicBezier(new Vector2(-466.720001F, -177.104004F), new Vector2(-465.89801F, -177.841995F), new Vector2(-465.286011F, -178.789993F));
+ builder.AddCubicBezier(new Vector2(-464.674011F, -179.738007F), new Vector2(-464.332001F, -180.835999F), new Vector2(-464.26001F, -182.084F));
+ builder.AddLine(new Vector2(-464.26001F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-464.332001F, -187.891998F), new Vector2(-464.667999F, -189.001999F), new Vector2(-465.268005F, -189.949997F));
+ builder.AddCubicBezier(new Vector2(-465.868011F, -190.897995F), new Vector2(-466.690002F, -191.636002F), new Vector2(-467.734009F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(-468.778015F, -192.692001F), new Vector2(-469.971985F, -192.955994F), new Vector2(-471.31601F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-472.85199F, -192.955994F), new Vector2(-474.243988F, -192.578003F), new Vector2(-475.492004F, -191.822006F));
+ builder.AddCubicBezier(new Vector2(-476.73999F, -191.065994F), new Vector2(-477.717987F, -190.046005F), new Vector2(-478.425995F, -188.761993F));
+ builder.AddCubicBezier(new Vector2(-479.134003F, -187.477997F), new Vector2(-479.488007F, -186.020004F), new Vector2(-479.488007F, -184.388F));
+ builder.AddCubicBezier(new Vector2(-479.488007F, -182.755997F), new Vector2(-479.127991F, -181.285995F), new Vector2(-478.40799F, -179.977997F));
+ builder.AddCubicBezier(new Vector2(-477.687988F, -178.669998F), new Vector2(-476.709991F, -177.643997F), new Vector2(-475.473999F, -176.899994F));
+ builder.AddCubicBezier(new Vector2(-474.238007F, -176.156006F), new Vector2(-472.839996F, -175.783997F), new Vector2(-471.279999F, -175.783997F));
+ builder.AddCubicBezier(new Vector2(-469.959991F, -175.783997F), new Vector2(-468.783997F, -176.048004F), new Vector2(-467.752014F, -176.576004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-466.582001F, -168.998001F));
+ builder.AddCubicBezier(new Vector2(-465.226013F, -169.682007F), new Vector2(-464.170013F, -170.641998F), new Vector2(-463.414001F, -171.878006F));
+ builder.AddCubicBezier(new Vector2(-462.65799F, -173.113998F), new Vector2(-462.279999F, -174.548004F), new Vector2(-462.279999F, -176.179993F));
+ builder.AddLine(new Vector2(-462.279999F, -192.595993F));
+ builder.AddLine(new Vector2(-465.519989F, -192.595993F));
+ builder.AddLine(new Vector2(-465.519989F, -188.095993F));
+ builder.AddLine(new Vector2(-464.944F, -184.279999F));
+ builder.AddLine(new Vector2(-465.519989F, -180.427994F));
+ builder.AddLine(new Vector2(-465.519989F, -176.179993F));
+ builder.AddCubicBezier(new Vector2(-465.519989F, -174.619995F), new Vector2(-466.036011F, -173.378006F), new Vector2(-467.067993F, -172.453995F));
+ builder.AddCubicBezier(new Vector2(-468.100006F, -171.529999F), new Vector2(-469.480011F, -171.067993F), new Vector2(-471.208008F, -171.067993F));
+ builder.AddCubicBezier(new Vector2(-472.528015F, -171.067993F), new Vector2(-473.667999F, -171.302002F), new Vector2(-474.627991F, -171.770004F));
+ builder.AddCubicBezier(new Vector2(-475.588013F, -172.238007F), new Vector2(-476.415985F, -172.916F), new Vector2(-477.112F, -173.804001F));
+ builder.AddLine(new Vector2(-479.235992F, -171.679993F));
+ builder.AddCubicBezier(new Vector2(-478.395996F, -170.503998F), new Vector2(-477.303986F, -169.591995F), new Vector2(-475.959991F, -168.944F));
+ builder.AddCubicBezier(new Vector2(-474.615997F, -168.296005F), new Vector2(-473.056F, -167.972F), new Vector2(-471.279999F, -167.972F));
+ builder.AddCubicBezier(new Vector2(-469.503998F, -167.972F), new Vector2(-467.937988F, -168.313995F), new Vector2(-466.582001F, -168.998001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1131()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-483.303986F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(-482.920013F, -197.005997F), new Vector2(-482.727997F, -197.503998F), new Vector2(-482.727997F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(-482.727997F, -198.679993F), new Vector2(-482.920013F, -199.166F), new Vector2(-483.303986F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(-483.687988F, -199.957993F), new Vector2(-484.179993F, -200.156006F), new Vector2(-484.779999F, -200.156006F));
+ builder.AddCubicBezier(new Vector2(-485.380005F, -200.156006F), new Vector2(-485.872009F, -199.957993F), new Vector2(-486.256012F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(-486.640015F, -199.166F), new Vector2(-486.832001F, -198.679993F), new Vector2(-486.832001F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(-486.832001F, -197.503998F), new Vector2(-486.640015F, -197.005997F), new Vector2(-486.256012F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(-485.872009F, -196.214005F), new Vector2(-485.380005F, -196.016006F), new Vector2(-484.779999F, -196.016006F));
+ builder.AddCubicBezier(new Vector2(-484.179993F, -196.016006F), new Vector2(-483.687988F, -196.214005F), new Vector2(-483.303986F, -196.610001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-483.160004F, -175.496002F));
+ builder.AddLine(new Vector2(-483.160004F, -192.595993F));
+ builder.AddLine(new Vector2(-486.436005F, -192.595993F));
+ builder.AddLine(new Vector2(-486.436005F, -175.496002F));
+ builder.AddLine(new Vector2(-483.160004F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1132()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-490.828003F, -175.496002F));
+ builder.AddLine(new Vector2(-490.828003F, -186.475998F));
+ builder.AddCubicBezier(new Vector2(-490.828003F, -187.820007F), new Vector2(-491.122009F, -188.972F), new Vector2(-491.709991F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-492.298004F, -190.891998F), new Vector2(-493.084015F, -191.636002F), new Vector2(-494.067993F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(-495.052002F, -192.692001F), new Vector2(-496.167999F, -192.955994F), new Vector2(-497.415985F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-498.615997F, -192.955994F), new Vector2(-499.720001F, -192.686005F), new Vector2(-500.727997F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-501.735992F, -191.606003F), new Vector2(-502.558014F, -190.862F), new Vector2(-503.194F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-503.829987F, -188.966003F), new Vector2(-504.18399F, -187.832001F), new Vector2(-504.256012F, -186.511993F));
+ builder.AddLine(new Vector2(-502.420013F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(-502.420013F, -186.692001F), new Vector2(-502.227997F, -187.423996F), new Vector2(-501.843994F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(-501.459991F, -188.623993F), new Vector2(-500.950012F, -189.091995F), new Vector2(-500.313995F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(-499.678009F, -189.764008F), new Vector2(-498.963989F, -189.932007F), new Vector2(-498.171997F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-497.019989F, -189.932007F), new Vector2(-496.053986F, -189.565994F), new Vector2(-495.273987F, -188.834F));
+ builder.AddCubicBezier(new Vector2(-494.493988F, -188.102005F), new Vector2(-494.104004F, -187.100006F), new Vector2(-494.104004F, -185.828003F));
+ builder.AddLine(new Vector2(-494.104004F, -175.496002F));
+ builder.AddLine(new Vector2(-490.828003F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-502.420013F, -175.496002F));
+ builder.AddLine(new Vector2(-502.420013F, -186.511993F));
+ builder.AddCubicBezier(new Vector2(-502.420013F, -187.832001F), new Vector2(-502.701996F, -188.972F), new Vector2(-503.265991F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-503.829987F, -190.891998F), new Vector2(-504.597992F, -191.636002F), new Vector2(-505.570007F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(-506.541992F, -192.692001F), new Vector2(-507.627991F, -192.955994F), new Vector2(-508.828003F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-510.052002F, -192.955994F), new Vector2(-511.156006F, -192.686005F), new Vector2(-512.140015F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-513.124023F, -191.606003F), new Vector2(-513.89801F, -190.856003F), new Vector2(-514.461975F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-515.026001F, -188.936005F), new Vector2(-515.307983F, -187.807999F), new Vector2(-515.307983F, -186.511993F));
+ builder.AddLine(new Vector2(-513.976013F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(-513.976013F, -186.692001F), new Vector2(-513.783997F, -187.423996F), new Vector2(-513.400024F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(-513.015991F, -188.623993F), new Vector2(-512.512024F, -189.091995F), new Vector2(-511.888F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(-511.264008F, -189.764008F), new Vector2(-510.556F, -189.932007F), new Vector2(-509.764008F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-508.588013F, -189.932007F), new Vector2(-507.609985F, -189.565994F), new Vector2(-506.829987F, -188.834F));
+ builder.AddCubicBezier(new Vector2(-506.049988F, -188.102005F), new Vector2(-505.660004F, -187.100006F), new Vector2(-505.660004F, -185.828003F));
+ builder.AddLine(new Vector2(-505.660004F, -175.496002F));
+ builder.AddLine(new Vector2(-502.420013F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-513.976013F, -175.496002F));
+ builder.AddLine(new Vector2(-513.976013F, -192.595993F));
+ builder.AddLine(new Vector2(-517.216003F, -192.595993F));
+ builder.AddLine(new Vector2(-517.216003F, -175.496002F));
+ builder.AddLine(new Vector2(-513.976013F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1133()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-529.383972F, -201.199997F));
+ builder.AddLine(new Vector2(-532.659973F, -201.199997F));
+ builder.AddLine(new Vector2(-532.659973F, -188.419998F));
+ builder.AddLine(new Vector2(-532.047974F, -184.279999F));
+ builder.AddLine(new Vector2(-532.659973F, -180.104004F));
+ builder.AddLine(new Vector2(-532.659973F, -175.496002F));
+ builder.AddLine(new Vector2(-529.383972F, -175.496002F));
+ builder.AddLine(new Vector2(-529.383972F, -201.199997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-540.705994F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-541.533997F, -179.425995F), new Vector2(-542.182007F, -180.115997F), new Vector2(-542.650024F, -181.003998F));
+ builder.AddCubicBezier(new Vector2(-543.117981F, -181.891998F), new Vector2(-543.35199F, -182.912003F), new Vector2(-543.35199F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-543.35199F, -185.216003F), new Vector2(-543.117981F, -186.229996F), new Vector2(-542.650024F, -187.106003F));
+ builder.AddCubicBezier(new Vector2(-542.182007F, -187.981995F), new Vector2(-541.539978F, -188.666F), new Vector2(-540.723999F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-539.90802F, -189.649994F), new Vector2(-538.960022F, -189.895996F), new Vector2(-537.880005F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-536.799988F, -189.895996F), new Vector2(-535.85199F, -189.643997F), new Vector2(-535.036011F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-534.219971F, -188.636002F), new Vector2(-533.583984F, -187.945999F), new Vector2(-533.127991F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-532.671997F, -186.194F), new Vector2(-532.44397F, -185.179993F), new Vector2(-532.44397F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-532.44397F, -182.899994F), new Vector2(-532.671997F, -181.897995F), new Vector2(-533.127991F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-533.583984F, -180.145996F), new Vector2(-534.219971F, -179.455994F), new Vector2(-535.036011F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-535.85199F, -178.447998F), new Vector2(-536.799988F, -178.195999F), new Vector2(-537.880005F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-538.935974F, -178.195999F), new Vector2(-539.877991F, -178.442001F), new Vector2(-540.705994F, -178.934006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-534.892029F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-533.859985F, -176.485992F), new Vector2(-533.031982F, -177.235992F), new Vector2(-532.40802F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-531.783997F, -179.156006F), new Vector2(-531.435974F, -180.248001F), new Vector2(-531.364014F, -181.472F));
+ builder.AddLine(new Vector2(-531.364014F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-531.435974F, -187.867996F), new Vector2(-531.789978F, -188.966003F), new Vector2(-532.426025F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-533.062012F, -190.862F), new Vector2(-533.895996F, -191.606003F), new Vector2(-534.927979F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-535.960022F, -192.686005F), new Vector2(-537.124023F, -192.955994F), new Vector2(-538.419983F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-539.97998F, -192.955994F), new Vector2(-541.383972F, -192.559998F), new Vector2(-542.632019F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-543.880005F, -190.975998F), new Vector2(-544.869995F, -189.908005F), new Vector2(-545.60199F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-546.333984F, -187.220001F), new Vector2(-546.700012F, -185.707993F), new Vector2(-546.700012F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-546.700012F, -182.348007F), new Vector2(-546.333984F, -180.835999F), new Vector2(-545.60199F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-544.869995F, -178.147995F), new Vector2(-543.880005F, -177.085999F), new Vector2(-542.632019F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-541.383972F, -175.526001F), new Vector2(-539.97998F, -175.136002F), new Vector2(-538.419983F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-537.099976F, -175.136002F), new Vector2(-535.924011F, -175.406006F), new Vector2(-534.892029F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1134()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-562.107971F, -175.496002F));
+ builder.AddLine(new Vector2(-562.107971F, -192.595993F));
+ builder.AddLine(new Vector2(-565.348022F, -192.595993F));
+ builder.AddLine(new Vector2(-565.348022F, -175.496002F));
+ builder.AddLine(new Vector2(-562.107971F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-550.012024F, -175.496002F));
+ builder.AddLine(new Vector2(-550.012024F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-550.012024F, -187.292007F), new Vector2(-550.299988F, -188.401993F), new Vector2(-550.875977F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(-551.452026F, -190.490005F), new Vector2(-552.237976F, -191.335999F), new Vector2(-553.234009F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(-554.22998F, -192.632004F), new Vector2(-555.375977F, -192.955994F), new Vector2(-556.671997F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-557.968018F, -192.955994F), new Vector2(-559.132019F, -192.662003F), new Vector2(-560.164001F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-561.195984F, -191.485992F), new Vector2(-562F, -190.688004F), new Vector2(-562.575989F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-563.151978F, -188.671997F), new Vector2(-563.440002F, -187.520004F), new Vector2(-563.440002F, -186.223999F));
+ builder.AddLine(new Vector2(-562.107971F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-562.107971F, -186.332001F), new Vector2(-561.916016F, -187.100006F), new Vector2(-561.531982F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-561.14801F, -188.444F), new Vector2(-560.619995F, -188.972F), new Vector2(-559.947998F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-559.276001F, -189.740005F), new Vector2(-558.507996F, -189.932007F), new Vector2(-557.643982F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-556.348022F, -189.932007F), new Vector2(-555.297974F, -189.511993F), new Vector2(-554.494019F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-553.690002F, -187.832001F), new Vector2(-553.288025F, -186.764008F), new Vector2(-553.288025F, -185.468002F));
+ builder.AddLine(new Vector2(-553.288025F, -175.496002F));
+ builder.AddLine(new Vector2(-550.012024F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1135()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-570.064026F, -175.496002F));
+ builder.AddLine(new Vector2(-570.064026F, -192.595993F));
+ builder.AddLine(new Vector2(-573.340027F, -192.595993F));
+ builder.AddLine(new Vector2(-573.340027F, -188.419998F));
+ builder.AddLine(new Vector2(-572.728027F, -184.279999F));
+ builder.AddLine(new Vector2(-573.340027F, -180.104004F));
+ builder.AddLine(new Vector2(-573.340027F, -175.496002F));
+ builder.AddLine(new Vector2(-570.064026F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-581.367981F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-582.208008F, -179.455994F), new Vector2(-582.862F, -180.145996F), new Vector2(-583.330017F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-583.797974F, -181.897995F), new Vector2(-584.031982F, -182.912003F), new Vector2(-584.031982F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-584.031982F, -185.192001F), new Vector2(-583.797974F, -186.194F), new Vector2(-583.330017F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-582.862F, -187.945999F), new Vector2(-582.213989F, -188.636002F), new Vector2(-581.385986F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-580.557983F, -189.643997F), new Vector2(-579.604004F, -189.895996F), new Vector2(-578.523987F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-577.44397F, -189.895996F), new Vector2(-576.502014F, -189.649994F), new Vector2(-575.697998F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-574.893982F, -188.666F), new Vector2(-574.263977F, -187.975998F), new Vector2(-573.807983F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(-573.35199F, -186.199997F), new Vector2(-573.124023F, -185.179993F), new Vector2(-573.124023F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-573.124023F, -182.324005F), new Vector2(-573.616028F, -180.925995F), new Vector2(-574.599976F, -179.834F));
+ builder.AddCubicBezier(new Vector2(-575.583984F, -178.742004F), new Vector2(-576.880005F, -178.195999F), new Vector2(-578.487976F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-579.567993F, -178.195999F), new Vector2(-580.528015F, -178.447998F), new Vector2(-581.367981F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-575.536011F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-574.504028F, -176.485992F), new Vector2(-573.682007F, -177.235992F), new Vector2(-573.070007F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-572.458008F, -179.156006F), new Vector2(-572.116028F, -180.248001F), new Vector2(-572.044006F, -181.472F));
+ builder.AddLine(new Vector2(-572.044006F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-572.116028F, -187.867996F), new Vector2(-572.463989F, -188.966003F), new Vector2(-573.088013F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-573.711975F, -190.862F), new Vector2(-574.533997F, -191.606003F), new Vector2(-575.554016F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-576.573975F, -192.686005F), new Vector2(-577.731995F, -192.955994F), new Vector2(-579.028015F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-580.612F, -192.955994F), new Vector2(-582.033997F, -192.559998F), new Vector2(-583.294006F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-584.554016F, -190.975998F), new Vector2(-585.549988F, -189.908005F), new Vector2(-586.281982F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-587.013977F, -187.220001F), new Vector2(-587.380005F, -185.707993F), new Vector2(-587.380005F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-587.380005F, -182.348007F), new Vector2(-587.013977F, -180.835999F), new Vector2(-586.281982F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-585.549988F, -178.147995F), new Vector2(-584.554016F, -177.085999F), new Vector2(-583.294006F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-582.033997F, -175.526001F), new Vector2(-580.612F, -175.136002F), new Vector2(-579.028015F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-577.731995F, -175.136002F), new Vector2(-576.567993F, -175.406006F), new Vector2(-575.536011F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1136()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-610.23999F, -175.496002F));
+ builder.AddLine(new Vector2(-610.23999F, -192.595993F));
+ builder.AddLine(new Vector2(-613.47998F, -192.595993F));
+ builder.AddLine(new Vector2(-613.47998F, -175.496002F));
+ builder.AddLine(new Vector2(-610.23999F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-598.143982F, -175.496002F));
+ builder.AddLine(new Vector2(-598.143982F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-598.143982F, -187.292007F), new Vector2(-598.432007F, -188.401993F), new Vector2(-599.007996F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(-599.583984F, -190.490005F), new Vector2(-600.369995F, -191.335999F), new Vector2(-601.366028F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(-602.362F, -192.632004F), new Vector2(-603.507996F, -192.955994F), new Vector2(-604.804016F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-606.099976F, -192.955994F), new Vector2(-607.263977F, -192.662003F), new Vector2(-608.296021F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-609.328003F, -191.485992F), new Vector2(-610.132019F, -190.688004F), new Vector2(-610.708008F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-611.283997F, -188.671997F), new Vector2(-611.572021F, -187.520004F), new Vector2(-611.572021F, -186.223999F));
+ builder.AddLine(new Vector2(-610.23999F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-610.23999F, -186.332001F), new Vector2(-610.047974F, -187.100006F), new Vector2(-609.664001F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-609.280029F, -188.444F), new Vector2(-608.752014F, -188.972F), new Vector2(-608.080017F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-607.40802F, -189.740005F), new Vector2(-606.640015F, -189.932007F), new Vector2(-605.776001F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-604.47998F, -189.932007F), new Vector2(-603.429993F, -189.511993F), new Vector2(-602.625977F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-601.822021F, -187.832001F), new Vector2(-601.419983F, -186.764008F), new Vector2(-601.419983F, -185.468002F));
+ builder.AddLine(new Vector2(-601.419983F, -175.496002F));
+ builder.AddLine(new Vector2(-598.143982F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1137()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-628.888F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-629.728027F, -179.528F), new Vector2(-630.388F, -180.218002F), new Vector2(-630.867981F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-631.348022F, -181.970001F), new Vector2(-631.588013F, -182.972F), new Vector2(-631.588013F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-631.588013F, -185.203995F), new Vector2(-631.348022F, -186.188004F), new Vector2(-630.867981F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-630.388F, -187.916F), new Vector2(-629.728027F, -188.593994F), new Vector2(-628.888F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-628.047974F, -189.578003F), new Vector2(-627.099976F, -189.824005F), new Vector2(-626.044006F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-624.940002F, -189.824005F), new Vector2(-623.973999F, -189.578003F), new Vector2(-623.145996F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-622.317993F, -188.593994F), new Vector2(-621.65802F, -187.916F), new Vector2(-621.166016F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-620.674011F, -186.188004F), new Vector2(-620.427979F, -185.203995F), new Vector2(-620.427979F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-620.427979F, -182.972F), new Vector2(-620.66803F, -181.970001F), new Vector2(-621.14801F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-621.627991F, -180.218002F), new Vector2(-622.288025F, -179.528F), new Vector2(-623.127991F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-623.968018F, -178.520004F), new Vector2(-624.940002F, -178.268005F), new Vector2(-626.044006F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-627.099976F, -178.268005F), new Vector2(-628.047974F, -178.520004F), new Vector2(-628.888F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-621.48999F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-620.133972F, -177.115997F), new Vector2(-619.059998F, -178.190002F), new Vector2(-618.268005F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-617.476013F, -180.901993F), new Vector2(-617.080017F, -182.419998F), new Vector2(-617.080017F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-617.080017F, -185.755997F), new Vector2(-617.476013F, -187.255997F), new Vector2(-618.268005F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-619.059998F, -189.944F), new Vector2(-620.133972F, -191.005997F), new Vector2(-621.48999F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-622.846008F, -192.565994F), new Vector2(-624.364014F, -192.955994F), new Vector2(-626.044006F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-627.700012F, -192.955994F), new Vector2(-629.200012F, -192.559998F), new Vector2(-630.544006F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-631.888F, -190.975998F), new Vector2(-632.955994F, -189.914001F), new Vector2(-633.747986F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(-634.539978F, -187.25F), new Vector2(-634.935974F, -185.755997F), new Vector2(-634.935974F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-634.935974F, -182.419998F), new Vector2(-634.539978F, -180.901993F), new Vector2(-633.747986F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-632.955994F, -178.190002F), new Vector2(-631.888F, -177.115997F), new Vector2(-630.544006F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-629.200012F, -175.531998F), new Vector2(-627.700012F, -175.136002F), new Vector2(-626.044006F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-624.364014F, -175.136002F), new Vector2(-622.846008F, -175.531998F), new Vector2(-621.48999F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1138()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-638.752014F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(-638.367981F, -197.005997F), new Vector2(-638.176025F, -197.503998F), new Vector2(-638.176025F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(-638.176025F, -198.679993F), new Vector2(-638.367981F, -199.166F), new Vector2(-638.752014F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(-639.135986F, -199.957993F), new Vector2(-639.627991F, -200.156006F), new Vector2(-640.228027F, -200.156006F));
+ builder.AddCubicBezier(new Vector2(-640.828003F, -200.156006F), new Vector2(-641.320007F, -199.957993F), new Vector2(-641.703979F, -199.561996F));
+ builder.AddCubicBezier(new Vector2(-642.088013F, -199.166F), new Vector2(-642.280029F, -198.679993F), new Vector2(-642.280029F, -198.104004F));
+ builder.AddCubicBezier(new Vector2(-642.280029F, -197.503998F), new Vector2(-642.088013F, -197.005997F), new Vector2(-641.703979F, -196.610001F));
+ builder.AddCubicBezier(new Vector2(-641.320007F, -196.214005F), new Vector2(-640.828003F, -196.016006F), new Vector2(-640.228027F, -196.016006F));
+ builder.AddCubicBezier(new Vector2(-639.627991F, -196.016006F), new Vector2(-639.135986F, -196.214005F), new Vector2(-638.752014F, -196.610001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-638.607971F, -175.496002F));
+ builder.AddLine(new Vector2(-638.607971F, -192.595993F));
+ builder.AddLine(new Vector2(-641.883972F, -192.595993F));
+ builder.AddLine(new Vector2(-641.883972F, -175.496002F));
+ builder.AddLine(new Vector2(-638.607971F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1139()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-645.052002F, -189.643997F));
+ builder.AddLine(new Vector2(-645.052002F, -192.595993F));
+ builder.AddLine(new Vector2(-656.716003F, -192.595993F));
+ builder.AddLine(new Vector2(-656.716003F, -189.643997F));
+ builder.AddLine(new Vector2(-645.052002F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-649.263977F, -175.496002F));
+ builder.AddLine(new Vector2(-649.263977F, -199.759995F));
+ builder.AddLine(new Vector2(-652.504028F, -199.759995F));
+ builder.AddLine(new Vector2(-652.504028F, -175.496002F));
+ builder.AddLine(new Vector2(-649.263977F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1140()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-659.776001F, -175.496002F));
+ builder.AddLine(new Vector2(-659.776001F, -192.595993F));
+ builder.AddLine(new Vector2(-663.052002F, -192.595993F));
+ builder.AddLine(new Vector2(-663.052002F, -188.419998F));
+ builder.AddLine(new Vector2(-662.440002F, -184.279999F));
+ builder.AddLine(new Vector2(-663.052002F, -180.104004F));
+ builder.AddLine(new Vector2(-663.052002F, -175.496002F));
+ builder.AddLine(new Vector2(-659.776001F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-671.080017F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-671.919983F, -179.455994F), new Vector2(-672.573975F, -180.145996F), new Vector2(-673.041992F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-673.51001F, -181.897995F), new Vector2(-673.744019F, -182.912003F), new Vector2(-673.744019F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-673.744019F, -185.192001F), new Vector2(-673.51001F, -186.194F), new Vector2(-673.041992F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-672.573975F, -187.945999F), new Vector2(-671.926025F, -188.636002F), new Vector2(-671.098022F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-670.27002F, -189.643997F), new Vector2(-669.315979F, -189.895996F), new Vector2(-668.236023F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-667.156006F, -189.895996F), new Vector2(-666.213989F, -189.649994F), new Vector2(-665.409973F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-664.606018F, -188.666F), new Vector2(-663.976013F, -187.975998F), new Vector2(-663.52002F, -187.087997F));
+ builder.AddCubicBezier(new Vector2(-663.064026F, -186.199997F), new Vector2(-662.835999F, -185.179993F), new Vector2(-662.835999F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-662.835999F, -182.324005F), new Vector2(-663.328003F, -180.925995F), new Vector2(-664.312012F, -179.834F));
+ builder.AddCubicBezier(new Vector2(-665.296021F, -178.742004F), new Vector2(-666.59198F, -178.195999F), new Vector2(-668.200012F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-669.280029F, -178.195999F), new Vector2(-670.23999F, -178.447998F), new Vector2(-671.080017F, -178.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-665.247986F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-664.216003F, -176.485992F), new Vector2(-663.393982F, -177.235992F), new Vector2(-662.781982F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-662.169983F, -179.156006F), new Vector2(-661.828003F, -180.248001F), new Vector2(-661.755981F, -181.472F));
+ builder.AddLine(new Vector2(-661.755981F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-661.828003F, -187.867996F), new Vector2(-662.176025F, -188.966003F), new Vector2(-662.799988F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-663.424011F, -190.862F), new Vector2(-664.245972F, -191.606003F), new Vector2(-665.265991F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-666.286011F, -192.686005F), new Vector2(-667.44397F, -192.955994F), new Vector2(-668.73999F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-670.323975F, -192.955994F), new Vector2(-671.745972F, -192.559998F), new Vector2(-673.005981F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-674.265991F, -190.975998F), new Vector2(-675.262024F, -189.908005F), new Vector2(-675.994019F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-676.726013F, -187.220001F), new Vector2(-677.09198F, -185.707993F), new Vector2(-677.09198F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-677.09198F, -182.348007F), new Vector2(-676.726013F, -180.835999F), new Vector2(-675.994019F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-675.262024F, -178.147995F), new Vector2(-674.265991F, -177.085999F), new Vector2(-673.005981F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-671.745972F, -175.526001F), new Vector2(-670.323975F, -175.136002F), new Vector2(-668.73999F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-667.44397F, -175.136002F), new Vector2(-666.280029F, -175.406006F), new Vector2(-665.247986F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1141()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-685.515991F, -188.744003F));
+ builder.AddCubicBezier(new Vector2(-684.747986F, -189.511993F), new Vector2(-683.763977F, -189.895996F), new Vector2(-682.564026F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-681.987976F, -189.895996F), new Vector2(-681.484009F, -189.811996F), new Vector2(-681.052002F, -189.643997F));
+ builder.AddCubicBezier(new Vector2(-680.619995F, -189.475998F), new Vector2(-680.223999F, -189.199997F), new Vector2(-679.864014F, -188.815994F));
+ builder.AddLine(new Vector2(-677.73999F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-678.340027F, -191.707993F), new Vector2(-678.987976F, -192.205994F), new Vector2(-679.684021F, -192.505997F));
+ builder.AddCubicBezier(new Vector2(-680.380005F, -192.806F), new Vector2(-681.159973F, -192.955994F), new Vector2(-682.023987F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-683.919983F, -192.955994F), new Vector2(-685.372009F, -192.307999F), new Vector2(-686.380005F, -191.011993F));
+ builder.AddCubicBezier(new Vector2(-687.388F, -189.716003F), new Vector2(-687.892029F, -187.975998F), new Vector2(-687.892029F, -185.792007F));
+ builder.AddLine(new Vector2(-686.66803F, -185.216003F));
+ builder.AddCubicBezier(new Vector2(-686.66803F, -186.800003F), new Vector2(-686.283997F, -187.975998F), new Vector2(-685.515991F, -188.744003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-686.66803F, -175.496002F));
+ builder.AddLine(new Vector2(-686.66803F, -192.595993F));
+ builder.AddLine(new Vector2(-689.90802F, -192.595993F));
+ builder.AddLine(new Vector2(-689.90802F, -175.496002F));
+ builder.AddLine(new Vector2(-686.66803F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1142()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-693.075989F, -189.643997F));
+ builder.AddLine(new Vector2(-693.075989F, -192.595993F));
+ builder.AddLine(new Vector2(-704.73999F, -192.595993F));
+ builder.AddLine(new Vector2(-704.73999F, -189.643997F));
+ builder.AddLine(new Vector2(-693.075989F, -189.643997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-697.288025F, -175.496002F));
+ builder.AddLine(new Vector2(-697.288025F, -199.759995F));
+ builder.AddLine(new Vector2(-700.528015F, -199.759995F));
+ builder.AddLine(new Vector2(-700.528015F, -175.496002F));
+ builder.AddLine(new Vector2(-697.288025F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1143()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-708.502014F, -176.539993F));
+ builder.AddCubicBezier(new Vector2(-707.362F, -177.475998F), new Vector2(-706.791992F, -178.748001F), new Vector2(-706.791992F, -180.356003F));
+ builder.AddCubicBezier(new Vector2(-706.791992F, -181.412003F), new Vector2(-707.013977F, -182.264008F), new Vector2(-707.458008F, -182.912003F));
+ builder.AddCubicBezier(new Vector2(-707.901978F, -183.559998F), new Vector2(-708.471985F, -184.076004F), new Vector2(-709.16803F, -184.460007F));
+ builder.AddCubicBezier(new Vector2(-709.864014F, -184.843994F), new Vector2(-710.596008F, -185.149994F), new Vector2(-711.364014F, -185.378006F));
+ builder.AddCubicBezier(new Vector2(-712.132019F, -185.606003F), new Vector2(-712.869995F, -185.828003F), new Vector2(-713.578003F, -186.044006F));
+ builder.AddCubicBezier(new Vector2(-714.286011F, -186.259995F), new Vector2(-714.856018F, -186.524002F), new Vector2(-715.288025F, -186.835999F));
+ builder.AddCubicBezier(new Vector2(-715.719971F, -187.147995F), new Vector2(-715.935974F, -187.591995F), new Vector2(-715.935974F, -188.167999F));
+ builder.AddCubicBezier(new Vector2(-715.935974F, -188.720001F), new Vector2(-715.690002F, -189.164001F), new Vector2(-715.197998F, -189.5F));
+ builder.AddCubicBezier(new Vector2(-714.705994F, -189.835999F), new Vector2(-713.992004F, -190.003998F), new Vector2(-713.05603F, -190.003998F));
+ builder.AddCubicBezier(new Vector2(-712.16803F, -190.003998F), new Vector2(-711.375977F, -189.835999F), new Vector2(-710.679993F, -189.5F));
+ builder.AddCubicBezier(new Vector2(-709.984009F, -189.164001F), new Vector2(-709.383972F, -188.684006F), new Vector2(-708.880005F, -188.059998F));
+ builder.AddLine(new Vector2(-706.791992F, -190.147995F));
+ builder.AddCubicBezier(new Vector2(-707.463989F, -191.084F), new Vector2(-708.322021F, -191.785995F), new Vector2(-709.366028F, -192.253998F));
+ builder.AddCubicBezier(new Vector2(-710.409973F, -192.722F), new Vector2(-711.604004F, -192.955994F), new Vector2(-712.947998F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-714.219971F, -192.955994F), new Vector2(-715.312012F, -192.751999F), new Vector2(-716.223999F, -192.343994F));
+ builder.AddCubicBezier(new Vector2(-717.135986F, -191.936005F), new Vector2(-717.838013F, -191.354004F), new Vector2(-718.330017F, -190.598007F));
+ builder.AddCubicBezier(new Vector2(-718.822021F, -189.841995F), new Vector2(-719.067993F, -188.947998F), new Vector2(-719.067993F, -187.916F));
+ builder.AddCubicBezier(new Vector2(-719.067993F, -186.884003F), new Vector2(-718.846008F, -186.050003F), new Vector2(-718.401978F, -185.414001F));
+ builder.AddCubicBezier(new Vector2(-717.958008F, -184.778F), new Vector2(-717.388F, -184.279999F), new Vector2(-716.692017F, -183.919998F));
+ builder.AddCubicBezier(new Vector2(-715.995972F, -183.559998F), new Vector2(-715.257996F, -183.272003F), new Vector2(-714.478027F, -183.056F));
+ builder.AddCubicBezier(new Vector2(-713.697998F, -182.839996F), new Vector2(-712.960022F, -182.617996F), new Vector2(-712.263977F, -182.389999F));
+ builder.AddCubicBezier(new Vector2(-711.567993F, -182.162003F), new Vector2(-710.997986F, -181.873993F), new Vector2(-710.554016F, -181.526001F));
+ builder.AddCubicBezier(new Vector2(-710.109985F, -181.177994F), new Vector2(-709.888F, -180.692001F), new Vector2(-709.888F, -180.067993F));
+ builder.AddCubicBezier(new Vector2(-709.888F, -179.444F), new Vector2(-710.164001F, -178.957993F), new Vector2(-710.716003F, -178.610001F));
+ builder.AddCubicBezier(new Vector2(-711.268005F, -178.261993F), new Vector2(-712.047974F, -178.087997F), new Vector2(-713.05603F, -178.087997F));
+ builder.AddCubicBezier(new Vector2(-714.064026F, -178.087997F), new Vector2(-714.976013F, -178.274002F), new Vector2(-715.791992F, -178.645996F));
+ builder.AddCubicBezier(new Vector2(-716.607971F, -179.018005F), new Vector2(-717.328003F, -179.587997F), new Vector2(-717.952026F, -180.356003F));
+ builder.AddLine(new Vector2(-720.039978F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-719.512024F, -177.619995F), new Vector2(-718.893982F, -177.061996F), new Vector2(-718.185974F, -176.593994F));
+ builder.AddCubicBezier(new Vector2(-717.478027F, -176.126007F), new Vector2(-716.692017F, -175.766006F), new Vector2(-715.828003F, -175.514008F));
+ builder.AddCubicBezier(new Vector2(-714.963989F, -175.261993F), new Vector2(-714.052002F, -175.136002F), new Vector2(-713.09198F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-711.171997F, -175.136002F), new Vector2(-709.642029F, -175.604004F), new Vector2(-708.502014F, -176.539993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1144()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-735.015991F, -175.496002F));
+ builder.AddLine(new Vector2(-735.015991F, -192.595993F));
+ builder.AddLine(new Vector2(-738.255981F, -192.595993F));
+ builder.AddLine(new Vector2(-738.255981F, -175.496002F));
+ builder.AddLine(new Vector2(-735.015991F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-722.919983F, -175.496002F));
+ builder.AddLine(new Vector2(-722.919983F, -186.115997F));
+ builder.AddCubicBezier(new Vector2(-722.919983F, -187.292007F), new Vector2(-723.208008F, -188.401993F), new Vector2(-723.783997F, -189.445999F));
+ builder.AddCubicBezier(new Vector2(-724.359985F, -190.490005F), new Vector2(-725.145996F, -191.335999F), new Vector2(-726.142029F, -191.983994F));
+ builder.AddCubicBezier(new Vector2(-727.138F, -192.632004F), new Vector2(-728.283997F, -192.955994F), new Vector2(-729.580017F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-730.875977F, -192.955994F), new Vector2(-732.039978F, -192.662003F), new Vector2(-733.072021F, -192.074005F));
+ builder.AddCubicBezier(new Vector2(-734.104004F, -191.485992F), new Vector2(-734.90802F, -190.688004F), new Vector2(-735.484009F, -189.679993F));
+ builder.AddCubicBezier(new Vector2(-736.059998F, -188.671997F), new Vector2(-736.348022F, -187.520004F), new Vector2(-736.348022F, -186.223999F));
+ builder.AddLine(new Vector2(-735.015991F, -185.468002F));
+ builder.AddCubicBezier(new Vector2(-735.015991F, -186.332001F), new Vector2(-734.823975F, -187.100006F), new Vector2(-734.440002F, -187.772003F));
+ builder.AddCubicBezier(new Vector2(-734.05603F, -188.444F), new Vector2(-733.528015F, -188.972F), new Vector2(-732.856018F, -189.356003F));
+ builder.AddCubicBezier(new Vector2(-732.184021F, -189.740005F), new Vector2(-731.416016F, -189.932007F), new Vector2(-730.552002F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-729.255981F, -189.932007F), new Vector2(-728.205994F, -189.511993F), new Vector2(-727.401978F, -188.671997F));
+ builder.AddCubicBezier(new Vector2(-726.598022F, -187.832001F), new Vector2(-726.195984F, -186.764008F), new Vector2(-726.195984F, -185.468002F));
+ builder.AddLine(new Vector2(-726.195984F, -175.496002F));
+ builder.AddLine(new Vector2(-722.919983F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1145()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-753.664001F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-754.504028F, -179.528F), new Vector2(-755.164001F, -180.218002F), new Vector2(-755.643982F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-756.124023F, -181.970001F), new Vector2(-756.364014F, -182.972F), new Vector2(-756.364014F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-756.364014F, -185.203995F), new Vector2(-756.124023F, -186.188004F), new Vector2(-755.643982F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-755.164001F, -187.916F), new Vector2(-754.504028F, -188.593994F), new Vector2(-753.664001F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-752.823975F, -189.578003F), new Vector2(-751.875977F, -189.824005F), new Vector2(-750.820007F, -189.824005F));
+ builder.AddCubicBezier(new Vector2(-749.716003F, -189.824005F), new Vector2(-748.75F, -189.578003F), new Vector2(-747.921997F, -189.085999F));
+ builder.AddCubicBezier(new Vector2(-747.093994F, -188.593994F), new Vector2(-746.434021F, -187.916F), new Vector2(-745.942017F, -187.052002F));
+ builder.AddCubicBezier(new Vector2(-745.450012F, -186.188004F), new Vector2(-745.203979F, -185.203995F), new Vector2(-745.203979F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-745.203979F, -182.972F), new Vector2(-745.44397F, -181.970001F), new Vector2(-745.924011F, -181.093994F));
+ builder.AddCubicBezier(new Vector2(-746.403992F, -180.218002F), new Vector2(-747.064026F, -179.528F), new Vector2(-747.903992F, -179.024002F));
+ builder.AddCubicBezier(new Vector2(-748.744019F, -178.520004F), new Vector2(-749.716003F, -178.268005F), new Vector2(-750.820007F, -178.268005F));
+ builder.AddCubicBezier(new Vector2(-751.875977F, -178.268005F), new Vector2(-752.823975F, -178.520004F), new Vector2(-753.664001F, -179.024002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-746.265991F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-744.909973F, -177.115997F), new Vector2(-743.835999F, -178.190002F), new Vector2(-743.044006F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-742.252014F, -180.901993F), new Vector2(-741.856018F, -182.419998F), new Vector2(-741.856018F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-741.856018F, -185.755997F), new Vector2(-742.252014F, -187.255997F), new Vector2(-743.044006F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-743.835999F, -189.944F), new Vector2(-744.909973F, -191.005997F), new Vector2(-746.265991F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-747.622009F, -192.565994F), new Vector2(-749.140015F, -192.955994F), new Vector2(-750.820007F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-752.476013F, -192.955994F), new Vector2(-753.976013F, -192.559998F), new Vector2(-755.320007F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-756.664001F, -190.975998F), new Vector2(-757.731995F, -189.914001F), new Vector2(-758.523987F, -188.582001F));
+ builder.AddCubicBezier(new Vector2(-759.315979F, -187.25F), new Vector2(-759.711975F, -185.755997F), new Vector2(-759.711975F, -184.100006F));
+ builder.AddCubicBezier(new Vector2(-759.711975F, -182.419998F), new Vector2(-759.315979F, -180.901993F), new Vector2(-758.523987F, -179.546005F));
+ builder.AddCubicBezier(new Vector2(-757.731995F, -178.190002F), new Vector2(-756.664001F, -177.115997F), new Vector2(-755.320007F, -176.324005F));
+ builder.AddCubicBezier(new Vector2(-753.976013F, -175.531998F), new Vector2(-752.476013F, -175.136002F), new Vector2(-750.820007F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-749.140015F, -175.136002F), new Vector2(-747.622009F, -175.531998F), new Vector2(-746.265991F, -176.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1146()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-762.987976F, -175.496002F));
+ builder.AddLine(new Vector2(-762.987976F, -186.475998F));
+ builder.AddCubicBezier(new Vector2(-762.987976F, -187.820007F), new Vector2(-763.281982F, -188.972F), new Vector2(-763.869995F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-764.458008F, -190.891998F), new Vector2(-765.244019F, -191.636002F), new Vector2(-766.228027F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(-767.211975F, -192.692001F), new Vector2(-768.328003F, -192.955994F), new Vector2(-769.575989F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-770.776001F, -192.955994F), new Vector2(-771.880005F, -192.686005F), new Vector2(-772.888F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-773.895996F, -191.606003F), new Vector2(-774.718018F, -190.862F), new Vector2(-775.354004F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-775.98999F, -188.966003F), new Vector2(-776.343994F, -187.832001F), new Vector2(-776.416016F, -186.511993F));
+ builder.AddLine(new Vector2(-774.580017F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(-774.580017F, -186.692001F), new Vector2(-774.388F, -187.423996F), new Vector2(-774.004028F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(-773.619995F, -188.623993F), new Vector2(-773.109985F, -189.091995F), new Vector2(-772.473999F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(-771.838013F, -189.764008F), new Vector2(-771.124023F, -189.932007F), new Vector2(-770.33197F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-769.179993F, -189.932007F), new Vector2(-768.213989F, -189.565994F), new Vector2(-767.434021F, -188.834F));
+ builder.AddCubicBezier(new Vector2(-766.653992F, -188.102005F), new Vector2(-766.263977F, -187.100006F), new Vector2(-766.263977F, -185.828003F));
+ builder.AddLine(new Vector2(-766.263977F, -175.496002F));
+ builder.AddLine(new Vector2(-762.987976F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-774.580017F, -175.496002F));
+ builder.AddLine(new Vector2(-774.580017F, -186.511993F));
+ builder.AddCubicBezier(new Vector2(-774.580017F, -187.832001F), new Vector2(-774.862F, -188.972F), new Vector2(-775.426025F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-775.98999F, -190.891998F), new Vector2(-776.757996F, -191.636002F), new Vector2(-777.72998F, -192.164001F));
+ builder.AddCubicBezier(new Vector2(-778.702026F, -192.692001F), new Vector2(-779.788025F, -192.955994F), new Vector2(-780.987976F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-782.211975F, -192.955994F), new Vector2(-783.315979F, -192.686005F), new Vector2(-784.299988F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-785.283997F, -191.606003F), new Vector2(-786.057983F, -190.856003F), new Vector2(-786.622009F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-787.185974F, -188.936005F), new Vector2(-787.468018F, -187.807999F), new Vector2(-787.468018F, -186.511993F));
+ builder.AddLine(new Vector2(-786.135986F, -185.828003F));
+ builder.AddCubicBezier(new Vector2(-786.135986F, -186.692001F), new Vector2(-785.94397F, -187.423996F), new Vector2(-785.559998F, -188.024002F));
+ builder.AddCubicBezier(new Vector2(-785.176025F, -188.623993F), new Vector2(-784.671997F, -189.091995F), new Vector2(-784.047974F, -189.427994F));
+ builder.AddCubicBezier(new Vector2(-783.424011F, -189.764008F), new Vector2(-782.716003F, -189.932007F), new Vector2(-781.924011F, -189.932007F));
+ builder.AddCubicBezier(new Vector2(-780.747986F, -189.932007F), new Vector2(-779.77002F, -189.565994F), new Vector2(-778.98999F, -188.834F));
+ builder.AddCubicBezier(new Vector2(-778.210022F, -188.102005F), new Vector2(-777.820007F, -187.100006F), new Vector2(-777.820007F, -185.828003F));
+ builder.AddLine(new Vector2(-777.820007F, -175.496002F));
+ builder.AddLine(new Vector2(-774.580017F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-786.135986F, -175.496002F));
+ builder.AddLine(new Vector2(-786.135986F, -192.595993F));
+ builder.AddLine(new Vector2(-789.375977F, -192.595993F));
+ builder.AddLine(new Vector2(-789.375977F, -175.496002F));
+ builder.AddLine(new Vector2(-786.135986F, -175.496002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1147()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-796.971985F, -175.891998F));
+ builder.AddCubicBezier(new Vector2(-795.796021F, -176.395996F), new Vector2(-794.788025F, -177.128006F), new Vector2(-793.947998F, -178.087997F));
+ builder.AddLine(new Vector2(-796.036011F, -180.212006F));
+ builder.AddCubicBezier(new Vector2(-796.612F, -179.539993F), new Vector2(-797.302002F, -179.035995F), new Vector2(-798.106018F, -178.699997F));
+ builder.AddCubicBezier(new Vector2(-798.909973F, -178.363998F), new Vector2(-799.791992F, -178.195999F), new Vector2(-800.752014F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-801.903992F, -178.195999F), new Vector2(-802.924011F, -178.442001F), new Vector2(-803.812012F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-804.700012F, -179.425995F), new Vector2(-805.383972F, -180.121994F), new Vector2(-805.864014F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-806.343994F, -181.921997F), new Vector2(-806.583984F, -182.972F), new Vector2(-806.583984F, -184.171997F));
+ builder.AddCubicBezier(new Vector2(-806.583984F, -185.348007F), new Vector2(-806.356018F, -186.367996F), new Vector2(-805.900024F, -187.231995F));
+ builder.AddCubicBezier(new Vector2(-805.44397F, -188.095993F), new Vector2(-804.796021F, -188.768005F), new Vector2(-803.955994F, -189.248001F));
+ builder.AddCubicBezier(new Vector2(-803.116028F, -189.727997F), new Vector2(-802.143982F, -189.968002F), new Vector2(-801.039978F, -189.968002F));
+ builder.AddCubicBezier(new Vector2(-799.984009F, -189.968002F), new Vector2(-799.083984F, -189.746002F), new Vector2(-798.340027F, -189.302002F));
+ builder.AddCubicBezier(new Vector2(-797.596008F, -188.858002F), new Vector2(-797.02002F, -188.233994F), new Vector2(-796.612F, -187.429993F));
+ builder.AddCubicBezier(new Vector2(-796.203979F, -186.626007F), new Vector2(-796F, -185.647995F), new Vector2(-796F, -184.496002F));
+ builder.AddLine(new Vector2(-794.812012F, -185.539993F));
+ builder.AddLine(new Vector2(-807.52002F, -185.539993F));
+ builder.AddLine(new Vector2(-807.52002F, -182.839996F));
+ builder.AddLine(new Vector2(-793.083984F, -182.839996F));
+ builder.AddCubicBezier(new Vector2(-793.012024F, -183.175995F), new Vector2(-792.963989F, -183.481995F), new Vector2(-792.940002F, -183.757996F));
+ builder.AddCubicBezier(new Vector2(-792.916016F, -184.033997F), new Vector2(-792.903992F, -184.292007F), new Vector2(-792.903992F, -184.531998F));
+ builder.AddCubicBezier(new Vector2(-792.903992F, -186.164001F), new Vector2(-793.245972F, -187.615997F), new Vector2(-793.929993F, -188.888F));
+ builder.AddCubicBezier(new Vector2(-794.614014F, -190.160004F), new Vector2(-795.567993F, -191.156006F), new Vector2(-796.791992F, -191.876007F));
+ builder.AddCubicBezier(new Vector2(-798.015991F, -192.595993F), new Vector2(-799.40802F, -192.955994F), new Vector2(-800.968018F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-802.624023F, -192.955994F), new Vector2(-804.117981F, -192.565994F), new Vector2(-805.450012F, -191.785995F));
+ builder.AddCubicBezier(new Vector2(-806.781982F, -191.005997F), new Vector2(-807.838013F, -189.944F), new Vector2(-808.617981F, -188.600006F));
+ builder.AddCubicBezier(new Vector2(-809.39801F, -187.255997F), new Vector2(-809.788025F, -185.744003F), new Vector2(-809.788025F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-809.788025F, -182.360001F), new Vector2(-809.392029F, -180.835999F), new Vector2(-808.599976F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-807.807983F, -178.147995F), new Vector2(-806.734009F, -177.085999F), new Vector2(-805.377991F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-804.021973F, -175.526001F), new Vector2(-802.47998F, -175.136002F), new Vector2(-800.752014F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-799.40802F, -175.136002F), new Vector2(-798.14801F, -175.388F), new Vector2(-796.971985F, -175.891998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1148()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-813.388F, -201.199997F));
+ builder.AddLine(new Vector2(-816.664001F, -201.199997F));
+ builder.AddLine(new Vector2(-816.664001F, -188.419998F));
+ builder.AddLine(new Vector2(-816.052002F, -184.279999F));
+ builder.AddLine(new Vector2(-816.664001F, -180.104004F));
+ builder.AddLine(new Vector2(-816.664001F, -175.496002F));
+ builder.AddLine(new Vector2(-813.388F, -175.496002F));
+ builder.AddLine(new Vector2(-813.388F, -201.199997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-824.710022F, -178.934006F));
+ builder.AddCubicBezier(new Vector2(-825.538025F, -179.425995F), new Vector2(-826.185974F, -180.115997F), new Vector2(-826.653992F, -181.003998F));
+ builder.AddCubicBezier(new Vector2(-827.122009F, -181.891998F), new Vector2(-827.356018F, -182.912003F), new Vector2(-827.356018F, -184.063995F));
+ builder.AddCubicBezier(new Vector2(-827.356018F, -185.216003F), new Vector2(-827.122009F, -186.229996F), new Vector2(-826.653992F, -187.106003F));
+ builder.AddCubicBezier(new Vector2(-826.185974F, -187.981995F), new Vector2(-825.544006F, -188.666F), new Vector2(-824.728027F, -189.158005F));
+ builder.AddCubicBezier(new Vector2(-823.911987F, -189.649994F), new Vector2(-822.963989F, -189.895996F), new Vector2(-821.883972F, -189.895996F));
+ builder.AddCubicBezier(new Vector2(-820.804016F, -189.895996F), new Vector2(-819.856018F, -189.643997F), new Vector2(-819.039978F, -189.139999F));
+ builder.AddCubicBezier(new Vector2(-818.223999F, -188.636002F), new Vector2(-817.588013F, -187.945999F), new Vector2(-817.132019F, -187.070007F));
+ builder.AddCubicBezier(new Vector2(-816.676025F, -186.194F), new Vector2(-816.447998F, -185.179993F), new Vector2(-816.447998F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-816.447998F, -182.899994F), new Vector2(-816.676025F, -181.897995F), new Vector2(-817.132019F, -181.022003F));
+ builder.AddCubicBezier(new Vector2(-817.588013F, -180.145996F), new Vector2(-818.223999F, -179.455994F), new Vector2(-819.039978F, -178.951996F));
+ builder.AddCubicBezier(new Vector2(-819.856018F, -178.447998F), new Vector2(-820.804016F, -178.195999F), new Vector2(-821.883972F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-822.940002F, -178.195999F), new Vector2(-823.882019F, -178.442001F), new Vector2(-824.710022F, -178.934006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-818.895996F, -175.945999F));
+ builder.AddCubicBezier(new Vector2(-817.864014F, -176.485992F), new Vector2(-817.036011F, -177.235992F), new Vector2(-816.411987F, -178.195999F));
+ builder.AddCubicBezier(new Vector2(-815.788025F, -179.156006F), new Vector2(-815.440002F, -180.248001F), new Vector2(-815.367981F, -181.472F));
+ builder.AddLine(new Vector2(-815.367981F, -186.619995F));
+ builder.AddCubicBezier(new Vector2(-815.440002F, -187.867996F), new Vector2(-815.794006F, -188.966003F), new Vector2(-816.429993F, -189.914001F));
+ builder.AddCubicBezier(new Vector2(-817.065979F, -190.862F), new Vector2(-817.900024F, -191.606003F), new Vector2(-818.932007F, -192.145996F));
+ builder.AddCubicBezier(new Vector2(-819.963989F, -192.686005F), new Vector2(-821.127991F, -192.955994F), new Vector2(-822.424011F, -192.955994F));
+ builder.AddCubicBezier(new Vector2(-823.984009F, -192.955994F), new Vector2(-825.388F, -192.559998F), new Vector2(-826.635986F, -191.768005F));
+ builder.AddCubicBezier(new Vector2(-827.883972F, -190.975998F), new Vector2(-828.874023F, -189.908005F), new Vector2(-829.606018F, -188.563995F));
+ builder.AddCubicBezier(new Vector2(-830.338013F, -187.220001F), new Vector2(-830.703979F, -185.707993F), new Vector2(-830.703979F, -184.028F));
+ builder.AddCubicBezier(new Vector2(-830.703979F, -182.348007F), new Vector2(-830.338013F, -180.835999F), new Vector2(-829.606018F, -179.492004F));
+ builder.AddCubicBezier(new Vector2(-828.874023F, -178.147995F), new Vector2(-827.883972F, -177.085999F), new Vector2(-826.635986F, -176.306F));
+ builder.AddCubicBezier(new Vector2(-825.388F, -175.526001F), new Vector2(-823.984009F, -175.136002F), new Vector2(-822.424011F, -175.136002F));
+ builder.AddCubicBezier(new Vector2(-821.104004F, -175.136002F), new Vector2(-819.927979F, -175.406006F), new Vector2(-818.895996F, -175.945999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1149()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(636.656006F, -232.843994F));
+ builder.AddLine(new Vector2(636.656006F, -235.796005F));
+ builder.AddLine(new Vector2(623.768005F, -235.796005F));
+ builder.AddLine(new Vector2(623.768005F, -232.843994F));
+ builder.AddLine(new Vector2(636.656006F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(631.219971F, -218.695999F));
+ builder.AddLine(new Vector2(631.219971F, -238.352005F));
+ builder.AddCubicBezier(new Vector2(631.219971F, -239.408005F), new Vector2(631.502014F, -240.229996F), new Vector2(632.065979F, -240.817993F));
+ builder.AddCubicBezier(new Vector2(632.630005F, -241.406006F), new Vector2(633.427979F, -241.699997F), new Vector2(634.460022F, -241.699997F));
+ builder.AddCubicBezier(new Vector2(635.012024F, -241.699997F), new Vector2(635.47998F, -241.615997F), new Vector2(635.864014F, -241.447998F));
+ builder.AddCubicBezier(new Vector2(636.247986F, -241.279999F), new Vector2(636.596008F, -241.028F), new Vector2(636.90802F, -240.692001F));
+ builder.AddLine(new Vector2(639.031982F, -242.779999F));
+ builder.AddCubicBezier(new Vector2(638.432007F, -243.427994F), new Vector2(637.771973F, -243.919998F), new Vector2(637.052002F, -244.255997F));
+ builder.AddCubicBezier(new Vector2(636.33197F, -244.591995F), new Vector2(635.47998F, -244.759995F), new Vector2(634.495972F, -244.759995F));
+ builder.AddCubicBezier(new Vector2(633.200012F, -244.759995F), new Vector2(632.059998F, -244.483994F), new Vector2(631.075989F, -243.932007F));
+ builder.AddCubicBezier(new Vector2(630.09198F, -243.380005F), new Vector2(629.323975F, -242.623993F), new Vector2(628.771973F, -241.664001F));
+ builder.AddCubicBezier(new Vector2(628.219971F, -240.703995F), new Vector2(627.94397F, -239.600006F), new Vector2(627.94397F, -238.352005F));
+ builder.AddLine(new Vector2(627.94397F, -218.695999F));
+ builder.AddLine(new Vector2(631.219971F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1150()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(610.664001F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(609.823975F, -222.727997F), new Vector2(609.164001F, -223.417999F), new Vector2(608.684021F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(608.203979F, -225.169998F), new Vector2(607.963989F, -226.171997F), new Vector2(607.963989F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(607.963989F, -228.404007F), new Vector2(608.203979F, -229.388F), new Vector2(608.684021F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(609.164001F, -231.115997F), new Vector2(609.823975F, -231.794006F), new Vector2(610.664001F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(611.504028F, -232.778F), new Vector2(612.452026F, -233.024002F), new Vector2(613.507996F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(614.612F, -233.024002F), new Vector2(615.578003F, -232.778F), new Vector2(616.406006F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(617.234009F, -231.794006F), new Vector2(617.893982F, -231.115997F), new Vector2(618.385986F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(618.877991F, -229.388F), new Vector2(619.124023F, -228.404007F), new Vector2(619.124023F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(619.124023F, -226.171997F), new Vector2(618.883972F, -225.169998F), new Vector2(618.403992F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(617.924011F, -223.417999F), new Vector2(617.263977F, -222.727997F), new Vector2(616.424011F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(615.583984F, -221.720001F), new Vector2(614.612F, -221.468002F), new Vector2(613.507996F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(612.452026F, -221.468002F), new Vector2(611.504028F, -221.720001F), new Vector2(610.664001F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(618.062012F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(619.41803F, -220.315994F), new Vector2(620.492004F, -221.389999F), new Vector2(621.283997F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(622.075989F, -224.102005F), new Vector2(622.471985F, -225.619995F), new Vector2(622.471985F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(622.471985F, -228.955994F), new Vector2(622.075989F, -230.455994F), new Vector2(621.283997F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(620.492004F, -233.143997F), new Vector2(619.41803F, -234.205994F), new Vector2(618.062012F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(616.705994F, -235.766006F), new Vector2(615.187988F, -236.156006F), new Vector2(613.507996F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(611.85199F, -236.156006F), new Vector2(610.35199F, -235.759995F), new Vector2(609.007996F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(607.664001F, -234.175995F), new Vector2(606.596008F, -233.113998F), new Vector2(605.804016F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(605.012024F, -230.449997F), new Vector2(604.616028F, -228.955994F), new Vector2(604.616028F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(604.616028F, -225.619995F), new Vector2(605.012024F, -224.102005F), new Vector2(605.804016F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(606.596008F, -221.389999F), new Vector2(607.664001F, -220.315994F), new Vector2(609.007996F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(610.35199F, -218.731995F), new Vector2(611.85199F, -218.335999F), new Vector2(613.507996F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(615.187988F, -218.335999F), new Vector2(616.705994F, -218.731995F), new Vector2(618.062012F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1151()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(590.684021F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(591.859985F, -219.595993F), new Vector2(592.867981F, -220.328003F), new Vector2(593.708008F, -221.287994F));
+ builder.AddLine(new Vector2(591.619995F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(591.044006F, -222.740005F), new Vector2(590.354004F, -222.235992F), new Vector2(589.549988F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(588.745972F, -221.563995F), new Vector2(587.864014F, -221.395996F), new Vector2(586.903992F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(585.752014F, -221.395996F), new Vector2(584.731995F, -221.641998F), new Vector2(583.843994F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(582.955994F, -222.626007F), new Vector2(582.271973F, -223.322006F), new Vector2(581.791992F, -224.222F));
+ builder.AddCubicBezier(new Vector2(581.312012F, -225.121994F), new Vector2(581.072021F, -226.171997F), new Vector2(581.072021F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(581.072021F, -228.548004F), new Vector2(581.299988F, -229.567993F), new Vector2(581.755981F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(582.211975F, -231.296005F), new Vector2(582.859985F, -231.968002F), new Vector2(583.700012F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(584.539978F, -232.927994F), new Vector2(585.512024F, -233.167999F), new Vector2(586.616028F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(587.671997F, -233.167999F), new Vector2(588.572021F, -232.945999F), new Vector2(589.315979F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(590.059998F, -232.057999F), new Vector2(590.635986F, -231.434006F), new Vector2(591.044006F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(591.452026F, -229.826004F), new Vector2(591.656006F, -228.848007F), new Vector2(591.656006F, -227.695999F));
+ builder.AddLine(new Vector2(592.843994F, -228.740005F));
+ builder.AddLine(new Vector2(580.135986F, -228.740005F));
+ builder.AddLine(new Vector2(580.135986F, -226.039993F));
+ builder.AddLine(new Vector2(594.572021F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(594.643982F, -226.376007F), new Vector2(594.692017F, -226.682007F), new Vector2(594.716003F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(594.73999F, -227.233994F), new Vector2(594.752014F, -227.492004F), new Vector2(594.752014F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(594.752014F, -229.363998F), new Vector2(594.409973F, -230.815994F), new Vector2(593.726013F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(593.041992F, -233.360001F), new Vector2(592.088013F, -234.356003F), new Vector2(590.864014F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(589.640015F, -235.796005F), new Vector2(588.247986F, -236.156006F), new Vector2(586.687988F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(585.031982F, -236.156006F), new Vector2(583.538025F, -235.766006F), new Vector2(582.205994F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(580.874023F, -234.205994F), new Vector2(579.817993F, -233.143997F), new Vector2(579.038025F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(578.257996F, -230.455994F), new Vector2(577.867981F, -228.944F), new Vector2(577.867981F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(577.867981F, -225.559998F), new Vector2(578.263977F, -224.035995F), new Vector2(579.05603F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(579.848022F, -221.348007F), new Vector2(580.921997F, -220.285995F), new Vector2(582.278015F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(583.633972F, -218.725998F), new Vector2(585.176025F, -218.335999F), new Vector2(586.903992F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(588.247986F, -218.335999F), new Vector2(589.507996F, -218.587997F), new Vector2(590.684021F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1152()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(569.012024F, -218.695999F));
+ builder.AddLine(new Vector2(576.859985F, -235.796005F));
+ builder.AddLine(new Vector2(573.403992F, -235.796005F));
+ builder.AddLine(new Vector2(567.067993F, -221.360001F));
+ builder.AddLine(new Vector2(569.156006F, -221.360001F));
+ builder.AddLine(new Vector2(562.856018F, -235.796005F));
+ builder.AddLine(new Vector2(559.255981F, -235.796005F));
+ builder.AddLine(new Vector2(567.104004F, -218.695999F));
+ builder.AddLine(new Vector2(569.012024F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1153()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(556.52002F, -218.695999F));
+ builder.AddLine(new Vector2(556.52002F, -235.796005F));
+ builder.AddLine(new Vector2(553.244019F, -235.796005F));
+ builder.AddLine(new Vector2(553.244019F, -231.619995F));
+ builder.AddLine(new Vector2(553.856018F, -227.479996F));
+ builder.AddLine(new Vector2(553.244019F, -223.304001F));
+ builder.AddLine(new Vector2(553.244019F, -218.695999F));
+ builder.AddLine(new Vector2(556.52002F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(545.216003F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(544.375977F, -222.656006F), new Vector2(543.721985F, -223.345993F), new Vector2(543.254028F, -224.222F));
+ builder.AddCubicBezier(new Vector2(542.786011F, -225.098007F), new Vector2(542.552002F, -226.112F), new Vector2(542.552002F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(542.552002F, -228.391998F), new Vector2(542.786011F, -229.393997F), new Vector2(543.254028F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(543.721985F, -231.145996F), new Vector2(544.369995F, -231.835999F), new Vector2(545.197998F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(546.026001F, -232.843994F), new Vector2(546.97998F, -233.095993F), new Vector2(548.059998F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(549.140015F, -233.095993F), new Vector2(550.08197F, -232.850006F), new Vector2(550.885986F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(551.690002F, -231.865997F), new Vector2(552.320007F, -231.175995F), new Vector2(552.776001F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(553.231995F, -229.399994F), new Vector2(553.460022F, -228.380005F), new Vector2(553.460022F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(553.460022F, -225.524002F), new Vector2(552.968018F, -224.126007F), new Vector2(551.984009F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(551F, -221.942001F), new Vector2(549.703979F, -221.395996F), new Vector2(548.096008F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(547.015991F, -221.395996F), new Vector2(546.05603F, -221.647995F), new Vector2(545.216003F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(551.047974F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(552.080017F, -219.686005F), new Vector2(552.901978F, -220.436005F), new Vector2(553.513977F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(554.125977F, -222.356003F), new Vector2(554.468018F, -223.447998F), new Vector2(554.539978F, -224.671997F));
+ builder.AddLine(new Vector2(554.539978F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(554.468018F, -231.067993F), new Vector2(554.119995F, -232.166F), new Vector2(553.495972F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(552.872009F, -234.061996F), new Vector2(552.049988F, -234.806F), new Vector2(551.030029F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(550.01001F, -235.886002F), new Vector2(548.85199F, -236.156006F), new Vector2(547.55603F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(545.971985F, -236.156006F), new Vector2(544.549988F, -235.759995F), new Vector2(543.289978F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(542.030029F, -234.175995F), new Vector2(541.033997F, -233.108002F), new Vector2(540.302002F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(539.570007F, -230.419998F), new Vector2(539.203979F, -228.908005F), new Vector2(539.203979F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(539.203979F, -225.548004F), new Vector2(539.570007F, -224.035995F), new Vector2(540.302002F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(541.033997F, -221.348007F), new Vector2(542.030029F, -220.285995F), new Vector2(543.289978F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(544.549988F, -218.725998F), new Vector2(545.971985F, -218.335999F), new Vector2(547.55603F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(548.85199F, -218.335999F), new Vector2(550.015991F, -218.606003F), new Vector2(551.047974F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1154()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(520.55603F, -218.695999F));
+ builder.AddLine(new Vector2(525.523987F, -231.584F));
+ builder.AddLine(new Vector2(524.335999F, -231.584F));
+ builder.AddLine(new Vector2(529.268005F, -218.695999F));
+ builder.AddLine(new Vector2(531.176025F, -218.695999F));
+ builder.AddLine(new Vector2(537.90802F, -235.796005F));
+ builder.AddLine(new Vector2(534.523987F, -235.796005F));
+ builder.AddLine(new Vector2(529.627991F, -222.475998F));
+ builder.AddLine(new Vector2(530.708008F, -222.475998F));
+ builder.AddLine(new Vector2(525.848022F, -235.796005F));
+ builder.AddLine(new Vector2(523.976013F, -235.796005F));
+ builder.AddLine(new Vector2(519.116028F, -222.475998F));
+ builder.AddLine(new Vector2(520.195984F, -222.475998F));
+ builder.AddLine(new Vector2(515.299988F, -235.796005F));
+ builder.AddLine(new Vector2(511.915985F, -235.796005F));
+ builder.AddLine(new Vector2(518.64801F, -218.695999F));
+ builder.AddLine(new Vector2(520.55603F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1155()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(503.167999F, -232.843994F));
+ builder.AddLine(new Vector2(503.167999F, -235.796005F));
+ builder.AddLine(new Vector2(491.503998F, -235.796005F));
+ builder.AddLine(new Vector2(491.503998F, -232.843994F));
+ builder.AddLine(new Vector2(503.167999F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(498.955994F, -218.695999F));
+ builder.AddLine(new Vector2(498.955994F, -242.960007F));
+ builder.AddLine(new Vector2(495.716003F, -242.960007F));
+ builder.AddLine(new Vector2(495.716003F, -218.695999F));
+ builder.AddLine(new Vector2(498.955994F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1156()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(490.496002F, -235.796005F));
+ builder.AddLine(new Vector2(486.716003F, -235.796005F));
+ builder.AddLine(new Vector2(481.963989F, -229.100006F));
+ builder.AddLine(new Vector2(483.872009F, -226.796005F));
+ builder.AddLine(new Vector2(490.496002F, -235.796005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(477.716003F, -218.695999F));
+ builder.AddLine(new Vector2(482.791992F, -225.824005F));
+ builder.AddLine(new Vector2(480.955994F, -228.199997F));
+ builder.AddLine(new Vector2(473.899994F, -218.695999F));
+ builder.AddLine(new Vector2(477.716003F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(490.820007F, -218.695999F));
+ builder.AddLine(new Vector2(483.619995F, -228.632004F));
+ builder.AddLine(new Vector2(483.007996F, -229.136002F));
+ builder.AddLine(new Vector2(478.14801F, -235.796005F));
+ builder.AddLine(new Vector2(474.187988F, -235.796005F));
+ builder.AddLine(new Vector2(480.955994F, -226.723999F));
+ builder.AddLine(new Vector2(481.567993F, -226.184006F));
+ builder.AddLine(new Vector2(486.895996F, -218.695999F));
+ builder.AddLine(new Vector2(490.820007F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1157()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(468.608002F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(469.783997F, -219.595993F), new Vector2(470.791992F, -220.328003F), new Vector2(471.631989F, -221.287994F));
+ builder.AddLine(new Vector2(469.544006F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(468.967987F, -222.740005F), new Vector2(468.278015F, -222.235992F), new Vector2(467.473999F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(466.670013F, -221.563995F), new Vector2(465.787994F, -221.395996F), new Vector2(464.828003F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(463.675995F, -221.395996F), new Vector2(462.656006F, -221.641998F), new Vector2(461.768005F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(460.880005F, -222.626007F), new Vector2(460.196014F, -223.322006F), new Vector2(459.716003F, -224.222F));
+ builder.AddCubicBezier(new Vector2(459.235992F, -225.121994F), new Vector2(458.996002F, -226.171997F), new Vector2(458.996002F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(458.996002F, -228.548004F), new Vector2(459.223999F, -229.567993F), new Vector2(459.679993F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(460.135986F, -231.296005F), new Vector2(460.783997F, -231.968002F), new Vector2(461.623993F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(462.463989F, -232.927994F), new Vector2(463.436005F, -233.167999F), new Vector2(464.540009F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(465.596008F, -233.167999F), new Vector2(466.496002F, -232.945999F), new Vector2(467.23999F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(467.984009F, -232.057999F), new Vector2(468.559998F, -231.434006F), new Vector2(468.967987F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(469.376007F, -229.826004F), new Vector2(469.579987F, -228.848007F), new Vector2(469.579987F, -227.695999F));
+ builder.AddLine(new Vector2(470.768005F, -228.740005F));
+ builder.AddLine(new Vector2(458.059998F, -228.740005F));
+ builder.AddLine(new Vector2(458.059998F, -226.039993F));
+ builder.AddLine(new Vector2(472.496002F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(472.567993F, -226.376007F), new Vector2(472.615997F, -226.682007F), new Vector2(472.640015F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(472.664001F, -227.233994F), new Vector2(472.675995F, -227.492004F), new Vector2(472.675995F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(472.675995F, -229.363998F), new Vector2(472.334015F, -230.815994F), new Vector2(471.649994F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(470.966003F, -233.360001F), new Vector2(470.011993F, -234.356003F), new Vector2(468.787994F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(467.563995F, -235.796005F), new Vector2(466.171997F, -236.156006F), new Vector2(464.612F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(462.955994F, -236.156006F), new Vector2(461.462006F, -235.766006F), new Vector2(460.130005F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(458.798004F, -234.205994F), new Vector2(457.742004F, -233.143997F), new Vector2(456.962006F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(456.182007F, -230.455994F), new Vector2(455.791992F, -228.944F), new Vector2(455.791992F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(455.791992F, -225.559998F), new Vector2(456.187988F, -224.035995F), new Vector2(456.980011F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(457.772003F, -221.348007F), new Vector2(458.846008F, -220.285995F), new Vector2(460.201996F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(461.558014F, -218.725998F), new Vector2(463.100006F, -218.335999F), new Vector2(464.828003F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(466.171997F, -218.335999F), new Vector2(467.432007F, -218.587997F), new Vector2(468.608002F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1158()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(440.420013F, -218.695999F));
+ builder.AddLine(new Vector2(440.420013F, -235.796005F));
+ builder.AddLine(new Vector2(437.179993F, -235.796005F));
+ builder.AddLine(new Vector2(437.179993F, -218.695999F));
+ builder.AddLine(new Vector2(440.420013F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(452.515991F, -218.695999F));
+ builder.AddLine(new Vector2(452.515991F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(452.515991F, -230.492004F), new Vector2(452.227997F, -231.602005F), new Vector2(451.652008F, -232.645996F));
+ builder.AddCubicBezier(new Vector2(451.075989F, -233.690002F), new Vector2(450.290009F, -234.535995F), new Vector2(449.294006F, -235.184006F));
+ builder.AddCubicBezier(new Vector2(448.298004F, -235.832001F), new Vector2(447.152008F, -236.156006F), new Vector2(445.855988F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(444.559998F, -236.156006F), new Vector2(443.395996F, -235.862F), new Vector2(442.364014F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(441.332001F, -234.686005F), new Vector2(440.528015F, -233.888F), new Vector2(439.951996F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(439.376007F, -231.871994F), new Vector2(439.088013F, -230.720001F), new Vector2(439.088013F, -229.423996F));
+ builder.AddLine(new Vector2(440.420013F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(440.420013F, -229.531998F), new Vector2(440.612F, -230.300003F), new Vector2(440.996002F, -230.972F));
+ builder.AddCubicBezier(new Vector2(441.380005F, -231.643997F), new Vector2(441.90799F, -232.171997F), new Vector2(442.579987F, -232.556F));
+ builder.AddCubicBezier(new Vector2(443.252014F, -232.940002F), new Vector2(444.019989F, -233.132004F), new Vector2(444.884003F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(446.179993F, -233.132004F), new Vector2(447.230011F, -232.712006F), new Vector2(448.033997F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(448.838013F, -231.031998F), new Vector2(449.23999F, -229.964005F), new Vector2(449.23999F, -228.667999F));
+ builder.AddLine(new Vector2(449.23999F, -218.695999F));
+ builder.AddLine(new Vector2(452.515991F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1159()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(425.011993F, -218.695999F));
+ builder.AddLine(new Vector2(425.011993F, -235.796005F));
+ builder.AddLine(new Vector2(421.735992F, -235.796005F));
+ builder.AddLine(new Vector2(421.735992F, -231.619995F));
+ builder.AddLine(new Vector2(422.347992F, -227.479996F));
+ builder.AddLine(new Vector2(421.735992F, -223.304001F));
+ builder.AddLine(new Vector2(421.735992F, -218.695999F));
+ builder.AddLine(new Vector2(425.011993F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(413.708008F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(412.868011F, -222.656006F), new Vector2(412.213989F, -223.345993F), new Vector2(411.746002F, -224.222F));
+ builder.AddCubicBezier(new Vector2(411.278015F, -225.098007F), new Vector2(411.044006F, -226.112F), new Vector2(411.044006F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(411.044006F, -228.391998F), new Vector2(411.278015F, -229.393997F), new Vector2(411.746002F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(412.213989F, -231.145996F), new Vector2(412.862F, -231.835999F), new Vector2(413.690002F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(414.518005F, -232.843994F), new Vector2(415.471985F, -233.095993F), new Vector2(416.552002F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(417.631989F, -233.095993F), new Vector2(418.574005F, -232.850006F), new Vector2(419.377991F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(420.182007F, -231.865997F), new Vector2(420.812012F, -231.175995F), new Vector2(421.268005F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(421.723999F, -229.399994F), new Vector2(421.951996F, -228.380005F), new Vector2(421.951996F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(421.951996F, -225.524002F), new Vector2(421.459991F, -224.126007F), new Vector2(420.476013F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(419.492004F, -221.942001F), new Vector2(418.196014F, -221.395996F), new Vector2(416.588013F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(415.507996F, -221.395996F), new Vector2(414.548004F, -221.647995F), new Vector2(413.708008F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(419.540009F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(420.571991F, -219.686005F), new Vector2(421.394012F, -220.436005F), new Vector2(422.006012F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(422.618011F, -222.356003F), new Vector2(422.959991F, -223.447998F), new Vector2(423.032013F, -224.671997F));
+ builder.AddLine(new Vector2(423.032013F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(422.959991F, -231.067993F), new Vector2(422.612F, -232.166F), new Vector2(421.988007F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(421.364014F, -234.061996F), new Vector2(420.541992F, -234.806F), new Vector2(419.522003F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(418.502014F, -235.886002F), new Vector2(417.343994F, -236.156006F), new Vector2(416.048004F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(414.463989F, -236.156006F), new Vector2(413.041992F, -235.759995F), new Vector2(411.782013F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(410.522003F, -234.175995F), new Vector2(409.526001F, -233.108002F), new Vector2(408.794006F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(408.062012F, -230.419998F), new Vector2(407.696014F, -228.908005F), new Vector2(407.696014F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(407.696014F, -225.548004F), new Vector2(408.062012F, -224.035995F), new Vector2(408.794006F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(409.526001F, -221.348007F), new Vector2(410.522003F, -220.285995F), new Vector2(411.782013F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(413.041992F, -218.725998F), new Vector2(414.463989F, -218.335999F), new Vector2(416.048004F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(417.343994F, -218.335999F), new Vector2(418.507996F, -218.606003F), new Vector2(419.540009F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1160()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(398.084015F, -232.843994F));
+ builder.AddLine(new Vector2(398.084015F, -235.796005F));
+ builder.AddLine(new Vector2(385.196014F, -235.796005F));
+ builder.AddLine(new Vector2(385.196014F, -232.843994F));
+ builder.AddLine(new Vector2(398.084015F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(392.64801F, -218.695999F));
+ builder.AddLine(new Vector2(392.64801F, -238.352005F));
+ builder.AddCubicBezier(new Vector2(392.64801F, -239.408005F), new Vector2(392.929993F, -240.229996F), new Vector2(393.493988F, -240.817993F));
+ builder.AddCubicBezier(new Vector2(394.058014F, -241.406006F), new Vector2(394.855988F, -241.699997F), new Vector2(395.888F, -241.699997F));
+ builder.AddCubicBezier(new Vector2(396.440002F, -241.699997F), new Vector2(396.90799F, -241.615997F), new Vector2(397.291992F, -241.447998F));
+ builder.AddCubicBezier(new Vector2(397.675995F, -241.279999F), new Vector2(398.023987F, -241.028F), new Vector2(398.335999F, -240.692001F));
+ builder.AddLine(new Vector2(400.459991F, -242.779999F));
+ builder.AddCubicBezier(new Vector2(399.859985F, -243.427994F), new Vector2(399.200012F, -243.919998F), new Vector2(398.480011F, -244.255997F));
+ builder.AddCubicBezier(new Vector2(397.76001F, -244.591995F), new Vector2(396.90799F, -244.759995F), new Vector2(395.924011F, -244.759995F));
+ builder.AddCubicBezier(new Vector2(394.627991F, -244.759995F), new Vector2(393.488007F, -244.483994F), new Vector2(392.503998F, -243.932007F));
+ builder.AddCubicBezier(new Vector2(391.519989F, -243.380005F), new Vector2(390.752014F, -242.623993F), new Vector2(390.200012F, -241.664001F));
+ builder.AddCubicBezier(new Vector2(389.64801F, -240.703995F), new Vector2(389.372009F, -239.600006F), new Vector2(389.372009F, -238.352005F));
+ builder.AddLine(new Vector2(389.372009F, -218.695999F));
+ builder.AddLine(new Vector2(392.64801F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1161()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(372.09201F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(371.252014F, -222.727997F), new Vector2(370.59201F, -223.417999F), new Vector2(370.112F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(369.631989F, -225.169998F), new Vector2(369.391998F, -226.171997F), new Vector2(369.391998F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(369.391998F, -228.404007F), new Vector2(369.631989F, -229.388F), new Vector2(370.112F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(370.59201F, -231.115997F), new Vector2(371.252014F, -231.794006F), new Vector2(372.09201F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(372.932007F, -232.778F), new Vector2(373.880005F, -233.024002F), new Vector2(374.936005F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(376.040009F, -233.024002F), new Vector2(377.006012F, -232.778F), new Vector2(377.834015F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(378.661987F, -231.794006F), new Vector2(379.321991F, -231.115997F), new Vector2(379.813995F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(380.306F, -229.388F), new Vector2(380.552002F, -228.404007F), new Vector2(380.552002F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(380.552002F, -226.171997F), new Vector2(380.312012F, -225.169998F), new Vector2(379.832001F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(379.35199F, -223.417999F), new Vector2(378.691986F, -222.727997F), new Vector2(377.85199F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(377.011993F, -221.720001F), new Vector2(376.040009F, -221.468002F), new Vector2(374.936005F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(373.880005F, -221.468002F), new Vector2(372.932007F, -221.720001F), new Vector2(372.09201F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(379.48999F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(380.846008F, -220.315994F), new Vector2(381.920013F, -221.389999F), new Vector2(382.712006F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(383.503998F, -224.102005F), new Vector2(383.899994F, -225.619995F), new Vector2(383.899994F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(383.899994F, -228.955994F), new Vector2(383.503998F, -230.455994F), new Vector2(382.712006F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(381.920013F, -233.143997F), new Vector2(380.846008F, -234.205994F), new Vector2(379.48999F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(378.134003F, -235.766006F), new Vector2(376.615997F, -236.156006F), new Vector2(374.936005F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(373.279999F, -236.156006F), new Vector2(371.779999F, -235.759995F), new Vector2(370.436005F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(369.09201F, -234.175995F), new Vector2(368.023987F, -233.113998F), new Vector2(367.231995F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(366.440002F, -230.449997F), new Vector2(366.044006F, -228.955994F), new Vector2(366.044006F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(366.044006F, -225.619995F), new Vector2(366.440002F, -224.102005F), new Vector2(367.231995F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(368.023987F, -221.389999F), new Vector2(369.09201F, -220.315994F), new Vector2(370.436005F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(371.779999F, -218.731995F), new Vector2(373.279999F, -218.335999F), new Vector2(374.936005F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(376.615997F, -218.335999F), new Vector2(378.134003F, -218.731995F), new Vector2(379.48999F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1162()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(352.112F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(353.287994F, -219.595993F), new Vector2(354.29599F, -220.328003F), new Vector2(355.135986F, -221.287994F));
+ builder.AddLine(new Vector2(353.048004F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(352.471985F, -222.740005F), new Vector2(351.782013F, -222.235992F), new Vector2(350.977997F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(350.174011F, -221.563995F), new Vector2(349.291992F, -221.395996F), new Vector2(348.332001F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(347.179993F, -221.395996F), new Vector2(346.160004F, -221.641998F), new Vector2(345.272003F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(344.384003F, -222.626007F), new Vector2(343.700012F, -223.322006F), new Vector2(343.220001F, -224.222F));
+ builder.AddCubicBezier(new Vector2(342.73999F, -225.121994F), new Vector2(342.5F, -226.171997F), new Vector2(342.5F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(342.5F, -228.548004F), new Vector2(342.727997F, -229.567993F), new Vector2(343.18399F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(343.640015F, -231.296005F), new Vector2(344.287994F, -231.968002F), new Vector2(345.127991F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(345.967987F, -232.927994F), new Vector2(346.940002F, -233.167999F), new Vector2(348.044006F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(349.100006F, -233.167999F), new Vector2(350F, -232.945999F), new Vector2(350.743988F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(351.488007F, -232.057999F), new Vector2(352.063995F, -231.434006F), new Vector2(352.471985F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(352.880005F, -229.826004F), new Vector2(353.084015F, -228.848007F), new Vector2(353.084015F, -227.695999F));
+ builder.AddLine(new Vector2(354.272003F, -228.740005F));
+ builder.AddLine(new Vector2(341.563995F, -228.740005F));
+ builder.AddLine(new Vector2(341.563995F, -226.039993F));
+ builder.AddLine(new Vector2(356F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(356.071991F, -226.376007F), new Vector2(356.119995F, -226.682007F), new Vector2(356.144012F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(356.167999F, -227.233994F), new Vector2(356.179993F, -227.492004F), new Vector2(356.179993F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(356.179993F, -229.363998F), new Vector2(355.838013F, -230.815994F), new Vector2(355.153992F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(354.470001F, -233.360001F), new Vector2(353.515991F, -234.356003F), new Vector2(352.291992F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(351.067993F, -235.796005F), new Vector2(349.675995F, -236.156006F), new Vector2(348.115997F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(346.459991F, -236.156006F), new Vector2(344.966003F, -235.766006F), new Vector2(343.634003F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(342.302002F, -234.205994F), new Vector2(341.246002F, -233.143997F), new Vector2(340.466003F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(339.686005F, -230.455994F), new Vector2(339.29599F, -228.944F), new Vector2(339.29599F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(339.29599F, -225.559998F), new Vector2(339.691986F, -224.035995F), new Vector2(340.484009F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(341.276001F, -221.348007F), new Vector2(342.350006F, -220.285995F), new Vector2(343.705994F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(345.062012F, -218.725998F), new Vector2(346.604004F, -218.335999F), new Vector2(348.332001F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(349.675995F, -218.335999F), new Vector2(350.936005F, -218.587997F), new Vector2(352.112F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1163()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(335.06601F, -219.740005F));
+ builder.AddCubicBezier(new Vector2(336.205994F, -220.675995F), new Vector2(336.776001F, -221.947998F), new Vector2(336.776001F, -223.556F));
+ builder.AddCubicBezier(new Vector2(336.776001F, -224.612F), new Vector2(336.553986F, -225.464005F), new Vector2(336.109985F, -226.112F));
+ builder.AddCubicBezier(new Vector2(335.665985F, -226.759995F), new Vector2(335.096008F, -227.276001F), new Vector2(334.399994F, -227.660004F));
+ builder.AddCubicBezier(new Vector2(333.70401F, -228.044006F), new Vector2(332.971985F, -228.350006F), new Vector2(332.20401F, -228.578003F));
+ builder.AddCubicBezier(new Vector2(331.436005F, -228.806F), new Vector2(330.697998F, -229.028F), new Vector2(329.98999F, -229.244003F));
+ builder.AddCubicBezier(new Vector2(329.282013F, -229.460007F), new Vector2(328.712006F, -229.723999F), new Vector2(328.279999F, -230.035995F));
+ builder.AddCubicBezier(new Vector2(327.847992F, -230.348007F), new Vector2(327.631989F, -230.792007F), new Vector2(327.631989F, -231.367996F));
+ builder.AddCubicBezier(new Vector2(327.631989F, -231.919998F), new Vector2(327.877991F, -232.363998F), new Vector2(328.369995F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(328.862F, -233.035995F), new Vector2(329.575989F, -233.203995F), new Vector2(330.511993F, -233.203995F));
+ builder.AddCubicBezier(new Vector2(331.399994F, -233.203995F), new Vector2(332.191986F, -233.035995F), new Vector2(332.888F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(333.584015F, -232.363998F), new Vector2(334.18399F, -231.884003F), new Vector2(334.687988F, -231.259995F));
+ builder.AddLine(new Vector2(336.776001F, -233.348007F));
+ builder.AddCubicBezier(new Vector2(336.104004F, -234.283997F), new Vector2(335.246002F, -234.985992F), new Vector2(334.201996F, -235.453995F));
+ builder.AddCubicBezier(new Vector2(333.15799F, -235.921997F), new Vector2(331.963989F, -236.156006F), new Vector2(330.619995F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(329.347992F, -236.156006F), new Vector2(328.256012F, -235.951996F), new Vector2(327.343994F, -235.544006F));
+ builder.AddCubicBezier(new Vector2(326.432007F, -235.136002F), new Vector2(325.730011F, -234.554001F), new Vector2(325.238007F, -233.798004F));
+ builder.AddCubicBezier(new Vector2(324.746002F, -233.042007F), new Vector2(324.5F, -232.147995F), new Vector2(324.5F, -231.115997F));
+ builder.AddCubicBezier(new Vector2(324.5F, -230.084F), new Vector2(324.721985F, -229.25F), new Vector2(325.165985F, -228.613998F));
+ builder.AddCubicBezier(new Vector2(325.609985F, -227.977997F), new Vector2(326.179993F, -227.479996F), new Vector2(326.876007F, -227.119995F));
+ builder.AddCubicBezier(new Vector2(327.571991F, -226.759995F), new Vector2(328.309998F, -226.472F), new Vector2(329.089996F, -226.255997F));
+ builder.AddCubicBezier(new Vector2(329.869995F, -226.039993F), new Vector2(330.608002F, -225.817993F), new Vector2(331.303986F, -225.589996F));
+ builder.AddCubicBezier(new Vector2(332F, -225.362F), new Vector2(332.570007F, -225.074005F), new Vector2(333.014008F, -224.725998F));
+ builder.AddCubicBezier(new Vector2(333.458008F, -224.378006F), new Vector2(333.679993F, -223.891998F), new Vector2(333.679993F, -223.268005F));
+ builder.AddCubicBezier(new Vector2(333.679993F, -222.643997F), new Vector2(333.403992F, -222.158005F), new Vector2(332.85199F, -221.809998F));
+ builder.AddCubicBezier(new Vector2(332.299988F, -221.462006F), new Vector2(331.519989F, -221.287994F), new Vector2(330.511993F, -221.287994F));
+ builder.AddCubicBezier(new Vector2(329.503998F, -221.287994F), new Vector2(328.59201F, -221.473999F), new Vector2(327.776001F, -221.845993F));
+ builder.AddCubicBezier(new Vector2(326.959991F, -222.218002F), new Vector2(326.23999F, -222.787994F), new Vector2(325.615997F, -223.556F));
+ builder.AddLine(new Vector2(323.528015F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(324.056F, -220.820007F), new Vector2(324.674011F, -220.261993F), new Vector2(325.381989F, -219.794006F));
+ builder.AddCubicBezier(new Vector2(326.089996F, -219.326004F), new Vector2(326.876007F, -218.966003F), new Vector2(327.73999F, -218.714005F));
+ builder.AddCubicBezier(new Vector2(328.604004F, -218.462006F), new Vector2(329.515991F, -218.335999F), new Vector2(330.476013F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(332.395996F, -218.335999F), new Vector2(333.925995F, -218.804001F), new Vector2(335.06601F, -219.740005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1164()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(320.324005F, -218.695999F));
+ builder.AddLine(new Vector2(320.324005F, -235.796005F));
+ builder.AddLine(new Vector2(317.048004F, -235.796005F));
+ builder.AddLine(new Vector2(317.048004F, -231.619995F));
+ builder.AddLine(new Vector2(317.660004F, -227.479996F));
+ builder.AddLine(new Vector2(317.048004F, -223.304001F));
+ builder.AddLine(new Vector2(317.048004F, -218.695999F));
+ builder.AddLine(new Vector2(320.324005F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(309.019989F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(308.179993F, -222.656006F), new Vector2(307.526001F, -223.345993F), new Vector2(307.058014F, -224.222F));
+ builder.AddCubicBezier(new Vector2(306.589996F, -225.098007F), new Vector2(306.355988F, -226.112F), new Vector2(306.355988F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(306.355988F, -228.391998F), new Vector2(306.589996F, -229.393997F), new Vector2(307.058014F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(307.526001F, -231.145996F), new Vector2(308.174011F, -231.835999F), new Vector2(309.002014F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(309.829987F, -232.843994F), new Vector2(310.783997F, -233.095993F), new Vector2(311.864014F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(312.944F, -233.095993F), new Vector2(313.885986F, -232.850006F), new Vector2(314.690002F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(315.493988F, -231.865997F), new Vector2(316.123993F, -231.175995F), new Vector2(316.579987F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(317.036011F, -229.399994F), new Vector2(317.264008F, -228.380005F), new Vector2(317.264008F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(317.264008F, -225.524002F), new Vector2(316.772003F, -224.126007F), new Vector2(315.787994F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(314.803986F, -221.942001F), new Vector2(313.507996F, -221.395996F), new Vector2(311.899994F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(310.820007F, -221.395996F), new Vector2(309.859985F, -221.647995F), new Vector2(309.019989F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(314.85199F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(315.884003F, -219.686005F), new Vector2(316.705994F, -220.436005F), new Vector2(317.317993F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(317.929993F, -222.356003F), new Vector2(318.272003F, -223.447998F), new Vector2(318.343994F, -224.671997F));
+ builder.AddLine(new Vector2(318.343994F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(318.272003F, -231.067993F), new Vector2(317.924011F, -232.166F), new Vector2(317.299988F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(316.675995F, -234.061996F), new Vector2(315.854004F, -234.806F), new Vector2(314.834015F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(313.813995F, -235.886002F), new Vector2(312.656006F, -236.156006F), new Vector2(311.359985F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(309.776001F, -236.156006F), new Vector2(308.354004F, -235.759995F), new Vector2(307.093994F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(305.834015F, -234.175995F), new Vector2(304.838013F, -233.108002F), new Vector2(304.105988F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(303.373993F, -230.419998F), new Vector2(303.007996F, -228.908005F), new Vector2(303.007996F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(303.007996F, -225.548004F), new Vector2(303.373993F, -224.035995F), new Vector2(304.105988F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(304.838013F, -221.348007F), new Vector2(305.834015F, -220.285995F), new Vector2(307.093994F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(308.354004F, -218.725998F), new Vector2(309.776001F, -218.335999F), new Vector2(311.359985F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(312.656006F, -218.335999F), new Vector2(313.820007F, -218.606003F), new Vector2(314.85199F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1165()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(298.309998F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(299.450012F, -219.595993F), new Vector2(300.415985F, -220.304001F), new Vector2(301.208008F, -221.216003F));
+ builder.AddLine(new Vector2(299.084015F, -223.376007F));
+ builder.AddCubicBezier(new Vector2(298.532013F, -222.751999F), new Vector2(297.877991F, -222.278F), new Vector2(297.122009F, -221.953995F));
+ builder.AddCubicBezier(new Vector2(296.365997F, -221.630005F), new Vector2(295.532013F, -221.468002F), new Vector2(294.619995F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(293.540009F, -221.468002F), new Vector2(292.579987F, -221.720001F), new Vector2(291.73999F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(290.899994F, -222.727997F), new Vector2(290.23999F, -223.412003F), new Vector2(289.76001F, -224.276001F));
+ builder.AddCubicBezier(new Vector2(289.279999F, -225.139999F), new Vector2(289.040009F, -226.136002F), new Vector2(289.040009F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(289.040009F, -228.391998F), new Vector2(289.279999F, -229.388F), new Vector2(289.76001F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(290.23999F, -231.115997F), new Vector2(290.899994F, -231.794006F), new Vector2(291.73999F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(292.579987F, -232.778F), new Vector2(293.540009F, -233.024002F), new Vector2(294.619995F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(295.507996F, -233.024002F), new Vector2(296.335999F, -232.862F), new Vector2(297.104004F, -232.537994F));
+ builder.AddCubicBezier(new Vector2(297.872009F, -232.214005F), new Vector2(298.519989F, -231.740005F), new Vector2(299.048004F, -231.115997F));
+ builder.AddLine(new Vector2(301.208008F, -233.276001F));
+ builder.AddCubicBezier(new Vector2(300.391998F, -234.212006F), new Vector2(299.420013F, -234.925995F), new Vector2(298.291992F, -235.417999F));
+ builder.AddCubicBezier(new Vector2(297.164001F, -235.910004F), new Vector2(295.940002F, -236.156006F), new Vector2(294.619995F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(292.940002F, -236.156006F), new Vector2(291.421997F, -235.766006F), new Vector2(290.06601F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(288.709991F, -234.205994F), new Vector2(287.641998F, -233.143997F), new Vector2(286.862F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(286.082001F, -230.455994F), new Vector2(285.691986F, -228.944F), new Vector2(285.691986F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(285.691986F, -225.608002F), new Vector2(286.082001F, -224.102005F), new Vector2(286.862F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(287.641998F, -221.389999F), new Vector2(288.709991F, -220.315994F), new Vector2(290.06601F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(291.421997F, -218.731995F), new Vector2(292.940002F, -218.335999F), new Vector2(294.619995F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(295.940002F, -218.335999F), new Vector2(297.170013F, -218.587997F), new Vector2(298.309998F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1166()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(262.868011F, -218.695999F));
+ builder.AddLine(new Vector2(262.868011F, -235.796005F));
+ builder.AddLine(new Vector2(259.627991F, -235.796005F));
+ builder.AddLine(new Vector2(259.627991F, -218.695999F));
+ builder.AddLine(new Vector2(262.868011F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(274.963989F, -218.695999F));
+ builder.AddLine(new Vector2(274.963989F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(274.963989F, -230.492004F), new Vector2(274.675995F, -231.602005F), new Vector2(274.100006F, -232.645996F));
+ builder.AddCubicBezier(new Vector2(273.523987F, -233.690002F), new Vector2(272.738007F, -234.535995F), new Vector2(271.742004F, -235.184006F));
+ builder.AddCubicBezier(new Vector2(270.746002F, -235.832001F), new Vector2(269.600006F, -236.156006F), new Vector2(268.303986F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(267.007996F, -236.156006F), new Vector2(265.843994F, -235.862F), new Vector2(264.812012F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(263.779999F, -234.686005F), new Vector2(262.976013F, -233.888F), new Vector2(262.399994F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(261.824005F, -231.871994F), new Vector2(261.536011F, -230.720001F), new Vector2(261.536011F, -229.423996F));
+ builder.AddLine(new Vector2(262.868011F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(262.868011F, -229.531998F), new Vector2(263.059998F, -230.300003F), new Vector2(263.444F, -230.972F));
+ builder.AddCubicBezier(new Vector2(263.828003F, -231.643997F), new Vector2(264.355988F, -232.171997F), new Vector2(265.028015F, -232.556F));
+ builder.AddCubicBezier(new Vector2(265.700012F, -232.940002F), new Vector2(266.467987F, -233.132004F), new Vector2(267.332001F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(268.627991F, -233.132004F), new Vector2(269.678009F, -232.712006F), new Vector2(270.481995F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(271.286011F, -231.031998F), new Vector2(271.687988F, -229.964005F), new Vector2(271.687988F, -228.667999F));
+ builder.AddLine(new Vector2(271.687988F, -218.695999F));
+ builder.AddLine(new Vector2(274.963989F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1167()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(254.695999F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(255.080002F, -240.205994F), new Vector2(255.272003F, -240.703995F), new Vector2(255.272003F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(255.272003F, -241.880005F), new Vector2(255.080002F, -242.365997F), new Vector2(254.695999F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(254.311996F, -243.158005F), new Vector2(253.820007F, -243.356003F), new Vector2(253.220001F, -243.356003F));
+ builder.AddCubicBezier(new Vector2(252.619995F, -243.356003F), new Vector2(252.128006F, -243.158005F), new Vector2(251.744003F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(251.360001F, -242.365997F), new Vector2(251.167999F, -241.880005F), new Vector2(251.167999F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(251.167999F, -240.703995F), new Vector2(251.360001F, -240.205994F), new Vector2(251.744003F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(252.128006F, -239.414001F), new Vector2(252.619995F, -239.216003F), new Vector2(253.220001F, -239.216003F));
+ builder.AddCubicBezier(new Vector2(253.820007F, -239.216003F), new Vector2(254.311996F, -239.414001F), new Vector2(254.695999F, -239.809998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(254.839996F, -218.695999F));
+ builder.AddLine(new Vector2(254.839996F, -235.796005F));
+ builder.AddLine(new Vector2(251.563995F, -235.796005F));
+ builder.AddLine(new Vector2(251.563995F, -218.695999F));
+ builder.AddLine(new Vector2(254.839996F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1168()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(239.395996F, -244.399994F));
+ builder.AddLine(new Vector2(236.119995F, -244.399994F));
+ builder.AddLine(new Vector2(236.119995F, -231.619995F));
+ builder.AddLine(new Vector2(236.731995F, -227.479996F));
+ builder.AddLine(new Vector2(236.119995F, -223.304001F));
+ builder.AddLine(new Vector2(236.119995F, -218.695999F));
+ builder.AddLine(new Vector2(239.395996F, -218.695999F));
+ builder.AddLine(new Vector2(239.395996F, -244.399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(228.074005F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(227.246002F, -222.626007F), new Vector2(226.598007F, -223.315994F), new Vector2(226.130005F, -224.203995F));
+ builder.AddCubicBezier(new Vector2(225.662003F, -225.091995F), new Vector2(225.427994F, -226.112F), new Vector2(225.427994F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(225.427994F, -228.416F), new Vector2(225.662003F, -229.429993F), new Vector2(226.130005F, -230.306F));
+ builder.AddCubicBezier(new Vector2(226.598007F, -231.182007F), new Vector2(227.240005F, -231.865997F), new Vector2(228.056F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(228.871994F, -232.850006F), new Vector2(229.820007F, -233.095993F), new Vector2(230.899994F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(231.979996F, -233.095993F), new Vector2(232.927994F, -232.843994F), new Vector2(233.744003F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(234.559998F, -231.835999F), new Vector2(235.195999F, -231.145996F), new Vector2(235.651993F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(236.108002F, -229.393997F), new Vector2(236.335999F, -228.380005F), new Vector2(236.335999F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(236.335999F, -226.100006F), new Vector2(236.108002F, -225.098007F), new Vector2(235.651993F, -224.222F));
+ builder.AddCubicBezier(new Vector2(235.195999F, -223.345993F), new Vector2(234.559998F, -222.656006F), new Vector2(233.744003F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(232.927994F, -221.647995F), new Vector2(231.979996F, -221.395996F), new Vector2(230.899994F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(229.843994F, -221.395996F), new Vector2(228.901993F, -221.641998F), new Vector2(228.074005F, -222.134003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(233.888F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(234.919998F, -219.686005F), new Vector2(235.748001F, -220.436005F), new Vector2(236.371994F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(236.996002F, -222.356003F), new Vector2(237.343994F, -223.447998F), new Vector2(237.416F, -224.671997F));
+ builder.AddLine(new Vector2(237.416F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(237.343994F, -231.067993F), new Vector2(236.990005F, -232.166F), new Vector2(236.354004F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(235.718002F, -234.061996F), new Vector2(234.884003F, -234.806F), new Vector2(233.852005F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(232.820007F, -235.886002F), new Vector2(231.656006F, -236.156006F), new Vector2(230.360001F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(228.800003F, -236.156006F), new Vector2(227.395996F, -235.759995F), new Vector2(226.147995F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(224.899994F, -234.175995F), new Vector2(223.910004F, -233.108002F), new Vector2(223.177994F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(222.445999F, -230.419998F), new Vector2(222.080002F, -228.908005F), new Vector2(222.080002F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(222.080002F, -225.548004F), new Vector2(222.445999F, -224.035995F), new Vector2(223.177994F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(223.910004F, -221.348007F), new Vector2(224.899994F, -220.285995F), new Vector2(226.147995F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(227.395996F, -218.725998F), new Vector2(228.800003F, -218.335999F), new Vector2(230.360001F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(231.679993F, -218.335999F), new Vector2(232.856003F, -218.606003F), new Vector2(233.888F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1169()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(215.563995F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(216.740005F, -219.595993F), new Vector2(217.748001F, -220.328003F), new Vector2(218.587997F, -221.287994F));
+ builder.AddLine(new Vector2(216.5F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(215.923996F, -222.740005F), new Vector2(215.233994F, -222.235992F), new Vector2(214.429993F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(213.626007F, -221.563995F), new Vector2(212.744003F, -221.395996F), new Vector2(211.783997F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(210.632004F, -221.395996F), new Vector2(209.612F, -221.641998F), new Vector2(208.723999F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(207.835999F, -222.626007F), new Vector2(207.151993F, -223.322006F), new Vector2(206.671997F, -224.222F));
+ builder.AddCubicBezier(new Vector2(206.192001F, -225.121994F), new Vector2(205.951996F, -226.171997F), new Vector2(205.951996F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(205.951996F, -228.548004F), new Vector2(206.179993F, -229.567993F), new Vector2(206.636002F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(207.091995F, -231.296005F), new Vector2(207.740005F, -231.968002F), new Vector2(208.580002F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(209.419998F, -232.927994F), new Vector2(210.391998F, -233.167999F), new Vector2(211.496002F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(212.552002F, -233.167999F), new Vector2(213.451996F, -232.945999F), new Vector2(214.195999F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(214.940002F, -232.057999F), new Vector2(215.516006F, -231.434006F), new Vector2(215.923996F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(216.332001F, -229.826004F), new Vector2(216.535995F, -228.848007F), new Vector2(216.535995F, -227.695999F));
+ builder.AddLine(new Vector2(217.723999F, -228.740005F));
+ builder.AddLine(new Vector2(205.016006F, -228.740005F));
+ builder.AddLine(new Vector2(205.016006F, -226.039993F));
+ builder.AddLine(new Vector2(219.451996F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(219.524002F, -226.376007F), new Vector2(219.572006F, -226.682007F), new Vector2(219.595993F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(219.619995F, -227.233994F), new Vector2(219.632004F, -227.492004F), new Vector2(219.632004F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(219.632004F, -229.363998F), new Vector2(219.289993F, -230.815994F), new Vector2(218.606003F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(217.921997F, -233.360001F), new Vector2(216.968002F, -234.356003F), new Vector2(215.744003F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(214.520004F, -235.796005F), new Vector2(213.128006F, -236.156006F), new Vector2(211.567993F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(209.912003F, -236.156006F), new Vector2(208.417999F, -235.766006F), new Vector2(207.085999F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(205.753998F, -234.205994F), new Vector2(204.697998F, -233.143997F), new Vector2(203.917999F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(203.138F, -230.455994F), new Vector2(202.748001F, -228.944F), new Vector2(202.748001F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(202.748001F, -225.559998F), new Vector2(203.143997F, -224.035995F), new Vector2(203.936005F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(204.727997F, -221.348007F), new Vector2(205.802002F, -220.285995F), new Vector2(207.158005F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(208.514008F, -218.725998F), new Vector2(210.056F, -218.335999F), new Vector2(211.783997F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(213.128006F, -218.335999F), new Vector2(214.388F, -218.587997F), new Vector2(215.563995F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1170()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(190.615997F, -211.531998F));
+ builder.AddLine(new Vector2(193.856003F, -218.552002F));
+ builder.AddLine(new Vector2(192.020004F, -221.863998F));
+ builder.AddLine(new Vector2(187.016006F, -211.531998F));
+ builder.AddLine(new Vector2(190.615997F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(193.856003F, -218.552002F));
+ builder.AddLine(new Vector2(201.848007F, -235.796005F));
+ builder.AddLine(new Vector2(198.248001F, -235.796005F));
+ builder.AddLine(new Vector2(192.451996F, -222.296005F));
+ builder.AddLine(new Vector2(193.604004F, -222.296005F));
+ builder.AddLine(new Vector2(188.095993F, -235.796005F));
+ builder.AddLine(new Vector2(184.496002F, -235.796005F));
+ builder.AddLine(new Vector2(191.912003F, -218.552002F));
+ builder.AddLine(new Vector2(193.856003F, -218.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1171()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(171.535995F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(170.695999F, -222.727997F), new Vector2(170.035995F, -223.417999F), new Vector2(169.556F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(169.076004F, -225.169998F), new Vector2(168.835999F, -226.171997F), new Vector2(168.835999F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(168.835999F, -228.404007F), new Vector2(169.076004F, -229.388F), new Vector2(169.556F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(170.035995F, -231.115997F), new Vector2(170.695999F, -231.794006F), new Vector2(171.535995F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(172.376007F, -232.778F), new Vector2(173.324005F, -233.024002F), new Vector2(174.380005F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(175.483994F, -233.024002F), new Vector2(176.449997F, -232.778F), new Vector2(177.278F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(178.106003F, -231.794006F), new Vector2(178.766006F, -231.115997F), new Vector2(179.257996F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(179.75F, -229.388F), new Vector2(179.996002F, -228.404007F), new Vector2(179.996002F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(179.996002F, -226.171997F), new Vector2(179.755997F, -225.169998F), new Vector2(179.276001F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(178.796005F, -223.417999F), new Vector2(178.136002F, -222.727997F), new Vector2(177.296005F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(176.455994F, -221.720001F), new Vector2(175.483994F, -221.468002F), new Vector2(174.380005F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(173.324005F, -221.468002F), new Vector2(172.376007F, -221.720001F), new Vector2(171.535995F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(178.934006F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(180.289993F, -220.315994F), new Vector2(181.363998F, -221.389999F), new Vector2(182.156006F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(182.947998F, -224.102005F), new Vector2(183.343994F, -225.619995F), new Vector2(183.343994F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(183.343994F, -228.955994F), new Vector2(182.947998F, -230.455994F), new Vector2(182.156006F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(181.363998F, -233.143997F), new Vector2(180.289993F, -234.205994F), new Vector2(178.934006F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(177.578003F, -235.766006F), new Vector2(176.059998F, -236.156006F), new Vector2(174.380005F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(172.723999F, -236.156006F), new Vector2(171.223999F, -235.759995F), new Vector2(169.880005F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(168.535995F, -234.175995F), new Vector2(167.468002F, -233.113998F), new Vector2(166.675995F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(165.884003F, -230.449997F), new Vector2(165.488007F, -228.955994F), new Vector2(165.488007F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(165.488007F, -225.619995F), new Vector2(165.884003F, -224.102005F), new Vector2(166.675995F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(167.468002F, -221.389999F), new Vector2(168.535995F, -220.315994F), new Vector2(169.880005F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(171.223999F, -218.731995F), new Vector2(172.723999F, -218.335999F), new Vector2(174.380005F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(176.059998F, -218.335999F), new Vector2(177.578003F, -218.731995F), new Vector2(178.934006F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1172()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(161.852005F, -218.695999F));
+ builder.AddLine(new Vector2(161.852005F, -244.399994F));
+ builder.AddLine(new Vector2(158.612F, -244.399994F));
+ builder.AddLine(new Vector2(158.612F, -218.695999F));
+ builder.AddLine(new Vector2(161.852005F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1173()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(143.294006F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(142.466003F, -222.656006F), new Vector2(141.830002F, -223.345993F), new Vector2(141.386002F, -224.222F));
+ builder.AddCubicBezier(new Vector2(140.942001F, -225.098007F), new Vector2(140.720001F, -226.100006F), new Vector2(140.720001F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(140.720001F, -228.380005F), new Vector2(140.947998F, -229.393997F), new Vector2(141.404007F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(141.860001F, -231.145996F), new Vector2(142.496002F, -231.835999F), new Vector2(143.311996F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(144.128006F, -232.843994F), new Vector2(145.063995F, -233.095993F), new Vector2(146.119995F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(147.199997F, -233.095993F), new Vector2(148.147995F, -232.843994F), new Vector2(148.964005F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(149.779999F, -231.835999F), new Vector2(150.421997F, -231.145996F), new Vector2(150.889999F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(151.358002F, -229.393997F), new Vector2(151.591995F, -228.391998F), new Vector2(151.591995F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(151.591995F, -226.112F), new Vector2(151.358002F, -225.098007F), new Vector2(150.889999F, -224.222F));
+ builder.AddCubicBezier(new Vector2(150.421997F, -223.345993F), new Vector2(149.779999F, -222.656006F), new Vector2(148.964005F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(148.147995F, -221.647995F), new Vector2(147.199997F, -221.395996F), new Vector2(146.119995F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(145.063995F, -221.395996F), new Vector2(144.121994F, -221.647995F), new Vector2(143.294006F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(140.899994F, -211.531998F));
+ builder.AddLine(new Vector2(140.899994F, -222.979996F));
+ builder.AddLine(new Vector2(140.287994F, -227.156006F));
+ builder.AddLine(new Vector2(140.899994F, -231.296005F));
+ builder.AddLine(new Vector2(140.899994F, -235.796005F));
+ builder.AddLine(new Vector2(137.660004F, -235.796005F));
+ builder.AddLine(new Vector2(137.660004F, -211.531998F));
+ builder.AddLine(new Vector2(140.899994F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(150.889999F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(152.149994F, -220.285995F), new Vector2(153.139999F, -221.348007F), new Vector2(153.860001F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(154.580002F, -224.035995F), new Vector2(154.940002F, -225.548004F), new Vector2(154.940002F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(154.940002F, -228.908005F), new Vector2(154.580002F, -230.419998F), new Vector2(153.860001F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(153.139999F, -233.108002F), new Vector2(152.149994F, -234.175995F), new Vector2(150.889999F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(149.630005F, -235.759995F), new Vector2(148.220001F, -236.156006F), new Vector2(146.660004F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(145.388F, -236.156006F), new Vector2(144.229996F, -235.886002F), new Vector2(143.186005F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(142.141998F, -234.806F), new Vector2(141.302002F, -234.061996F), new Vector2(140.666F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(140.029999F, -232.166F), new Vector2(139.675995F, -231.067993F), new Vector2(139.604004F, -229.820007F));
+ builder.AddLine(new Vector2(139.604004F, -224.671997F));
+ builder.AddCubicBezier(new Vector2(139.675995F, -223.447998F), new Vector2(140.024002F, -222.356003F), new Vector2(140.647995F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(141.272003F, -220.436005F), new Vector2(142.106003F, -219.686005F), new Vector2(143.149994F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(144.194F, -218.606003F), new Vector2(145.363998F, -218.335999F), new Vector2(146.660004F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(148.220001F, -218.335999F), new Vector2(149.630005F, -218.725998F), new Vector2(150.889999F, -219.505997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1174()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(130.063995F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(131.240005F, -219.595993F), new Vector2(132.248001F, -220.328003F), new Vector2(133.087997F, -221.287994F));
+ builder.AddLine(new Vector2(131F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(130.423996F, -222.740005F), new Vector2(129.733994F, -222.235992F), new Vector2(128.929993F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(128.126007F, -221.563995F), new Vector2(127.244003F, -221.395996F), new Vector2(126.283997F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(125.132004F, -221.395996F), new Vector2(124.112F, -221.641998F), new Vector2(123.223999F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(122.335999F, -222.626007F), new Vector2(121.652F, -223.322006F), new Vector2(121.171997F, -224.222F));
+ builder.AddCubicBezier(new Vector2(120.692001F, -225.121994F), new Vector2(120.452003F, -226.171997F), new Vector2(120.452003F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(120.452003F, -228.548004F), new Vector2(120.68F, -229.567993F), new Vector2(121.136002F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(121.592003F, -231.296005F), new Vector2(122.239998F, -231.968002F), new Vector2(123.080002F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(123.919998F, -232.927994F), new Vector2(124.891998F, -233.167999F), new Vector2(125.996002F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(127.052002F, -233.167999F), new Vector2(127.952003F, -232.945999F), new Vector2(128.695999F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(129.440002F, -232.057999F), new Vector2(130.016006F, -231.434006F), new Vector2(130.423996F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(130.832001F, -229.826004F), new Vector2(131.035995F, -228.848007F), new Vector2(131.035995F, -227.695999F));
+ builder.AddLine(new Vector2(132.223999F, -228.740005F));
+ builder.AddLine(new Vector2(119.515999F, -228.740005F));
+ builder.AddLine(new Vector2(119.515999F, -226.039993F));
+ builder.AddLine(new Vector2(133.951996F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(134.024002F, -226.376007F), new Vector2(134.072006F, -226.682007F), new Vector2(134.095993F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(134.119995F, -227.233994F), new Vector2(134.132004F, -227.492004F), new Vector2(134.132004F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(134.132004F, -229.363998F), new Vector2(133.789993F, -230.815994F), new Vector2(133.106003F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(132.421997F, -233.360001F), new Vector2(131.468002F, -234.356003F), new Vector2(130.244003F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(129.020004F, -235.796005F), new Vector2(127.627998F, -236.156006F), new Vector2(126.068001F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(124.412003F, -236.156006F), new Vector2(122.917999F, -235.766006F), new Vector2(121.585999F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(120.253998F, -234.205994F), new Vector2(119.197998F, -233.143997F), new Vector2(118.417999F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(117.638F, -230.455994F), new Vector2(117.248001F, -228.944F), new Vector2(117.248001F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(117.248001F, -225.559998F), new Vector2(117.643997F, -224.035995F), new Vector2(118.435997F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(119.227997F, -221.348007F), new Vector2(120.302002F, -220.285995F), new Vector2(121.657997F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(123.014F, -218.725998F), new Vector2(124.556F, -218.335999F), new Vector2(126.283997F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(127.627998F, -218.335999F), new Vector2(128.888F, -218.587997F), new Vector2(130.063995F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1175()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(113.648003F, -244.399994F));
+ builder.AddLine(new Vector2(110.372002F, -244.399994F));
+ builder.AddLine(new Vector2(110.372002F, -231.619995F));
+ builder.AddLine(new Vector2(110.984001F, -227.479996F));
+ builder.AddLine(new Vector2(110.372002F, -223.304001F));
+ builder.AddLine(new Vector2(110.372002F, -218.695999F));
+ builder.AddLine(new Vector2(113.648003F, -218.695999F));
+ builder.AddLine(new Vector2(113.648003F, -244.399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(102.325996F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(101.498001F, -222.626007F), new Vector2(100.849998F, -223.315994F), new Vector2(100.382004F, -224.203995F));
+ builder.AddCubicBezier(new Vector2(99.9140015F, -225.091995F), new Vector2(99.6800003F, -226.112F), new Vector2(99.6800003F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(99.6800003F, -228.416F), new Vector2(99.9140015F, -229.429993F), new Vector2(100.382004F, -230.306F));
+ builder.AddCubicBezier(new Vector2(100.849998F, -231.182007F), new Vector2(101.491997F, -231.865997F), new Vector2(102.307999F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(103.124001F, -232.850006F), new Vector2(104.071999F, -233.095993F), new Vector2(105.152F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(106.232002F, -233.095993F), new Vector2(107.18F, -232.843994F), new Vector2(107.996002F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(108.811996F, -231.835999F), new Vector2(109.447998F, -231.145996F), new Vector2(109.903999F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(110.360001F, -229.393997F), new Vector2(110.587997F, -228.380005F), new Vector2(110.587997F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(110.587997F, -226.100006F), new Vector2(110.360001F, -225.098007F), new Vector2(109.903999F, -224.222F));
+ builder.AddCubicBezier(new Vector2(109.447998F, -223.345993F), new Vector2(108.811996F, -222.656006F), new Vector2(107.996002F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(107.18F, -221.647995F), new Vector2(106.232002F, -221.395996F), new Vector2(105.152F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(104.096001F, -221.395996F), new Vector2(103.153999F, -221.641998F), new Vector2(102.325996F, -222.134003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(108.139999F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(109.171997F, -219.686005F), new Vector2(110F, -220.436005F), new Vector2(110.624001F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(111.248001F, -222.356003F), new Vector2(111.596001F, -223.447998F), new Vector2(111.667999F, -224.671997F));
+ builder.AddLine(new Vector2(111.667999F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(111.596001F, -231.067993F), new Vector2(111.241997F, -232.166F), new Vector2(110.606003F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(109.970001F, -234.061996F), new Vector2(109.136002F, -234.806F), new Vector2(108.103996F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(107.071999F, -235.886002F), new Vector2(105.907997F, -236.156006F), new Vector2(104.612F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(103.052002F, -236.156006F), new Vector2(101.648003F, -235.759995F), new Vector2(100.400002F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(99.1520004F, -234.175995F), new Vector2(98.1620026F, -233.108002F), new Vector2(97.4300003F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(96.697998F, -230.419998F), new Vector2(96.3320007F, -228.908005F), new Vector2(96.3320007F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(96.3320007F, -225.548004F), new Vector2(96.697998F, -224.035995F), new Vector2(97.4300003F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(98.1620026F, -221.348007F), new Vector2(99.1520004F, -220.285995F), new Vector2(100.400002F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(101.648003F, -218.725998F), new Vector2(103.052002F, -218.335999F), new Vector2(104.612F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(105.931999F, -218.335999F), new Vector2(107.108002F, -218.606003F), new Vector2(108.139999F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1176()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(73.4720001F, -218.695999F));
+ builder.AddLine(new Vector2(73.4720001F, -235.796005F));
+ builder.AddLine(new Vector2(70.2320023F, -235.796005F));
+ builder.AddLine(new Vector2(70.2320023F, -218.695999F));
+ builder.AddLine(new Vector2(73.4720001F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(85.5680008F, -218.695999F));
+ builder.AddLine(new Vector2(85.5680008F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(85.5680008F, -230.492004F), new Vector2(85.2799988F, -231.602005F), new Vector2(84.7040024F, -232.645996F));
+ builder.AddCubicBezier(new Vector2(84.1279984F, -233.690002F), new Vector2(83.3420029F, -234.535995F), new Vector2(82.3460007F, -235.184006F));
+ builder.AddCubicBezier(new Vector2(81.3499985F, -235.832001F), new Vector2(80.2040024F, -236.156006F), new Vector2(78.9079971F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(77.6119995F, -236.156006F), new Vector2(76.447998F, -235.862F), new Vector2(75.4160004F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(74.3840027F, -234.686005F), new Vector2(73.5800018F, -233.888F), new Vector2(73.0039978F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(72.4280014F, -231.871994F), new Vector2(72.1399994F, -230.720001F), new Vector2(72.1399994F, -229.423996F));
+ builder.AddLine(new Vector2(73.4720001F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(73.4720001F, -229.531998F), new Vector2(73.6640015F, -230.300003F), new Vector2(74.0479965F, -230.972F));
+ builder.AddCubicBezier(new Vector2(74.4319992F, -231.643997F), new Vector2(74.9599991F, -232.171997F), new Vector2(75.6320038F, -232.556F));
+ builder.AddCubicBezier(new Vector2(76.3040009F, -232.940002F), new Vector2(77.0719986F, -233.132004F), new Vector2(77.935997F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(79.2320023F, -233.132004F), new Vector2(80.2819977F, -232.712006F), new Vector2(81.0859985F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(81.8899994F, -231.031998F), new Vector2(82.2919998F, -229.964005F), new Vector2(82.2919998F, -228.667999F));
+ builder.AddLine(new Vector2(82.2919998F, -218.695999F));
+ builder.AddLine(new Vector2(85.5680008F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1177()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(62.6360016F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(63.8120003F, -219.595993F), new Vector2(64.8199997F, -220.328003F), new Vector2(65.6600037F, -221.287994F));
+ builder.AddLine(new Vector2(63.5719986F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(62.9959984F, -222.740005F), new Vector2(62.3059998F, -222.235992F), new Vector2(61.5019989F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(60.6980019F, -221.563995F), new Vector2(59.8160019F, -221.395996F), new Vector2(58.855999F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(57.7039986F, -221.395996F), new Vector2(56.6839981F, -221.641998F), new Vector2(55.7960014F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(54.9080009F, -222.626007F), new Vector2(54.223999F, -223.322006F), new Vector2(53.7439995F, -224.222F));
+ builder.AddCubicBezier(new Vector2(53.2639999F, -225.121994F), new Vector2(53.0239983F, -226.171997F), new Vector2(53.0239983F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(53.0239983F, -228.548004F), new Vector2(53.2519989F, -229.567993F), new Vector2(53.7080002F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(54.1640015F, -231.296005F), new Vector2(54.8120003F, -231.968002F), new Vector2(55.6520004F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(56.4920006F, -232.927994F), new Vector2(57.4640007F, -233.167999F), new Vector2(58.5680008F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(59.6240005F, -233.167999F), new Vector2(60.5239983F, -232.945999F), new Vector2(61.2680016F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(62.012001F, -232.057999F), new Vector2(62.5880013F, -231.434006F), new Vector2(62.9959984F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(63.4039993F, -229.826004F), new Vector2(63.6080017F, -228.848007F), new Vector2(63.6080017F, -227.695999F));
+ builder.AddLine(new Vector2(64.7959976F, -228.740005F));
+ builder.AddLine(new Vector2(52.0880013F, -228.740005F));
+ builder.AddLine(new Vector2(52.0880013F, -226.039993F));
+ builder.AddLine(new Vector2(66.5240021F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(66.5960007F, -226.376007F), new Vector2(66.6439972F, -226.682007F), new Vector2(66.6679993F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(66.6920013F, -227.233994F), new Vector2(66.7040024F, -227.492004F), new Vector2(66.7040024F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(66.7040024F, -229.363998F), new Vector2(66.3619995F, -230.815994F), new Vector2(65.6780014F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(64.9940033F, -233.360001F), new Vector2(64.0400009F, -234.356003F), new Vector2(62.8160019F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(61.5919991F, -235.796005F), new Vector2(60.2000008F, -236.156006F), new Vector2(58.6399994F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(56.9840012F, -236.156006F), new Vector2(55.4900017F, -235.766006F), new Vector2(54.1580009F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(52.8260002F, -234.205994F), new Vector2(51.7700005F, -233.143997F), new Vector2(50.9900017F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(50.2099991F, -230.455994F), new Vector2(49.8199997F, -228.944F), new Vector2(49.8199997F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(49.8199997F, -225.559998F), new Vector2(50.2159996F, -224.035995F), new Vector2(51.0079994F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(51.7999992F, -221.348007F), new Vector2(52.8740005F, -220.285995F), new Vector2(54.2299995F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(55.5859985F, -218.725998F), new Vector2(57.1279984F, -218.335999F), new Vector2(58.855999F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(60.2000008F, -218.335999F), new Vector2(61.4599991F, -218.587997F), new Vector2(62.6360016F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1178()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(43.3400002F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(44.5159988F, -219.595993F), new Vector2(45.5239983F, -220.328003F), new Vector2(46.3639984F, -221.287994F));
+ builder.AddLine(new Vector2(44.276001F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(43.7000008F, -222.740005F), new Vector2(43.0099983F, -222.235992F), new Vector2(42.2060013F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(41.4020004F, -221.563995F), new Vector2(40.5200005F, -221.395996F), new Vector2(39.5600014F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(38.4080009F, -221.395996F), new Vector2(37.3880005F, -221.641998F), new Vector2(36.5F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(35.6119995F, -222.626007F), new Vector2(34.9280014F, -223.322006F), new Vector2(34.4480019F, -224.222F));
+ builder.AddCubicBezier(new Vector2(33.9679985F, -225.121994F), new Vector2(33.7280006F, -226.171997F), new Vector2(33.7280006F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(33.7280006F, -228.548004F), new Vector2(33.9560013F, -229.567993F), new Vector2(34.4119987F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(34.868F, -231.296005F), new Vector2(35.5159988F, -231.968002F), new Vector2(36.355999F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(37.1959991F, -232.927994F), new Vector2(38.1679993F, -233.167999F), new Vector2(39.2719994F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(40.3279991F, -233.167999F), new Vector2(41.2280006F, -232.945999F), new Vector2(41.9720001F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(42.7159996F, -232.057999F), new Vector2(43.2919998F, -231.434006F), new Vector2(43.7000008F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(44.1080017F, -229.826004F), new Vector2(44.3120003F, -228.848007F), new Vector2(44.3120003F, -227.695999F));
+ builder.AddLine(new Vector2(45.5F, -228.740005F));
+ builder.AddLine(new Vector2(32.7919998F, -228.740005F));
+ builder.AddLine(new Vector2(32.7919998F, -226.039993F));
+ builder.AddLine(new Vector2(47.2280006F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(47.2999992F, -226.376007F), new Vector2(47.3479996F, -226.682007F), new Vector2(47.3720016F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(47.3959999F, -227.233994F), new Vector2(47.4080009F, -227.492004F), new Vector2(47.4080009F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(47.4080009F, -229.363998F), new Vector2(47.0660019F, -230.815994F), new Vector2(46.382F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(45.6980019F, -233.360001F), new Vector2(44.7439995F, -234.356003F), new Vector2(43.5200005F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(42.2960014F, -235.796005F), new Vector2(40.9039993F, -236.156006F), new Vector2(39.3440018F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(37.6879997F, -236.156006F), new Vector2(36.1940002F, -235.766006F), new Vector2(34.8619995F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(33.5299988F, -234.205994F), new Vector2(32.473999F, -233.143997F), new Vector2(31.6940002F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(30.9139996F, -230.455994F), new Vector2(30.5240002F, -228.944F), new Vector2(30.5240002F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(30.5240002F, -225.559998F), new Vector2(30.9200001F, -224.035995F), new Vector2(31.7119999F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(32.5040016F, -221.348007F), new Vector2(33.5779991F, -220.285995F), new Vector2(34.9339981F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(36.2900009F, -218.725998F), new Vector2(37.8320007F, -218.335999F), new Vector2(39.5600014F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(40.9039993F, -218.335999F), new Vector2(42.1640015F, -218.587997F), new Vector2(43.3400002F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1179()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(16.3220005F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(15.4940004F, -222.656006F), new Vector2(14.8579998F, -223.345993F), new Vector2(14.4139996F, -224.222F));
+ builder.AddCubicBezier(new Vector2(13.9700003F, -225.098007F), new Vector2(13.7480001F, -226.100006F), new Vector2(13.7480001F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(13.7480001F, -228.380005F), new Vector2(13.9759998F, -229.393997F), new Vector2(14.4320002F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(14.8879995F, -231.145996F), new Vector2(15.5240002F, -231.835999F), new Vector2(16.3400002F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(17.1560001F, -232.843994F), new Vector2(18.0919991F, -233.095993F), new Vector2(19.1480007F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(20.2280006F, -233.095993F), new Vector2(21.1760006F, -232.843994F), new Vector2(21.9920006F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(22.8080006F, -231.835999F), new Vector2(23.4500008F, -231.145996F), new Vector2(23.9179993F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(24.3859997F, -229.393997F), new Vector2(24.6200008F, -228.391998F), new Vector2(24.6200008F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(24.6200008F, -226.112F), new Vector2(24.3859997F, -225.098007F), new Vector2(23.9179993F, -224.222F));
+ builder.AddCubicBezier(new Vector2(23.4500008F, -223.345993F), new Vector2(22.8080006F, -222.656006F), new Vector2(21.9920006F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(21.1760006F, -221.647995F), new Vector2(20.2280006F, -221.395996F), new Vector2(19.1480007F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(18.0919991F, -221.395996F), new Vector2(17.1499996F, -221.647995F), new Vector2(16.3220005F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(13.9280005F, -218.695999F));
+ builder.AddLine(new Vector2(13.9280005F, -223.304001F));
+ builder.AddLine(new Vector2(13.316F, -227.479996F));
+ builder.AddLine(new Vector2(13.9280005F, -231.619995F));
+ builder.AddLine(new Vector2(13.9280005F, -244.399994F));
+ builder.AddLine(new Vector2(10.6879997F, -244.399994F));
+ builder.AddLine(new Vector2(10.6879997F, -218.695999F));
+ builder.AddLine(new Vector2(13.9280005F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(23.9179993F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(25.1779995F, -220.285995F), new Vector2(26.1679993F, -221.348007F), new Vector2(26.8880005F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(27.6079998F, -224.035995F), new Vector2(27.9680004F, -225.548004F), new Vector2(27.9680004F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(27.9680004F, -228.908005F), new Vector2(27.6079998F, -230.419998F), new Vector2(26.8880005F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(26.1679993F, -233.108002F), new Vector2(25.1779995F, -234.175995F), new Vector2(23.9179993F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(22.6580009F, -235.759995F), new Vector2(21.2479992F, -236.156006F), new Vector2(19.6879997F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(18.4160004F, -236.156006F), new Vector2(17.2579994F, -235.886002F), new Vector2(16.2140007F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(15.1700001F, -234.806F), new Vector2(14.3299999F, -234.061996F), new Vector2(13.6940002F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(13.0579996F, -232.166F), new Vector2(12.7040005F, -231.067993F), new Vector2(12.632F, -229.820007F));
+ builder.AddLine(new Vector2(12.632F, -224.671997F));
+ builder.AddCubicBezier(new Vector2(12.7040005F, -223.447998F), new Vector2(13.052F, -222.356003F), new Vector2(13.6759996F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(14.3000002F, -220.436005F), new Vector2(15.1339998F, -219.686005F), new Vector2(16.1779995F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(17.2220001F, -218.606003F), new Vector2(18.3920002F, -218.335999F), new Vector2(19.6879997F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(21.2479992F, -218.335999F), new Vector2(22.6580009F, -218.725998F), new Vector2(23.9179993F, -219.505997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1180()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-4.36000013F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-3.18400002F, -219.595993F), new Vector2(-2.17600012F, -220.328003F), new Vector2(-1.33599997F, -221.287994F));
+ builder.AddLine(new Vector2(-3.42400002F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(-4F, -222.740005F), new Vector2(-4.69000006F, -222.235992F), new Vector2(-5.49399996F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(-6.29799986F, -221.563995F), new Vector2(-7.17999983F, -221.395996F), new Vector2(-8.14000034F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-9.29199982F, -221.395996F), new Vector2(-10.3120003F, -221.641998F), new Vector2(-11.1999998F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-12.0880003F, -222.626007F), new Vector2(-12.7720003F, -223.322006F), new Vector2(-13.2519999F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-13.7320004F, -225.121994F), new Vector2(-13.9720001F, -226.171997F), new Vector2(-13.9720001F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(-13.9720001F, -228.548004F), new Vector2(-13.7440004F, -229.567993F), new Vector2(-13.2880001F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(-12.8319998F, -231.296005F), new Vector2(-12.184F, -231.968002F), new Vector2(-11.3439999F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(-10.5039997F, -232.927994F), new Vector2(-9.53199959F, -233.167999F), new Vector2(-8.42800045F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(-7.37200022F, -233.167999F), new Vector2(-6.47200012F, -232.945999F), new Vector2(-5.72800016F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(-4.98400021F, -232.057999F), new Vector2(-4.40799999F, -231.434006F), new Vector2(-4F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(-3.59200001F, -229.826004F), new Vector2(-3.38800001F, -228.848007F), new Vector2(-3.38800001F, -227.695999F));
+ builder.AddLine(new Vector2(-2.20000005F, -228.740005F));
+ builder.AddLine(new Vector2(-14.908F, -228.740005F));
+ builder.AddLine(new Vector2(-14.908F, -226.039993F));
+ builder.AddLine(new Vector2(-0.472000003F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(-0.400000006F, -226.376007F), new Vector2(-0.351999998F, -226.682007F), new Vector2(-0.328000009F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(-0.30399999F, -227.233994F), new Vector2(-0.291999996F, -227.492004F), new Vector2(-0.291999996F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(-0.291999996F, -229.363998F), new Vector2(-0.634000003F, -230.815994F), new Vector2(-1.31799996F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(-2.00200009F, -233.360001F), new Vector2(-2.95600009F, -234.356003F), new Vector2(-4.17999983F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(-5.40399981F, -235.796005F), new Vector2(-6.796F, -236.156006F), new Vector2(-8.35599995F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-10.0120001F, -236.156006F), new Vector2(-11.5059996F, -235.766006F), new Vector2(-12.8380003F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-14.1700001F, -234.205994F), new Vector2(-15.2259998F, -233.143997F), new Vector2(-16.0060005F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-16.7859993F, -230.455994F), new Vector2(-17.1760006F, -228.944F), new Vector2(-17.1760006F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-17.1760006F, -225.559998F), new Vector2(-16.7800007F, -224.035995F), new Vector2(-15.9879999F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-15.1960001F, -221.348007F), new Vector2(-14.1219997F, -220.285995F), new Vector2(-12.7659998F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-11.4099998F, -218.725998F), new Vector2(-9.86800003F, -218.335999F), new Vector2(-8.14000034F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-6.796F, -218.335999F), new Vector2(-5.53599977F, -218.587997F), new Vector2(-4.36000013F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1181()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-26.0319996F, -218.695999F));
+ builder.AddLine(new Vector2(-18.184F, -235.796005F));
+ builder.AddLine(new Vector2(-21.6399994F, -235.796005F));
+ builder.AddLine(new Vector2(-27.9759998F, -221.360001F));
+ builder.AddLine(new Vector2(-25.8880005F, -221.360001F));
+ builder.AddLine(new Vector2(-32.1879997F, -235.796005F));
+ builder.AddLine(new Vector2(-35.7879982F, -235.796005F));
+ builder.AddLine(new Vector2(-27.9400005F, -218.695999F));
+ builder.AddLine(new Vector2(-26.0319996F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1182()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-38.5239983F, -218.695999F));
+ builder.AddLine(new Vector2(-38.5239983F, -235.796005F));
+ builder.AddLine(new Vector2(-41.7999992F, -235.796005F));
+ builder.AddLine(new Vector2(-41.7999992F, -231.619995F));
+ builder.AddLine(new Vector2(-41.1879997F, -227.479996F));
+ builder.AddLine(new Vector2(-41.7999992F, -223.304001F));
+ builder.AddLine(new Vector2(-41.7999992F, -218.695999F));
+ builder.AddLine(new Vector2(-38.5239983F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-49.8279991F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-50.6679993F, -222.656006F), new Vector2(-51.3219986F, -223.345993F), new Vector2(-51.7900009F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-52.2579994F, -225.098007F), new Vector2(-52.4920006F, -226.112F), new Vector2(-52.4920006F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-52.4920006F, -228.391998F), new Vector2(-52.2579994F, -229.393997F), new Vector2(-51.7900009F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-51.3219986F, -231.145996F), new Vector2(-50.6739998F, -231.835999F), new Vector2(-49.8460007F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-49.0180016F, -232.843994F), new Vector2(-48.0639992F, -233.095993F), new Vector2(-46.9840012F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-45.9039993F, -233.095993F), new Vector2(-44.9620018F, -232.850006F), new Vector2(-44.1580009F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(-43.3540001F, -231.865997F), new Vector2(-42.723999F, -231.175995F), new Vector2(-42.2680016F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(-41.8120003F, -229.399994F), new Vector2(-41.5839996F, -228.380005F), new Vector2(-41.5839996F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-41.5839996F, -225.524002F), new Vector2(-42.0760002F, -224.126007F), new Vector2(-43.0600014F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(-44.0439987F, -221.942001F), new Vector2(-45.3400002F, -221.395996F), new Vector2(-46.9480019F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-48.0279999F, -221.395996F), new Vector2(-48.987999F, -221.647995F), new Vector2(-49.8279991F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-43.9959984F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-42.9640007F, -219.686005F), new Vector2(-42.1419983F, -220.436005F), new Vector2(-41.5299988F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-40.9179993F, -222.356003F), new Vector2(-40.5760002F, -223.447998F), new Vector2(-40.5040016F, -224.671997F));
+ builder.AddLine(new Vector2(-40.5040016F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(-40.5760002F, -231.067993F), new Vector2(-40.9239998F, -232.166F), new Vector2(-41.5480003F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-42.1720009F, -234.061996F), new Vector2(-42.9939995F, -234.806F), new Vector2(-44.0139999F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-45.0340004F, -235.886002F), new Vector2(-46.1920013F, -236.156006F), new Vector2(-47.487999F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-49.0719986F, -236.156006F), new Vector2(-50.4939995F, -235.759995F), new Vector2(-51.7540016F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-53.0139999F, -234.175995F), new Vector2(-54.0099983F, -233.108002F), new Vector2(-54.7420006F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-55.473999F, -230.419998F), new Vector2(-55.8400002F, -228.908005F), new Vector2(-55.8400002F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-55.8400002F, -225.548004F), new Vector2(-55.473999F, -224.035995F), new Vector2(-54.7420006F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-54.0099983F, -221.348007F), new Vector2(-53.0139999F, -220.285995F), new Vector2(-51.7540016F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-50.4939995F, -218.725998F), new Vector2(-49.0719986F, -218.335999F), new Vector2(-47.487999F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-46.1920013F, -218.335999F), new Vector2(-45.0279999F, -218.606003F), new Vector2(-43.9959984F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1183()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-71.2480011F, -218.695999F));
+ builder.AddLine(new Vector2(-71.2480011F, -244.399994F));
+ builder.AddLine(new Vector2(-74.487999F, -244.399994F));
+ builder.AddLine(new Vector2(-74.487999F, -218.695999F));
+ builder.AddLine(new Vector2(-71.2480011F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-59.1520004F, -218.695999F));
+ builder.AddLine(new Vector2(-59.1520004F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(-59.1520004F, -230.660004F), new Vector2(-59.4399986F, -231.848007F), new Vector2(-60.0159988F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-60.5919991F, -233.912003F), new Vector2(-61.3779984F, -234.716003F), new Vector2(-62.3740005F, -235.292007F));
+ builder.AddCubicBezier(new Vector2(-63.3699989F, -235.867996F), new Vector2(-64.5159988F, -236.156006F), new Vector2(-65.8119965F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-67.1080017F, -236.156006F), new Vector2(-68.2720032F, -235.862F), new Vector2(-69.3040009F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(-70.3359985F, -234.686005F), new Vector2(-71.1399994F, -233.888F), new Vector2(-71.7160034F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-72.2919998F, -231.871994F), new Vector2(-72.5800018F, -230.720001F), new Vector2(-72.5800018F, -229.423996F));
+ builder.AddLine(new Vector2(-71.2480011F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(-71.2480011F, -229.531998F), new Vector2(-71.0559998F, -230.300003F), new Vector2(-70.6719971F, -230.972F));
+ builder.AddCubicBezier(new Vector2(-70.288002F, -231.643997F), new Vector2(-69.7600021F, -232.171997F), new Vector2(-69.0879974F, -232.556F));
+ builder.AddCubicBezier(new Vector2(-68.4160004F, -232.940002F), new Vector2(-67.6480026F, -233.132004F), new Vector2(-66.7839966F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-65.487999F, -233.132004F), new Vector2(-64.4380035F, -232.712006F), new Vector2(-63.6339989F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(-62.8300018F, -231.031998F), new Vector2(-62.4280014F, -229.964005F), new Vector2(-62.4280014F, -228.667999F));
+ builder.AddLine(new Vector2(-62.4280014F, -218.695999F));
+ builder.AddLine(new Vector2(-59.1520004F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1184()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-87.2860031F, -219.740005F));
+ builder.AddCubicBezier(new Vector2(-86.1460037F, -220.675995F), new Vector2(-85.5759964F, -221.947998F), new Vector2(-85.5759964F, -223.556F));
+ builder.AddCubicBezier(new Vector2(-85.5759964F, -224.612F), new Vector2(-85.7979965F, -225.464005F), new Vector2(-86.2419968F, -226.112F));
+ builder.AddCubicBezier(new Vector2(-86.685997F, -226.759995F), new Vector2(-87.2559967F, -227.276001F), new Vector2(-87.9520035F, -227.660004F));
+ builder.AddCubicBezier(new Vector2(-88.6480026F, -228.044006F), new Vector2(-89.3799973F, -228.350006F), new Vector2(-90.1480026F, -228.578003F));
+ builder.AddCubicBezier(new Vector2(-90.9160004F, -228.806F), new Vector2(-91.6539993F, -229.028F), new Vector2(-92.3619995F, -229.244003F));
+ builder.AddCubicBezier(new Vector2(-93.0699997F, -229.460007F), new Vector2(-93.6399994F, -229.723999F), new Vector2(-94.0719986F, -230.035995F));
+ builder.AddCubicBezier(new Vector2(-94.5039978F, -230.348007F), new Vector2(-94.7200012F, -230.792007F), new Vector2(-94.7200012F, -231.367996F));
+ builder.AddCubicBezier(new Vector2(-94.7200012F, -231.919998F), new Vector2(-94.473999F, -232.363998F), new Vector2(-93.9820023F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-93.4899979F, -233.035995F), new Vector2(-92.776001F, -233.203995F), new Vector2(-91.8399963F, -233.203995F));
+ builder.AddCubicBezier(new Vector2(-90.9520035F, -233.203995F), new Vector2(-90.1600037F, -233.035995F), new Vector2(-89.4639969F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-88.7679977F, -232.363998F), new Vector2(-88.1679993F, -231.884003F), new Vector2(-87.6640015F, -231.259995F));
+ builder.AddLine(new Vector2(-85.5759964F, -233.348007F));
+ builder.AddCubicBezier(new Vector2(-86.2480011F, -234.283997F), new Vector2(-87.1060028F, -234.985992F), new Vector2(-88.1500015F, -235.453995F));
+ builder.AddCubicBezier(new Vector2(-89.1940002F, -235.921997F), new Vector2(-90.3880005F, -236.156006F), new Vector2(-91.7320023F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-93.0039978F, -236.156006F), new Vector2(-94.0960007F, -235.951996F), new Vector2(-95.0080032F, -235.544006F));
+ builder.AddCubicBezier(new Vector2(-95.9199982F, -235.136002F), new Vector2(-96.6220016F, -234.554001F), new Vector2(-97.1139984F, -233.798004F));
+ builder.AddCubicBezier(new Vector2(-97.6060028F, -233.042007F), new Vector2(-97.8519974F, -232.147995F), new Vector2(-97.8519974F, -231.115997F));
+ builder.AddCubicBezier(new Vector2(-97.8519974F, -230.084F), new Vector2(-97.6299973F, -229.25F), new Vector2(-97.185997F, -228.613998F));
+ builder.AddCubicBezier(new Vector2(-96.7419968F, -227.977997F), new Vector2(-96.1719971F, -227.479996F), new Vector2(-95.4759979F, -227.119995F));
+ builder.AddCubicBezier(new Vector2(-94.7799988F, -226.759995F), new Vector2(-94.0419998F, -226.472F), new Vector2(-93.262001F, -226.255997F));
+ builder.AddCubicBezier(new Vector2(-92.4820023F, -226.039993F), new Vector2(-91.7440033F, -225.817993F), new Vector2(-91.0479965F, -225.589996F));
+ builder.AddCubicBezier(new Vector2(-90.3519974F, -225.362F), new Vector2(-89.7819977F, -225.074005F), new Vector2(-89.3379974F, -224.725998F));
+ builder.AddCubicBezier(new Vector2(-88.8939972F, -224.378006F), new Vector2(-88.6719971F, -223.891998F), new Vector2(-88.6719971F, -223.268005F));
+ builder.AddCubicBezier(new Vector2(-88.6719971F, -222.643997F), new Vector2(-88.947998F, -222.158005F), new Vector2(-89.5F, -221.809998F));
+ builder.AddCubicBezier(new Vector2(-90.052002F, -221.462006F), new Vector2(-90.8320007F, -221.287994F), new Vector2(-91.8399963F, -221.287994F));
+ builder.AddCubicBezier(new Vector2(-92.8479996F, -221.287994F), new Vector2(-93.7600021F, -221.473999F), new Vector2(-94.5759964F, -221.845993F));
+ builder.AddCubicBezier(new Vector2(-95.3919983F, -222.218002F), new Vector2(-96.1119995F, -222.787994F), new Vector2(-96.7360001F, -223.556F));
+ builder.AddLine(new Vector2(-98.8239975F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-98.2959976F, -220.820007F), new Vector2(-97.6780014F, -220.261993F), new Vector2(-96.9700012F, -219.794006F));
+ builder.AddCubicBezier(new Vector2(-96.262001F, -219.326004F), new Vector2(-95.4759979F, -218.966003F), new Vector2(-94.6119995F, -218.714005F));
+ builder.AddCubicBezier(new Vector2(-93.7480011F, -218.462006F), new Vector2(-92.8359985F, -218.335999F), new Vector2(-91.8759995F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-89.9560013F, -218.335999F), new Vector2(-88.4260025F, -218.804001F), new Vector2(-87.2860031F, -219.740005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1185()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-104.907997F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-103.732002F, -219.595993F), new Vector2(-102.723999F, -220.328003F), new Vector2(-101.884003F, -221.287994F));
+ builder.AddLine(new Vector2(-103.972F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(-104.547997F, -222.740005F), new Vector2(-105.237999F, -222.235992F), new Vector2(-106.042F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(-106.846001F, -221.563995F), new Vector2(-107.727997F, -221.395996F), new Vector2(-108.688004F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-109.839996F, -221.395996F), new Vector2(-110.860001F, -221.641998F), new Vector2(-111.748001F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-112.636002F, -222.626007F), new Vector2(-113.32F, -223.322006F), new Vector2(-113.800003F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-114.279999F, -225.121994F), new Vector2(-114.519997F, -226.171997F), new Vector2(-114.519997F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(-114.519997F, -228.548004F), new Vector2(-114.292F, -229.567993F), new Vector2(-113.835999F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(-113.379997F, -231.296005F), new Vector2(-112.732002F, -231.968002F), new Vector2(-111.891998F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(-111.052002F, -232.927994F), new Vector2(-110.080002F, -233.167999F), new Vector2(-108.975998F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(-107.919998F, -233.167999F), new Vector2(-107.019997F, -232.945999F), new Vector2(-106.276001F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(-105.531998F, -232.057999F), new Vector2(-104.956001F, -231.434006F), new Vector2(-104.547997F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(-104.139999F, -229.826004F), new Vector2(-103.935997F, -228.848007F), new Vector2(-103.935997F, -227.695999F));
+ builder.AddLine(new Vector2(-102.748001F, -228.740005F));
+ builder.AddLine(new Vector2(-115.456001F, -228.740005F));
+ builder.AddLine(new Vector2(-115.456001F, -226.039993F));
+ builder.AddLine(new Vector2(-101.019997F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(-100.947998F, -226.376007F), new Vector2(-100.900002F, -226.682007F), new Vector2(-100.875999F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(-100.851997F, -227.233994F), new Vector2(-100.839996F, -227.492004F), new Vector2(-100.839996F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(-100.839996F, -229.363998F), new Vector2(-101.181999F, -230.815994F), new Vector2(-101.865997F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(-102.550003F, -233.360001F), new Vector2(-103.503998F, -234.356003F), new Vector2(-104.727997F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(-105.952003F, -235.796005F), new Vector2(-107.344002F, -236.156006F), new Vector2(-108.903999F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-110.559998F, -236.156006F), new Vector2(-112.054001F, -235.766006F), new Vector2(-113.386002F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-114.718002F, -234.205994F), new Vector2(-115.774002F, -233.143997F), new Vector2(-116.554001F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-117.334F, -230.455994F), new Vector2(-117.723999F, -228.944F), new Vector2(-117.723999F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-117.723999F, -225.559998F), new Vector2(-117.328003F, -224.035995F), new Vector2(-116.536003F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-115.744003F, -221.348007F), new Vector2(-114.669998F, -220.285995F), new Vector2(-113.314003F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-111.958F, -218.725998F), new Vector2(-110.416F, -218.335999F), new Vector2(-108.688004F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-107.344002F, -218.335999F), new Vector2(-106.084F, -218.587997F), new Vector2(-104.907997F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1186()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-122.386002F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-121.246002F, -219.595993F), new Vector2(-120.279999F, -220.304001F), new Vector2(-119.487999F, -221.216003F));
+ builder.AddLine(new Vector2(-121.612F, -223.376007F));
+ builder.AddCubicBezier(new Vector2(-122.164001F, -222.751999F), new Vector2(-122.818001F, -222.278F), new Vector2(-123.573997F, -221.953995F));
+ builder.AddCubicBezier(new Vector2(-124.330002F, -221.630005F), new Vector2(-125.164001F, -221.468002F), new Vector2(-126.075996F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-127.155998F, -221.468002F), new Vector2(-128.115997F, -221.720001F), new Vector2(-128.955994F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-129.796005F, -222.727997F), new Vector2(-130.455994F, -223.412003F), new Vector2(-130.936005F, -224.276001F));
+ builder.AddCubicBezier(new Vector2(-131.416F, -225.139999F), new Vector2(-131.656006F, -226.136002F), new Vector2(-131.656006F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-131.656006F, -228.391998F), new Vector2(-131.416F, -229.388F), new Vector2(-130.936005F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-130.455994F, -231.115997F), new Vector2(-129.796005F, -231.794006F), new Vector2(-128.955994F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-128.115997F, -232.778F), new Vector2(-127.155998F, -233.024002F), new Vector2(-126.075996F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(-125.188004F, -233.024002F), new Vector2(-124.360001F, -232.862F), new Vector2(-123.592003F, -232.537994F));
+ builder.AddCubicBezier(new Vector2(-122.823997F, -232.214005F), new Vector2(-122.176003F, -231.740005F), new Vector2(-121.648003F, -231.115997F));
+ builder.AddLine(new Vector2(-119.487999F, -233.276001F));
+ builder.AddCubicBezier(new Vector2(-120.304001F, -234.212006F), new Vector2(-121.276001F, -234.925995F), new Vector2(-122.403999F, -235.417999F));
+ builder.AddCubicBezier(new Vector2(-123.531998F, -235.910004F), new Vector2(-124.755997F, -236.156006F), new Vector2(-126.075996F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-127.755997F, -236.156006F), new Vector2(-129.274002F, -235.766006F), new Vector2(-130.630005F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-131.985992F, -234.205994F), new Vector2(-133.054001F, -233.143997F), new Vector2(-133.834F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-134.613998F, -230.455994F), new Vector2(-135.003998F, -228.944F), new Vector2(-135.003998F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-135.003998F, -225.608002F), new Vector2(-134.613998F, -224.102005F), new Vector2(-133.834F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-133.054001F, -221.389999F), new Vector2(-131.985992F, -220.315994F), new Vector2(-130.630005F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-129.274002F, -218.731995F), new Vector2(-127.755997F, -218.335999F), new Vector2(-126.075996F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-124.755997F, -218.335999F), new Vector2(-123.526001F, -218.587997F), new Vector2(-122.386002F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1187()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-143.391998F, -231.944F));
+ builder.AddCubicBezier(new Vector2(-142.623993F, -232.712006F), new Vector2(-141.639999F, -233.095993F), new Vector2(-140.440002F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-139.863998F, -233.095993F), new Vector2(-139.360001F, -233.011993F), new Vector2(-138.927994F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(-138.496002F, -232.675995F), new Vector2(-138.100006F, -232.399994F), new Vector2(-137.740005F, -232.016006F));
+ builder.AddLine(new Vector2(-135.615997F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-136.216003F, -234.908005F), new Vector2(-136.863998F, -235.406006F), new Vector2(-137.559998F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(-138.255997F, -236.005997F), new Vector2(-139.035995F, -236.156006F), new Vector2(-139.899994F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-141.796005F, -236.156006F), new Vector2(-143.248001F, -235.507996F), new Vector2(-144.255997F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-145.264008F, -232.916F), new Vector2(-145.768005F, -231.175995F), new Vector2(-145.768005F, -228.992004F));
+ builder.AddLine(new Vector2(-144.544006F, -228.416F));
+ builder.AddCubicBezier(new Vector2(-144.544006F, -230F), new Vector2(-144.160004F, -231.175995F), new Vector2(-143.391998F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-144.544006F, -218.695999F));
+ builder.AddLine(new Vector2(-144.544006F, -235.796005F));
+ builder.AddLine(new Vector2(-147.783997F, -235.796005F));
+ builder.AddLine(new Vector2(-147.783997F, -218.695999F));
+ builder.AddLine(new Vector2(-144.544006F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1188()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-163.192001F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-164.031998F, -222.727997F), new Vector2(-164.692001F, -223.417999F), new Vector2(-165.171997F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-165.651993F, -225.169998F), new Vector2(-165.891998F, -226.171997F), new Vector2(-165.891998F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-165.891998F, -228.404007F), new Vector2(-165.651993F, -229.388F), new Vector2(-165.171997F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-164.692001F, -231.115997F), new Vector2(-164.031998F, -231.794006F), new Vector2(-163.192001F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-162.352005F, -232.778F), new Vector2(-161.404007F, -233.024002F), new Vector2(-160.348007F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(-159.244003F, -233.024002F), new Vector2(-158.278F, -232.778F), new Vector2(-157.449997F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-156.621994F, -231.794006F), new Vector2(-155.962006F, -231.115997F), new Vector2(-155.470001F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-154.977997F, -229.388F), new Vector2(-154.731995F, -228.404007F), new Vector2(-154.731995F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-154.731995F, -226.171997F), new Vector2(-154.972F, -225.169998F), new Vector2(-155.451996F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-155.932007F, -223.417999F), new Vector2(-156.591995F, -222.727997F), new Vector2(-157.432007F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-158.272003F, -221.720001F), new Vector2(-159.244003F, -221.468002F), new Vector2(-160.348007F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-161.404007F, -221.468002F), new Vector2(-162.352005F, -221.720001F), new Vector2(-163.192001F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-155.794006F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-154.438004F, -220.315994F), new Vector2(-153.363998F, -221.389999F), new Vector2(-152.572006F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-151.779999F, -224.102005F), new Vector2(-151.384003F, -225.619995F), new Vector2(-151.384003F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-151.384003F, -228.955994F), new Vector2(-151.779999F, -230.455994F), new Vector2(-152.572006F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-153.363998F, -233.143997F), new Vector2(-154.438004F, -234.205994F), new Vector2(-155.794006F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-157.149994F, -235.766006F), new Vector2(-158.667999F, -236.156006F), new Vector2(-160.348007F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-162.003998F, -236.156006F), new Vector2(-163.503998F, -235.759995F), new Vector2(-164.848007F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-166.192001F, -234.175995F), new Vector2(-167.259995F, -233.113998F), new Vector2(-168.052002F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(-168.843994F, -230.449997F), new Vector2(-169.240005F, -228.955994F), new Vector2(-169.240005F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-169.240005F, -225.619995F), new Vector2(-168.843994F, -224.102005F), new Vector2(-168.052002F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-167.259995F, -221.389999F), new Vector2(-166.192001F, -220.315994F), new Vector2(-164.848007F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-163.503998F, -218.731995F), new Vector2(-162.003998F, -218.335999F), new Vector2(-160.348007F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-158.667999F, -218.335999F), new Vector2(-157.149994F, -218.731995F), new Vector2(-155.794006F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1189()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-170.391998F, -232.843994F));
+ builder.AddLine(new Vector2(-170.391998F, -235.796005F));
+ builder.AddLine(new Vector2(-183.279999F, -235.796005F));
+ builder.AddLine(new Vector2(-183.279999F, -232.843994F));
+ builder.AddLine(new Vector2(-170.391998F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-175.828003F, -218.695999F));
+ builder.AddLine(new Vector2(-175.828003F, -238.352005F));
+ builder.AddCubicBezier(new Vector2(-175.828003F, -239.408005F), new Vector2(-175.546005F, -240.229996F), new Vector2(-174.981995F, -240.817993F));
+ builder.AddCubicBezier(new Vector2(-174.417999F, -241.406006F), new Vector2(-173.619995F, -241.699997F), new Vector2(-172.587997F, -241.699997F));
+ builder.AddCubicBezier(new Vector2(-172.035995F, -241.699997F), new Vector2(-171.567993F, -241.615997F), new Vector2(-171.184006F, -241.447998F));
+ builder.AddCubicBezier(new Vector2(-170.800003F, -241.279999F), new Vector2(-170.451996F, -241.028F), new Vector2(-170.139999F, -240.692001F));
+ builder.AddLine(new Vector2(-168.016006F, -242.779999F));
+ builder.AddCubicBezier(new Vector2(-168.615997F, -243.427994F), new Vector2(-169.276001F, -243.919998F), new Vector2(-169.996002F, -244.255997F));
+ builder.AddCubicBezier(new Vector2(-170.716003F, -244.591995F), new Vector2(-171.567993F, -244.759995F), new Vector2(-172.552002F, -244.759995F));
+ builder.AddCubicBezier(new Vector2(-173.848007F, -244.759995F), new Vector2(-174.988007F, -244.483994F), new Vector2(-175.972F, -243.932007F));
+ builder.AddCubicBezier(new Vector2(-176.955994F, -243.380005F), new Vector2(-177.723999F, -242.623993F), new Vector2(-178.276001F, -241.664001F));
+ builder.AddCubicBezier(new Vector2(-178.828003F, -240.703995F), new Vector2(-179.104004F, -239.600006F), new Vector2(-179.104004F, -238.352005F));
+ builder.AddLine(new Vector2(-179.104004F, -218.695999F));
+ builder.AddLine(new Vector2(-175.828003F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1190()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-203.151993F, -211.531998F));
+ builder.AddLine(new Vector2(-199.912003F, -218.552002F));
+ builder.AddLine(new Vector2(-201.748001F, -221.863998F));
+ builder.AddLine(new Vector2(-206.751999F, -211.531998F));
+ builder.AddLine(new Vector2(-203.151993F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-199.912003F, -218.552002F));
+ builder.AddLine(new Vector2(-191.919998F, -235.796005F));
+ builder.AddLine(new Vector2(-195.520004F, -235.796005F));
+ builder.AddLine(new Vector2(-201.315994F, -222.296005F));
+ builder.AddLine(new Vector2(-200.164001F, -222.296005F));
+ builder.AddLine(new Vector2(-205.671997F, -235.796005F));
+ builder.AddLine(new Vector2(-209.272003F, -235.796005F));
+ builder.AddLine(new Vector2(-201.856003F, -218.552002F));
+ builder.AddLine(new Vector2(-199.912003F, -218.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1191()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-217.227997F, -231.944F));
+ builder.AddCubicBezier(new Vector2(-216.460007F, -232.712006F), new Vector2(-215.475998F, -233.095993F), new Vector2(-214.276001F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-213.699997F, -233.095993F), new Vector2(-213.195999F, -233.011993F), new Vector2(-212.764008F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(-212.332001F, -232.675995F), new Vector2(-211.936005F, -232.399994F), new Vector2(-211.576004F, -232.016006F));
+ builder.AddLine(new Vector2(-209.451996F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-210.052002F, -234.908005F), new Vector2(-210.699997F, -235.406006F), new Vector2(-211.395996F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(-212.091995F, -236.005997F), new Vector2(-212.871994F, -236.156006F), new Vector2(-213.735992F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-215.632004F, -236.156006F), new Vector2(-217.084F, -235.507996F), new Vector2(-218.091995F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-219.100006F, -232.916F), new Vector2(-219.604004F, -231.175995F), new Vector2(-219.604004F, -228.992004F));
+ builder.AddLine(new Vector2(-218.380005F, -228.416F));
+ builder.AddCubicBezier(new Vector2(-218.380005F, -230F), new Vector2(-217.996002F, -231.175995F), new Vector2(-217.227997F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-218.380005F, -218.695999F));
+ builder.AddLine(new Vector2(-218.380005F, -235.796005F));
+ builder.AddLine(new Vector2(-221.619995F, -235.796005F));
+ builder.AddLine(new Vector2(-221.619995F, -218.695999F));
+ builder.AddLine(new Vector2(-218.380005F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1192()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-226.335999F, -218.695999F));
+ builder.AddLine(new Vector2(-226.335999F, -235.796005F));
+ builder.AddLine(new Vector2(-229.612F, -235.796005F));
+ builder.AddLine(new Vector2(-229.612F, -231.619995F));
+ builder.AddLine(new Vector2(-229F, -227.479996F));
+ builder.AddLine(new Vector2(-229.612F, -223.304001F));
+ builder.AddLine(new Vector2(-229.612F, -218.695999F));
+ builder.AddLine(new Vector2(-226.335999F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-237.639999F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-238.479996F, -222.656006F), new Vector2(-239.134003F, -223.345993F), new Vector2(-239.602005F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-240.070007F, -225.098007F), new Vector2(-240.304001F, -226.112F), new Vector2(-240.304001F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-240.304001F, -228.391998F), new Vector2(-240.070007F, -229.393997F), new Vector2(-239.602005F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-239.134003F, -231.145996F), new Vector2(-238.485992F, -231.835999F), new Vector2(-237.658005F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-236.830002F, -232.843994F), new Vector2(-235.876007F, -233.095993F), new Vector2(-234.796005F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-233.716003F, -233.095993F), new Vector2(-232.774002F, -232.850006F), new Vector2(-231.970001F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(-231.166F, -231.865997F), new Vector2(-230.535995F, -231.175995F), new Vector2(-230.080002F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(-229.623993F, -229.399994F), new Vector2(-229.395996F, -228.380005F), new Vector2(-229.395996F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-229.395996F, -225.524002F), new Vector2(-229.888F, -224.126007F), new Vector2(-230.871994F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(-231.856003F, -221.942001F), new Vector2(-233.151993F, -221.395996F), new Vector2(-234.759995F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-235.839996F, -221.395996F), new Vector2(-236.800003F, -221.647995F), new Vector2(-237.639999F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-231.807999F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-230.776001F, -219.686005F), new Vector2(-229.953995F, -220.436005F), new Vector2(-229.341995F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-228.729996F, -222.356003F), new Vector2(-228.388F, -223.447998F), new Vector2(-228.315994F, -224.671997F));
+ builder.AddLine(new Vector2(-228.315994F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(-228.388F, -231.067993F), new Vector2(-228.735992F, -232.166F), new Vector2(-229.360001F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-229.983994F, -234.061996F), new Vector2(-230.806F, -234.806F), new Vector2(-231.826004F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-232.845993F, -235.886002F), new Vector2(-234.003998F, -236.156006F), new Vector2(-235.300003F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-236.884003F, -236.156006F), new Vector2(-238.306F, -235.759995F), new Vector2(-239.565994F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-240.826004F, -234.175995F), new Vector2(-241.822006F, -233.108002F), new Vector2(-242.554001F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-243.285995F, -230.419998F), new Vector2(-243.651993F, -228.908005F), new Vector2(-243.651993F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-243.651993F, -225.548004F), new Vector2(-243.285995F, -224.035995F), new Vector2(-242.554001F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-241.822006F, -221.348007F), new Vector2(-240.826004F, -220.285995F), new Vector2(-239.565994F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-238.306F, -218.725998F), new Vector2(-236.884003F, -218.335999F), new Vector2(-235.300003F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-234.003998F, -218.335999F), new Vector2(-232.839996F, -218.606003F), new Vector2(-231.807999F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1193()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-245.199997F, -232.843994F));
+ builder.AddLine(new Vector2(-245.199997F, -235.796005F));
+ builder.AddLine(new Vector2(-256.864014F, -235.796005F));
+ builder.AddLine(new Vector2(-256.864014F, -232.843994F));
+ builder.AddLine(new Vector2(-245.199997F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-249.412003F, -218.695999F));
+ builder.AddLine(new Vector2(-249.412003F, -242.960007F));
+ builder.AddLine(new Vector2(-252.651993F, -242.960007F));
+ builder.AddLine(new Vector2(-252.651993F, -218.695999F));
+ builder.AddLine(new Vector2(-249.412003F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1194()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-260.212006F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-259.828003F, -240.205994F), new Vector2(-259.635986F, -240.703995F), new Vector2(-259.635986F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-259.635986F, -241.880005F), new Vector2(-259.828003F, -242.365997F), new Vector2(-260.212006F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-260.596008F, -243.158005F), new Vector2(-261.088013F, -243.356003F), new Vector2(-261.687988F, -243.356003F));
+ builder.AddCubicBezier(new Vector2(-262.287994F, -243.356003F), new Vector2(-262.779999F, -243.158005F), new Vector2(-263.164001F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-263.548004F, -242.365997F), new Vector2(-263.73999F, -241.880005F), new Vector2(-263.73999F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-263.73999F, -240.703995F), new Vector2(-263.548004F, -240.205994F), new Vector2(-263.164001F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-262.779999F, -239.414001F), new Vector2(-262.287994F, -239.216003F), new Vector2(-261.687988F, -239.216003F));
+ builder.AddCubicBezier(new Vector2(-261.088013F, -239.216003F), new Vector2(-260.596008F, -239.414001F), new Vector2(-260.212006F, -239.809998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-260.067993F, -218.695999F));
+ builder.AddLine(new Vector2(-260.067993F, -235.796005F));
+ builder.AddLine(new Vector2(-263.343994F, -235.796005F));
+ builder.AddLine(new Vector2(-263.343994F, -218.695999F));
+ builder.AddLine(new Vector2(-260.067993F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1195()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-268.096008F, -218.695999F));
+ builder.AddLine(new Vector2(-268.096008F, -244.399994F));
+ builder.AddLine(new Vector2(-271.335999F, -244.399994F));
+ builder.AddLine(new Vector2(-271.335999F, -218.695999F));
+ builder.AddLine(new Vector2(-268.096008F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1196()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-276.268005F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-275.884003F, -240.205994F), new Vector2(-275.691986F, -240.703995F), new Vector2(-275.691986F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-275.691986F, -241.880005F), new Vector2(-275.884003F, -242.365997F), new Vector2(-276.268005F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-276.652008F, -243.158005F), new Vector2(-277.144012F, -243.356003F), new Vector2(-277.743988F, -243.356003F));
+ builder.AddCubicBezier(new Vector2(-278.343994F, -243.356003F), new Vector2(-278.835999F, -243.158005F), new Vector2(-279.220001F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-279.604004F, -242.365997F), new Vector2(-279.79599F, -241.880005F), new Vector2(-279.79599F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-279.79599F, -240.703995F), new Vector2(-279.604004F, -240.205994F), new Vector2(-279.220001F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-278.835999F, -239.414001F), new Vector2(-278.343994F, -239.216003F), new Vector2(-277.743988F, -239.216003F));
+ builder.AddCubicBezier(new Vector2(-277.144012F, -239.216003F), new Vector2(-276.652008F, -239.414001F), new Vector2(-276.268005F, -239.809998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-276.123993F, -218.695999F));
+ builder.AddLine(new Vector2(-276.123993F, -235.796005F));
+ builder.AddLine(new Vector2(-279.399994F, -235.796005F));
+ builder.AddLine(new Vector2(-279.399994F, -218.695999F));
+ builder.AddLine(new Vector2(-276.123993F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1197()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-283.791992F, -218.695999F));
+ builder.AddLine(new Vector2(-283.791992F, -229.675995F));
+ builder.AddCubicBezier(new Vector2(-283.791992F, -231.020004F), new Vector2(-284.085999F, -232.171997F), new Vector2(-284.674011F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-285.261993F, -234.091995F), new Vector2(-286.048004F, -234.835999F), new Vector2(-287.032013F, -235.363998F));
+ builder.AddCubicBezier(new Vector2(-288.015991F, -235.891998F), new Vector2(-289.131989F, -236.156006F), new Vector2(-290.380005F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-291.579987F, -236.156006F), new Vector2(-292.68399F, -235.886002F), new Vector2(-293.691986F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-294.700012F, -234.806F), new Vector2(-295.522003F, -234.061996F), new Vector2(-296.15799F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-296.794006F, -232.166F), new Vector2(-297.14801F, -231.031998F), new Vector2(-297.220001F, -229.712006F));
+ builder.AddLine(new Vector2(-295.384003F, -229.028F));
+ builder.AddCubicBezier(new Vector2(-295.384003F, -229.891998F), new Vector2(-295.191986F, -230.623993F), new Vector2(-294.808014F, -231.223999F));
+ builder.AddCubicBezier(new Vector2(-294.424011F, -231.824005F), new Vector2(-293.914001F, -232.292007F), new Vector2(-293.278015F, -232.628006F));
+ builder.AddCubicBezier(new Vector2(-292.641998F, -232.964005F), new Vector2(-291.928009F, -233.132004F), new Vector2(-291.135986F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-289.984009F, -233.132004F), new Vector2(-289.018005F, -232.766006F), new Vector2(-288.238007F, -232.033997F));
+ builder.AddCubicBezier(new Vector2(-287.458008F, -231.302002F), new Vector2(-287.067993F, -230.300003F), new Vector2(-287.067993F, -229.028F));
+ builder.AddLine(new Vector2(-287.067993F, -218.695999F));
+ builder.AddLine(new Vector2(-283.791992F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-295.384003F, -218.695999F));
+ builder.AddLine(new Vector2(-295.384003F, -229.712006F));
+ builder.AddCubicBezier(new Vector2(-295.384003F, -231.031998F), new Vector2(-295.665985F, -232.171997F), new Vector2(-296.230011F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-296.794006F, -234.091995F), new Vector2(-297.562012F, -234.835999F), new Vector2(-298.533997F, -235.363998F));
+ builder.AddCubicBezier(new Vector2(-299.506012F, -235.891998F), new Vector2(-300.59201F, -236.156006F), new Vector2(-301.791992F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-303.015991F, -236.156006F), new Vector2(-304.119995F, -235.886002F), new Vector2(-305.104004F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-306.088013F, -234.806F), new Vector2(-306.862F, -234.056F), new Vector2(-307.425995F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-307.98999F, -232.136002F), new Vector2(-308.272003F, -231.007996F), new Vector2(-308.272003F, -229.712006F));
+ builder.AddLine(new Vector2(-306.940002F, -229.028F));
+ builder.AddCubicBezier(new Vector2(-306.940002F, -229.891998F), new Vector2(-306.747986F, -230.623993F), new Vector2(-306.364014F, -231.223999F));
+ builder.AddCubicBezier(new Vector2(-305.980011F, -231.824005F), new Vector2(-305.476013F, -232.292007F), new Vector2(-304.85199F, -232.628006F));
+ builder.AddCubicBezier(new Vector2(-304.227997F, -232.964005F), new Vector2(-303.519989F, -233.132004F), new Vector2(-302.727997F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-301.552002F, -233.132004F), new Vector2(-300.574005F, -232.766006F), new Vector2(-299.794006F, -232.033997F));
+ builder.AddCubicBezier(new Vector2(-299.014008F, -231.302002F), new Vector2(-298.623993F, -230.300003F), new Vector2(-298.623993F, -229.028F));
+ builder.AddLine(new Vector2(-298.623993F, -218.695999F));
+ builder.AddLine(new Vector2(-295.384003F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-306.940002F, -218.695999F));
+ builder.AddLine(new Vector2(-306.940002F, -235.796005F));
+ builder.AddLine(new Vector2(-310.179993F, -235.796005F));
+ builder.AddLine(new Vector2(-310.179993F, -218.695999F));
+ builder.AddLine(new Vector2(-306.940002F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1198()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-325.227997F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-324.052002F, -219.595993F), new Vector2(-323.044006F, -220.328003F), new Vector2(-322.20401F, -221.287994F));
+ builder.AddLine(new Vector2(-324.291992F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(-324.868011F, -222.740005F), new Vector2(-325.558014F, -222.235992F), new Vector2(-326.362F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(-327.165985F, -221.563995F), new Vector2(-328.048004F, -221.395996F), new Vector2(-329.007996F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-330.160004F, -221.395996F), new Vector2(-331.179993F, -221.641998F), new Vector2(-332.067993F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-332.955994F, -222.626007F), new Vector2(-333.640015F, -223.322006F), new Vector2(-334.119995F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-334.600006F, -225.121994F), new Vector2(-334.839996F, -226.171997F), new Vector2(-334.839996F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(-334.839996F, -228.548004F), new Vector2(-334.612F, -229.567993F), new Vector2(-334.156006F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(-333.700012F, -231.296005F), new Vector2(-333.052002F, -231.968002F), new Vector2(-332.212006F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(-331.372009F, -232.927994F), new Vector2(-330.399994F, -233.167999F), new Vector2(-329.29599F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(-328.23999F, -233.167999F), new Vector2(-327.339996F, -232.945999F), new Vector2(-326.596008F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(-325.85199F, -232.057999F), new Vector2(-325.276001F, -231.434006F), new Vector2(-324.868011F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(-324.459991F, -229.826004F), new Vector2(-324.256012F, -228.848007F), new Vector2(-324.256012F, -227.695999F));
+ builder.AddLine(new Vector2(-323.067993F, -228.740005F));
+ builder.AddLine(new Vector2(-335.776001F, -228.740005F));
+ builder.AddLine(new Vector2(-335.776001F, -226.039993F));
+ builder.AddLine(new Vector2(-321.339996F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(-321.268005F, -226.376007F), new Vector2(-321.220001F, -226.682007F), new Vector2(-321.196014F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(-321.171997F, -227.233994F), new Vector2(-321.160004F, -227.492004F), new Vector2(-321.160004F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(-321.160004F, -229.363998F), new Vector2(-321.502014F, -230.815994F), new Vector2(-322.186005F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(-322.869995F, -233.360001F), new Vector2(-323.824005F, -234.356003F), new Vector2(-325.048004F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(-326.272003F, -235.796005F), new Vector2(-327.664001F, -236.156006F), new Vector2(-329.223999F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-330.880005F, -236.156006F), new Vector2(-332.373993F, -235.766006F), new Vector2(-333.705994F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-335.037994F, -234.205994F), new Vector2(-336.093994F, -233.143997F), new Vector2(-336.873993F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-337.653992F, -230.455994F), new Vector2(-338.044006F, -228.944F), new Vector2(-338.044006F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-338.044006F, -225.559998F), new Vector2(-337.64801F, -224.035995F), new Vector2(-336.855988F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-336.063995F, -221.348007F), new Vector2(-334.98999F, -220.285995F), new Vector2(-333.634003F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-332.278015F, -218.725998F), new Vector2(-330.735992F, -218.335999F), new Vector2(-329.007996F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-327.664001F, -218.335999F), new Vector2(-326.403992F, -218.587997F), new Vector2(-325.227997F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1199()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-341.320007F, -218.695999F));
+ builder.AddLine(new Vector2(-341.320007F, -229.675995F));
+ builder.AddCubicBezier(new Vector2(-341.320007F, -231.020004F), new Vector2(-341.614014F, -232.171997F), new Vector2(-342.201996F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-342.790009F, -234.091995F), new Vector2(-343.575989F, -234.835999F), new Vector2(-344.559998F, -235.363998F));
+ builder.AddCubicBezier(new Vector2(-345.544006F, -235.891998F), new Vector2(-346.660004F, -236.156006F), new Vector2(-347.90799F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-349.108002F, -236.156006F), new Vector2(-350.212006F, -235.886002F), new Vector2(-351.220001F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-352.227997F, -234.806F), new Vector2(-353.049988F, -234.061996F), new Vector2(-353.686005F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-354.321991F, -232.166F), new Vector2(-354.675995F, -231.031998F), new Vector2(-354.747986F, -229.712006F));
+ builder.AddLine(new Vector2(-352.911987F, -229.028F));
+ builder.AddCubicBezier(new Vector2(-352.911987F, -229.891998F), new Vector2(-352.720001F, -230.623993F), new Vector2(-352.335999F, -231.223999F));
+ builder.AddCubicBezier(new Vector2(-351.951996F, -231.824005F), new Vector2(-351.441986F, -232.292007F), new Vector2(-350.806F, -232.628006F));
+ builder.AddCubicBezier(new Vector2(-350.170013F, -232.964005F), new Vector2(-349.455994F, -233.132004F), new Vector2(-348.664001F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-347.511993F, -233.132004F), new Vector2(-346.54599F, -232.766006F), new Vector2(-345.765991F, -232.033997F));
+ builder.AddCubicBezier(new Vector2(-344.985992F, -231.302002F), new Vector2(-344.596008F, -230.300003F), new Vector2(-344.596008F, -229.028F));
+ builder.AddLine(new Vector2(-344.596008F, -218.695999F));
+ builder.AddLine(new Vector2(-341.320007F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-352.911987F, -218.695999F));
+ builder.AddLine(new Vector2(-352.911987F, -229.712006F));
+ builder.AddCubicBezier(new Vector2(-352.911987F, -231.031998F), new Vector2(-353.194F, -232.171997F), new Vector2(-353.757996F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-354.321991F, -234.091995F), new Vector2(-355.089996F, -234.835999F), new Vector2(-356.062012F, -235.363998F));
+ builder.AddCubicBezier(new Vector2(-357.033997F, -235.891998F), new Vector2(-358.119995F, -236.156006F), new Vector2(-359.320007F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-360.544006F, -236.156006F), new Vector2(-361.64801F, -235.886002F), new Vector2(-362.631989F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-363.615997F, -234.806F), new Vector2(-364.390015F, -234.056F), new Vector2(-364.95401F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-365.518005F, -232.136002F), new Vector2(-365.799988F, -231.007996F), new Vector2(-365.799988F, -229.712006F));
+ builder.AddLine(new Vector2(-364.467987F, -229.028F));
+ builder.AddCubicBezier(new Vector2(-364.467987F, -229.891998F), new Vector2(-364.276001F, -230.623993F), new Vector2(-363.891998F, -231.223999F));
+ builder.AddCubicBezier(new Vector2(-363.507996F, -231.824005F), new Vector2(-363.003998F, -232.292007F), new Vector2(-362.380005F, -232.628006F));
+ builder.AddCubicBezier(new Vector2(-361.756012F, -232.964005F), new Vector2(-361.048004F, -233.132004F), new Vector2(-360.256012F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-359.079987F, -233.132004F), new Vector2(-358.10199F, -232.766006F), new Vector2(-357.321991F, -232.033997F));
+ builder.AddCubicBezier(new Vector2(-356.541992F, -231.302002F), new Vector2(-356.152008F, -230.300003F), new Vector2(-356.152008F, -229.028F));
+ builder.AddLine(new Vector2(-356.152008F, -218.695999F));
+ builder.AddLine(new Vector2(-352.911987F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-364.467987F, -218.695999F));
+ builder.AddLine(new Vector2(-364.467987F, -235.796005F));
+ builder.AddLine(new Vector2(-367.708008F, -235.796005F));
+ builder.AddLine(new Vector2(-367.708008F, -218.695999F));
+ builder.AddLine(new Vector2(-364.467987F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1200()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-383.115997F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-383.955994F, -222.727997F), new Vector2(-384.615997F, -223.417999F), new Vector2(-385.096008F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-385.575989F, -225.169998F), new Vector2(-385.81601F, -226.171997F), new Vector2(-385.81601F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-385.81601F, -228.404007F), new Vector2(-385.575989F, -229.388F), new Vector2(-385.096008F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-384.615997F, -231.115997F), new Vector2(-383.955994F, -231.794006F), new Vector2(-383.115997F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-382.276001F, -232.778F), new Vector2(-381.328003F, -233.024002F), new Vector2(-380.272003F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(-379.167999F, -233.024002F), new Vector2(-378.201996F, -232.778F), new Vector2(-377.373993F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-376.54599F, -231.794006F), new Vector2(-375.885986F, -231.115997F), new Vector2(-375.394012F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-374.902008F, -229.388F), new Vector2(-374.656006F, -228.404007F), new Vector2(-374.656006F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-374.656006F, -226.171997F), new Vector2(-374.895996F, -225.169998F), new Vector2(-375.376007F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-375.855988F, -223.417999F), new Vector2(-376.515991F, -222.727997F), new Vector2(-377.355988F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-378.196014F, -221.720001F), new Vector2(-379.167999F, -221.468002F), new Vector2(-380.272003F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-381.328003F, -221.468002F), new Vector2(-382.276001F, -221.720001F), new Vector2(-383.115997F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-375.717987F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-374.362F, -220.315994F), new Vector2(-373.287994F, -221.389999F), new Vector2(-372.496002F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-371.70401F, -224.102005F), new Vector2(-371.308014F, -225.619995F), new Vector2(-371.308014F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-371.308014F, -228.955994F), new Vector2(-371.70401F, -230.455994F), new Vector2(-372.496002F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-373.287994F, -233.143997F), new Vector2(-374.362F, -234.205994F), new Vector2(-375.717987F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-377.074005F, -235.766006F), new Vector2(-378.59201F, -236.156006F), new Vector2(-380.272003F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-381.928009F, -236.156006F), new Vector2(-383.428009F, -235.759995F), new Vector2(-384.772003F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-386.115997F, -234.175995F), new Vector2(-387.18399F, -233.113998F), new Vector2(-387.976013F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(-388.768005F, -230.449997F), new Vector2(-389.164001F, -228.955994F), new Vector2(-389.164001F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-389.164001F, -225.619995F), new Vector2(-388.768005F, -224.102005F), new Vector2(-387.976013F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-387.18399F, -221.389999F), new Vector2(-386.115997F, -220.315994F), new Vector2(-384.772003F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-383.428009F, -218.731995F), new Vector2(-381.928009F, -218.335999F), new Vector2(-380.272003F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-378.59201F, -218.335999F), new Vector2(-377.074005F, -218.731995F), new Vector2(-375.717987F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1201()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-393.394012F, -219.740005F));
+ builder.AddCubicBezier(new Vector2(-392.253998F, -220.675995F), new Vector2(-391.68399F, -221.947998F), new Vector2(-391.68399F, -223.556F));
+ builder.AddCubicBezier(new Vector2(-391.68399F, -224.612F), new Vector2(-391.906006F, -225.464005F), new Vector2(-392.350006F, -226.112F));
+ builder.AddCubicBezier(new Vector2(-392.794006F, -226.759995F), new Vector2(-393.364014F, -227.276001F), new Vector2(-394.059998F, -227.660004F));
+ builder.AddCubicBezier(new Vector2(-394.756012F, -228.044006F), new Vector2(-395.488007F, -228.350006F), new Vector2(-396.256012F, -228.578003F));
+ builder.AddCubicBezier(new Vector2(-397.023987F, -228.806F), new Vector2(-397.761993F, -229.028F), new Vector2(-398.470001F, -229.244003F));
+ builder.AddCubicBezier(new Vector2(-399.178009F, -229.460007F), new Vector2(-399.747986F, -229.723999F), new Vector2(-400.179993F, -230.035995F));
+ builder.AddCubicBezier(new Vector2(-400.612F, -230.348007F), new Vector2(-400.828003F, -230.792007F), new Vector2(-400.828003F, -231.367996F));
+ builder.AddCubicBezier(new Vector2(-400.828003F, -231.919998F), new Vector2(-400.582001F, -232.363998F), new Vector2(-400.089996F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-399.597992F, -233.035995F), new Vector2(-398.884003F, -233.203995F), new Vector2(-397.947998F, -233.203995F));
+ builder.AddCubicBezier(new Vector2(-397.059998F, -233.203995F), new Vector2(-396.268005F, -233.035995F), new Vector2(-395.571991F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-394.876007F, -232.363998F), new Vector2(-394.276001F, -231.884003F), new Vector2(-393.772003F, -231.259995F));
+ builder.AddLine(new Vector2(-391.68399F, -233.348007F));
+ builder.AddCubicBezier(new Vector2(-392.355988F, -234.283997F), new Vector2(-393.213989F, -234.985992F), new Vector2(-394.257996F, -235.453995F));
+ builder.AddCubicBezier(new Vector2(-395.302002F, -235.921997F), new Vector2(-396.496002F, -236.156006F), new Vector2(-397.839996F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-399.112F, -236.156006F), new Vector2(-400.20401F, -235.951996F), new Vector2(-401.115997F, -235.544006F));
+ builder.AddCubicBezier(new Vector2(-402.028015F, -235.136002F), new Vector2(-402.730011F, -234.554001F), new Vector2(-403.221985F, -233.798004F));
+ builder.AddCubicBezier(new Vector2(-403.713989F, -233.042007F), new Vector2(-403.959991F, -232.147995F), new Vector2(-403.959991F, -231.115997F));
+ builder.AddCubicBezier(new Vector2(-403.959991F, -230.084F), new Vector2(-403.738007F, -229.25F), new Vector2(-403.294006F, -228.613998F));
+ builder.AddCubicBezier(new Vector2(-402.850006F, -227.977997F), new Vector2(-402.279999F, -227.479996F), new Vector2(-401.584015F, -227.119995F));
+ builder.AddCubicBezier(new Vector2(-400.888F, -226.759995F), new Vector2(-400.149994F, -226.472F), new Vector2(-399.369995F, -226.255997F));
+ builder.AddCubicBezier(new Vector2(-398.589996F, -226.039993F), new Vector2(-397.85199F, -225.817993F), new Vector2(-397.156006F, -225.589996F));
+ builder.AddCubicBezier(new Vector2(-396.459991F, -225.362F), new Vector2(-395.890015F, -225.074005F), new Vector2(-395.446014F, -224.725998F));
+ builder.AddCubicBezier(new Vector2(-395.002014F, -224.378006F), new Vector2(-394.779999F, -223.891998F), new Vector2(-394.779999F, -223.268005F));
+ builder.AddCubicBezier(new Vector2(-394.779999F, -222.643997F), new Vector2(-395.056F, -222.158005F), new Vector2(-395.608002F, -221.809998F));
+ builder.AddCubicBezier(new Vector2(-396.160004F, -221.462006F), new Vector2(-396.940002F, -221.287994F), new Vector2(-397.947998F, -221.287994F));
+ builder.AddCubicBezier(new Vector2(-398.955994F, -221.287994F), new Vector2(-399.868011F, -221.473999F), new Vector2(-400.68399F, -221.845993F));
+ builder.AddCubicBezier(new Vector2(-401.5F, -222.218002F), new Vector2(-402.220001F, -222.787994F), new Vector2(-402.843994F, -223.556F));
+ builder.AddLine(new Vector2(-404.932007F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-404.403992F, -220.820007F), new Vector2(-403.786011F, -220.261993F), new Vector2(-403.078003F, -219.794006F));
+ builder.AddCubicBezier(new Vector2(-402.369995F, -219.326004F), new Vector2(-401.584015F, -218.966003F), new Vector2(-400.720001F, -218.714005F));
+ builder.AddCubicBezier(new Vector2(-399.855988F, -218.462006F), new Vector2(-398.944F, -218.335999F), new Vector2(-397.984009F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-396.063995F, -218.335999F), new Vector2(-394.533997F, -218.804001F), new Vector2(-393.394012F, -219.740005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1202()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-414.040009F, -232.843994F));
+ builder.AddLine(new Vector2(-414.040009F, -235.796005F));
+ builder.AddLine(new Vector2(-425.70401F, -235.796005F));
+ builder.AddLine(new Vector2(-425.70401F, -232.843994F));
+ builder.AddLine(new Vector2(-414.040009F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-418.252014F, -218.695999F));
+ builder.AddLine(new Vector2(-418.252014F, -242.960007F));
+ builder.AddLine(new Vector2(-421.492004F, -242.960007F));
+ builder.AddLine(new Vector2(-421.492004F, -218.695999F));
+ builder.AddLine(new Vector2(-418.252014F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1203()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-428.764008F, -218.695999F));
+ builder.AddLine(new Vector2(-428.764008F, -235.796005F));
+ builder.AddLine(new Vector2(-432.040009F, -235.796005F));
+ builder.AddLine(new Vector2(-432.040009F, -231.619995F));
+ builder.AddLine(new Vector2(-431.428009F, -227.479996F));
+ builder.AddLine(new Vector2(-432.040009F, -223.304001F));
+ builder.AddLine(new Vector2(-432.040009F, -218.695999F));
+ builder.AddLine(new Vector2(-428.764008F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-440.067993F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-440.90799F, -222.656006F), new Vector2(-441.562012F, -223.345993F), new Vector2(-442.029999F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-442.497986F, -225.098007F), new Vector2(-442.731995F, -226.112F), new Vector2(-442.731995F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-442.731995F, -228.391998F), new Vector2(-442.497986F, -229.393997F), new Vector2(-442.029999F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-441.562012F, -231.145996F), new Vector2(-440.914001F, -231.835999F), new Vector2(-440.085999F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-439.257996F, -232.843994F), new Vector2(-438.303986F, -233.095993F), new Vector2(-437.223999F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-436.144012F, -233.095993F), new Vector2(-435.201996F, -232.850006F), new Vector2(-434.39801F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(-433.593994F, -231.865997F), new Vector2(-432.963989F, -231.175995F), new Vector2(-432.507996F, -230.287994F));
+ builder.AddCubicBezier(new Vector2(-432.052002F, -229.399994F), new Vector2(-431.824005F, -228.380005F), new Vector2(-431.824005F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-431.824005F, -225.524002F), new Vector2(-432.31601F, -224.126007F), new Vector2(-433.299988F, -223.033997F));
+ builder.AddCubicBezier(new Vector2(-434.283997F, -221.942001F), new Vector2(-435.579987F, -221.395996F), new Vector2(-437.187988F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-438.268005F, -221.395996F), new Vector2(-439.227997F, -221.647995F), new Vector2(-440.067993F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-434.235992F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-433.20401F, -219.686005F), new Vector2(-432.381989F, -220.436005F), new Vector2(-431.769989F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-431.15799F, -222.356003F), new Vector2(-430.81601F, -223.447998F), new Vector2(-430.743988F, -224.671997F));
+ builder.AddLine(new Vector2(-430.743988F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(-430.81601F, -231.067993F), new Vector2(-431.164001F, -232.166F), new Vector2(-431.787994F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-432.411987F, -234.061996F), new Vector2(-433.234009F, -234.806F), new Vector2(-434.253998F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-435.273987F, -235.886002F), new Vector2(-436.432007F, -236.156006F), new Vector2(-437.727997F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-439.312012F, -236.156006F), new Vector2(-440.734009F, -235.759995F), new Vector2(-441.993988F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-443.253998F, -234.175995F), new Vector2(-444.25F, -233.108002F), new Vector2(-444.981995F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-445.713989F, -230.419998F), new Vector2(-446.079987F, -228.908005F), new Vector2(-446.079987F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-446.079987F, -225.548004F), new Vector2(-445.713989F, -224.035995F), new Vector2(-444.981995F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-444.25F, -221.348007F), new Vector2(-443.253998F, -220.285995F), new Vector2(-441.993988F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-440.734009F, -218.725998F), new Vector2(-439.312012F, -218.335999F), new Vector2(-437.727997F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-436.432007F, -218.335999F), new Vector2(-435.268005F, -218.606003F), new Vector2(-434.235992F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1204()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-461.488007F, -218.695999F));
+ builder.AddLine(new Vector2(-461.488007F, -244.399994F));
+ builder.AddLine(new Vector2(-464.727997F, -244.399994F));
+ builder.AddLine(new Vector2(-464.727997F, -218.695999F));
+ builder.AddLine(new Vector2(-461.488007F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-449.391998F, -218.695999F));
+ builder.AddLine(new Vector2(-449.391998F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(-449.391998F, -230.660004F), new Vector2(-449.679993F, -231.848007F), new Vector2(-450.256012F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-450.832001F, -233.912003F), new Vector2(-451.618011F, -234.716003F), new Vector2(-452.614014F, -235.292007F));
+ builder.AddCubicBezier(new Vector2(-453.609985F, -235.867996F), new Vector2(-454.756012F, -236.156006F), new Vector2(-456.052002F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-457.347992F, -236.156006F), new Vector2(-458.511993F, -235.862F), new Vector2(-459.544006F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(-460.575989F, -234.686005F), new Vector2(-461.380005F, -233.888F), new Vector2(-461.955994F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-462.532013F, -231.871994F), new Vector2(-462.820007F, -230.720001F), new Vector2(-462.820007F, -229.423996F));
+ builder.AddLine(new Vector2(-461.488007F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(-461.488007F, -229.531998F), new Vector2(-461.29599F, -230.300003F), new Vector2(-460.911987F, -230.972F));
+ builder.AddCubicBezier(new Vector2(-460.528015F, -231.643997F), new Vector2(-460F, -232.171997F), new Vector2(-459.328003F, -232.556F));
+ builder.AddCubicBezier(new Vector2(-458.656006F, -232.940002F), new Vector2(-457.888F, -233.132004F), new Vector2(-457.023987F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-455.727997F, -233.132004F), new Vector2(-454.678009F, -232.712006F), new Vector2(-453.873993F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(-453.070007F, -231.031998F), new Vector2(-452.667999F, -229.964005F), new Vector2(-452.667999F, -228.667999F));
+ builder.AddLine(new Vector2(-452.667999F, -218.695999F));
+ builder.AddLine(new Vector2(-449.391998F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1205()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-467.895996F, -232.843994F));
+ builder.AddLine(new Vector2(-467.895996F, -235.796005F));
+ builder.AddLine(new Vector2(-479.559998F, -235.796005F));
+ builder.AddLine(new Vector2(-479.559998F, -232.843994F));
+ builder.AddLine(new Vector2(-467.895996F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-472.108002F, -218.695999F));
+ builder.AddLine(new Vector2(-472.108002F, -242.960007F));
+ builder.AddLine(new Vector2(-475.347992F, -242.960007F));
+ builder.AddLine(new Vector2(-475.347992F, -218.695999F));
+ builder.AddLine(new Vector2(-472.108002F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1206()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-499.612F, -211.531998F));
+ builder.AddLine(new Vector2(-496.372009F, -218.552002F));
+ builder.AddLine(new Vector2(-498.208008F, -221.863998F));
+ builder.AddLine(new Vector2(-503.212006F, -211.531998F));
+ builder.AddLine(new Vector2(-499.612F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-496.372009F, -218.552002F));
+ builder.AddLine(new Vector2(-488.380005F, -235.796005F));
+ builder.AddLine(new Vector2(-491.980011F, -235.796005F));
+ builder.AddLine(new Vector2(-497.776001F, -222.296005F));
+ builder.AddLine(new Vector2(-496.623993F, -222.296005F));
+ builder.AddLine(new Vector2(-502.131989F, -235.796005F));
+ builder.AddLine(new Vector2(-505.731995F, -235.796005F));
+ builder.AddLine(new Vector2(-498.31601F, -218.552002F));
+ builder.AddLine(new Vector2(-496.372009F, -218.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1207()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-508.68399F, -218.695999F));
+ builder.AddLine(new Vector2(-508.68399F, -244.399994F));
+ builder.AddLine(new Vector2(-511.924011F, -244.399994F));
+ builder.AddLine(new Vector2(-511.924011F, -218.695999F));
+ builder.AddLine(new Vector2(-508.68399F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1208()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-516.640015F, -244.399994F));
+ builder.AddLine(new Vector2(-519.916016F, -244.399994F));
+ builder.AddLine(new Vector2(-519.916016F, -231.619995F));
+ builder.AddLine(new Vector2(-519.304016F, -227.479996F));
+ builder.AddLine(new Vector2(-519.916016F, -223.304001F));
+ builder.AddLine(new Vector2(-519.916016F, -218.695999F));
+ builder.AddLine(new Vector2(-516.640015F, -218.695999F));
+ builder.AddLine(new Vector2(-516.640015F, -244.399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-527.961975F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-528.789978F, -222.626007F), new Vector2(-529.437988F, -223.315994F), new Vector2(-529.906006F, -224.203995F));
+ builder.AddCubicBezier(new Vector2(-530.374023F, -225.091995F), new Vector2(-530.607971F, -226.112F), new Vector2(-530.607971F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-530.607971F, -228.416F), new Vector2(-530.374023F, -229.429993F), new Vector2(-529.906006F, -230.306F));
+ builder.AddCubicBezier(new Vector2(-529.437988F, -231.182007F), new Vector2(-528.796021F, -231.865997F), new Vector2(-527.97998F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(-527.164001F, -232.850006F), new Vector2(-526.216003F, -233.095993F), new Vector2(-525.135986F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-524.05603F, -233.095993F), new Vector2(-523.107971F, -232.843994F), new Vector2(-522.291992F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-521.476013F, -231.835999F), new Vector2(-520.840027F, -231.145996F), new Vector2(-520.383972F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-519.927979F, -229.393997F), new Vector2(-519.700012F, -228.380005F), new Vector2(-519.700012F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-519.700012F, -226.100006F), new Vector2(-519.927979F, -225.098007F), new Vector2(-520.383972F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-520.840027F, -223.345993F), new Vector2(-521.476013F, -222.656006F), new Vector2(-522.291992F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-523.107971F, -221.647995F), new Vector2(-524.05603F, -221.395996F), new Vector2(-525.135986F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-526.192017F, -221.395996F), new Vector2(-527.133972F, -221.641998F), new Vector2(-527.961975F, -222.134003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-522.14801F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-521.116028F, -219.686005F), new Vector2(-520.288025F, -220.436005F), new Vector2(-519.664001F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-519.039978F, -222.356003F), new Vector2(-518.692017F, -223.447998F), new Vector2(-518.619995F, -224.671997F));
+ builder.AddLine(new Vector2(-518.619995F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(-518.692017F, -231.067993F), new Vector2(-519.046021F, -232.166F), new Vector2(-519.682007F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-520.317993F, -234.061996F), new Vector2(-521.151978F, -234.806F), new Vector2(-522.184021F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-523.216003F, -235.886002F), new Vector2(-524.380005F, -236.156006F), new Vector2(-525.676025F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-527.236023F, -236.156006F), new Vector2(-528.640015F, -235.759995F), new Vector2(-529.888F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-531.135986F, -234.175995F), new Vector2(-532.125977F, -233.108002F), new Vector2(-532.857971F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-533.590027F, -230.419998F), new Vector2(-533.955994F, -228.908005F), new Vector2(-533.955994F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-533.955994F, -225.548004F), new Vector2(-533.590027F, -224.035995F), new Vector2(-532.857971F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-532.125977F, -221.348007F), new Vector2(-531.135986F, -220.285995F), new Vector2(-529.888F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-528.640015F, -218.725998F), new Vector2(-527.236023F, -218.335999F), new Vector2(-525.676025F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-524.356018F, -218.335999F), new Vector2(-523.179993F, -218.606003F), new Vector2(-522.14801F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1209()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-540.471985F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-539.296021F, -219.595993F), new Vector2(-538.288025F, -220.328003F), new Vector2(-537.447998F, -221.287994F));
+ builder.AddLine(new Vector2(-539.536011F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(-540.112F, -222.740005F), new Vector2(-540.802002F, -222.235992F), new Vector2(-541.606018F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(-542.409973F, -221.563995F), new Vector2(-543.291992F, -221.395996F), new Vector2(-544.252014F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-545.403992F, -221.395996F), new Vector2(-546.424011F, -221.641998F), new Vector2(-547.312012F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-548.200012F, -222.626007F), new Vector2(-548.883972F, -223.322006F), new Vector2(-549.364014F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-549.843994F, -225.121994F), new Vector2(-550.083984F, -226.171997F), new Vector2(-550.083984F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(-550.083984F, -228.548004F), new Vector2(-549.856018F, -229.567993F), new Vector2(-549.400024F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(-548.94397F, -231.296005F), new Vector2(-548.296021F, -231.968002F), new Vector2(-547.455994F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(-546.616028F, -232.927994F), new Vector2(-545.643982F, -233.167999F), new Vector2(-544.539978F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(-543.484009F, -233.167999F), new Vector2(-542.583984F, -232.945999F), new Vector2(-541.840027F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(-541.096008F, -232.057999F), new Vector2(-540.52002F, -231.434006F), new Vector2(-540.112F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(-539.703979F, -229.826004F), new Vector2(-539.5F, -228.848007F), new Vector2(-539.5F, -227.695999F));
+ builder.AddLine(new Vector2(-538.312012F, -228.740005F));
+ builder.AddLine(new Vector2(-551.02002F, -228.740005F));
+ builder.AddLine(new Vector2(-551.02002F, -226.039993F));
+ builder.AddLine(new Vector2(-536.583984F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(-536.512024F, -226.376007F), new Vector2(-536.463989F, -226.682007F), new Vector2(-536.440002F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(-536.416016F, -227.233994F), new Vector2(-536.403992F, -227.492004F), new Vector2(-536.403992F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(-536.403992F, -229.363998F), new Vector2(-536.745972F, -230.815994F), new Vector2(-537.429993F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(-538.114014F, -233.360001F), new Vector2(-539.067993F, -234.356003F), new Vector2(-540.291992F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(-541.515991F, -235.796005F), new Vector2(-542.90802F, -236.156006F), new Vector2(-544.468018F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-546.124023F, -236.156006F), new Vector2(-547.617981F, -235.766006F), new Vector2(-548.950012F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-550.281982F, -234.205994F), new Vector2(-551.338013F, -233.143997F), new Vector2(-552.117981F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-552.89801F, -230.455994F), new Vector2(-553.288025F, -228.944F), new Vector2(-553.288025F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-553.288025F, -225.559998F), new Vector2(-552.892029F, -224.035995F), new Vector2(-552.099976F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-551.307983F, -221.348007F), new Vector2(-550.234009F, -220.285995F), new Vector2(-548.877991F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-547.521973F, -218.725998F), new Vector2(-545.97998F, -218.335999F), new Vector2(-544.252014F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-542.90802F, -218.335999F), new Vector2(-541.64801F, -218.587997F), new Vector2(-540.471985F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1210()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-554.799988F, -232.843994F));
+ builder.AddLine(new Vector2(-554.799988F, -235.796005F));
+ builder.AddLine(new Vector2(-566.463989F, -235.796005F));
+ builder.AddLine(new Vector2(-566.463989F, -232.843994F));
+ builder.AddLine(new Vector2(-554.799988F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-559.012024F, -218.695999F));
+ builder.AddLine(new Vector2(-559.012024F, -242.960007F));
+ builder.AddLine(new Vector2(-562.252014F, -242.960007F));
+ builder.AddLine(new Vector2(-562.252014F, -218.695999F));
+ builder.AddLine(new Vector2(-559.012024F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1211()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-574.888F, -231.944F));
+ builder.AddCubicBezier(new Vector2(-574.119995F, -232.712006F), new Vector2(-573.135986F, -233.095993F), new Vector2(-571.935974F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-571.359985F, -233.095993F), new Vector2(-570.856018F, -233.011993F), new Vector2(-570.424011F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(-569.992004F, -232.675995F), new Vector2(-569.596008F, -232.399994F), new Vector2(-569.236023F, -232.016006F));
+ builder.AddLine(new Vector2(-567.112F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-567.711975F, -234.908005F), new Vector2(-568.359985F, -235.406006F), new Vector2(-569.05603F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(-569.752014F, -236.005997F), new Vector2(-570.531982F, -236.156006F), new Vector2(-571.395996F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-573.291992F, -236.156006F), new Vector2(-574.744019F, -235.507996F), new Vector2(-575.752014F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-576.76001F, -232.916F), new Vector2(-577.263977F, -231.175995F), new Vector2(-577.263977F, -228.992004F));
+ builder.AddLine(new Vector2(-576.039978F, -228.416F));
+ builder.AddCubicBezier(new Vector2(-576.039978F, -230F), new Vector2(-575.656006F, -231.175995F), new Vector2(-574.888F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-576.039978F, -218.695999F));
+ builder.AddLine(new Vector2(-576.039978F, -235.796005F));
+ builder.AddLine(new Vector2(-579.280029F, -235.796005F));
+ builder.AddLine(new Vector2(-579.280029F, -218.695999F));
+ builder.AddLine(new Vector2(-576.039978F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1212()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-594.687988F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-595.528015F, -222.727997F), new Vector2(-596.187988F, -223.417999F), new Vector2(-596.66803F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-597.14801F, -225.169998F), new Vector2(-597.388F, -226.171997F), new Vector2(-597.388F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-597.388F, -228.404007F), new Vector2(-597.14801F, -229.388F), new Vector2(-596.66803F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-596.187988F, -231.115997F), new Vector2(-595.528015F, -231.794006F), new Vector2(-594.687988F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-593.848022F, -232.778F), new Vector2(-592.900024F, -233.024002F), new Vector2(-591.843994F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(-590.73999F, -233.024002F), new Vector2(-589.773987F, -232.778F), new Vector2(-588.945984F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-588.117981F, -231.794006F), new Vector2(-587.458008F, -231.115997F), new Vector2(-586.966003F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-586.473999F, -229.388F), new Vector2(-586.228027F, -228.404007F), new Vector2(-586.228027F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-586.228027F, -226.171997F), new Vector2(-586.468018F, -225.169998F), new Vector2(-586.947998F, -224.294006F));
+ builder.AddCubicBezier(new Vector2(-587.427979F, -223.417999F), new Vector2(-588.088013F, -222.727997F), new Vector2(-588.927979F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-589.768005F, -221.720001F), new Vector2(-590.73999F, -221.468002F), new Vector2(-591.843994F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-592.900024F, -221.468002F), new Vector2(-593.848022F, -221.720001F), new Vector2(-594.687988F, -222.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-587.289978F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-585.934021F, -220.315994F), new Vector2(-584.859985F, -221.389999F), new Vector2(-584.067993F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-583.276001F, -224.102005F), new Vector2(-582.880005F, -225.619995F), new Vector2(-582.880005F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-582.880005F, -228.955994F), new Vector2(-583.276001F, -230.455994F), new Vector2(-584.067993F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-584.859985F, -233.143997F), new Vector2(-585.934021F, -234.205994F), new Vector2(-587.289978F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-588.645996F, -235.766006F), new Vector2(-590.164001F, -236.156006F), new Vector2(-591.843994F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-593.5F, -236.156006F), new Vector2(-595F, -235.759995F), new Vector2(-596.343994F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-597.687988F, -234.175995F), new Vector2(-598.755981F, -233.113998F), new Vector2(-599.547974F, -231.781998F));
+ builder.AddCubicBezier(new Vector2(-600.340027F, -230.449997F), new Vector2(-600.736023F, -228.955994F), new Vector2(-600.736023F, -227.300003F));
+ builder.AddCubicBezier(new Vector2(-600.736023F, -225.619995F), new Vector2(-600.340027F, -224.102005F), new Vector2(-599.547974F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-598.755981F, -221.389999F), new Vector2(-597.687988F, -220.315994F), new Vector2(-596.343994F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-595F, -218.731995F), new Vector2(-593.5F, -218.335999F), new Vector2(-591.843994F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-590.164001F, -218.335999F), new Vector2(-588.645996F, -218.731995F), new Vector2(-587.289978F, -219.524002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1213()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-614.937988F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-615.765991F, -222.656006F), new Vector2(-616.401978F, -223.345993F), new Vector2(-616.846008F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-617.289978F, -225.098007F), new Vector2(-617.512024F, -226.100006F), new Vector2(-617.512024F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-617.512024F, -228.380005F), new Vector2(-617.283997F, -229.393997F), new Vector2(-616.828003F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-616.372009F, -231.145996F), new Vector2(-615.736023F, -231.835999F), new Vector2(-614.919983F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-614.104004F, -232.843994F), new Vector2(-613.16803F, -233.095993F), new Vector2(-612.112F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-611.031982F, -233.095993F), new Vector2(-610.083984F, -232.843994F), new Vector2(-609.268005F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-608.452026F, -231.835999F), new Vector2(-607.809998F, -231.145996F), new Vector2(-607.34198F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-606.874023F, -229.393997F), new Vector2(-606.640015F, -228.391998F), new Vector2(-606.640015F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-606.640015F, -226.112F), new Vector2(-606.874023F, -225.098007F), new Vector2(-607.34198F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-607.809998F, -223.345993F), new Vector2(-608.452026F, -222.656006F), new Vector2(-609.268005F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-610.083984F, -221.647995F), new Vector2(-611.031982F, -221.395996F), new Vector2(-612.112F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-613.16803F, -221.395996F), new Vector2(-614.109985F, -221.647995F), new Vector2(-614.937988F, -222.151993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-617.33197F, -211.531998F));
+ builder.AddLine(new Vector2(-617.33197F, -222.979996F));
+ builder.AddLine(new Vector2(-617.94397F, -227.156006F));
+ builder.AddLine(new Vector2(-617.33197F, -231.296005F));
+ builder.AddLine(new Vector2(-617.33197F, -235.796005F));
+ builder.AddLine(new Vector2(-620.572021F, -235.796005F));
+ builder.AddLine(new Vector2(-620.572021F, -211.531998F));
+ builder.AddLine(new Vector2(-617.33197F, -211.531998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-607.34198F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-606.08197F, -220.285995F), new Vector2(-605.09198F, -221.348007F), new Vector2(-604.372009F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-603.651978F, -224.035995F), new Vector2(-603.291992F, -225.548004F), new Vector2(-603.291992F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-603.291992F, -228.908005F), new Vector2(-603.651978F, -230.419998F), new Vector2(-604.372009F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-605.09198F, -233.108002F), new Vector2(-606.08197F, -234.175995F), new Vector2(-607.34198F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-608.60199F, -235.759995F), new Vector2(-610.012024F, -236.156006F), new Vector2(-611.572021F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-612.843994F, -236.156006F), new Vector2(-614.002014F, -235.886002F), new Vector2(-615.046021F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-616.090027F, -234.806F), new Vector2(-616.929993F, -234.061996F), new Vector2(-617.565979F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-618.202026F, -232.166F), new Vector2(-618.55603F, -231.067993F), new Vector2(-618.627991F, -229.820007F));
+ builder.AddLine(new Vector2(-618.627991F, -224.671997F));
+ builder.AddCubicBezier(new Vector2(-618.55603F, -223.447998F), new Vector2(-618.208008F, -222.356003F), new Vector2(-617.583984F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-616.960022F, -220.436005F), new Vector2(-616.125977F, -219.686005F), new Vector2(-615.08197F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-614.038025F, -218.606003F), new Vector2(-612.867981F, -218.335999F), new Vector2(-611.572021F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-610.012024F, -218.335999F), new Vector2(-608.60199F, -218.725998F), new Vector2(-607.34198F, -219.505997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1214()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-628.16803F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-626.992004F, -219.595993F), new Vector2(-625.984009F, -220.328003F), new Vector2(-625.143982F, -221.287994F));
+ builder.AddLine(new Vector2(-627.231995F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(-627.807983F, -222.740005F), new Vector2(-628.497986F, -222.235992F), new Vector2(-629.302002F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(-630.106018F, -221.563995F), new Vector2(-630.987976F, -221.395996F), new Vector2(-631.947998F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-633.099976F, -221.395996F), new Vector2(-634.119995F, -221.641998F), new Vector2(-635.007996F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-635.895996F, -222.626007F), new Vector2(-636.580017F, -223.322006F), new Vector2(-637.059998F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-637.539978F, -225.121994F), new Vector2(-637.780029F, -226.171997F), new Vector2(-637.780029F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(-637.780029F, -228.548004F), new Vector2(-637.552002F, -229.567993F), new Vector2(-637.096008F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(-636.640015F, -231.296005F), new Vector2(-635.992004F, -231.968002F), new Vector2(-635.151978F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(-634.312012F, -232.927994F), new Vector2(-633.340027F, -233.167999F), new Vector2(-632.236023F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(-631.179993F, -233.167999F), new Vector2(-630.280029F, -232.945999F), new Vector2(-629.536011F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(-628.791992F, -232.057999F), new Vector2(-628.216003F, -231.434006F), new Vector2(-627.807983F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(-627.400024F, -229.826004F), new Vector2(-627.195984F, -228.848007F), new Vector2(-627.195984F, -227.695999F));
+ builder.AddLine(new Vector2(-626.007996F, -228.740005F));
+ builder.AddLine(new Vector2(-638.716003F, -228.740005F));
+ builder.AddLine(new Vector2(-638.716003F, -226.039993F));
+ builder.AddLine(new Vector2(-624.280029F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(-624.208008F, -226.376007F), new Vector2(-624.159973F, -226.682007F), new Vector2(-624.135986F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(-624.112F, -227.233994F), new Vector2(-624.099976F, -227.492004F), new Vector2(-624.099976F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(-624.099976F, -229.363998F), new Vector2(-624.442017F, -230.815994F), new Vector2(-625.125977F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(-625.809998F, -233.360001F), new Vector2(-626.763977F, -234.356003F), new Vector2(-627.987976F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(-629.211975F, -235.796005F), new Vector2(-630.604004F, -236.156006F), new Vector2(-632.164001F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-633.820007F, -236.156006F), new Vector2(-635.314026F, -235.766006F), new Vector2(-636.645996F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-637.978027F, -234.205994F), new Vector2(-639.033997F, -233.143997F), new Vector2(-639.814026F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-640.593994F, -230.455994F), new Vector2(-640.984009F, -228.944F), new Vector2(-640.984009F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-640.984009F, -225.559998F), new Vector2(-640.588013F, -224.035995F), new Vector2(-639.796021F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-639.004028F, -221.348007F), new Vector2(-637.929993F, -220.285995F), new Vector2(-636.573975F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-635.218018F, -218.725998F), new Vector2(-633.676025F, -218.335999F), new Vector2(-631.947998F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-630.604004F, -218.335999F), new Vector2(-629.343994F, -218.587997F), new Vector2(-628.16803F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1215()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-649.372009F, -231.944F));
+ builder.AddCubicBezier(new Vector2(-648.604004F, -232.712006F), new Vector2(-647.619995F, -233.095993F), new Vector2(-646.419983F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-645.843994F, -233.095993F), new Vector2(-645.340027F, -233.011993F), new Vector2(-644.90802F, -232.843994F));
+ builder.AddCubicBezier(new Vector2(-644.476013F, -232.675995F), new Vector2(-644.080017F, -232.399994F), new Vector2(-643.719971F, -232.016006F));
+ builder.AddLine(new Vector2(-641.596008F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-642.195984F, -234.908005F), new Vector2(-642.843994F, -235.406006F), new Vector2(-643.539978F, -235.705994F));
+ builder.AddCubicBezier(new Vector2(-644.236023F, -236.005997F), new Vector2(-645.015991F, -236.156006F), new Vector2(-645.880005F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-647.776001F, -236.156006F), new Vector2(-649.228027F, -235.507996F), new Vector2(-650.236023F, -234.212006F));
+ builder.AddCubicBezier(new Vector2(-651.244019F, -232.916F), new Vector2(-651.747986F, -231.175995F), new Vector2(-651.747986F, -228.992004F));
+ builder.AddLine(new Vector2(-650.523987F, -228.416F));
+ builder.AddCubicBezier(new Vector2(-650.523987F, -230F), new Vector2(-650.140015F, -231.175995F), new Vector2(-649.372009F, -231.944F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-650.523987F, -218.695999F));
+ builder.AddLine(new Vector2(-650.523987F, -235.796005F));
+ builder.AddLine(new Vector2(-653.763977F, -235.796005F));
+ builder.AddLine(new Vector2(-653.763977F, -218.695999F));
+ builder.AddLine(new Vector2(-650.523987F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1216()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-664.383972F, -232.843994F));
+ builder.AddLine(new Vector2(-664.383972F, -235.796005F));
+ builder.AddLine(new Vector2(-676.047974F, -235.796005F));
+ builder.AddLine(new Vector2(-676.047974F, -232.843994F));
+ builder.AddLine(new Vector2(-664.383972F, -232.843994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-668.596008F, -218.695999F));
+ builder.AddLine(new Vector2(-668.596008F, -242.960007F));
+ builder.AddLine(new Vector2(-671.835999F, -242.960007F));
+ builder.AddLine(new Vector2(-671.835999F, -218.695999F));
+ builder.AddLine(new Vector2(-668.596008F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1217()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-679.791992F, -218.695999F));
+ builder.AddLine(new Vector2(-679.791992F, -243.679993F));
+ builder.AddLine(new Vector2(-683.176025F, -243.679993F));
+ builder.AddLine(new Vector2(-683.176025F, -218.695999F));
+ builder.AddLine(new Vector2(-679.791992F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1218()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-697.125977F, -219.037994F));
+ builder.AddCubicBezier(new Vector2(-696.682007F, -219.505997F), new Vector2(-696.460022F, -220.063995F), new Vector2(-696.460022F, -220.712006F));
+ builder.AddCubicBezier(new Vector2(-696.460022F, -221.384003F), new Vector2(-696.682007F, -221.942001F), new Vector2(-697.125977F, -222.386002F));
+ builder.AddCubicBezier(new Vector2(-697.570007F, -222.830002F), new Vector2(-698.127991F, -223.052002F), new Vector2(-698.799988F, -223.052002F));
+ builder.AddCubicBezier(new Vector2(-699.495972F, -223.052002F), new Vector2(-700.059998F, -222.830002F), new Vector2(-700.492004F, -222.386002F));
+ builder.AddCubicBezier(new Vector2(-700.924011F, -221.942001F), new Vector2(-701.140015F, -221.384003F), new Vector2(-701.140015F, -220.712006F));
+ builder.AddCubicBezier(new Vector2(-701.140015F, -220.063995F), new Vector2(-700.924011F, -219.505997F), new Vector2(-700.492004F, -219.037994F));
+ builder.AddCubicBezier(new Vector2(-700.059998F, -218.570007F), new Vector2(-699.495972F, -218.335999F), new Vector2(-698.799988F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-698.127991F, -218.335999F), new Vector2(-697.570007F, -218.570007F), new Vector2(-697.125977F, -219.037994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1219()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-706.359985F, -244.399994F));
+ builder.AddLine(new Vector2(-709.635986F, -244.399994F));
+ builder.AddLine(new Vector2(-709.635986F, -231.619995F));
+ builder.AddLine(new Vector2(-709.023987F, -227.479996F));
+ builder.AddLine(new Vector2(-709.635986F, -223.304001F));
+ builder.AddLine(new Vector2(-709.635986F, -218.695999F));
+ builder.AddLine(new Vector2(-706.359985F, -218.695999F));
+ builder.AddLine(new Vector2(-706.359985F, -244.399994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-717.682007F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-718.51001F, -222.626007F), new Vector2(-719.15802F, -223.315994F), new Vector2(-719.625977F, -224.203995F));
+ builder.AddCubicBezier(new Vector2(-720.093994F, -225.091995F), new Vector2(-720.328003F, -226.112F), new Vector2(-720.328003F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-720.328003F, -228.416F), new Vector2(-720.093994F, -229.429993F), new Vector2(-719.625977F, -230.306F));
+ builder.AddCubicBezier(new Vector2(-719.15802F, -231.182007F), new Vector2(-718.515991F, -231.865997F), new Vector2(-717.700012F, -232.358002F));
+ builder.AddCubicBezier(new Vector2(-716.883972F, -232.850006F), new Vector2(-715.935974F, -233.095993F), new Vector2(-714.856018F, -233.095993F));
+ builder.AddCubicBezier(new Vector2(-713.776001F, -233.095993F), new Vector2(-712.828003F, -232.843994F), new Vector2(-712.012024F, -232.339996F));
+ builder.AddCubicBezier(new Vector2(-711.195984F, -231.835999F), new Vector2(-710.559998F, -231.145996F), new Vector2(-710.104004F, -230.270004F));
+ builder.AddCubicBezier(new Vector2(-709.64801F, -229.393997F), new Vector2(-709.419983F, -228.380005F), new Vector2(-709.419983F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-709.419983F, -226.100006F), new Vector2(-709.64801F, -225.098007F), new Vector2(-710.104004F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-710.559998F, -223.345993F), new Vector2(-711.195984F, -222.656006F), new Vector2(-712.012024F, -222.151993F));
+ builder.AddCubicBezier(new Vector2(-712.828003F, -221.647995F), new Vector2(-713.776001F, -221.395996F), new Vector2(-714.856018F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-715.911987F, -221.395996F), new Vector2(-716.854004F, -221.641998F), new Vector2(-717.682007F, -222.134003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-711.867981F, -219.145996F));
+ builder.AddCubicBezier(new Vector2(-710.835999F, -219.686005F), new Vector2(-710.007996F, -220.436005F), new Vector2(-709.383972F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-708.76001F, -222.356003F), new Vector2(-708.411987F, -223.447998F), new Vector2(-708.340027F, -224.671997F));
+ builder.AddLine(new Vector2(-708.340027F, -229.820007F));
+ builder.AddCubicBezier(new Vector2(-708.411987F, -231.067993F), new Vector2(-708.765991F, -232.166F), new Vector2(-709.401978F, -233.113998F));
+ builder.AddCubicBezier(new Vector2(-710.038025F, -234.061996F), new Vector2(-710.872009F, -234.806F), new Vector2(-711.903992F, -235.345993F));
+ builder.AddCubicBezier(new Vector2(-712.935974F, -235.886002F), new Vector2(-714.099976F, -236.156006F), new Vector2(-715.395996F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-716.955994F, -236.156006F), new Vector2(-718.359985F, -235.759995F), new Vector2(-719.607971F, -234.968002F));
+ builder.AddCubicBezier(new Vector2(-720.856018F, -234.175995F), new Vector2(-721.846008F, -233.108002F), new Vector2(-722.578003F, -231.764008F));
+ builder.AddCubicBezier(new Vector2(-723.309998F, -230.419998F), new Vector2(-723.676025F, -228.908005F), new Vector2(-723.676025F, -227.227997F));
+ builder.AddCubicBezier(new Vector2(-723.676025F, -225.548004F), new Vector2(-723.309998F, -224.035995F), new Vector2(-722.578003F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-721.846008F, -221.348007F), new Vector2(-720.856018F, -220.285995F), new Vector2(-719.607971F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-718.359985F, -218.725998F), new Vector2(-716.955994F, -218.335999F), new Vector2(-715.395996F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-714.075989F, -218.335999F), new Vector2(-712.900024F, -218.606003F), new Vector2(-711.867981F, -219.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1220()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-730.192017F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-729.015991F, -219.595993F), new Vector2(-728.007996F, -220.328003F), new Vector2(-727.16803F, -221.287994F));
+ builder.AddLine(new Vector2(-729.255981F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(-729.83197F, -222.740005F), new Vector2(-730.521973F, -222.235992F), new Vector2(-731.325989F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(-732.130005F, -221.563995F), new Vector2(-733.012024F, -221.395996F), new Vector2(-733.971985F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-735.124023F, -221.395996F), new Vector2(-736.143982F, -221.641998F), new Vector2(-737.031982F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-737.919983F, -222.626007F), new Vector2(-738.604004F, -223.322006F), new Vector2(-739.083984F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-739.564026F, -225.121994F), new Vector2(-739.804016F, -226.171997F), new Vector2(-739.804016F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(-739.804016F, -228.548004F), new Vector2(-739.575989F, -229.567993F), new Vector2(-739.119995F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(-738.664001F, -231.296005F), new Vector2(-738.015991F, -231.968002F), new Vector2(-737.176025F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(-736.335999F, -232.927994F), new Vector2(-735.364014F, -233.167999F), new Vector2(-734.26001F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(-733.203979F, -233.167999F), new Vector2(-732.304016F, -232.945999F), new Vector2(-731.559998F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(-730.815979F, -232.057999F), new Vector2(-730.23999F, -231.434006F), new Vector2(-729.83197F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(-729.424011F, -229.826004F), new Vector2(-729.219971F, -228.848007F), new Vector2(-729.219971F, -227.695999F));
+ builder.AddLine(new Vector2(-728.031982F, -228.740005F));
+ builder.AddLine(new Vector2(-740.73999F, -228.740005F));
+ builder.AddLine(new Vector2(-740.73999F, -226.039993F));
+ builder.AddLine(new Vector2(-726.304016F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(-726.231995F, -226.376007F), new Vector2(-726.184021F, -226.682007F), new Vector2(-726.159973F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(-726.135986F, -227.233994F), new Vector2(-726.124023F, -227.492004F), new Vector2(-726.124023F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(-726.124023F, -229.363998F), new Vector2(-726.466003F, -230.815994F), new Vector2(-727.150024F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(-727.833984F, -233.360001F), new Vector2(-728.788025F, -234.356003F), new Vector2(-730.012024F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(-731.236023F, -235.796005F), new Vector2(-732.627991F, -236.156006F), new Vector2(-734.187988F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-735.843994F, -236.156006F), new Vector2(-737.338013F, -235.766006F), new Vector2(-738.669983F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-740.002014F, -234.205994F), new Vector2(-741.057983F, -233.143997F), new Vector2(-741.838013F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-742.617981F, -230.455994F), new Vector2(-743.007996F, -228.944F), new Vector2(-743.007996F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-743.007996F, -225.559998F), new Vector2(-742.612F, -224.035995F), new Vector2(-741.820007F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-741.028015F, -221.348007F), new Vector2(-739.953979F, -220.285995F), new Vector2(-738.598022F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-737.242004F, -218.725998F), new Vector2(-735.700012F, -218.335999F), new Vector2(-733.971985F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-732.627991F, -218.335999F), new Vector2(-731.367981F, -218.587997F), new Vector2(-730.192017F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1221()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-747.669983F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-746.530029F, -219.595993F), new Vector2(-745.564026F, -220.304001F), new Vector2(-744.771973F, -221.216003F));
+ builder.AddLine(new Vector2(-746.895996F, -223.376007F));
+ builder.AddCubicBezier(new Vector2(-747.447998F, -222.751999F), new Vector2(-748.10199F, -222.278F), new Vector2(-748.857971F, -221.953995F));
+ builder.AddCubicBezier(new Vector2(-749.614014F, -221.630005F), new Vector2(-750.447998F, -221.468002F), new Vector2(-751.359985F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-752.440002F, -221.468002F), new Vector2(-753.400024F, -221.720001F), new Vector2(-754.23999F, -222.223999F));
+ builder.AddCubicBezier(new Vector2(-755.080017F, -222.727997F), new Vector2(-755.73999F, -223.412003F), new Vector2(-756.219971F, -224.276001F));
+ builder.AddCubicBezier(new Vector2(-756.700012F, -225.139999F), new Vector2(-756.940002F, -226.136002F), new Vector2(-756.940002F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-756.940002F, -228.391998F), new Vector2(-756.700012F, -229.388F), new Vector2(-756.219971F, -230.251999F));
+ builder.AddCubicBezier(new Vector2(-755.73999F, -231.115997F), new Vector2(-755.080017F, -231.794006F), new Vector2(-754.23999F, -232.285995F));
+ builder.AddCubicBezier(new Vector2(-753.400024F, -232.778F), new Vector2(-752.440002F, -233.024002F), new Vector2(-751.359985F, -233.024002F));
+ builder.AddCubicBezier(new Vector2(-750.471985F, -233.024002F), new Vector2(-749.643982F, -232.862F), new Vector2(-748.875977F, -232.537994F));
+ builder.AddCubicBezier(new Vector2(-748.107971F, -232.214005F), new Vector2(-747.460022F, -231.740005F), new Vector2(-746.932007F, -231.115997F));
+ builder.AddLine(new Vector2(-744.771973F, -233.276001F));
+ builder.AddCubicBezier(new Vector2(-745.588013F, -234.212006F), new Vector2(-746.559998F, -234.925995F), new Vector2(-747.687988F, -235.417999F));
+ builder.AddCubicBezier(new Vector2(-748.815979F, -235.910004F), new Vector2(-750.039978F, -236.156006F), new Vector2(-751.359985F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-753.039978F, -236.156006F), new Vector2(-754.557983F, -235.766006F), new Vector2(-755.914001F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-757.27002F, -234.205994F), new Vector2(-758.338013F, -233.143997F), new Vector2(-759.117981F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-759.89801F, -230.455994F), new Vector2(-760.288025F, -228.944F), new Vector2(-760.288025F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-760.288025F, -225.608002F), new Vector2(-759.89801F, -224.102005F), new Vector2(-759.117981F, -222.746002F));
+ builder.AddCubicBezier(new Vector2(-758.338013F, -221.389999F), new Vector2(-757.27002F, -220.315994F), new Vector2(-755.914001F, -219.524002F));
+ builder.AddCubicBezier(new Vector2(-754.557983F, -218.731995F), new Vector2(-753.039978F, -218.335999F), new Vector2(-751.359985F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-750.039978F, -218.335999F), new Vector2(-748.809998F, -218.587997F), new Vector2(-747.669983F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1222()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-775.659973F, -218.695999F));
+ builder.AddLine(new Vector2(-775.659973F, -235.796005F));
+ builder.AddLine(new Vector2(-778.900024F, -235.796005F));
+ builder.AddLine(new Vector2(-778.900024F, -218.695999F));
+ builder.AddLine(new Vector2(-775.659973F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-763.564026F, -218.695999F));
+ builder.AddLine(new Vector2(-763.564026F, -229.315994F));
+ builder.AddCubicBezier(new Vector2(-763.564026F, -230.492004F), new Vector2(-763.85199F, -231.602005F), new Vector2(-764.427979F, -232.645996F));
+ builder.AddCubicBezier(new Vector2(-765.004028F, -233.690002F), new Vector2(-765.789978F, -234.535995F), new Vector2(-766.786011F, -235.184006F));
+ builder.AddCubicBezier(new Vector2(-767.781982F, -235.832001F), new Vector2(-768.927979F, -236.156006F), new Vector2(-770.223999F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-771.52002F, -236.156006F), new Vector2(-772.684021F, -235.862F), new Vector2(-773.716003F, -235.274002F));
+ builder.AddCubicBezier(new Vector2(-774.747986F, -234.686005F), new Vector2(-775.552002F, -233.888F), new Vector2(-776.127991F, -232.880005F));
+ builder.AddCubicBezier(new Vector2(-776.703979F, -231.871994F), new Vector2(-776.992004F, -230.720001F), new Vector2(-776.992004F, -229.423996F));
+ builder.AddLine(new Vector2(-775.659973F, -228.667999F));
+ builder.AddCubicBezier(new Vector2(-775.659973F, -229.531998F), new Vector2(-775.468018F, -230.300003F), new Vector2(-775.083984F, -230.972F));
+ builder.AddCubicBezier(new Vector2(-774.700012F, -231.643997F), new Vector2(-774.171997F, -232.171997F), new Vector2(-773.5F, -232.556F));
+ builder.AddCubicBezier(new Vector2(-772.828003F, -232.940002F), new Vector2(-772.059998F, -233.132004F), new Vector2(-771.195984F, -233.132004F));
+ builder.AddCubicBezier(new Vector2(-769.900024F, -233.132004F), new Vector2(-768.849976F, -232.712006F), new Vector2(-768.046021F, -231.871994F));
+ builder.AddCubicBezier(new Vector2(-767.242004F, -231.031998F), new Vector2(-766.840027F, -229.964005F), new Vector2(-766.840027F, -228.667999F));
+ builder.AddLine(new Vector2(-766.840027F, -218.695999F));
+ builder.AddLine(new Vector2(-763.564026F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1223()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-786.495972F, -219.091995F));
+ builder.AddCubicBezier(new Vector2(-785.320007F, -219.595993F), new Vector2(-784.312012F, -220.328003F), new Vector2(-783.471985F, -221.287994F));
+ builder.AddLine(new Vector2(-785.559998F, -223.412003F));
+ builder.AddCubicBezier(new Vector2(-786.135986F, -222.740005F), new Vector2(-786.825989F, -222.235992F), new Vector2(-787.630005F, -221.899994F));
+ builder.AddCubicBezier(new Vector2(-788.434021F, -221.563995F), new Vector2(-789.315979F, -221.395996F), new Vector2(-790.276001F, -221.395996F));
+ builder.AddCubicBezier(new Vector2(-791.427979F, -221.395996F), new Vector2(-792.447998F, -221.641998F), new Vector2(-793.335999F, -222.134003F));
+ builder.AddCubicBezier(new Vector2(-794.223999F, -222.626007F), new Vector2(-794.90802F, -223.322006F), new Vector2(-795.388F, -224.222F));
+ builder.AddCubicBezier(new Vector2(-795.867981F, -225.121994F), new Vector2(-796.107971F, -226.171997F), new Vector2(-796.107971F, -227.371994F));
+ builder.AddCubicBezier(new Vector2(-796.107971F, -228.548004F), new Vector2(-795.880005F, -229.567993F), new Vector2(-795.424011F, -230.432007F));
+ builder.AddCubicBezier(new Vector2(-794.968018F, -231.296005F), new Vector2(-794.320007F, -231.968002F), new Vector2(-793.47998F, -232.447998F));
+ builder.AddCubicBezier(new Vector2(-792.640015F, -232.927994F), new Vector2(-791.66803F, -233.167999F), new Vector2(-790.564026F, -233.167999F));
+ builder.AddCubicBezier(new Vector2(-789.507996F, -233.167999F), new Vector2(-788.607971F, -232.945999F), new Vector2(-787.864014F, -232.501999F));
+ builder.AddCubicBezier(new Vector2(-787.119995F, -232.057999F), new Vector2(-786.544006F, -231.434006F), new Vector2(-786.135986F, -230.630005F));
+ builder.AddCubicBezier(new Vector2(-785.728027F, -229.826004F), new Vector2(-785.523987F, -228.848007F), new Vector2(-785.523987F, -227.695999F));
+ builder.AddLine(new Vector2(-784.335999F, -228.740005F));
+ builder.AddLine(new Vector2(-797.044006F, -228.740005F));
+ builder.AddLine(new Vector2(-797.044006F, -226.039993F));
+ builder.AddLine(new Vector2(-782.607971F, -226.039993F));
+ builder.AddCubicBezier(new Vector2(-782.536011F, -226.376007F), new Vector2(-782.487976F, -226.682007F), new Vector2(-782.463989F, -226.957993F));
+ builder.AddCubicBezier(new Vector2(-782.440002F, -227.233994F), new Vector2(-782.427979F, -227.492004F), new Vector2(-782.427979F, -227.731995F));
+ builder.AddCubicBezier(new Vector2(-782.427979F, -229.363998F), new Vector2(-782.77002F, -230.815994F), new Vector2(-783.453979F, -232.087997F));
+ builder.AddCubicBezier(new Vector2(-784.138F, -233.360001F), new Vector2(-785.09198F, -234.356003F), new Vector2(-786.315979F, -235.076004F));
+ builder.AddCubicBezier(new Vector2(-787.539978F, -235.796005F), new Vector2(-788.932007F, -236.156006F), new Vector2(-790.492004F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-792.14801F, -236.156006F), new Vector2(-793.642029F, -235.766006F), new Vector2(-794.973999F, -234.985992F));
+ builder.AddCubicBezier(new Vector2(-796.30603F, -234.205994F), new Vector2(-797.362F, -233.143997F), new Vector2(-798.142029F, -231.800003F));
+ builder.AddCubicBezier(new Vector2(-798.921997F, -230.455994F), new Vector2(-799.312012F, -228.944F), new Vector2(-799.312012F, -227.264008F));
+ builder.AddCubicBezier(new Vector2(-799.312012F, -225.559998F), new Vector2(-798.916016F, -224.035995F), new Vector2(-798.124023F, -222.692001F));
+ builder.AddCubicBezier(new Vector2(-797.33197F, -221.348007F), new Vector2(-796.257996F, -220.285995F), new Vector2(-794.901978F, -219.505997F));
+ builder.AddCubicBezier(new Vector2(-793.546021F, -218.725998F), new Vector2(-792.004028F, -218.335999F), new Vector2(-790.276001F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-788.932007F, -218.335999F), new Vector2(-787.671997F, -218.587997F), new Vector2(-786.495972F, -219.091995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1224()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-802.947998F, -218.695999F));
+ builder.AddLine(new Vector2(-802.947998F, -244.399994F));
+ builder.AddLine(new Vector2(-806.187988F, -244.399994F));
+ builder.AddLine(new Vector2(-806.187988F, -218.695999F));
+ builder.AddLine(new Vector2(-802.947998F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1225()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-811.119995F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-810.736023F, -240.205994F), new Vector2(-810.544006F, -240.703995F), new Vector2(-810.544006F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-810.544006F, -241.880005F), new Vector2(-810.736023F, -242.365997F), new Vector2(-811.119995F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-811.504028F, -243.158005F), new Vector2(-811.995972F, -243.356003F), new Vector2(-812.596008F, -243.356003F));
+ builder.AddCubicBezier(new Vector2(-813.195984F, -243.356003F), new Vector2(-813.687988F, -243.158005F), new Vector2(-814.072021F, -242.761993F));
+ builder.AddCubicBezier(new Vector2(-814.455994F, -242.365997F), new Vector2(-814.64801F, -241.880005F), new Vector2(-814.64801F, -241.304001F));
+ builder.AddCubicBezier(new Vector2(-814.64801F, -240.703995F), new Vector2(-814.455994F, -240.205994F), new Vector2(-814.072021F, -239.809998F));
+ builder.AddCubicBezier(new Vector2(-813.687988F, -239.414001F), new Vector2(-813.195984F, -239.216003F), new Vector2(-812.596008F, -239.216003F));
+ builder.AddCubicBezier(new Vector2(-811.995972F, -239.216003F), new Vector2(-811.504028F, -239.414001F), new Vector2(-811.119995F, -239.809998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-810.976013F, -218.695999F));
+ builder.AddLine(new Vector2(-810.976013F, -235.796005F));
+ builder.AddLine(new Vector2(-814.252014F, -235.796005F));
+ builder.AddLine(new Vector2(-814.252014F, -218.695999F));
+ builder.AddLine(new Vector2(-810.976013F, -218.695999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1226()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-819.598022F, -219.740005F));
+ builder.AddCubicBezier(new Vector2(-818.458008F, -220.675995F), new Vector2(-817.888F, -221.947998F), new Vector2(-817.888F, -223.556F));
+ builder.AddCubicBezier(new Vector2(-817.888F, -224.612F), new Vector2(-818.109985F, -225.464005F), new Vector2(-818.554016F, -226.112F));
+ builder.AddCubicBezier(new Vector2(-818.997986F, -226.759995F), new Vector2(-819.567993F, -227.276001F), new Vector2(-820.263977F, -227.660004F));
+ builder.AddCubicBezier(new Vector2(-820.960022F, -228.044006F), new Vector2(-821.692017F, -228.350006F), new Vector2(-822.460022F, -228.578003F));
+ builder.AddCubicBezier(new Vector2(-823.228027F, -228.806F), new Vector2(-823.966003F, -229.028F), new Vector2(-824.674011F, -229.244003F));
+ builder.AddCubicBezier(new Vector2(-825.382019F, -229.460007F), new Vector2(-825.952026F, -229.723999F), new Vector2(-826.383972F, -230.035995F));
+ builder.AddCubicBezier(new Vector2(-826.815979F, -230.348007F), new Vector2(-827.031982F, -230.792007F), new Vector2(-827.031982F, -231.367996F));
+ builder.AddCubicBezier(new Vector2(-827.031982F, -231.919998F), new Vector2(-826.786011F, -232.363998F), new Vector2(-826.294006F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-825.802002F, -233.035995F), new Vector2(-825.088013F, -233.203995F), new Vector2(-824.151978F, -233.203995F));
+ builder.AddCubicBezier(new Vector2(-823.263977F, -233.203995F), new Vector2(-822.471985F, -233.035995F), new Vector2(-821.776001F, -232.699997F));
+ builder.AddCubicBezier(new Vector2(-821.080017F, -232.363998F), new Vector2(-820.47998F, -231.884003F), new Vector2(-819.976013F, -231.259995F));
+ builder.AddLine(new Vector2(-817.888F, -233.348007F));
+ builder.AddCubicBezier(new Vector2(-818.559998F, -234.283997F), new Vector2(-819.41803F, -234.985992F), new Vector2(-820.461975F, -235.453995F));
+ builder.AddCubicBezier(new Vector2(-821.505981F, -235.921997F), new Vector2(-822.700012F, -236.156006F), new Vector2(-824.044006F, -236.156006F));
+ builder.AddCubicBezier(new Vector2(-825.315979F, -236.156006F), new Vector2(-826.40802F, -235.951996F), new Vector2(-827.320007F, -235.544006F));
+ builder.AddCubicBezier(new Vector2(-828.231995F, -235.136002F), new Vector2(-828.934021F, -234.554001F), new Vector2(-829.426025F, -233.798004F));
+ builder.AddCubicBezier(new Vector2(-829.91803F, -233.042007F), new Vector2(-830.164001F, -232.147995F), new Vector2(-830.164001F, -231.115997F));
+ builder.AddCubicBezier(new Vector2(-830.164001F, -230.084F), new Vector2(-829.942017F, -229.25F), new Vector2(-829.497986F, -228.613998F));
+ builder.AddCubicBezier(new Vector2(-829.054016F, -227.977997F), new Vector2(-828.484009F, -227.479996F), new Vector2(-827.788025F, -227.119995F));
+ builder.AddCubicBezier(new Vector2(-827.09198F, -226.759995F), new Vector2(-826.354004F, -226.472F), new Vector2(-825.573975F, -226.255997F));
+ builder.AddCubicBezier(new Vector2(-824.794006F, -226.039993F), new Vector2(-824.05603F, -225.817993F), new Vector2(-823.359985F, -225.589996F));
+ builder.AddCubicBezier(new Vector2(-822.664001F, -225.362F), new Vector2(-822.093994F, -225.074005F), new Vector2(-821.650024F, -224.725998F));
+ builder.AddCubicBezier(new Vector2(-821.205994F, -224.378006F), new Vector2(-820.984009F, -223.891998F), new Vector2(-820.984009F, -223.268005F));
+ builder.AddCubicBezier(new Vector2(-820.984009F, -222.643997F), new Vector2(-821.26001F, -222.158005F), new Vector2(-821.812012F, -221.809998F));
+ builder.AddCubicBezier(new Vector2(-822.364014F, -221.462006F), new Vector2(-823.143982F, -221.287994F), new Vector2(-824.151978F, -221.287994F));
+ builder.AddCubicBezier(new Vector2(-825.159973F, -221.287994F), new Vector2(-826.072021F, -221.473999F), new Vector2(-826.888F, -221.845993F));
+ builder.AddCubicBezier(new Vector2(-827.703979F, -222.218002F), new Vector2(-828.424011F, -222.787994F), new Vector2(-829.047974F, -223.556F));
+ builder.AddLine(new Vector2(-831.135986F, -221.468002F));
+ builder.AddCubicBezier(new Vector2(-830.607971F, -220.820007F), new Vector2(-829.98999F, -220.261993F), new Vector2(-829.281982F, -219.794006F));
+ builder.AddCubicBezier(new Vector2(-828.573975F, -219.326004F), new Vector2(-827.788025F, -218.966003F), new Vector2(-826.924011F, -218.714005F));
+ builder.AddCubicBezier(new Vector2(-826.059998F, -218.462006F), new Vector2(-825.14801F, -218.335999F), new Vector2(-824.187988F, -218.335999F));
+ builder.AddCubicBezier(new Vector2(-822.268005F, -218.335999F), new Vector2(-820.737976F, -218.804001F), new Vector2(-819.598022F, -219.740005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1227()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(793.940002F, -254.731995F));
+ builder.AddLine(new Vector2(797.179993F, -261.752014F));
+ builder.AddLine(new Vector2(795.343994F, -265.063995F));
+ builder.AddLine(new Vector2(790.340027F, -254.731995F));
+ builder.AddLine(new Vector2(793.940002F, -254.731995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(797.179993F, -261.752014F));
+ builder.AddLine(new Vector2(805.171997F, -278.996002F));
+ builder.AddLine(new Vector2(801.572021F, -278.996002F));
+ builder.AddLine(new Vector2(795.776001F, -265.496002F));
+ builder.AddLine(new Vector2(796.927979F, -265.496002F));
+ builder.AddLine(new Vector2(791.419983F, -278.996002F));
+ builder.AddLine(new Vector2(787.820007F, -278.996002F));
+ builder.AddLine(new Vector2(795.236023F, -261.752014F));
+ builder.AddLine(new Vector2(797.179993F, -261.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1228()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(784.867981F, -261.895996F));
+ builder.AddLine(new Vector2(784.867981F, -287.600006F));
+ builder.AddLine(new Vector2(781.627991F, -287.600006F));
+ builder.AddLine(new Vector2(781.627991F, -261.895996F));
+ builder.AddLine(new Vector2(784.867981F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1229()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(774.031982F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(775.208008F, -262.79599F), new Vector2(776.216003F, -263.528015F), new Vector2(777.05603F, -264.488007F));
+ builder.AddLine(new Vector2(774.968018F, -266.612F));
+ builder.AddCubicBezier(new Vector2(774.392029F, -265.940002F), new Vector2(773.702026F, -265.436005F), new Vector2(772.89801F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(772.093994F, -264.764008F), new Vector2(771.211975F, -264.596008F), new Vector2(770.252014F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(769.099976F, -264.596008F), new Vector2(768.080017F, -264.84201F), new Vector2(767.192017F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(766.304016F, -265.825989F), new Vector2(765.619995F, -266.522003F), new Vector2(765.140015F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(764.659973F, -268.321991F), new Vector2(764.419983F, -269.372009F), new Vector2(764.419983F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(764.419983F, -271.747986F), new Vector2(764.64801F, -272.768005F), new Vector2(765.104004F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(765.559998F, -274.496002F), new Vector2(766.208008F, -275.167999F), new Vector2(767.047974F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(767.888F, -276.127991F), new Vector2(768.859985F, -276.368011F), new Vector2(769.963989F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(771.02002F, -276.368011F), new Vector2(771.919983F, -276.145996F), new Vector2(772.664001F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(773.40802F, -275.257996F), new Vector2(773.984009F, -274.634003F), new Vector2(774.392029F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(774.799988F, -273.026001F), new Vector2(775.004028F, -272.048004F), new Vector2(775.004028F, -270.895996F));
+ builder.AddLine(new Vector2(776.192017F, -271.940002F));
+ builder.AddLine(new Vector2(763.484009F, -271.940002F));
+ builder.AddLine(new Vector2(763.484009F, -269.23999F));
+ builder.AddLine(new Vector2(777.919983F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(777.992004F, -269.575989F), new Vector2(778.039978F, -269.881989F), new Vector2(778.064026F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(778.088013F, -270.43399F), new Vector2(778.099976F, -270.691986F), new Vector2(778.099976F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(778.099976F, -272.563995F), new Vector2(777.757996F, -274.015991F), new Vector2(777.073975F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(776.390015F, -276.559998F), new Vector2(775.435974F, -277.556F), new Vector2(774.211975F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(772.987976F, -278.996002F), new Vector2(771.596008F, -279.355988F), new Vector2(770.036011F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(768.380005F, -279.355988F), new Vector2(766.885986F, -278.966003F), new Vector2(765.554016F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(764.221985F, -277.406006F), new Vector2(763.166016F, -276.343994F), new Vector2(762.385986F, -275F));
+ builder.AddCubicBezier(new Vector2(761.606018F, -273.656006F), new Vector2(761.216003F, -272.144012F), new Vector2(761.216003F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(761.216003F, -268.76001F), new Vector2(761.612F, -267.235992F), new Vector2(762.403992F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(763.195984F, -264.548004F), new Vector2(764.27002F, -263.485992F), new Vector2(765.625977F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(766.981995F, -261.925995F), new Vector2(768.523987F, -261.536011F), new Vector2(770.252014F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(771.596008F, -261.536011F), new Vector2(772.856018F, -261.787994F), new Vector2(774.031982F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1230()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(759.703979F, -276.044006F));
+ builder.AddLine(new Vector2(759.703979F, -278.996002F));
+ builder.AddLine(new Vector2(748.039978F, -278.996002F));
+ builder.AddLine(new Vector2(748.039978F, -276.044006F));
+ builder.AddLine(new Vector2(759.703979F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(755.492004F, -261.895996F));
+ builder.AddLine(new Vector2(755.492004F, -286.160004F));
+ builder.AddLine(new Vector2(752.252014F, -286.160004F));
+ builder.AddLine(new Vector2(752.252014F, -261.895996F));
+ builder.AddLine(new Vector2(755.492004F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1231()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(742.531982F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(743.708008F, -262.79599F), new Vector2(744.716003F, -263.528015F), new Vector2(745.55603F, -264.488007F));
+ builder.AddLine(new Vector2(743.468018F, -266.612F));
+ builder.AddCubicBezier(new Vector2(742.892029F, -265.940002F), new Vector2(742.202026F, -265.436005F), new Vector2(741.39801F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(740.593994F, -264.764008F), new Vector2(739.711975F, -264.596008F), new Vector2(738.752014F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(737.599976F, -264.596008F), new Vector2(736.580017F, -264.84201F), new Vector2(735.692017F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(734.804016F, -265.825989F), new Vector2(734.119995F, -266.522003F), new Vector2(733.640015F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(733.159973F, -268.321991F), new Vector2(732.919983F, -269.372009F), new Vector2(732.919983F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(732.919983F, -271.747986F), new Vector2(733.14801F, -272.768005F), new Vector2(733.604004F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(734.059998F, -274.496002F), new Vector2(734.708008F, -275.167999F), new Vector2(735.547974F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(736.388F, -276.127991F), new Vector2(737.359985F, -276.368011F), new Vector2(738.463989F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(739.52002F, -276.368011F), new Vector2(740.419983F, -276.145996F), new Vector2(741.164001F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(741.90802F, -275.257996F), new Vector2(742.484009F, -274.634003F), new Vector2(742.892029F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(743.299988F, -273.026001F), new Vector2(743.504028F, -272.048004F), new Vector2(743.504028F, -270.895996F));
+ builder.AddLine(new Vector2(744.692017F, -271.940002F));
+ builder.AddLine(new Vector2(731.984009F, -271.940002F));
+ builder.AddLine(new Vector2(731.984009F, -269.23999F));
+ builder.AddLine(new Vector2(746.419983F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(746.492004F, -269.575989F), new Vector2(746.539978F, -269.881989F), new Vector2(746.564026F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(746.588013F, -270.43399F), new Vector2(746.599976F, -270.691986F), new Vector2(746.599976F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(746.599976F, -272.563995F), new Vector2(746.257996F, -274.015991F), new Vector2(745.573975F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(744.890015F, -276.559998F), new Vector2(743.935974F, -277.556F), new Vector2(742.711975F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(741.487976F, -278.996002F), new Vector2(740.096008F, -279.355988F), new Vector2(738.536011F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(736.880005F, -279.355988F), new Vector2(735.385986F, -278.966003F), new Vector2(734.054016F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(732.721985F, -277.406006F), new Vector2(731.666016F, -276.343994F), new Vector2(730.885986F, -275F));
+ builder.AddCubicBezier(new Vector2(730.106018F, -273.656006F), new Vector2(729.716003F, -272.144012F), new Vector2(729.716003F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(729.716003F, -268.76001F), new Vector2(730.112F, -267.235992F), new Vector2(730.903992F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(731.695984F, -264.548004F), new Vector2(732.77002F, -263.485992F), new Vector2(734.125977F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(735.481995F, -261.925995F), new Vector2(737.023987F, -261.536011F), new Vector2(738.752014F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(740.096008F, -261.536011F), new Vector2(741.356018F, -261.787994F), new Vector2(742.531982F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1232()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(726.080017F, -261.895996F));
+ builder.AddLine(new Vector2(726.080017F, -287.600006F));
+ builder.AddLine(new Vector2(722.840027F, -287.600006F));
+ builder.AddLine(new Vector2(722.840027F, -261.895996F));
+ builder.AddLine(new Vector2(726.080017F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1233()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(707.521973F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(706.69397F, -265.855988F), new Vector2(706.057983F, -266.54599F), new Vector2(705.614014F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(705.169983F, -268.298004F), new Vector2(704.947998F, -269.299988F), new Vector2(704.947998F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(704.947998F, -271.579987F), new Vector2(705.176025F, -272.593994F), new Vector2(705.632019F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(706.088013F, -274.346008F), new Vector2(706.723999F, -275.036011F), new Vector2(707.539978F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(708.356018F, -276.044006F), new Vector2(709.291992F, -276.29599F), new Vector2(710.348022F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(711.427979F, -276.29599F), new Vector2(712.375977F, -276.044006F), new Vector2(713.192017F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(714.007996F, -275.036011F), new Vector2(714.650024F, -274.346008F), new Vector2(715.117981F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(715.585999F, -272.593994F), new Vector2(715.820007F, -271.59201F), new Vector2(715.820007F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(715.820007F, -269.312012F), new Vector2(715.585999F, -268.298004F), new Vector2(715.117981F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(714.650024F, -266.54599F), new Vector2(714.007996F, -265.855988F), new Vector2(713.192017F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(712.375977F, -264.847992F), new Vector2(711.427979F, -264.596008F), new Vector2(710.348022F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(709.291992F, -264.596008F), new Vector2(708.349976F, -264.847992F), new Vector2(707.521973F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(705.127991F, -254.731995F));
+ builder.AddLine(new Vector2(705.127991F, -266.179993F));
+ builder.AddLine(new Vector2(704.515991F, -270.355988F));
+ builder.AddLine(new Vector2(705.127991F, -274.496002F));
+ builder.AddLine(new Vector2(705.127991F, -278.996002F));
+ builder.AddLine(new Vector2(701.888F, -278.996002F));
+ builder.AddLine(new Vector2(701.888F, -254.731995F));
+ builder.AddLine(new Vector2(705.127991F, -254.731995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(715.117981F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(716.377991F, -263.485992F), new Vector2(717.367981F, -264.548004F), new Vector2(718.088013F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(718.807983F, -267.235992F), new Vector2(719.16803F, -268.747986F), new Vector2(719.16803F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(719.16803F, -272.108002F), new Vector2(718.807983F, -273.619995F), new Vector2(718.088013F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(717.367981F, -276.308014F), new Vector2(716.377991F, -277.376007F), new Vector2(715.117981F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(713.857971F, -278.959991F), new Vector2(712.447998F, -279.355988F), new Vector2(710.888F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(709.616028F, -279.355988F), new Vector2(708.458008F, -279.085999F), new Vector2(707.414001F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(706.369995F, -278.006012F), new Vector2(705.530029F, -277.261993F), new Vector2(704.893982F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(704.257996F, -275.365997F), new Vector2(703.903992F, -274.268005F), new Vector2(703.83197F, -273.019989F));
+ builder.AddLine(new Vector2(703.83197F, -267.872009F));
+ builder.AddCubicBezier(new Vector2(703.903992F, -266.64801F), new Vector2(704.252014F, -265.556F), new Vector2(704.875977F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(705.5F, -263.635986F), new Vector2(706.333984F, -262.885986F), new Vector2(707.377991F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(708.421997F, -261.806F), new Vector2(709.59198F, -261.536011F), new Vector2(710.888F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(712.447998F, -261.536011F), new Vector2(713.857971F, -261.925995F), new Vector2(715.117981F, -262.705994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1234()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(697.495972F, -261.895996F));
+ builder.AddLine(new Vector2(697.495972F, -272.876007F));
+ builder.AddCubicBezier(new Vector2(697.495972F, -274.220001F), new Vector2(697.202026F, -275.372009F), new Vector2(696.614014F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(696.026001F, -277.291992F), new Vector2(695.23999F, -278.036011F), new Vector2(694.255981F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(693.271973F, -279.09201F), new Vector2(692.156006F, -279.355988F), new Vector2(690.90802F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(689.708008F, -279.355988F), new Vector2(688.604004F, -279.085999F), new Vector2(687.596008F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(686.588013F, -278.006012F), new Vector2(685.765991F, -277.261993F), new Vector2(685.130005F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(684.494019F, -275.365997F), new Vector2(684.140015F, -274.231995F), new Vector2(684.067993F, -272.911987F));
+ builder.AddLine(new Vector2(685.903992F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(685.903992F, -273.09201F), new Vector2(686.096008F, -273.824005F), new Vector2(686.47998F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(686.864014F, -275.023987F), new Vector2(687.374023F, -275.492004F), new Vector2(688.01001F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(688.645996F, -276.164001F), new Vector2(689.359985F, -276.332001F), new Vector2(690.151978F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(691.304016F, -276.332001F), new Vector2(692.27002F, -275.966003F), new Vector2(693.049988F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(693.830017F, -274.502014F), new Vector2(694.219971F, -273.5F), new Vector2(694.219971F, -272.227997F));
+ builder.AddLine(new Vector2(694.219971F, -261.895996F));
+ builder.AddLine(new Vector2(697.495972F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(685.903992F, -261.895996F));
+ builder.AddLine(new Vector2(685.903992F, -272.911987F));
+ builder.AddCubicBezier(new Vector2(685.903992F, -274.231995F), new Vector2(685.622009F, -275.372009F), new Vector2(685.057983F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(684.494019F, -277.291992F), new Vector2(683.726013F, -278.036011F), new Vector2(682.754028F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(681.781982F, -279.09201F), new Vector2(680.695984F, -279.355988F), new Vector2(679.495972F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(678.271973F, -279.355988F), new Vector2(677.16803F, -279.085999F), new Vector2(676.184021F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(675.200012F, -278.006012F), new Vector2(674.426025F, -277.256012F), new Vector2(673.862F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(673.297974F, -275.335999F), new Vector2(673.015991F, -274.208008F), new Vector2(673.015991F, -272.911987F));
+ builder.AddLine(new Vector2(674.348022F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(674.348022F, -273.09201F), new Vector2(674.539978F, -273.824005F), new Vector2(674.924011F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(675.307983F, -275.023987F), new Vector2(675.812012F, -275.492004F), new Vector2(676.435974F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(677.059998F, -276.164001F), new Vector2(677.768005F, -276.332001F), new Vector2(678.559998F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(679.736023F, -276.332001F), new Vector2(680.713989F, -275.966003F), new Vector2(681.494019F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(682.273987F, -274.502014F), new Vector2(682.664001F, -273.5F), new Vector2(682.664001F, -272.227997F));
+ builder.AddLine(new Vector2(682.664001F, -261.895996F));
+ builder.AddLine(new Vector2(685.903992F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(674.348022F, -261.895996F));
+ builder.AddLine(new Vector2(674.348022F, -278.996002F));
+ builder.AddLine(new Vector2(671.107971F, -278.996002F));
+ builder.AddLine(new Vector2(671.107971F, -261.895996F));
+ builder.AddLine(new Vector2(674.348022F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1235()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(655.700012F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(654.859985F, -265.928009F), new Vector2(654.200012F, -266.618011F), new Vector2(653.719971F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(653.23999F, -268.369995F), new Vector2(653F, -269.372009F), new Vector2(653F, -270.5F));
+ builder.AddCubicBezier(new Vector2(653F, -271.604004F), new Vector2(653.23999F, -272.588013F), new Vector2(653.719971F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(654.200012F, -274.31601F), new Vector2(654.859985F, -274.993988F), new Vector2(655.700012F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(656.539978F, -275.977997F), new Vector2(657.487976F, -276.223999F), new Vector2(658.544006F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(659.64801F, -276.223999F), new Vector2(660.614014F, -275.977997F), new Vector2(661.442017F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(662.27002F, -274.993988F), new Vector2(662.929993F, -274.31601F), new Vector2(663.421997F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(663.914001F, -272.588013F), new Vector2(664.159973F, -271.604004F), new Vector2(664.159973F, -270.5F));
+ builder.AddCubicBezier(new Vector2(664.159973F, -269.372009F), new Vector2(663.919983F, -268.369995F), new Vector2(663.440002F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(662.960022F, -266.618011F), new Vector2(662.299988F, -265.928009F), new Vector2(661.460022F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(660.619995F, -264.920013F), new Vector2(659.64801F, -264.667999F), new Vector2(658.544006F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(657.487976F, -264.667999F), new Vector2(656.539978F, -264.920013F), new Vector2(655.700012F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(663.098022F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(664.453979F, -263.515991F), new Vector2(665.528015F, -264.589996F), new Vector2(666.320007F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(667.112F, -267.302002F), new Vector2(667.507996F, -268.820007F), new Vector2(667.507996F, -270.5F));
+ builder.AddCubicBezier(new Vector2(667.507996F, -272.156006F), new Vector2(667.112F, -273.656006F), new Vector2(666.320007F, -275F));
+ builder.AddCubicBezier(new Vector2(665.528015F, -276.343994F), new Vector2(664.453979F, -277.406006F), new Vector2(663.098022F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(661.742004F, -278.966003F), new Vector2(660.223999F, -279.355988F), new Vector2(658.544006F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(656.888F, -279.355988F), new Vector2(655.388F, -278.959991F), new Vector2(654.044006F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(652.700012F, -277.376007F), new Vector2(651.632019F, -276.313995F), new Vector2(650.840027F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(650.047974F, -273.649994F), new Vector2(649.651978F, -272.156006F), new Vector2(649.651978F, -270.5F));
+ builder.AddCubicBezier(new Vector2(649.651978F, -268.820007F), new Vector2(650.047974F, -267.302002F), new Vector2(650.840027F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(651.632019F, -264.589996F), new Vector2(652.700012F, -263.515991F), new Vector2(654.044006F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(655.388F, -261.932007F), new Vector2(656.888F, -261.536011F), new Vector2(658.544006F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(660.223999F, -261.536011F), new Vector2(661.742004F, -261.932007F), new Vector2(663.098022F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1236()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(644.98999F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(646.130005F, -262.79599F), new Vector2(647.096008F, -263.503998F), new Vector2(647.888F, -264.415985F));
+ builder.AddLine(new Vector2(645.763977F, -266.575989F));
+ builder.AddCubicBezier(new Vector2(645.211975F, -265.951996F), new Vector2(644.557983F, -265.477997F), new Vector2(643.802002F, -265.153992F));
+ builder.AddCubicBezier(new Vector2(643.046021F, -264.829987F), new Vector2(642.211975F, -264.667999F), new Vector2(641.299988F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(640.219971F, -264.667999F), new Vector2(639.26001F, -264.920013F), new Vector2(638.419983F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(637.580017F, -265.928009F), new Vector2(636.919983F, -266.612F), new Vector2(636.440002F, -267.476013F));
+ builder.AddCubicBezier(new Vector2(635.960022F, -268.339996F), new Vector2(635.719971F, -269.335999F), new Vector2(635.719971F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(635.719971F, -271.59201F), new Vector2(635.960022F, -272.588013F), new Vector2(636.440002F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(636.919983F, -274.31601F), new Vector2(637.580017F, -274.993988F), new Vector2(638.419983F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(639.26001F, -275.977997F), new Vector2(640.219971F, -276.223999F), new Vector2(641.299988F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(642.187988F, -276.223999F), new Vector2(643.015991F, -276.062012F), new Vector2(643.783997F, -275.738007F));
+ builder.AddCubicBezier(new Vector2(644.552002F, -275.414001F), new Vector2(645.200012F, -274.940002F), new Vector2(645.728027F, -274.31601F));
+ builder.AddLine(new Vector2(647.888F, -276.476013F));
+ builder.AddCubicBezier(new Vector2(647.072021F, -277.411987F), new Vector2(646.099976F, -278.126007F), new Vector2(644.971985F, -278.618011F));
+ builder.AddCubicBezier(new Vector2(643.843994F, -279.109985F), new Vector2(642.619995F, -279.355988F), new Vector2(641.299988F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(639.619995F, -279.355988F), new Vector2(638.10199F, -278.966003F), new Vector2(636.745972F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(635.390015F, -277.406006F), new Vector2(634.322021F, -276.343994F), new Vector2(633.541992F, -275F));
+ builder.AddCubicBezier(new Vector2(632.762024F, -273.656006F), new Vector2(632.372009F, -272.144012F), new Vector2(632.372009F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(632.372009F, -268.808014F), new Vector2(632.762024F, -267.302002F), new Vector2(633.541992F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(634.322021F, -264.589996F), new Vector2(635.390015F, -263.515991F), new Vector2(636.745972F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(638.10199F, -261.932007F), new Vector2(639.619995F, -261.536011F), new Vector2(641.299988F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(642.619995F, -261.536011F), new Vector2(643.849976F, -261.787994F), new Vector2(644.98999F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1237()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(618.440002F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(619.616028F, -262.79599F), new Vector2(620.624023F, -263.528015F), new Vector2(621.463989F, -264.488007F));
+ builder.AddLine(new Vector2(619.375977F, -266.612F));
+ builder.AddCubicBezier(new Vector2(618.799988F, -265.940002F), new Vector2(618.109985F, -265.436005F), new Vector2(617.30603F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(616.502014F, -264.764008F), new Vector2(615.619995F, -264.596008F), new Vector2(614.659973F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(613.507996F, -264.596008F), new Vector2(612.487976F, -264.84201F), new Vector2(611.599976F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(610.711975F, -265.825989F), new Vector2(610.028015F, -266.522003F), new Vector2(609.547974F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(609.067993F, -268.321991F), new Vector2(608.828003F, -269.372009F), new Vector2(608.828003F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(608.828003F, -271.747986F), new Vector2(609.05603F, -272.768005F), new Vector2(609.512024F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(609.968018F, -274.496002F), new Vector2(610.616028F, -275.167999F), new Vector2(611.455994F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(612.296021F, -276.127991F), new Vector2(613.268005F, -276.368011F), new Vector2(614.372009F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(615.427979F, -276.368011F), new Vector2(616.328003F, -276.145996F), new Vector2(617.072021F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(617.815979F, -275.257996F), new Vector2(618.392029F, -274.634003F), new Vector2(618.799988F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(619.208008F, -273.026001F), new Vector2(619.411987F, -272.048004F), new Vector2(619.411987F, -270.895996F));
+ builder.AddLine(new Vector2(620.599976F, -271.940002F));
+ builder.AddLine(new Vector2(607.892029F, -271.940002F));
+ builder.AddLine(new Vector2(607.892029F, -269.23999F));
+ builder.AddLine(new Vector2(622.328003F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(622.400024F, -269.575989F), new Vector2(622.447998F, -269.881989F), new Vector2(622.471985F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(622.495972F, -270.43399F), new Vector2(622.507996F, -270.691986F), new Vector2(622.507996F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(622.507996F, -272.563995F), new Vector2(622.166016F, -274.015991F), new Vector2(621.481995F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(620.797974F, -276.559998F), new Vector2(619.843994F, -277.556F), new Vector2(618.619995F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(617.395996F, -278.996002F), new Vector2(616.004028F, -279.355988F), new Vector2(614.44397F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(612.788025F, -279.355988F), new Vector2(611.294006F, -278.966003F), new Vector2(609.961975F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(608.630005F, -277.406006F), new Vector2(607.573975F, -276.343994F), new Vector2(606.794006F, -275F));
+ builder.AddCubicBezier(new Vector2(606.013977F, -273.656006F), new Vector2(605.624023F, -272.144012F), new Vector2(605.624023F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(605.624023F, -268.76001F), new Vector2(606.02002F, -267.235992F), new Vector2(606.812012F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(607.604004F, -264.548004F), new Vector2(608.677979F, -263.485992F), new Vector2(610.033997F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(611.390015F, -261.925995F), new Vector2(612.932007F, -261.536011F), new Vector2(614.659973F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(616.004028F, -261.536011F), new Vector2(617.263977F, -261.787994F), new Vector2(618.440002F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1238()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(597.236023F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(598.004028F, -275.911987F), new Vector2(598.987976F, -276.29599F), new Vector2(600.187988F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(600.763977F, -276.29599F), new Vector2(601.268005F, -276.212006F), new Vector2(601.700012F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(602.132019F, -275.876007F), new Vector2(602.528015F, -275.600006F), new Vector2(602.888F, -275.216003F));
+ builder.AddLine(new Vector2(605.012024F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(604.411987F, -278.108002F), new Vector2(603.763977F, -278.605988F), new Vector2(603.067993F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(602.372009F, -279.205994F), new Vector2(601.59198F, -279.355988F), new Vector2(600.728027F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(598.83197F, -279.355988F), new Vector2(597.380005F, -278.708008F), new Vector2(596.372009F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(595.364014F, -276.115997F), new Vector2(594.859985F, -274.376007F), new Vector2(594.859985F, -272.191986F));
+ builder.AddLine(new Vector2(596.083984F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(596.083984F, -273.200012F), new Vector2(596.468018F, -274.376007F), new Vector2(597.236023F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(596.083984F, -261.895996F));
+ builder.AddLine(new Vector2(596.083984F, -278.996002F));
+ builder.AddLine(new Vector2(592.843994F, -278.996002F));
+ builder.AddLine(new Vector2(592.843994F, -261.895996F));
+ builder.AddLine(new Vector2(596.083984F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1239()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(588.127991F, -261.895996F));
+ builder.AddLine(new Vector2(588.127991F, -278.996002F));
+ builder.AddLine(new Vector2(584.85199F, -278.996002F));
+ builder.AddLine(new Vector2(584.85199F, -274.820007F));
+ builder.AddLine(new Vector2(585.463989F, -270.679993F));
+ builder.AddLine(new Vector2(584.85199F, -266.503998F));
+ builder.AddLine(new Vector2(584.85199F, -261.895996F));
+ builder.AddLine(new Vector2(588.127991F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(576.823975F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(575.984009F, -265.855988F), new Vector2(575.330017F, -266.54599F), new Vector2(574.862F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(574.393982F, -268.298004F), new Vector2(574.159973F, -269.312012F), new Vector2(574.159973F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(574.159973F, -271.59201F), new Vector2(574.393982F, -272.593994F), new Vector2(574.862F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(575.330017F, -274.346008F), new Vector2(575.978027F, -275.036011F), new Vector2(576.80603F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(577.633972F, -276.044006F), new Vector2(578.588013F, -276.29599F), new Vector2(579.66803F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(580.747986F, -276.29599F), new Vector2(581.690002F, -276.049988F), new Vector2(582.494019F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(583.297974F, -275.06601F), new Vector2(583.927979F, -274.376007F), new Vector2(584.383972F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(584.840027F, -272.600006F), new Vector2(585.067993F, -271.579987F), new Vector2(585.067993F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(585.067993F, -268.723999F), new Vector2(584.575989F, -267.325989F), new Vector2(583.59198F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(582.607971F, -265.141998F), new Vector2(581.312012F, -264.596008F), new Vector2(579.703979F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(578.624023F, -264.596008F), new Vector2(577.664001F, -264.847992F), new Vector2(576.823975F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(582.656006F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(583.687988F, -262.885986F), new Vector2(584.51001F, -263.635986F), new Vector2(585.122009F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(585.734009F, -265.556F), new Vector2(586.075989F, -266.64801F), new Vector2(586.14801F, -267.872009F));
+ builder.AddLine(new Vector2(586.14801F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(586.075989F, -274.268005F), new Vector2(585.728027F, -275.365997F), new Vector2(585.104004F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(584.47998F, -277.261993F), new Vector2(583.65802F, -278.006012F), new Vector2(582.638F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(581.617981F, -279.085999F), new Vector2(580.460022F, -279.355988F), new Vector2(579.164001F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(577.580017F, -279.355988F), new Vector2(576.15802F, -278.959991F), new Vector2(574.89801F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(573.638F, -277.376007F), new Vector2(572.642029F, -276.308014F), new Vector2(571.909973F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(571.177979F, -273.619995F), new Vector2(570.812012F, -272.108002F), new Vector2(570.812012F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(570.812012F, -268.747986F), new Vector2(571.177979F, -267.235992F), new Vector2(571.909973F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(572.642029F, -264.548004F), new Vector2(573.638F, -263.485992F), new Vector2(574.89801F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(576.15802F, -261.925995F), new Vector2(577.580017F, -261.536011F), new Vector2(579.164001F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(580.460022F, -261.536011F), new Vector2(581.624023F, -261.806F), new Vector2(582.656006F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1240()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(559.093994F, -262.940002F));
+ builder.AddCubicBezier(new Vector2(560.234009F, -263.876007F), new Vector2(560.804016F, -265.14801F), new Vector2(560.804016F, -266.756012F));
+ builder.AddCubicBezier(new Vector2(560.804016F, -267.812012F), new Vector2(560.58197F, -268.664001F), new Vector2(560.138F, -269.312012F));
+ builder.AddCubicBezier(new Vector2(559.69397F, -269.959991F), new Vector2(559.124023F, -270.476013F), new Vector2(558.427979F, -270.859985F));
+ builder.AddCubicBezier(new Vector2(557.731995F, -271.243988F), new Vector2(557F, -271.549988F), new Vector2(556.231995F, -271.778015F));
+ builder.AddCubicBezier(new Vector2(555.463989F, -272.006012F), new Vector2(554.726013F, -272.227997F), new Vector2(554.018005F, -272.444F));
+ builder.AddCubicBezier(new Vector2(553.309998F, -272.660004F), new Vector2(552.73999F, -272.924011F), new Vector2(552.307983F, -273.235992F));
+ builder.AddCubicBezier(new Vector2(551.875977F, -273.548004F), new Vector2(551.659973F, -273.992004F), new Vector2(551.659973F, -274.567993F));
+ builder.AddCubicBezier(new Vector2(551.659973F, -275.119995F), new Vector2(551.906006F, -275.563995F), new Vector2(552.39801F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(552.890015F, -276.235992F), new Vector2(553.604004F, -276.403992F), new Vector2(554.539978F, -276.403992F));
+ builder.AddCubicBezier(new Vector2(555.427979F, -276.403992F), new Vector2(556.219971F, -276.235992F), new Vector2(556.916016F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(557.612F, -275.563995F), new Vector2(558.211975F, -275.084015F), new Vector2(558.716003F, -274.459991F));
+ builder.AddLine(new Vector2(560.804016F, -276.548004F));
+ builder.AddCubicBezier(new Vector2(560.132019F, -277.484009F), new Vector2(559.273987F, -278.186005F), new Vector2(558.22998F, -278.653992F));
+ builder.AddCubicBezier(new Vector2(557.185974F, -279.122009F), new Vector2(555.992004F, -279.355988F), new Vector2(554.64801F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(553.375977F, -279.355988F), new Vector2(552.283997F, -279.152008F), new Vector2(551.372009F, -278.743988F));
+ builder.AddCubicBezier(new Vector2(550.460022F, -278.335999F), new Vector2(549.757996F, -277.753998F), new Vector2(549.265991F, -276.997986F));
+ builder.AddCubicBezier(new Vector2(548.773987F, -276.242004F), new Vector2(548.528015F, -275.347992F), new Vector2(548.528015F, -274.31601F));
+ builder.AddCubicBezier(new Vector2(548.528015F, -273.283997F), new Vector2(548.75F, -272.450012F), new Vector2(549.19397F, -271.813995F));
+ builder.AddCubicBezier(new Vector2(549.638F, -271.178009F), new Vector2(550.208008F, -270.679993F), new Vector2(550.903992F, -270.320007F));
+ builder.AddCubicBezier(new Vector2(551.599976F, -269.959991F), new Vector2(552.338013F, -269.671997F), new Vector2(553.117981F, -269.455994F));
+ builder.AddCubicBezier(new Vector2(553.89801F, -269.23999F), new Vector2(554.635986F, -269.018005F), new Vector2(555.33197F, -268.790009F));
+ builder.AddCubicBezier(new Vector2(556.028015F, -268.562012F), new Vector2(556.598022F, -268.273987F), new Vector2(557.041992F, -267.925995F));
+ builder.AddCubicBezier(new Vector2(557.486023F, -267.578003F), new Vector2(557.708008F, -267.09201F), new Vector2(557.708008F, -266.467987F));
+ builder.AddCubicBezier(new Vector2(557.708008F, -265.843994F), new Vector2(557.432007F, -265.358002F), new Vector2(556.880005F, -265.01001F));
+ builder.AddCubicBezier(new Vector2(556.328003F, -264.661987F), new Vector2(555.547974F, -264.488007F), new Vector2(554.539978F, -264.488007F));
+ builder.AddCubicBezier(new Vector2(553.531982F, -264.488007F), new Vector2(552.619995F, -264.674011F), new Vector2(551.804016F, -265.04599F));
+ builder.AddCubicBezier(new Vector2(550.987976F, -265.417999F), new Vector2(550.268005F, -265.988007F), new Vector2(549.643982F, -266.756012F));
+ builder.AddLine(new Vector2(547.55603F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(548.083984F, -264.019989F), new Vector2(548.702026F, -263.462006F), new Vector2(549.409973F, -262.993988F));
+ builder.AddCubicBezier(new Vector2(550.117981F, -262.526001F), new Vector2(550.903992F, -262.165985F), new Vector2(551.768005F, -261.914001F));
+ builder.AddCubicBezier(new Vector2(552.632019F, -261.661987F), new Vector2(553.544006F, -261.536011F), new Vector2(554.504028F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(556.424011F, -261.536011F), new Vector2(557.953979F, -262.003998F), new Vector2(559.093994F, -262.940002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1241()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(539.383972F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(540.151978F, -275.911987F), new Vector2(541.135986F, -276.29599F), new Vector2(542.335999F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(542.911987F, -276.29599F), new Vector2(543.416016F, -276.212006F), new Vector2(543.848022F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(544.280029F, -275.876007F), new Vector2(544.676025F, -275.600006F), new Vector2(545.036011F, -275.216003F));
+ builder.AddLine(new Vector2(547.159973F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(546.559998F, -278.108002F), new Vector2(545.911987F, -278.605988F), new Vector2(545.216003F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(544.52002F, -279.205994F), new Vector2(543.73999F, -279.355988F), new Vector2(542.875977F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(540.97998F, -279.355988F), new Vector2(539.528015F, -278.708008F), new Vector2(538.52002F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(537.512024F, -276.115997F), new Vector2(537.007996F, -274.376007F), new Vector2(537.007996F, -272.191986F));
+ builder.AddLine(new Vector2(538.231995F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(538.231995F, -273.200012F), new Vector2(538.616028F, -274.376007F), new Vector2(539.383972F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(538.231995F, -261.895996F));
+ builder.AddLine(new Vector2(538.231995F, -278.996002F));
+ builder.AddLine(new Vector2(534.992004F, -278.996002F));
+ builder.AddLine(new Vector2(534.992004F, -261.895996F));
+ builder.AddLine(new Vector2(538.231995F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1242()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(527.395996F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(528.572021F, -262.79599F), new Vector2(529.580017F, -263.528015F), new Vector2(530.419983F, -264.488007F));
+ builder.AddLine(new Vector2(528.33197F, -266.612F));
+ builder.AddCubicBezier(new Vector2(527.755981F, -265.940002F), new Vector2(527.065979F, -265.436005F), new Vector2(526.262024F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(525.458008F, -264.764008F), new Vector2(524.575989F, -264.596008F), new Vector2(523.616028F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(522.463989F, -264.596008F), new Vector2(521.44397F, -264.84201F), new Vector2(520.55603F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(519.66803F, -265.825989F), new Vector2(518.984009F, -266.522003F), new Vector2(518.504028F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(518.023987F, -268.321991F), new Vector2(517.783997F, -269.372009F), new Vector2(517.783997F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(517.783997F, -271.747986F), new Vector2(518.012024F, -272.768005F), new Vector2(518.468018F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(518.924011F, -274.496002F), new Vector2(519.572021F, -275.167999F), new Vector2(520.411987F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(521.252014F, -276.127991F), new Vector2(522.223999F, -276.368011F), new Vector2(523.328003F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(524.383972F, -276.368011F), new Vector2(525.283997F, -276.145996F), new Vector2(526.028015F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(526.771973F, -275.257996F), new Vector2(527.348022F, -274.634003F), new Vector2(527.755981F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(528.164001F, -273.026001F), new Vector2(528.367981F, -272.048004F), new Vector2(528.367981F, -270.895996F));
+ builder.AddLine(new Vector2(529.55603F, -271.940002F));
+ builder.AddLine(new Vector2(516.848022F, -271.940002F));
+ builder.AddLine(new Vector2(516.848022F, -269.23999F));
+ builder.AddLine(new Vector2(531.283997F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(531.356018F, -269.575989F), new Vector2(531.403992F, -269.881989F), new Vector2(531.427979F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(531.452026F, -270.43399F), new Vector2(531.463989F, -270.691986F), new Vector2(531.463989F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(531.463989F, -272.563995F), new Vector2(531.122009F, -274.015991F), new Vector2(530.437988F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(529.754028F, -276.559998F), new Vector2(528.799988F, -277.556F), new Vector2(527.575989F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(526.35199F, -278.996002F), new Vector2(524.960022F, -279.355988F), new Vector2(523.400024F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(521.744019F, -279.355988F), new Vector2(520.25F, -278.966003F), new Vector2(518.91803F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(517.585999F, -277.406006F), new Vector2(516.530029F, -276.343994F), new Vector2(515.75F, -275F));
+ builder.AddCubicBezier(new Vector2(514.969971F, -273.656006F), new Vector2(514.580017F, -272.144012F), new Vector2(514.580017F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(514.580017F, -268.76001F), new Vector2(514.976013F, -267.235992F), new Vector2(515.768005F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(516.559998F, -264.548004F), new Vector2(517.633972F, -263.485992F), new Vector2(518.98999F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(520.346008F, -261.925995F), new Vector2(521.888F, -261.536011F), new Vector2(523.616028F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(524.960022F, -261.536011F), new Vector2(526.219971F, -261.787994F), new Vector2(527.395996F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1243()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(513.067993F, -276.044006F));
+ builder.AddLine(new Vector2(513.067993F, -278.996002F));
+ builder.AddLine(new Vector2(501.403992F, -278.996002F));
+ builder.AddLine(new Vector2(501.403992F, -276.044006F));
+ builder.AddLine(new Vector2(513.067993F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(508.855988F, -261.895996F));
+ builder.AddLine(new Vector2(508.855988F, -286.160004F));
+ builder.AddLine(new Vector2(505.615997F, -286.160004F));
+ builder.AddLine(new Vector2(505.615997F, -261.895996F));
+ builder.AddLine(new Vector2(508.855988F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1244()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(497.641998F, -262.940002F));
+ builder.AddCubicBezier(new Vector2(498.782013F, -263.876007F), new Vector2(499.35199F, -265.14801F), new Vector2(499.35199F, -266.756012F));
+ builder.AddCubicBezier(new Vector2(499.35199F, -267.812012F), new Vector2(499.130005F, -268.664001F), new Vector2(498.686005F, -269.312012F));
+ builder.AddCubicBezier(new Vector2(498.242004F, -269.959991F), new Vector2(497.671997F, -270.476013F), new Vector2(496.976013F, -270.859985F));
+ builder.AddCubicBezier(new Vector2(496.279999F, -271.243988F), new Vector2(495.548004F, -271.549988F), new Vector2(494.779999F, -271.778015F));
+ builder.AddCubicBezier(new Vector2(494.011993F, -272.006012F), new Vector2(493.273987F, -272.227997F), new Vector2(492.56601F, -272.444F));
+ builder.AddCubicBezier(new Vector2(491.858002F, -272.660004F), new Vector2(491.287994F, -272.924011F), new Vector2(490.855988F, -273.235992F));
+ builder.AddCubicBezier(new Vector2(490.424011F, -273.548004F), new Vector2(490.208008F, -273.992004F), new Vector2(490.208008F, -274.567993F));
+ builder.AddCubicBezier(new Vector2(490.208008F, -275.119995F), new Vector2(490.45401F, -275.563995F), new Vector2(490.946014F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(491.437988F, -276.235992F), new Vector2(492.152008F, -276.403992F), new Vector2(493.088013F, -276.403992F));
+ builder.AddCubicBezier(new Vector2(493.976013F, -276.403992F), new Vector2(494.768005F, -276.235992F), new Vector2(495.463989F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(496.160004F, -275.563995F), new Vector2(496.76001F, -275.084015F), new Vector2(497.264008F, -274.459991F));
+ builder.AddLine(new Vector2(499.35199F, -276.548004F));
+ builder.AddCubicBezier(new Vector2(498.679993F, -277.484009F), new Vector2(497.821991F, -278.186005F), new Vector2(496.778015F, -278.653992F));
+ builder.AddCubicBezier(new Vector2(495.734009F, -279.122009F), new Vector2(494.540009F, -279.355988F), new Vector2(493.196014F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(491.924011F, -279.355988F), new Vector2(490.832001F, -279.152008F), new Vector2(489.920013F, -278.743988F));
+ builder.AddCubicBezier(new Vector2(489.007996F, -278.335999F), new Vector2(488.306F, -277.753998F), new Vector2(487.813995F, -276.997986F));
+ builder.AddCubicBezier(new Vector2(487.321991F, -276.242004F), new Vector2(487.075989F, -275.347992F), new Vector2(487.075989F, -274.31601F));
+ builder.AddCubicBezier(new Vector2(487.075989F, -273.283997F), new Vector2(487.298004F, -272.450012F), new Vector2(487.742004F, -271.813995F));
+ builder.AddCubicBezier(new Vector2(488.186005F, -271.178009F), new Vector2(488.756012F, -270.679993F), new Vector2(489.451996F, -270.320007F));
+ builder.AddCubicBezier(new Vector2(490.14801F, -269.959991F), new Vector2(490.885986F, -269.671997F), new Vector2(491.665985F, -269.455994F));
+ builder.AddCubicBezier(new Vector2(492.446014F, -269.23999F), new Vector2(493.18399F, -269.018005F), new Vector2(493.880005F, -268.790009F));
+ builder.AddCubicBezier(new Vector2(494.575989F, -268.562012F), new Vector2(495.145996F, -268.273987F), new Vector2(495.589996F, -267.925995F));
+ builder.AddCubicBezier(new Vector2(496.033997F, -267.578003F), new Vector2(496.256012F, -267.09201F), new Vector2(496.256012F, -266.467987F));
+ builder.AddCubicBezier(new Vector2(496.256012F, -265.843994F), new Vector2(495.980011F, -265.358002F), new Vector2(495.428009F, -265.01001F));
+ builder.AddCubicBezier(new Vector2(494.876007F, -264.661987F), new Vector2(494.096008F, -264.488007F), new Vector2(493.088013F, -264.488007F));
+ builder.AddCubicBezier(new Vector2(492.079987F, -264.488007F), new Vector2(491.167999F, -264.674011F), new Vector2(490.35199F, -265.04599F));
+ builder.AddCubicBezier(new Vector2(489.536011F, -265.417999F), new Vector2(488.81601F, -265.988007F), new Vector2(488.191986F, -266.756012F));
+ builder.AddLine(new Vector2(486.104004F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(486.631989F, -264.019989F), new Vector2(487.25F, -263.462006F), new Vector2(487.958008F, -262.993988F));
+ builder.AddCubicBezier(new Vector2(488.665985F, -262.526001F), new Vector2(489.451996F, -262.165985F), new Vector2(490.31601F, -261.914001F));
+ builder.AddCubicBezier(new Vector2(491.179993F, -261.661987F), new Vector2(492.09201F, -261.536011F), new Vector2(493.052002F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(494.971985F, -261.536011F), new Vector2(496.502014F, -262.003998F), new Vector2(497.641998F, -262.940002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1245()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(482.899994F, -261.895996F));
+ builder.AddLine(new Vector2(482.899994F, -278.996002F));
+ builder.AddLine(new Vector2(479.623993F, -278.996002F));
+ builder.AddLine(new Vector2(479.623993F, -274.820007F));
+ builder.AddLine(new Vector2(480.235992F, -270.679993F));
+ builder.AddLine(new Vector2(479.623993F, -266.503998F));
+ builder.AddLine(new Vector2(479.623993F, -261.895996F));
+ builder.AddLine(new Vector2(482.899994F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(471.596008F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(470.756012F, -265.855988F), new Vector2(470.10199F, -266.54599F), new Vector2(469.634003F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(469.165985F, -268.298004F), new Vector2(468.932007F, -269.312012F), new Vector2(468.932007F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(468.932007F, -271.59201F), new Vector2(469.165985F, -272.593994F), new Vector2(469.634003F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(470.10199F, -274.346008F), new Vector2(470.75F, -275.036011F), new Vector2(471.578003F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(472.406006F, -276.044006F), new Vector2(473.359985F, -276.29599F), new Vector2(474.440002F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(475.519989F, -276.29599F), new Vector2(476.462006F, -276.049988F), new Vector2(477.265991F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(478.070007F, -275.06601F), new Vector2(478.700012F, -274.376007F), new Vector2(479.156006F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(479.612F, -272.600006F), new Vector2(479.839996F, -271.579987F), new Vector2(479.839996F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(479.839996F, -268.723999F), new Vector2(479.347992F, -267.325989F), new Vector2(478.364014F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(477.380005F, -265.141998F), new Vector2(476.084015F, -264.596008F), new Vector2(474.476013F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(473.395996F, -264.596008F), new Vector2(472.436005F, -264.847992F), new Vector2(471.596008F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(477.428009F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(478.459991F, -262.885986F), new Vector2(479.282013F, -263.635986F), new Vector2(479.894012F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(480.506012F, -265.556F), new Vector2(480.847992F, -266.64801F), new Vector2(480.920013F, -267.872009F));
+ builder.AddLine(new Vector2(480.920013F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(480.847992F, -274.268005F), new Vector2(480.5F, -275.365997F), new Vector2(479.876007F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(479.252014F, -277.261993F), new Vector2(478.429993F, -278.006012F), new Vector2(477.410004F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(476.390015F, -279.085999F), new Vector2(475.231995F, -279.355988F), new Vector2(473.936005F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(472.35199F, -279.355988F), new Vector2(470.929993F, -278.959991F), new Vector2(469.670013F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(468.410004F, -277.376007F), new Vector2(467.414001F, -276.308014F), new Vector2(466.682007F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(465.950012F, -273.619995F), new Vector2(465.584015F, -272.108002F), new Vector2(465.584015F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(465.584015F, -268.747986F), new Vector2(465.950012F, -267.235992F), new Vector2(466.682007F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(467.414001F, -264.548004F), new Vector2(468.410004F, -263.485992F), new Vector2(469.670013F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(470.929993F, -261.925995F), new Vector2(472.35199F, -261.536011F), new Vector2(473.936005F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(475.231995F, -261.536011F), new Vector2(476.395996F, -261.806F), new Vector2(477.428009F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1246()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(460.885986F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(462.026001F, -262.79599F), new Vector2(462.992004F, -263.503998F), new Vector2(463.783997F, -264.415985F));
+ builder.AddLine(new Vector2(461.660004F, -266.575989F));
+ builder.AddCubicBezier(new Vector2(461.108002F, -265.951996F), new Vector2(460.45401F, -265.477997F), new Vector2(459.697998F, -265.153992F));
+ builder.AddCubicBezier(new Vector2(458.941986F, -264.829987F), new Vector2(458.108002F, -264.667999F), new Vector2(457.196014F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(456.115997F, -264.667999F), new Vector2(455.156006F, -264.920013F), new Vector2(454.31601F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(453.476013F, -265.928009F), new Vector2(452.81601F, -266.612F), new Vector2(452.335999F, -267.476013F));
+ builder.AddCubicBezier(new Vector2(451.855988F, -268.339996F), new Vector2(451.615997F, -269.335999F), new Vector2(451.615997F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(451.615997F, -271.59201F), new Vector2(451.855988F, -272.588013F), new Vector2(452.335999F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(452.81601F, -274.31601F), new Vector2(453.476013F, -274.993988F), new Vector2(454.31601F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(455.156006F, -275.977997F), new Vector2(456.115997F, -276.223999F), new Vector2(457.196014F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(458.084015F, -276.223999F), new Vector2(458.911987F, -276.062012F), new Vector2(459.679993F, -275.738007F));
+ builder.AddCubicBezier(new Vector2(460.447998F, -275.414001F), new Vector2(461.096008F, -274.940002F), new Vector2(461.623993F, -274.31601F));
+ builder.AddLine(new Vector2(463.783997F, -276.476013F));
+ builder.AddCubicBezier(new Vector2(462.967987F, -277.411987F), new Vector2(461.996002F, -278.126007F), new Vector2(460.868011F, -278.618011F));
+ builder.AddCubicBezier(new Vector2(459.73999F, -279.109985F), new Vector2(458.515991F, -279.355988F), new Vector2(457.196014F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(455.515991F, -279.355988F), new Vector2(453.997986F, -278.966003F), new Vector2(452.641998F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(451.286011F, -277.406006F), new Vector2(450.217987F, -276.343994F), new Vector2(449.437988F, -275F));
+ builder.AddCubicBezier(new Vector2(448.65799F, -273.656006F), new Vector2(448.268005F, -272.144012F), new Vector2(448.268005F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(448.268005F, -268.808014F), new Vector2(448.65799F, -267.302002F), new Vector2(449.437988F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(450.217987F, -264.589996F), new Vector2(451.286011F, -263.515991F), new Vector2(452.641998F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(453.997986F, -261.932007F), new Vector2(455.515991F, -261.536011F), new Vector2(457.196014F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(458.515991F, -261.536011F), new Vector2(459.746002F, -261.787994F), new Vector2(460.885986F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1247()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(444.667999F, -287.600006F));
+ builder.AddLine(new Vector2(441.391998F, -287.600006F));
+ builder.AddLine(new Vector2(441.391998F, -274.820007F));
+ builder.AddLine(new Vector2(442.003998F, -270.679993F));
+ builder.AddLine(new Vector2(441.391998F, -266.503998F));
+ builder.AddLine(new Vector2(441.391998F, -261.895996F));
+ builder.AddLine(new Vector2(444.667999F, -261.895996F));
+ builder.AddLine(new Vector2(444.667999F, -287.600006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(433.346008F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(432.518005F, -265.825989F), new Vector2(431.869995F, -266.515991F), new Vector2(431.402008F, -267.403992F));
+ builder.AddCubicBezier(new Vector2(430.93399F, -268.291992F), new Vector2(430.700012F, -269.312012F), new Vector2(430.700012F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(430.700012F, -271.615997F), new Vector2(430.93399F, -272.630005F), new Vector2(431.402008F, -273.506012F));
+ builder.AddCubicBezier(new Vector2(431.869995F, -274.381989F), new Vector2(432.511993F, -275.06601F), new Vector2(433.328003F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(434.144012F, -276.049988F), new Vector2(435.09201F, -276.29599F), new Vector2(436.171997F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(437.252014F, -276.29599F), new Vector2(438.200012F, -276.044006F), new Vector2(439.015991F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(439.832001F, -275.036011F), new Vector2(440.467987F, -274.346008F), new Vector2(440.924011F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(441.380005F, -272.593994F), new Vector2(441.608002F, -271.579987F), new Vector2(441.608002F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(441.608002F, -269.299988F), new Vector2(441.380005F, -268.298004F), new Vector2(440.924011F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(440.467987F, -266.54599F), new Vector2(439.832001F, -265.855988F), new Vector2(439.015991F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(438.200012F, -264.847992F), new Vector2(437.252014F, -264.596008F), new Vector2(436.171997F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(435.115997F, -264.596008F), new Vector2(434.174011F, -264.84201F), new Vector2(433.346008F, -265.334015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(439.160004F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(440.191986F, -262.885986F), new Vector2(441.019989F, -263.635986F), new Vector2(441.644012F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(442.268005F, -265.556F), new Vector2(442.615997F, -266.64801F), new Vector2(442.687988F, -267.872009F));
+ builder.AddLine(new Vector2(442.687988F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(442.615997F, -274.268005F), new Vector2(442.261993F, -275.365997F), new Vector2(441.626007F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(440.98999F, -277.261993F), new Vector2(440.156006F, -278.006012F), new Vector2(439.123993F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(438.09201F, -279.085999F), new Vector2(436.928009F, -279.355988F), new Vector2(435.631989F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(434.071991F, -279.355988F), new Vector2(432.667999F, -278.959991F), new Vector2(431.420013F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(430.171997F, -277.376007F), new Vector2(429.182007F, -276.308014F), new Vector2(428.450012F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(427.717987F, -273.619995F), new Vector2(427.35199F, -272.108002F), new Vector2(427.35199F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(427.35199F, -268.747986F), new Vector2(427.717987F, -267.235992F), new Vector2(428.450012F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(429.182007F, -264.548004F), new Vector2(430.171997F, -263.485992F), new Vector2(431.420013F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(432.667999F, -261.925995F), new Vector2(434.071991F, -261.536011F), new Vector2(435.631989F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(436.951996F, -261.536011F), new Vector2(438.127991F, -261.806F), new Vector2(439.160004F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1248()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(423.716003F, -261.895996F));
+ builder.AddLine(new Vector2(423.716003F, -278.996002F));
+ builder.AddLine(new Vector2(420.440002F, -278.996002F));
+ builder.AddLine(new Vector2(420.440002F, -274.820007F));
+ builder.AddLine(new Vector2(421.052002F, -270.679993F));
+ builder.AddLine(new Vector2(420.440002F, -266.503998F));
+ builder.AddLine(new Vector2(420.440002F, -261.895996F));
+ builder.AddLine(new Vector2(423.716003F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(412.411987F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(411.571991F, -265.855988F), new Vector2(410.917999F, -266.54599F), new Vector2(410.450012F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(409.981995F, -268.298004F), new Vector2(409.747986F, -269.312012F), new Vector2(409.747986F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(409.747986F, -271.59201F), new Vector2(409.981995F, -272.593994F), new Vector2(410.450012F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(410.917999F, -274.346008F), new Vector2(411.56601F, -275.036011F), new Vector2(412.394012F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(413.221985F, -276.044006F), new Vector2(414.175995F, -276.29599F), new Vector2(415.256012F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(416.335999F, -276.29599F), new Vector2(417.278015F, -276.049988F), new Vector2(418.082001F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(418.885986F, -275.06601F), new Vector2(419.515991F, -274.376007F), new Vector2(419.971985F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(420.428009F, -272.600006F), new Vector2(420.656006F, -271.579987F), new Vector2(420.656006F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(420.656006F, -268.723999F), new Vector2(420.164001F, -267.325989F), new Vector2(419.179993F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(418.196014F, -265.141998F), new Vector2(416.899994F, -264.596008F), new Vector2(415.291992F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(414.212006F, -264.596008F), new Vector2(413.252014F, -264.847992F), new Vector2(412.411987F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(418.243988F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(419.276001F, -262.885986F), new Vector2(420.097992F, -263.635986F), new Vector2(420.709991F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(421.321991F, -265.556F), new Vector2(421.664001F, -266.64801F), new Vector2(421.735992F, -267.872009F));
+ builder.AddLine(new Vector2(421.735992F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(421.664001F, -274.268005F), new Vector2(421.31601F, -275.365997F), new Vector2(420.691986F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(420.067993F, -277.261993F), new Vector2(419.246002F, -278.006012F), new Vector2(418.226013F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(417.205994F, -279.085999F), new Vector2(416.048004F, -279.355988F), new Vector2(414.752014F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(413.167999F, -279.355988F), new Vector2(411.746002F, -278.959991F), new Vector2(410.485992F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(409.226013F, -277.376007F), new Vector2(408.230011F, -276.308014F), new Vector2(407.497986F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(406.765991F, -273.619995F), new Vector2(406.399994F, -272.108002F), new Vector2(406.399994F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(406.399994F, -268.747986F), new Vector2(406.765991F, -267.235992F), new Vector2(407.497986F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(408.230011F, -264.548004F), new Vector2(409.226013F, -263.485992F), new Vector2(410.485992F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(411.746002F, -261.925995F), new Vector2(413.167999F, -261.536011F), new Vector2(414.752014F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(416.048004F, -261.536011F), new Vector2(417.212006F, -261.806F), new Vector2(418.243988F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1249()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(392.071991F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(391.231995F, -265.928009F), new Vector2(390.571991F, -266.618011F), new Vector2(390.09201F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(389.612F, -268.369995F), new Vector2(389.372009F, -269.372009F), new Vector2(389.372009F, -270.5F));
+ builder.AddCubicBezier(new Vector2(389.372009F, -271.604004F), new Vector2(389.612F, -272.588013F), new Vector2(390.09201F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(390.571991F, -274.31601F), new Vector2(391.231995F, -274.993988F), new Vector2(392.071991F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(392.911987F, -275.977997F), new Vector2(393.859985F, -276.223999F), new Vector2(394.915985F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(396.019989F, -276.223999F), new Vector2(396.985992F, -275.977997F), new Vector2(397.813995F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(398.641998F, -274.993988F), new Vector2(399.302002F, -274.31601F), new Vector2(399.794006F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(400.286011F, -272.588013F), new Vector2(400.532013F, -271.604004F), new Vector2(400.532013F, -270.5F));
+ builder.AddCubicBezier(new Vector2(400.532013F, -269.372009F), new Vector2(400.291992F, -268.369995F), new Vector2(399.812012F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(399.332001F, -266.618011F), new Vector2(398.671997F, -265.928009F), new Vector2(397.832001F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(396.992004F, -264.920013F), new Vector2(396.019989F, -264.667999F), new Vector2(394.915985F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(393.859985F, -264.667999F), new Vector2(392.911987F, -264.920013F), new Vector2(392.071991F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(399.470001F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(400.825989F, -263.515991F), new Vector2(401.899994F, -264.589996F), new Vector2(402.691986F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(403.484009F, -267.302002F), new Vector2(403.880005F, -268.820007F), new Vector2(403.880005F, -270.5F));
+ builder.AddCubicBezier(new Vector2(403.880005F, -272.156006F), new Vector2(403.484009F, -273.656006F), new Vector2(402.691986F, -275F));
+ builder.AddCubicBezier(new Vector2(401.899994F, -276.343994F), new Vector2(400.825989F, -277.406006F), new Vector2(399.470001F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(398.114014F, -278.966003F), new Vector2(396.596008F, -279.355988F), new Vector2(394.915985F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(393.26001F, -279.355988F), new Vector2(391.76001F, -278.959991F), new Vector2(390.415985F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(389.071991F, -277.376007F), new Vector2(388.003998F, -276.313995F), new Vector2(387.212006F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(386.420013F, -273.649994F), new Vector2(386.023987F, -272.156006F), new Vector2(386.023987F, -270.5F));
+ builder.AddCubicBezier(new Vector2(386.023987F, -268.820007F), new Vector2(386.420013F, -267.302002F), new Vector2(387.212006F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(388.003998F, -264.589996F), new Vector2(389.071991F, -263.515991F), new Vector2(390.415985F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(391.76001F, -261.932007F), new Vector2(393.26001F, -261.536011F), new Vector2(394.915985F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(396.596008F, -261.536011F), new Vector2(398.114014F, -261.932007F), new Vector2(399.470001F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1250()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(377.635986F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(378.403992F, -275.911987F), new Vector2(379.388F, -276.29599F), new Vector2(380.588013F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(381.164001F, -276.29599F), new Vector2(381.667999F, -276.212006F), new Vector2(382.100006F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(382.532013F, -275.876007F), new Vector2(382.928009F, -275.600006F), new Vector2(383.287994F, -275.216003F));
+ builder.AddLine(new Vector2(385.411987F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(384.812012F, -278.108002F), new Vector2(384.164001F, -278.605988F), new Vector2(383.467987F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(382.772003F, -279.205994F), new Vector2(381.992004F, -279.355988F), new Vector2(381.127991F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(379.231995F, -279.355988F), new Vector2(377.779999F, -278.708008F), new Vector2(376.772003F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(375.764008F, -276.115997F), new Vector2(375.26001F, -274.376007F), new Vector2(375.26001F, -272.191986F));
+ builder.AddLine(new Vector2(376.484009F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(376.484009F, -273.200012F), new Vector2(376.868011F, -274.376007F), new Vector2(377.635986F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(376.484009F, -261.895996F));
+ builder.AddLine(new Vector2(376.484009F, -278.996002F));
+ builder.AddLine(new Vector2(373.243988F, -278.996002F));
+ builder.AddLine(new Vector2(373.243988F, -261.895996F));
+ builder.AddLine(new Vector2(376.484009F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1251()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(357.925995F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(357.097992F, -265.855988F), new Vector2(356.462006F, -266.54599F), new Vector2(356.018005F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(355.574005F, -268.298004F), new Vector2(355.35199F, -269.299988F), new Vector2(355.35199F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(355.35199F, -271.579987F), new Vector2(355.579987F, -272.593994F), new Vector2(356.036011F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(356.492004F, -274.346008F), new Vector2(357.127991F, -275.036011F), new Vector2(357.944F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(358.76001F, -276.044006F), new Vector2(359.696014F, -276.29599F), new Vector2(360.752014F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(361.832001F, -276.29599F), new Vector2(362.779999F, -276.044006F), new Vector2(363.596008F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(364.411987F, -275.036011F), new Vector2(365.053986F, -274.346008F), new Vector2(365.522003F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(365.98999F, -272.593994F), new Vector2(366.223999F, -271.59201F), new Vector2(366.223999F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(366.223999F, -269.312012F), new Vector2(365.98999F, -268.298004F), new Vector2(365.522003F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(365.053986F, -266.54599F), new Vector2(364.411987F, -265.855988F), new Vector2(363.596008F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(362.779999F, -264.847992F), new Vector2(361.832001F, -264.596008F), new Vector2(360.752014F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(359.696014F, -264.596008F), new Vector2(358.753998F, -264.847992F), new Vector2(357.925995F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(355.532013F, -261.895996F));
+ builder.AddLine(new Vector2(355.532013F, -266.503998F));
+ builder.AddLine(new Vector2(354.920013F, -270.679993F));
+ builder.AddLine(new Vector2(355.532013F, -274.820007F));
+ builder.AddLine(new Vector2(355.532013F, -287.600006F));
+ builder.AddLine(new Vector2(352.291992F, -287.600006F));
+ builder.AddLine(new Vector2(352.291992F, -261.895996F));
+ builder.AddLine(new Vector2(355.532013F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(365.522003F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(366.782013F, -263.485992F), new Vector2(367.772003F, -264.548004F), new Vector2(368.492004F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(369.212006F, -267.235992F), new Vector2(369.571991F, -268.747986F), new Vector2(369.571991F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(369.571991F, -272.108002F), new Vector2(369.212006F, -273.619995F), new Vector2(368.492004F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(367.772003F, -276.308014F), new Vector2(366.782013F, -277.376007F), new Vector2(365.522003F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(364.261993F, -278.959991F), new Vector2(362.85199F, -279.355988F), new Vector2(361.291992F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(360.019989F, -279.355988F), new Vector2(358.862F, -279.085999F), new Vector2(357.817993F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(356.773987F, -278.006012F), new Vector2(355.93399F, -277.261993F), new Vector2(355.298004F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(354.661987F, -275.365997F), new Vector2(354.308014F, -274.268005F), new Vector2(354.235992F, -273.019989F));
+ builder.AddLine(new Vector2(354.235992F, -267.872009F));
+ builder.AddCubicBezier(new Vector2(354.308014F, -266.64801F), new Vector2(354.656006F, -265.556F), new Vector2(355.279999F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(355.903992F, -263.635986F), new Vector2(356.738007F, -262.885986F), new Vector2(357.782013F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(358.825989F, -261.806F), new Vector2(359.996002F, -261.536011F), new Vector2(361.291992F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(362.85199F, -261.536011F), new Vector2(364.261993F, -261.925995F), new Vector2(365.522003F, -262.705994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1252()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(331.268005F, -261.895996F));
+ builder.AddLine(new Vector2(341.347992F, -286.880005F));
+ builder.AddLine(new Vector2(337.712006F, -286.880005F));
+ builder.AddLine(new Vector2(329.395996F, -265.747986F));
+ builder.AddLine(new Vector2(330.727997F, -265.747986F));
+ builder.AddLine(new Vector2(322.484009F, -286.880005F));
+ builder.AddLine(new Vector2(318.776001F, -286.880005F));
+ builder.AddLine(new Vector2(328.820007F, -261.895996F));
+ builder.AddLine(new Vector2(331.268005F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1253()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(318.09201F, -283.783997F));
+ builder.AddLine(new Vector2(318.09201F, -286.880005F));
+ builder.AddLine(new Vector2(297.752014F, -286.880005F));
+ builder.AddLine(new Vector2(297.752014F, -283.783997F));
+ builder.AddLine(new Vector2(318.09201F, -283.783997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(309.631989F, -261.895996F));
+ builder.AddLine(new Vector2(309.631989F, -286.160004F));
+ builder.AddLine(new Vector2(306.212006F, -286.160004F));
+ builder.AddLine(new Vector2(306.212006F, -261.895996F));
+ builder.AddLine(new Vector2(309.631989F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1254()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(287.455994F, -287.600006F));
+ builder.AddLine(new Vector2(284.179993F, -287.600006F));
+ builder.AddLine(new Vector2(284.179993F, -274.820007F));
+ builder.AddLine(new Vector2(284.791992F, -270.679993F));
+ builder.AddLine(new Vector2(284.179993F, -266.503998F));
+ builder.AddLine(new Vector2(284.179993F, -261.895996F));
+ builder.AddLine(new Vector2(287.455994F, -261.895996F));
+ builder.AddLine(new Vector2(287.455994F, -287.600006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(276.134003F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(275.306F, -265.825989F), new Vector2(274.65799F, -266.515991F), new Vector2(274.190002F, -267.403992F));
+ builder.AddCubicBezier(new Vector2(273.721985F, -268.291992F), new Vector2(273.488007F, -269.312012F), new Vector2(273.488007F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(273.488007F, -271.615997F), new Vector2(273.721985F, -272.630005F), new Vector2(274.190002F, -273.506012F));
+ builder.AddCubicBezier(new Vector2(274.65799F, -274.381989F), new Vector2(275.299988F, -275.06601F), new Vector2(276.115997F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(276.932007F, -276.049988F), new Vector2(277.880005F, -276.29599F), new Vector2(278.959991F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(280.040009F, -276.29599F), new Vector2(280.988007F, -276.044006F), new Vector2(281.803986F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(282.619995F, -275.036011F), new Vector2(283.256012F, -274.346008F), new Vector2(283.712006F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(284.167999F, -272.593994F), new Vector2(284.395996F, -271.579987F), new Vector2(284.395996F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(284.395996F, -269.299988F), new Vector2(284.167999F, -268.298004F), new Vector2(283.712006F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(283.256012F, -266.54599F), new Vector2(282.619995F, -265.855988F), new Vector2(281.803986F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(280.988007F, -264.847992F), new Vector2(280.040009F, -264.596008F), new Vector2(278.959991F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(277.903992F, -264.596008F), new Vector2(276.962006F, -264.84201F), new Vector2(276.134003F, -265.334015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(281.947998F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(282.980011F, -262.885986F), new Vector2(283.808014F, -263.635986F), new Vector2(284.432007F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(285.056F, -265.556F), new Vector2(285.403992F, -266.64801F), new Vector2(285.476013F, -267.872009F));
+ builder.AddLine(new Vector2(285.476013F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(285.403992F, -274.268005F), new Vector2(285.049988F, -275.365997F), new Vector2(284.414001F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(283.778015F, -277.261993F), new Vector2(282.944F, -278.006012F), new Vector2(281.911987F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(280.880005F, -279.085999F), new Vector2(279.716003F, -279.355988F), new Vector2(278.420013F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(276.859985F, -279.355988F), new Vector2(275.455994F, -278.959991F), new Vector2(274.208008F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(272.959991F, -277.376007F), new Vector2(271.970001F, -276.308014F), new Vector2(271.238007F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(270.506012F, -273.619995F), new Vector2(270.140015F, -272.108002F), new Vector2(270.140015F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(270.140015F, -268.747986F), new Vector2(270.506012F, -267.235992F), new Vector2(271.238007F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(271.970001F, -264.548004F), new Vector2(272.959991F, -263.485992F), new Vector2(274.208008F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(275.455994F, -261.925995F), new Vector2(276.859985F, -261.536011F), new Vector2(278.420013F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(279.73999F, -261.536011F), new Vector2(280.915985F, -261.806F), new Vector2(281.947998F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1255()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(254.731995F, -261.895996F));
+ builder.AddLine(new Vector2(254.731995F, -278.996002F));
+ builder.AddLine(new Vector2(251.492004F, -278.996002F));
+ builder.AddLine(new Vector2(251.492004F, -261.895996F));
+ builder.AddLine(new Vector2(254.731995F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(266.828003F, -261.895996F));
+ builder.AddLine(new Vector2(266.828003F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(266.828003F, -273.691986F), new Vector2(266.540009F, -274.802002F), new Vector2(265.963989F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(265.388F, -276.890015F), new Vector2(264.60199F, -277.735992F), new Vector2(263.605988F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(262.609985F, -279.032013F), new Vector2(261.463989F, -279.355988F), new Vector2(260.167999F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(258.872009F, -279.355988F), new Vector2(257.708008F, -279.062012F), new Vector2(256.675995F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(255.643997F, -277.885986F), new Vector2(254.839996F, -277.088013F), new Vector2(254.264008F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(253.688004F, -275.071991F), new Vector2(253.399994F, -273.920013F), new Vector2(253.399994F, -272.623993F));
+ builder.AddLine(new Vector2(254.731995F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(254.731995F, -272.731995F), new Vector2(254.923996F, -273.5F), new Vector2(255.307999F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(255.692001F, -274.843994F), new Vector2(256.220001F, -275.372009F), new Vector2(256.891998F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(257.563995F, -276.140015F), new Vector2(258.332001F, -276.332001F), new Vector2(259.196014F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(260.492004F, -276.332001F), new Vector2(261.541992F, -275.911987F), new Vector2(262.346008F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(263.149994F, -274.231995F), new Vector2(263.552002F, -273.164001F), new Vector2(263.552002F, -271.868011F));
+ builder.AddLine(new Vector2(263.552002F, -261.895996F));
+ builder.AddLine(new Vector2(266.828003F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1256()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(246.776001F, -261.895996F));
+ builder.AddLine(new Vector2(246.776001F, -278.996002F));
+ builder.AddLine(new Vector2(243.5F, -278.996002F));
+ builder.AddLine(new Vector2(243.5F, -274.820007F));
+ builder.AddLine(new Vector2(244.112F, -270.679993F));
+ builder.AddLine(new Vector2(243.5F, -266.503998F));
+ builder.AddLine(new Vector2(243.5F, -261.895996F));
+ builder.AddLine(new Vector2(246.776001F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(235.472F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(234.632004F, -265.855988F), new Vector2(233.977997F, -266.54599F), new Vector2(233.509995F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(233.042007F, -268.298004F), new Vector2(232.807999F, -269.312012F), new Vector2(232.807999F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(232.807999F, -271.59201F), new Vector2(233.042007F, -272.593994F), new Vector2(233.509995F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(233.977997F, -274.346008F), new Vector2(234.626007F, -275.036011F), new Vector2(235.453995F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(236.281998F, -276.044006F), new Vector2(237.235992F, -276.29599F), new Vector2(238.315994F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(239.395996F, -276.29599F), new Vector2(240.337997F, -276.049988F), new Vector2(241.141998F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(241.945999F, -275.06601F), new Vector2(242.576004F, -274.376007F), new Vector2(243.031998F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(243.488007F, -272.600006F), new Vector2(243.716003F, -271.579987F), new Vector2(243.716003F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(243.716003F, -268.723999F), new Vector2(243.223999F, -267.325989F), new Vector2(242.240005F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(241.255997F, -265.141998F), new Vector2(239.960007F, -264.596008F), new Vector2(238.352005F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(237.272003F, -264.596008F), new Vector2(236.311996F, -264.847992F), new Vector2(235.472F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(241.304001F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(242.335999F, -262.885986F), new Vector2(243.158005F, -263.635986F), new Vector2(243.770004F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(244.382004F, -265.556F), new Vector2(244.723999F, -266.64801F), new Vector2(244.796005F, -267.872009F));
+ builder.AddLine(new Vector2(244.796005F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(244.723999F, -274.268005F), new Vector2(244.376007F, -275.365997F), new Vector2(243.751999F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(243.128006F, -277.261993F), new Vector2(242.306F, -278.006012F), new Vector2(241.285995F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(240.266006F, -279.085999F), new Vector2(239.108002F, -279.355988F), new Vector2(237.811996F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(236.227997F, -279.355988F), new Vector2(234.806F, -278.959991F), new Vector2(233.546005F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(232.285995F, -277.376007F), new Vector2(231.289993F, -276.308014F), new Vector2(230.557999F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(229.826004F, -273.619995F), new Vector2(229.460007F, -272.108002F), new Vector2(229.460007F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(229.460007F, -268.747986F), new Vector2(229.826004F, -267.235992F), new Vector2(230.557999F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(231.289993F, -264.548004F), new Vector2(232.285995F, -263.485992F), new Vector2(233.546005F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(234.806F, -261.925995F), new Vector2(236.227997F, -261.536011F), new Vector2(237.811996F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(239.108002F, -261.536011F), new Vector2(240.272003F, -261.806F), new Vector2(241.304001F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1257()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(216.175995F, -261.806F));
+ builder.AddCubicBezier(new Vector2(217.112F, -263.425995F), new Vector2(217.832001F, -265.196014F), new Vector2(218.335999F, -267.115997F));
+ builder.AddCubicBezier(new Vector2(218.839996F, -269.036011F), new Vector2(219.091995F, -271.028015F), new Vector2(219.091995F, -273.09201F));
+ builder.AddCubicBezier(new Vector2(219.091995F, -275.156006F), new Vector2(218.839996F, -277.14801F), new Vector2(218.335999F, -279.067993F));
+ builder.AddCubicBezier(new Vector2(217.832001F, -280.988007F), new Vector2(217.112F, -282.757996F), new Vector2(216.175995F, -284.377991F));
+ builder.AddCubicBezier(new Vector2(215.240005F, -285.997986F), new Vector2(214.112F, -287.359985F), new Vector2(212.792007F, -288.463989F));
+ builder.AddLine(new Vector2(210.884003F, -286.772003F));
+ builder.AddCubicBezier(new Vector2(212.612F, -285.283997F), new Vector2(213.932007F, -283.364014F), new Vector2(214.843994F, -281.011993F));
+ builder.AddCubicBezier(new Vector2(215.755997F, -278.660004F), new Vector2(216.212006F, -276.019989F), new Vector2(216.212006F, -273.09201F));
+ builder.AddCubicBezier(new Vector2(216.212006F, -270.187988F), new Vector2(215.755997F, -267.559998F), new Vector2(214.843994F, -265.208008F));
+ builder.AddCubicBezier(new Vector2(213.932007F, -262.855988F), new Vector2(212.612F, -260.924011F), new Vector2(210.884003F, -259.411987F));
+ builder.AddLine(new Vector2(212.792007F, -257.720001F));
+ builder.AddCubicBezier(new Vector2(214.112F, -258.824005F), new Vector2(215.240005F, -260.186005F), new Vector2(216.175995F, -261.806F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1258()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(201.524002F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(202.292007F, -275.911987F), new Vector2(203.276001F, -276.29599F), new Vector2(204.475998F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(205.052002F, -276.29599F), new Vector2(205.556F, -276.212006F), new Vector2(205.988007F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(206.419998F, -275.876007F), new Vector2(206.815994F, -275.600006F), new Vector2(207.175995F, -275.216003F));
+ builder.AddLine(new Vector2(209.300003F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(208.699997F, -278.108002F), new Vector2(208.052002F, -278.605988F), new Vector2(207.356003F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(206.660004F, -279.205994F), new Vector2(205.880005F, -279.355988F), new Vector2(205.016006F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(203.119995F, -279.355988F), new Vector2(201.667999F, -278.708008F), new Vector2(200.660004F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(199.651993F, -276.115997F), new Vector2(199.147995F, -274.376007F), new Vector2(199.147995F, -272.191986F));
+ builder.AddLine(new Vector2(200.371994F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(200.371994F, -273.200012F), new Vector2(200.755997F, -274.376007F), new Vector2(201.524002F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(200.371994F, -261.895996F));
+ builder.AddLine(new Vector2(200.371994F, -278.996002F));
+ builder.AddLine(new Vector2(197.132004F, -278.996002F));
+ builder.AddLine(new Vector2(197.132004F, -261.895996F));
+ builder.AddLine(new Vector2(200.371994F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1259()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(189.535995F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(190.712006F, -262.79599F), new Vector2(191.720001F, -263.528015F), new Vector2(192.559998F, -264.488007F));
+ builder.AddLine(new Vector2(190.472F, -266.612F));
+ builder.AddCubicBezier(new Vector2(189.895996F, -265.940002F), new Vector2(189.205994F, -265.436005F), new Vector2(188.401993F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(187.598007F, -264.764008F), new Vector2(186.716003F, -264.596008F), new Vector2(185.755997F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(184.604004F, -264.596008F), new Vector2(183.584F, -264.84201F), new Vector2(182.695999F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(181.807999F, -265.825989F), new Vector2(181.123993F, -266.522003F), new Vector2(180.643997F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(180.164001F, -268.321991F), new Vector2(179.923996F, -269.372009F), new Vector2(179.923996F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(179.923996F, -271.747986F), new Vector2(180.151993F, -272.768005F), new Vector2(180.608002F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(181.063995F, -274.496002F), new Vector2(181.712006F, -275.167999F), new Vector2(182.552002F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(183.391998F, -276.127991F), new Vector2(184.363998F, -276.368011F), new Vector2(185.468002F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(186.524002F, -276.368011F), new Vector2(187.423996F, -276.145996F), new Vector2(188.167999F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(188.912003F, -275.257996F), new Vector2(189.488007F, -274.634003F), new Vector2(189.895996F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(190.304001F, -273.026001F), new Vector2(190.507996F, -272.048004F), new Vector2(190.507996F, -270.895996F));
+ builder.AddLine(new Vector2(191.695999F, -271.940002F));
+ builder.AddLine(new Vector2(178.988007F, -271.940002F));
+ builder.AddLine(new Vector2(178.988007F, -269.23999F));
+ builder.AddLine(new Vector2(193.423996F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(193.496002F, -269.575989F), new Vector2(193.544006F, -269.881989F), new Vector2(193.567993F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(193.591995F, -270.43399F), new Vector2(193.604004F, -270.691986F), new Vector2(193.604004F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(193.604004F, -272.563995F), new Vector2(193.261993F, -274.015991F), new Vector2(192.578003F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(191.893997F, -276.559998F), new Vector2(190.940002F, -277.556F), new Vector2(189.716003F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(188.492004F, -278.996002F), new Vector2(187.100006F, -279.355988F), new Vector2(185.539993F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(183.884003F, -279.355988F), new Vector2(182.389999F, -278.966003F), new Vector2(181.057999F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(179.725998F, -277.406006F), new Vector2(178.669998F, -276.343994F), new Vector2(177.889999F, -275F));
+ builder.AddCubicBezier(new Vector2(177.110001F, -273.656006F), new Vector2(176.720001F, -272.144012F), new Vector2(176.720001F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(176.720001F, -268.76001F), new Vector2(177.115997F, -267.235992F), new Vector2(177.908005F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(178.699997F, -264.548004F), new Vector2(179.774002F, -263.485992F), new Vector2(181.130005F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(182.485992F, -261.925995F), new Vector2(184.028F, -261.536011F), new Vector2(185.755997F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(187.100006F, -261.536011F), new Vector2(188.360001F, -261.787994F), new Vector2(189.535995F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1260()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(175.207993F, -276.044006F));
+ builder.AddLine(new Vector2(175.207993F, -278.996002F));
+ builder.AddLine(new Vector2(163.544006F, -278.996002F));
+ builder.AddLine(new Vector2(163.544006F, -276.044006F));
+ builder.AddLine(new Vector2(175.207993F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(170.996002F, -261.895996F));
+ builder.AddLine(new Vector2(170.996002F, -286.160004F));
+ builder.AddLine(new Vector2(167.755997F, -286.160004F));
+ builder.AddLine(new Vector2(167.755997F, -261.895996F));
+ builder.AddLine(new Vector2(170.996002F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1261()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(162.608002F, -276.044006F));
+ builder.AddLine(new Vector2(162.608002F, -278.996002F));
+ builder.AddLine(new Vector2(150.944F, -278.996002F));
+ builder.AddLine(new Vector2(150.944F, -276.044006F));
+ builder.AddLine(new Vector2(162.608002F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(158.395996F, -261.895996F));
+ builder.AddLine(new Vector2(158.395996F, -286.160004F));
+ builder.AddLine(new Vector2(155.156006F, -286.160004F));
+ builder.AddLine(new Vector2(155.156006F, -261.895996F));
+ builder.AddLine(new Vector2(158.395996F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1262()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(147.595993F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(147.979996F, -283.406006F), new Vector2(148.171997F, -283.903992F), new Vector2(148.171997F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(148.171997F, -285.079987F), new Vector2(147.979996F, -285.56601F), new Vector2(147.595993F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(147.212006F, -286.358002F), new Vector2(146.720001F, -286.556F), new Vector2(146.119995F, -286.556F));
+ builder.AddCubicBezier(new Vector2(145.520004F, -286.556F), new Vector2(145.028F, -286.358002F), new Vector2(144.643997F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(144.259995F, -285.56601F), new Vector2(144.067993F, -285.079987F), new Vector2(144.067993F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(144.067993F, -283.903992F), new Vector2(144.259995F, -283.406006F), new Vector2(144.643997F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(145.028F, -282.614014F), new Vector2(145.520004F, -282.415985F), new Vector2(146.119995F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(146.720001F, -282.415985F), new Vector2(147.212006F, -282.614014F), new Vector2(147.595993F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(147.740005F, -261.895996F));
+ builder.AddLine(new Vector2(147.740005F, -278.996002F));
+ builder.AddLine(new Vector2(144.464005F, -278.996002F));
+ builder.AddLine(new Vector2(144.464005F, -261.895996F));
+ builder.AddLine(new Vector2(147.740005F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1263()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(124.519997F, -261.895996F));
+ builder.AddLine(new Vector2(129.488007F, -274.783997F));
+ builder.AddLine(new Vector2(128.300003F, -274.783997F));
+ builder.AddLine(new Vector2(133.231995F, -261.895996F));
+ builder.AddLine(new Vector2(135.139999F, -261.895996F));
+ builder.AddLine(new Vector2(141.871994F, -278.996002F));
+ builder.AddLine(new Vector2(138.488007F, -278.996002F));
+ builder.AddLine(new Vector2(133.591995F, -265.675995F));
+ builder.AddLine(new Vector2(134.671997F, -265.675995F));
+ builder.AddLine(new Vector2(129.811996F, -278.996002F));
+ builder.AddLine(new Vector2(127.940002F, -278.996002F));
+ builder.AddLine(new Vector2(123.080002F, -265.675995F));
+ builder.AddLine(new Vector2(124.160004F, -265.675995F));
+ builder.AddLine(new Vector2(119.264F, -278.996002F));
+ builder.AddLine(new Vector2(115.879997F, -278.996002F));
+ builder.AddLine(new Vector2(122.612F, -261.895996F));
+ builder.AddLine(new Vector2(124.519997F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1264()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(118.220001F, -283.783997F));
+ builder.AddLine(new Vector2(118.220001F, -286.880005F));
+ builder.AddLine(new Vector2(97.8799973F, -286.880005F));
+ builder.AddLine(new Vector2(97.8799973F, -283.783997F));
+ builder.AddLine(new Vector2(118.220001F, -283.783997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(109.760002F, -261.895996F));
+ builder.AddLine(new Vector2(109.760002F, -286.160004F));
+ builder.AddLine(new Vector2(106.339996F, -286.160004F));
+ builder.AddLine(new Vector2(106.339996F, -261.895996F));
+ builder.AddLine(new Vector2(109.760002F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1265()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(78.1159973F, -254.731995F));
+ builder.AddLine(new Vector2(81.3560028F, -261.752014F));
+ builder.AddLine(new Vector2(79.5199966F, -265.063995F));
+ builder.AddLine(new Vector2(74.5159988F, -254.731995F));
+ builder.AddLine(new Vector2(78.1159973F, -254.731995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(81.3560028F, -261.752014F));
+ builder.AddLine(new Vector2(89.3479996F, -278.996002F));
+ builder.AddLine(new Vector2(85.7480011F, -278.996002F));
+ builder.AddLine(new Vector2(79.9520035F, -265.496002F));
+ builder.AddLine(new Vector2(81.1039963F, -265.496002F));
+ builder.AddLine(new Vector2(75.5960007F, -278.996002F));
+ builder.AddLine(new Vector2(71.9960022F, -278.996002F));
+ builder.AddLine(new Vector2(79.4120026F, -261.752014F));
+ builder.AddLine(new Vector2(81.3560028F, -261.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1266()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(69.0439987F, -261.895996F));
+ builder.AddLine(new Vector2(69.0439987F, -287.600006F));
+ builder.AddLine(new Vector2(65.8040009F, -287.600006F));
+ builder.AddLine(new Vector2(65.8040009F, -261.895996F));
+ builder.AddLine(new Vector2(69.0439987F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1267()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(55.7599983F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(56.5279999F, -275.911987F), new Vector2(57.512001F, -276.29599F), new Vector2(58.7120018F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(59.2879982F, -276.29599F), new Vector2(59.7919998F, -276.212006F), new Vector2(60.223999F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(60.6559982F, -275.876007F), new Vector2(61.0519981F, -275.600006F), new Vector2(61.4119987F, -275.216003F));
+ builder.AddLine(new Vector2(63.5359993F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(62.9360008F, -278.108002F), new Vector2(62.2879982F, -278.605988F), new Vector2(61.5919991F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(60.8959999F, -279.205994F), new Vector2(60.1160011F, -279.355988F), new Vector2(59.2519989F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(57.355999F, -279.355988F), new Vector2(55.9039993F, -278.708008F), new Vector2(54.8959999F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(53.8880005F, -276.115997F), new Vector2(53.3839989F, -274.376007F), new Vector2(53.3839989F, -272.191986F));
+ builder.AddLine(new Vector2(54.6080017F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(54.6080017F, -273.200012F), new Vector2(54.9920006F, -274.376007F), new Vector2(55.7599983F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(54.6080017F, -261.895996F));
+ builder.AddLine(new Vector2(54.6080017F, -278.996002F));
+ builder.AddLine(new Vector2(51.368F, -278.996002F));
+ builder.AddLine(new Vector2(51.368F, -261.895996F));
+ builder.AddLine(new Vector2(54.6080017F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1268()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(43.7719994F, -262.291992F));
+ builder.AddCubicBezier(new Vector2(44.9480019F, -262.79599F), new Vector2(45.9560013F, -263.528015F), new Vector2(46.7960014F, -264.488007F));
+ builder.AddLine(new Vector2(44.7080002F, -266.612F));
+ builder.AddCubicBezier(new Vector2(44.132F, -265.940002F), new Vector2(43.4420013F, -265.436005F), new Vector2(42.6380005F, -265.100006F));
+ builder.AddCubicBezier(new Vector2(41.8339996F, -264.764008F), new Vector2(40.9519997F, -264.596008F), new Vector2(39.9920006F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(38.8400002F, -264.596008F), new Vector2(37.8199997F, -264.84201F), new Vector2(36.9319992F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(36.0439987F, -265.825989F), new Vector2(35.3600006F, -266.522003F), new Vector2(34.8800011F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(34.4000015F, -268.321991F), new Vector2(34.1599998F, -269.372009F), new Vector2(34.1599998F, -270.571991F));
+ builder.AddCubicBezier(new Vector2(34.1599998F, -271.747986F), new Vector2(34.3880005F, -272.768005F), new Vector2(34.8440018F, -273.631989F));
+ builder.AddCubicBezier(new Vector2(35.2999992F, -274.496002F), new Vector2(35.9480019F, -275.167999F), new Vector2(36.7879982F, -275.64801F));
+ builder.AddCubicBezier(new Vector2(37.6279984F, -276.127991F), new Vector2(38.5999985F, -276.368011F), new Vector2(39.7039986F, -276.368011F));
+ builder.AddCubicBezier(new Vector2(40.7599983F, -276.368011F), new Vector2(41.6599998F, -276.145996F), new Vector2(42.4039993F, -275.701996F));
+ builder.AddCubicBezier(new Vector2(43.1479988F, -275.257996F), new Vector2(43.723999F, -274.634003F), new Vector2(44.132F, -273.829987F));
+ builder.AddCubicBezier(new Vector2(44.5400009F, -273.026001F), new Vector2(44.7439995F, -272.048004F), new Vector2(44.7439995F, -270.895996F));
+ builder.AddLine(new Vector2(45.9319992F, -271.940002F));
+ builder.AddLine(new Vector2(33.223999F, -271.940002F));
+ builder.AddLine(new Vector2(33.223999F, -269.23999F));
+ builder.AddLine(new Vector2(47.6599998F, -269.23999F));
+ builder.AddCubicBezier(new Vector2(47.7319984F, -269.575989F), new Vector2(47.7799988F, -269.881989F), new Vector2(47.8040009F, -270.15799F));
+ builder.AddCubicBezier(new Vector2(47.8279991F, -270.43399F), new Vector2(47.8400002F, -270.691986F), new Vector2(47.8400002F, -270.932007F));
+ builder.AddCubicBezier(new Vector2(47.8400002F, -272.563995F), new Vector2(47.4980011F, -274.015991F), new Vector2(46.8139992F, -275.287994F));
+ builder.AddCubicBezier(new Vector2(46.1300011F, -276.559998F), new Vector2(45.1759987F, -277.556F), new Vector2(43.9519997F, -278.276001F));
+ builder.AddCubicBezier(new Vector2(42.7280006F, -278.996002F), new Vector2(41.3359985F, -279.355988F), new Vector2(39.776001F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(38.1199989F, -279.355988F), new Vector2(36.6259995F, -278.966003F), new Vector2(35.2939987F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(33.9620018F, -277.406006F), new Vector2(32.9059982F, -276.343994F), new Vector2(32.1259995F, -275F));
+ builder.AddCubicBezier(new Vector2(31.3460007F, -273.656006F), new Vector2(30.9559994F, -272.144012F), new Vector2(30.9559994F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(30.9559994F, -268.76001F), new Vector2(31.3519993F, -267.235992F), new Vector2(32.144001F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(32.9360008F, -264.548004F), new Vector2(34.0099983F, -263.485992F), new Vector2(35.3660011F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(36.7220001F, -261.925995F), new Vector2(38.2639999F, -261.536011F), new Vector2(39.9920006F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(41.3359985F, -261.536011F), new Vector2(42.5960007F, -261.787994F), new Vector2(43.7719994F, -262.291992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1269()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(27.6800003F, -261.895996F));
+ builder.AddLine(new Vector2(27.6800003F, -272.876007F));
+ builder.AddCubicBezier(new Vector2(27.6800003F, -274.220001F), new Vector2(27.3859997F, -275.372009F), new Vector2(26.7980003F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(26.2099991F, -277.291992F), new Vector2(25.4239998F, -278.036011F), new Vector2(24.4400005F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(23.4559994F, -279.09201F), new Vector2(22.3400002F, -279.355988F), new Vector2(21.0919991F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(19.8920002F, -279.355988F), new Vector2(18.7880001F, -279.085999F), new Vector2(17.7800007F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(16.7719994F, -278.006012F), new Vector2(15.9499998F, -277.261993F), new Vector2(15.3140001F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(14.6780005F, -275.365997F), new Vector2(14.3240004F, -274.231995F), new Vector2(14.2519999F, -272.911987F));
+ builder.AddLine(new Vector2(16.0879993F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(16.0879993F, -273.09201F), new Vector2(16.2800007F, -273.824005F), new Vector2(16.6639996F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(17.0480003F, -275.023987F), new Vector2(17.5580006F, -275.492004F), new Vector2(18.1940002F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(18.8299999F, -276.164001F), new Vector2(19.5440006F, -276.332001F), new Vector2(20.3360004F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(21.4880009F, -276.332001F), new Vector2(22.4540005F, -275.966003F), new Vector2(23.2339993F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(24.0139999F, -274.502014F), new Vector2(24.4039993F, -273.5F), new Vector2(24.4039993F, -272.227997F));
+ builder.AddLine(new Vector2(24.4039993F, -261.895996F));
+ builder.AddLine(new Vector2(27.6800003F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(16.0879993F, -261.895996F));
+ builder.AddLine(new Vector2(16.0879993F, -272.911987F));
+ builder.AddCubicBezier(new Vector2(16.0879993F, -274.231995F), new Vector2(15.8059998F, -275.372009F), new Vector2(15.2419996F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(14.6780005F, -277.291992F), new Vector2(13.9099998F, -278.036011F), new Vector2(12.9379997F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(11.9659996F, -279.09201F), new Vector2(10.8800001F, -279.355988F), new Vector2(9.68000031F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(8.45600033F, -279.355988F), new Vector2(7.35200024F, -279.085999F), new Vector2(6.36800003F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(5.38399982F, -278.006012F), new Vector2(4.61000013F, -277.256012F), new Vector2(4.046F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(3.48200011F, -275.335999F), new Vector2(3.20000005F, -274.208008F), new Vector2(3.20000005F, -272.911987F));
+ builder.AddLine(new Vector2(4.53200006F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(4.53200006F, -273.09201F), new Vector2(4.72399998F, -273.824005F), new Vector2(5.1079998F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(5.4920001F, -275.023987F), new Vector2(5.99599981F, -275.492004F), new Vector2(6.61999989F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(7.24399996F, -276.164001F), new Vector2(7.95200014F, -276.332001F), new Vector2(8.74400043F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(9.92000008F, -276.332001F), new Vector2(10.8979998F, -275.966003F), new Vector2(11.6780005F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(12.4580002F, -274.502014F), new Vector2(12.8479996F, -273.5F), new Vector2(12.8479996F, -272.227997F));
+ builder.AddLine(new Vector2(12.8479996F, -261.895996F));
+ builder.AddLine(new Vector2(16.0879993F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(4.53200006F, -261.895996F));
+ builder.AddLine(new Vector2(4.53200006F, -278.996002F));
+ builder.AddLine(new Vector2(1.29200006F, -278.996002F));
+ builder.AddLine(new Vector2(1.29200006F, -261.895996F));
+ builder.AddLine(new Vector2(4.53200006F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1270()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-8.82400036F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(-8.05599976F, -275.911987F), new Vector2(-7.07200003F, -276.29599F), new Vector2(-5.87200022F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-5.296F, -276.29599F), new Vector2(-4.79199982F, -276.212006F), new Vector2(-4.36000013F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(-3.92799997F, -275.876007F), new Vector2(-3.53200006F, -275.600006F), new Vector2(-3.17199993F, -275.216003F));
+ builder.AddLine(new Vector2(-1.04799998F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-1.648F, -278.108002F), new Vector2(-2.296F, -278.605988F), new Vector2(-2.9920001F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(-3.68799996F, -279.205994F), new Vector2(-4.46799994F, -279.355988F), new Vector2(-5.33199978F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-7.22800016F, -279.355988F), new Vector2(-8.68000031F, -278.708008F), new Vector2(-9.68799973F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-10.6960001F, -276.115997F), new Vector2(-11.1999998F, -274.376007F), new Vector2(-11.1999998F, -272.191986F));
+ builder.AddLine(new Vector2(-9.97599983F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(-9.97599983F, -273.200012F), new Vector2(-9.59200001F, -274.376007F), new Vector2(-8.82400036F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-9.97599983F, -261.895996F));
+ builder.AddLine(new Vector2(-9.97599983F, -278.996002F));
+ builder.AddLine(new Vector2(-13.2159996F, -278.996002F));
+ builder.AddLine(new Vector2(-13.2159996F, -261.895996F));
+ builder.AddLine(new Vector2(-9.97599983F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1271()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-28.6240005F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-29.4640007F, -265.928009F), new Vector2(-30.1240005F, -266.618011F), new Vector2(-30.6040001F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-31.0839996F, -268.369995F), new Vector2(-31.3239994F, -269.372009F), new Vector2(-31.3239994F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-31.3239994F, -271.604004F), new Vector2(-31.0839996F, -272.588013F), new Vector2(-30.6040001F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-30.1240005F, -274.31601F), new Vector2(-29.4640007F, -274.993988F), new Vector2(-28.6240005F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-27.7840004F, -275.977997F), new Vector2(-26.8360004F, -276.223999F), new Vector2(-25.7800007F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(-24.6760006F, -276.223999F), new Vector2(-23.7099991F, -275.977997F), new Vector2(-22.882F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-22.0540009F, -274.993988F), new Vector2(-21.3939991F, -274.31601F), new Vector2(-20.9020004F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-20.4099998F, -272.588013F), new Vector2(-20.1639996F, -271.604004F), new Vector2(-20.1639996F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-20.1639996F, -269.372009F), new Vector2(-20.4039993F, -268.369995F), new Vector2(-20.8840008F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-21.3640003F, -266.618011F), new Vector2(-22.0240002F, -265.928009F), new Vector2(-22.8640003F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-23.7040005F, -264.920013F), new Vector2(-24.6760006F, -264.667999F), new Vector2(-25.7800007F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-26.8360004F, -264.667999F), new Vector2(-27.7840004F, -264.920013F), new Vector2(-28.6240005F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-21.2259998F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-19.8700008F, -263.515991F), new Vector2(-18.7959995F, -264.589996F), new Vector2(-18.0039997F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-17.2119999F, -267.302002F), new Vector2(-16.816F, -268.820007F), new Vector2(-16.816F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-16.816F, -272.156006F), new Vector2(-17.2119999F, -273.656006F), new Vector2(-18.0039997F, -275F));
+ builder.AddCubicBezier(new Vector2(-18.7959995F, -276.343994F), new Vector2(-19.8700008F, -277.406006F), new Vector2(-21.2259998F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-22.5820007F, -278.966003F), new Vector2(-24.1000004F, -279.355988F), new Vector2(-25.7800007F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-27.4360008F, -279.355988F), new Vector2(-28.9360008F, -278.959991F), new Vector2(-30.2800007F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-31.6240005F, -277.376007F), new Vector2(-32.6920013F, -276.313995F), new Vector2(-33.4840012F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(-34.276001F, -273.649994F), new Vector2(-34.6720009F, -272.156006F), new Vector2(-34.6720009F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-34.6720009F, -268.820007F), new Vector2(-34.276001F, -267.302002F), new Vector2(-33.4840012F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-32.6920013F, -264.589996F), new Vector2(-31.6240005F, -263.515991F), new Vector2(-30.2800007F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-28.9360008F, -261.932007F), new Vector2(-27.4360008F, -261.536011F), new Vector2(-25.7800007F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-24.1000004F, -261.536011F), new Vector2(-22.5820007F, -261.932007F), new Vector2(-21.2259998F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1272()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-35.8240013F, -276.044006F));
+ builder.AddLine(new Vector2(-35.8240013F, -278.996002F));
+ builder.AddLine(new Vector2(-48.7120018F, -278.996002F));
+ builder.AddLine(new Vector2(-48.7120018F, -276.044006F));
+ builder.AddLine(new Vector2(-35.8240013F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-41.2599983F, -261.895996F));
+ builder.AddLine(new Vector2(-41.2599983F, -281.552002F));
+ builder.AddCubicBezier(new Vector2(-41.2599983F, -282.608002F), new Vector2(-40.9780006F, -283.429993F), new Vector2(-40.4140015F, -284.018005F));
+ builder.AddCubicBezier(new Vector2(-39.8499985F, -284.605988F), new Vector2(-39.0519981F, -284.899994F), new Vector2(-38.0200005F, -284.899994F));
+ builder.AddCubicBezier(new Vector2(-37.4679985F, -284.899994F), new Vector2(-37F, -284.81601F), new Vector2(-36.6160011F, -284.64801F));
+ builder.AddCubicBezier(new Vector2(-36.2319984F, -284.480011F), new Vector2(-35.8839989F, -284.227997F), new Vector2(-35.5719986F, -283.891998F));
+ builder.AddLine(new Vector2(-33.4480019F, -285.980011F));
+ builder.AddCubicBezier(new Vector2(-34.0480003F, -286.627991F), new Vector2(-34.7080002F, -287.119995F), new Vector2(-35.4280014F, -287.455994F));
+ builder.AddCubicBezier(new Vector2(-36.1479988F, -287.791992F), new Vector2(-37F, -287.959991F), new Vector2(-37.9840012F, -287.959991F));
+ builder.AddCubicBezier(new Vector2(-39.2799988F, -287.959991F), new Vector2(-40.4199982F, -287.68399F), new Vector2(-41.4039993F, -287.131989F));
+ builder.AddCubicBezier(new Vector2(-42.3880005F, -286.579987F), new Vector2(-43.1559982F, -285.824005F), new Vector2(-43.7080002F, -284.864014F));
+ builder.AddCubicBezier(new Vector2(-44.2599983F, -283.903992F), new Vector2(-44.5359993F, -282.799988F), new Vector2(-44.5359993F, -281.552002F));
+ builder.AddLine(new Vector2(-44.5359993F, -261.895996F));
+ builder.AddLine(new Vector2(-41.2599983F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1273()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-50.368F, -259.411987F));
+ builder.AddCubicBezier(new Vector2(-52.0719986F, -260.924011F), new Vector2(-53.3860016F, -262.855988F), new Vector2(-54.3100014F, -265.208008F));
+ builder.AddCubicBezier(new Vector2(-55.2340012F, -267.559998F), new Vector2(-55.6959991F, -270.187988F), new Vector2(-55.6959991F, -273.09201F));
+ builder.AddCubicBezier(new Vector2(-55.6959991F, -276.019989F), new Vector2(-55.2340012F, -278.660004F), new Vector2(-54.3100014F, -281.011993F));
+ builder.AddCubicBezier(new Vector2(-53.3860016F, -283.364014F), new Vector2(-52.0719986F, -285.283997F), new Vector2(-50.368F, -286.772003F));
+ builder.AddLine(new Vector2(-52.2400017F, -288.463989F));
+ builder.AddCubicBezier(new Vector2(-53.5600014F, -287.359985F), new Vector2(-54.6879997F, -285.997986F), new Vector2(-55.6240005F, -284.377991F));
+ builder.AddCubicBezier(new Vector2(-56.5600014F, -282.757996F), new Vector2(-57.2799988F, -280.988007F), new Vector2(-57.7840004F, -279.067993F));
+ builder.AddCubicBezier(new Vector2(-58.2879982F, -277.14801F), new Vector2(-58.5400009F, -275.156006F), new Vector2(-58.5400009F, -273.09201F));
+ builder.AddCubicBezier(new Vector2(-58.5400009F, -271.028015F), new Vector2(-58.2879982F, -269.036011F), new Vector2(-57.7840004F, -267.115997F));
+ builder.AddCubicBezier(new Vector2(-57.2799988F, -265.196014F), new Vector2(-56.5600014F, -263.425995F), new Vector2(-55.6240005F, -261.806F));
+ builder.AddCubicBezier(new Vector2(-54.6879997F, -260.186005F), new Vector2(-53.5600014F, -258.824005F), new Vector2(-52.2400017F, -257.720001F));
+ builder.AddLine(new Vector2(-50.368F, -259.411987F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1274()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-69.1240005F, -286.880005F));
+ builder.AddLine(new Vector2(-72.9759979F, -286.880005F));
+ builder.AddLine(new Vector2(-80.6439972F, -275.971985F));
+ builder.AddLine(new Vector2(-78.3759995F, -273.955994F));
+ builder.AddLine(new Vector2(-69.1240005F, -286.880005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-87.6279984F, -261.895996F));
+ builder.AddLine(new Vector2(-79.4560013F, -273.164001F));
+ builder.AddLine(new Vector2(-81.7600021F, -275.179993F));
+ builder.AddLine(new Vector2(-91.4440002F, -261.895996F));
+ builder.AddLine(new Vector2(-87.6279984F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-68.7279968F, -261.895996F));
+ builder.AddLine(new Vector2(-78.5920029F, -276.115997F));
+ builder.AddLine(new Vector2(-79.2040024F, -276.115997F));
+ builder.AddLine(new Vector2(-86.9800034F, -286.880005F));
+ builder.AddLine(new Vector2(-91.012001F, -286.880005F));
+ builder.AddLine(new Vector2(-81.1480026F, -273.343994F));
+ builder.AddLine(new Vector2(-80.5360031F, -273.343994F));
+ builder.AddLine(new Vector2(-72.723999F, -261.895996F));
+ builder.AddLine(new Vector2(-68.7279968F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1275()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-102.316002F, -287.600006F));
+ builder.AddLine(new Vector2(-105.592003F, -287.600006F));
+ builder.AddLine(new Vector2(-105.592003F, -274.820007F));
+ builder.AddLine(new Vector2(-104.980003F, -270.679993F));
+ builder.AddLine(new Vector2(-105.592003F, -266.503998F));
+ builder.AddLine(new Vector2(-105.592003F, -261.895996F));
+ builder.AddLine(new Vector2(-102.316002F, -261.895996F));
+ builder.AddLine(new Vector2(-102.316002F, -287.600006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-113.638F, -265.334015F));
+ builder.AddCubicBezier(new Vector2(-114.466003F, -265.825989F), new Vector2(-115.113998F, -266.515991F), new Vector2(-115.582001F, -267.403992F));
+ builder.AddCubicBezier(new Vector2(-116.050003F, -268.291992F), new Vector2(-116.283997F, -269.312012F), new Vector2(-116.283997F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-116.283997F, -271.615997F), new Vector2(-116.050003F, -272.630005F), new Vector2(-115.582001F, -273.506012F));
+ builder.AddCubicBezier(new Vector2(-115.113998F, -274.381989F), new Vector2(-114.472F, -275.06601F), new Vector2(-113.655998F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(-112.839996F, -276.049988F), new Vector2(-111.891998F, -276.29599F), new Vector2(-110.811996F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-109.732002F, -276.29599F), new Vector2(-108.783997F, -276.044006F), new Vector2(-107.968002F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-107.152F, -275.036011F), new Vector2(-106.515999F, -274.346008F), new Vector2(-106.059998F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-105.603996F, -272.593994F), new Vector2(-105.375999F, -271.579987F), new Vector2(-105.375999F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-105.375999F, -269.299988F), new Vector2(-105.603996F, -268.298004F), new Vector2(-106.059998F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-106.515999F, -266.54599F), new Vector2(-107.152F, -265.855988F), new Vector2(-107.968002F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-108.783997F, -264.847992F), new Vector2(-109.732002F, -264.596008F), new Vector2(-110.811996F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-111.867996F, -264.596008F), new Vector2(-112.809998F, -264.84201F), new Vector2(-113.638F, -265.334015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-107.823997F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-106.792F, -262.885986F), new Vector2(-105.963997F, -263.635986F), new Vector2(-105.339996F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-104.716003F, -265.556F), new Vector2(-104.367996F, -266.64801F), new Vector2(-104.295998F, -267.872009F));
+ builder.AddLine(new Vector2(-104.295998F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-104.367996F, -274.268005F), new Vector2(-104.722F, -275.365997F), new Vector2(-105.358002F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-105.994003F, -277.261993F), new Vector2(-106.828003F, -278.006012F), new Vector2(-107.860001F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-108.891998F, -279.085999F), new Vector2(-110.056F, -279.355988F), new Vector2(-111.351997F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-112.912003F, -279.355988F), new Vector2(-114.316002F, -278.959991F), new Vector2(-115.564003F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-116.811996F, -277.376007F), new Vector2(-117.802002F, -276.308014F), new Vector2(-118.533997F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-119.265999F, -273.619995F), new Vector2(-119.632004F, -272.108002F), new Vector2(-119.632004F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-119.632004F, -268.747986F), new Vector2(-119.265999F, -267.235992F), new Vector2(-118.533997F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-117.802002F, -264.548004F), new Vector2(-116.811996F, -263.485992F), new Vector2(-115.564003F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-114.316002F, -261.925995F), new Vector2(-112.912003F, -261.536011F), new Vector2(-111.351997F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-110.031998F, -261.536011F), new Vector2(-108.856003F, -261.806F), new Vector2(-107.823997F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1276()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-135.039993F, -261.895996F));
+ builder.AddLine(new Vector2(-135.039993F, -278.996002F));
+ builder.AddLine(new Vector2(-138.279999F, -278.996002F));
+ builder.AddLine(new Vector2(-138.279999F, -261.895996F));
+ builder.AddLine(new Vector2(-135.039993F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-122.944F, -261.895996F));
+ builder.AddLine(new Vector2(-122.944F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(-122.944F, -273.691986F), new Vector2(-123.232002F, -274.802002F), new Vector2(-123.807999F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(-124.384003F, -276.890015F), new Vector2(-125.169998F, -277.735992F), new Vector2(-126.166F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(-127.162003F, -279.032013F), new Vector2(-128.307999F, -279.355988F), new Vector2(-129.604004F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-130.899994F, -279.355988F), new Vector2(-132.063995F, -279.062012F), new Vector2(-133.095993F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(-134.128006F, -277.885986F), new Vector2(-134.932007F, -277.088013F), new Vector2(-135.507996F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-136.084F, -275.071991F), new Vector2(-136.371994F, -273.920013F), new Vector2(-136.371994F, -272.623993F));
+ builder.AddLine(new Vector2(-135.039993F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(-135.039993F, -272.731995F), new Vector2(-134.848007F, -273.5F), new Vector2(-134.464005F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(-134.080002F, -274.843994F), new Vector2(-133.552002F, -275.372009F), new Vector2(-132.880005F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(-132.207993F, -276.140015F), new Vector2(-131.440002F, -276.332001F), new Vector2(-130.576004F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-129.279999F, -276.332001F), new Vector2(-128.229996F, -275.911987F), new Vector2(-127.426003F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(-126.622002F, -274.231995F), new Vector2(-126.220001F, -273.164001F), new Vector2(-126.220001F, -271.868011F));
+ builder.AddLine(new Vector2(-126.220001F, -261.895996F));
+ builder.AddLine(new Vector2(-122.944F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1277()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-142.996002F, -261.895996F));
+ builder.AddLine(new Vector2(-142.996002F, -278.996002F));
+ builder.AddLine(new Vector2(-146.272003F, -278.996002F));
+ builder.AddLine(new Vector2(-146.272003F, -274.820007F));
+ builder.AddLine(new Vector2(-145.660004F, -270.679993F));
+ builder.AddLine(new Vector2(-146.272003F, -266.503998F));
+ builder.AddLine(new Vector2(-146.272003F, -261.895996F));
+ builder.AddLine(new Vector2(-142.996002F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-154.300003F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-155.139999F, -265.855988F), new Vector2(-155.794006F, -266.54599F), new Vector2(-156.261993F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-156.729996F, -268.298004F), new Vector2(-156.964005F, -269.312012F), new Vector2(-156.964005F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-156.964005F, -271.59201F), new Vector2(-156.729996F, -272.593994F), new Vector2(-156.261993F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-155.794006F, -274.346008F), new Vector2(-155.145996F, -275.036011F), new Vector2(-154.317993F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-153.490005F, -276.044006F), new Vector2(-152.535995F, -276.29599F), new Vector2(-151.455994F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-150.376007F, -276.29599F), new Vector2(-149.434006F, -276.049988F), new Vector2(-148.630005F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(-147.826004F, -275.06601F), new Vector2(-147.195999F, -274.376007F), new Vector2(-146.740005F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(-146.283997F, -272.600006F), new Vector2(-146.056F, -271.579987F), new Vector2(-146.056F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-146.056F, -268.723999F), new Vector2(-146.548004F, -267.325989F), new Vector2(-147.531998F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(-148.516006F, -265.141998F), new Vector2(-149.811996F, -264.596008F), new Vector2(-151.419998F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-152.5F, -264.596008F), new Vector2(-153.460007F, -264.847992F), new Vector2(-154.300003F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-148.468002F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-147.436005F, -262.885986F), new Vector2(-146.613998F, -263.635986F), new Vector2(-146.001999F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-145.389999F, -265.556F), new Vector2(-145.048004F, -266.64801F), new Vector2(-144.975998F, -267.872009F));
+ builder.AddLine(new Vector2(-144.975998F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-145.048004F, -274.268005F), new Vector2(-145.395996F, -275.365997F), new Vector2(-146.020004F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-146.643997F, -277.261993F), new Vector2(-147.466003F, -278.006012F), new Vector2(-148.485992F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-149.505997F, -279.085999F), new Vector2(-150.664001F, -279.355988F), new Vector2(-151.960007F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-153.544006F, -279.355988F), new Vector2(-154.966003F, -278.959991F), new Vector2(-156.225998F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-157.485992F, -277.376007F), new Vector2(-158.481995F, -276.308014F), new Vector2(-159.214005F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-159.945999F, -273.619995F), new Vector2(-160.311996F, -272.108002F), new Vector2(-160.311996F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-160.311996F, -268.747986F), new Vector2(-159.945999F, -267.235992F), new Vector2(-159.214005F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-158.481995F, -264.548004F), new Vector2(-157.485992F, -263.485992F), new Vector2(-156.225998F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-154.966003F, -261.925995F), new Vector2(-153.544006F, -261.536011F), new Vector2(-151.960007F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-150.664001F, -261.536011F), new Vector2(-149.5F, -261.806F), new Vector2(-148.468002F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1278()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-171.076004F, -261.895996F));
+ builder.AddLine(new Vector2(-171.076004F, -272.876007F));
+ builder.AddCubicBezier(new Vector2(-171.076004F, -274.220001F), new Vector2(-171.369995F, -275.372009F), new Vector2(-171.957993F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-172.546005F, -277.291992F), new Vector2(-173.332001F, -278.036011F), new Vector2(-174.315994F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-175.300003F, -279.09201F), new Vector2(-176.416F, -279.355988F), new Vector2(-177.664001F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-178.863998F, -279.355988F), new Vector2(-179.968002F, -279.085999F), new Vector2(-180.975998F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-181.983994F, -278.006012F), new Vector2(-182.806F, -277.261993F), new Vector2(-183.442001F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-184.078003F, -275.365997F), new Vector2(-184.432007F, -274.231995F), new Vector2(-184.503998F, -272.911987F));
+ builder.AddLine(new Vector2(-182.667999F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-182.667999F, -273.09201F), new Vector2(-182.475998F, -273.824005F), new Vector2(-182.091995F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-181.707993F, -275.023987F), new Vector2(-181.197998F, -275.492004F), new Vector2(-180.561996F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-179.925995F, -276.164001F), new Vector2(-179.212006F, -276.332001F), new Vector2(-178.419998F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-177.268005F, -276.332001F), new Vector2(-176.302002F, -275.966003F), new Vector2(-175.522003F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-174.742004F, -274.502014F), new Vector2(-174.352005F, -273.5F), new Vector2(-174.352005F, -272.227997F));
+ builder.AddLine(new Vector2(-174.352005F, -261.895996F));
+ builder.AddLine(new Vector2(-171.076004F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-182.667999F, -261.895996F));
+ builder.AddLine(new Vector2(-182.667999F, -272.911987F));
+ builder.AddCubicBezier(new Vector2(-182.667999F, -274.231995F), new Vector2(-182.949997F, -275.372009F), new Vector2(-183.514008F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-184.078003F, -277.291992F), new Vector2(-184.845993F, -278.036011F), new Vector2(-185.817993F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-186.789993F, -279.09201F), new Vector2(-187.876007F, -279.355988F), new Vector2(-189.076004F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-190.300003F, -279.355988F), new Vector2(-191.404007F, -279.085999F), new Vector2(-192.388F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-193.371994F, -278.006012F), new Vector2(-194.145996F, -277.256012F), new Vector2(-194.710007F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-195.274002F, -275.335999F), new Vector2(-195.556F, -274.208008F), new Vector2(-195.556F, -272.911987F));
+ builder.AddLine(new Vector2(-194.223999F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-194.223999F, -273.09201F), new Vector2(-194.031998F, -273.824005F), new Vector2(-193.647995F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-193.264008F, -275.023987F), new Vector2(-192.759995F, -275.492004F), new Vector2(-192.136002F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-191.511993F, -276.164001F), new Vector2(-190.804001F, -276.332001F), new Vector2(-190.011993F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-188.835999F, -276.332001F), new Vector2(-187.858002F, -275.966003F), new Vector2(-187.078003F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-186.298004F, -274.502014F), new Vector2(-185.908005F, -273.5F), new Vector2(-185.908005F, -272.227997F));
+ builder.AddLine(new Vector2(-185.908005F, -261.895996F));
+ builder.AddLine(new Vector2(-182.667999F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-194.223999F, -261.895996F));
+ builder.AddLine(new Vector2(-194.223999F, -278.996002F));
+ builder.AddLine(new Vector2(-197.464005F, -278.996002F));
+ builder.AddLine(new Vector2(-197.464005F, -261.895996F));
+ builder.AddLine(new Vector2(-194.223999F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1279()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-202.179993F, -261.895996F));
+ builder.AddLine(new Vector2(-202.179993F, -278.996002F));
+ builder.AddLine(new Vector2(-205.455994F, -278.996002F));
+ builder.AddLine(new Vector2(-205.455994F, -274.820007F));
+ builder.AddLine(new Vector2(-204.843994F, -270.679993F));
+ builder.AddLine(new Vector2(-205.455994F, -266.503998F));
+ builder.AddLine(new Vector2(-205.455994F, -261.895996F));
+ builder.AddLine(new Vector2(-202.179993F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-213.483994F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-214.324005F, -265.855988F), new Vector2(-214.977997F, -266.54599F), new Vector2(-215.445999F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-215.914001F, -268.298004F), new Vector2(-216.147995F, -269.312012F), new Vector2(-216.147995F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-216.147995F, -271.59201F), new Vector2(-215.914001F, -272.593994F), new Vector2(-215.445999F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-214.977997F, -274.346008F), new Vector2(-214.330002F, -275.036011F), new Vector2(-213.501999F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-212.673996F, -276.044006F), new Vector2(-211.720001F, -276.29599F), new Vector2(-210.639999F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-209.559998F, -276.29599F), new Vector2(-208.617996F, -276.049988F), new Vector2(-207.813995F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(-207.009995F, -275.06601F), new Vector2(-206.380005F, -274.376007F), new Vector2(-205.923996F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(-205.468002F, -272.600006F), new Vector2(-205.240005F, -271.579987F), new Vector2(-205.240005F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-205.240005F, -268.723999F), new Vector2(-205.731995F, -267.325989F), new Vector2(-206.716003F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(-207.699997F, -265.141998F), new Vector2(-208.996002F, -264.596008F), new Vector2(-210.604004F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-211.684006F, -264.596008F), new Vector2(-212.643997F, -264.847992F), new Vector2(-213.483994F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-207.651993F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-206.619995F, -262.885986F), new Vector2(-205.798004F, -263.635986F), new Vector2(-205.186005F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-204.574005F, -265.556F), new Vector2(-204.231995F, -266.64801F), new Vector2(-204.160004F, -267.872009F));
+ builder.AddLine(new Vector2(-204.160004F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-204.231995F, -274.268005F), new Vector2(-204.580002F, -275.365997F), new Vector2(-205.203995F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-205.828003F, -277.261993F), new Vector2(-206.649994F, -278.006012F), new Vector2(-207.669998F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-208.690002F, -279.085999F), new Vector2(-209.848007F, -279.355988F), new Vector2(-211.143997F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-212.727997F, -279.355988F), new Vector2(-214.149994F, -278.959991F), new Vector2(-215.410004F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-216.669998F, -277.376007F), new Vector2(-217.666F, -276.308014F), new Vector2(-218.397995F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-219.130005F, -273.619995F), new Vector2(-219.496002F, -272.108002F), new Vector2(-219.496002F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-219.496002F, -268.747986F), new Vector2(-219.130005F, -267.235992F), new Vector2(-218.397995F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-217.666F, -264.548004F), new Vector2(-216.669998F, -263.485992F), new Vector2(-215.410004F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-214.149994F, -261.925995F), new Vector2(-212.727997F, -261.536011F), new Vector2(-211.143997F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-209.848007F, -261.536011F), new Vector2(-208.684006F, -261.806F), new Vector2(-207.651993F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1280()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-227.919998F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(-227.151993F, -275.911987F), new Vector2(-226.167999F, -276.29599F), new Vector2(-224.968002F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-224.391998F, -276.29599F), new Vector2(-223.888F, -276.212006F), new Vector2(-223.455994F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(-223.024002F, -275.876007F), new Vector2(-222.628006F, -275.600006F), new Vector2(-222.268005F, -275.216003F));
+ builder.AddLine(new Vector2(-220.143997F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-220.744003F, -278.108002F), new Vector2(-221.391998F, -278.605988F), new Vector2(-222.087997F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(-222.783997F, -279.205994F), new Vector2(-223.563995F, -279.355988F), new Vector2(-224.427994F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-226.324005F, -279.355988F), new Vector2(-227.776001F, -278.708008F), new Vector2(-228.783997F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-229.792007F, -276.115997F), new Vector2(-230.296005F, -274.376007F), new Vector2(-230.296005F, -272.191986F));
+ builder.AddLine(new Vector2(-229.072006F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(-229.072006F, -273.200012F), new Vector2(-228.688004F, -274.376007F), new Vector2(-227.919998F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-229.072006F, -261.895996F));
+ builder.AddLine(new Vector2(-229.072006F, -278.996002F));
+ builder.AddLine(new Vector2(-232.311996F, -278.996002F));
+ builder.AddLine(new Vector2(-232.311996F, -261.895996F));
+ builder.AddLine(new Vector2(-229.072006F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1281()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-248.242004F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-249.070007F, -266.414001F), new Vector2(-249.718002F, -267.067993F), new Vector2(-250.186005F, -267.90799F));
+ builder.AddCubicBezier(new Vector2(-250.654007F, -268.747986F), new Vector2(-250.888F, -269.708008F), new Vector2(-250.888F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(-250.888F, -271.868011F), new Vector2(-250.654007F, -272.821991F), new Vector2(-250.186005F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(-249.718002F, -274.477997F), new Vector2(-249.076004F, -275.126007F), new Vector2(-248.259995F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(-247.444F, -276.062012F), new Vector2(-246.496002F, -276.29599F), new Vector2(-245.416F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-244.360001F, -276.29599F), new Vector2(-243.429993F, -276.062012F), new Vector2(-242.626007F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(-241.822006F, -275.126007F), new Vector2(-241.197998F, -274.477997F), new Vector2(-240.753998F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(-240.309998F, -272.821991F), new Vector2(-240.087997F, -271.855988F), new Vector2(-240.087997F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(-240.087997F, -269.64801F), new Vector2(-240.309998F, -268.682007F), new Vector2(-240.753998F, -267.854004F));
+ builder.AddCubicBezier(new Vector2(-241.197998F, -267.026001F), new Vector2(-241.815994F, -266.384003F), new Vector2(-242.608002F, -265.928009F));
+ builder.AddCubicBezier(new Vector2(-243.399994F, -265.471985F), new Vector2(-244.335999F, -265.243988F), new Vector2(-245.416F, -265.243988F));
+ builder.AddCubicBezier(new Vector2(-246.472F, -265.243988F), new Vector2(-247.414001F, -265.477997F), new Vector2(-248.242004F, -265.946014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-242.5F, -262.976013F));
+ builder.AddCubicBezier(new Vector2(-241.468002F, -263.503998F), new Vector2(-240.645996F, -264.242004F), new Vector2(-240.033997F, -265.190002F));
+ builder.AddCubicBezier(new Vector2(-239.421997F, -266.138F), new Vector2(-239.080002F, -267.235992F), new Vector2(-239.007996F, -268.484009F));
+ builder.AddLine(new Vector2(-239.007996F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-239.080002F, -274.291992F), new Vector2(-239.416F, -275.402008F), new Vector2(-240.016006F, -276.350006F));
+ builder.AddCubicBezier(new Vector2(-240.615997F, -277.298004F), new Vector2(-241.438004F, -278.036011F), new Vector2(-242.481995F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-243.526001F, -279.09201F), new Vector2(-244.720001F, -279.355988F), new Vector2(-246.063995F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-247.600006F, -279.355988F), new Vector2(-248.992004F, -278.977997F), new Vector2(-250.240005F, -278.221985F));
+ builder.AddCubicBezier(new Vector2(-251.488007F, -277.466003F), new Vector2(-252.466003F, -276.446014F), new Vector2(-253.173996F, -275.161987F));
+ builder.AddCubicBezier(new Vector2(-253.882004F, -273.877991F), new Vector2(-254.235992F, -272.420013F), new Vector2(-254.235992F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(-254.235992F, -269.156006F), new Vector2(-253.876007F, -267.686005F), new Vector2(-253.156006F, -266.377991F));
+ builder.AddCubicBezier(new Vector2(-252.436005F, -265.070007F), new Vector2(-251.457993F, -264.044006F), new Vector2(-250.222F, -263.299988F));
+ builder.AddCubicBezier(new Vector2(-248.985992F, -262.556F), new Vector2(-247.587997F, -262.18399F), new Vector2(-246.028F, -262.18399F));
+ builder.AddCubicBezier(new Vector2(-244.707993F, -262.18399F), new Vector2(-243.531998F, -262.447998F), new Vector2(-242.5F, -262.976013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-241.330002F, -255.397995F));
+ builder.AddCubicBezier(new Vector2(-239.973999F, -256.082001F), new Vector2(-238.917999F, -257.041992F), new Vector2(-238.162003F, -258.278015F));
+ builder.AddCubicBezier(new Vector2(-237.406006F, -259.514008F), new Vector2(-237.028F, -260.947998F), new Vector2(-237.028F, -262.579987F));
+ builder.AddLine(new Vector2(-237.028F, -278.996002F));
+ builder.AddLine(new Vector2(-240.268005F, -278.996002F));
+ builder.AddLine(new Vector2(-240.268005F, -274.496002F));
+ builder.AddLine(new Vector2(-239.692001F, -270.679993F));
+ builder.AddLine(new Vector2(-240.268005F, -266.828003F));
+ builder.AddLine(new Vector2(-240.268005F, -262.579987F));
+ builder.AddCubicBezier(new Vector2(-240.268005F, -261.019989F), new Vector2(-240.783997F, -259.778015F), new Vector2(-241.815994F, -258.854004F));
+ builder.AddCubicBezier(new Vector2(-242.848007F, -257.929993F), new Vector2(-244.227997F, -257.467987F), new Vector2(-245.955994F, -257.467987F));
+ builder.AddCubicBezier(new Vector2(-247.276001F, -257.467987F), new Vector2(-248.416F, -257.701996F), new Vector2(-249.376007F, -258.170013F));
+ builder.AddCubicBezier(new Vector2(-250.335999F, -258.638F), new Vector2(-251.164001F, -259.31601F), new Vector2(-251.860001F, -260.20401F));
+ builder.AddLine(new Vector2(-253.983994F, -258.079987F));
+ builder.AddCubicBezier(new Vector2(-253.143997F, -256.903992F), new Vector2(-252.052002F, -255.992004F), new Vector2(-250.707993F, -255.343994F));
+ builder.AddCubicBezier(new Vector2(-249.363998F, -254.695999F), new Vector2(-247.804001F, -254.371994F), new Vector2(-246.028F, -254.371994F));
+ builder.AddCubicBezier(new Vector2(-244.251999F, -254.371994F), new Vector2(-242.686005F, -254.714005F), new Vector2(-241.330002F, -255.397995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1282()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-257.835999F, -261.895996F));
+ builder.AddLine(new Vector2(-257.835999F, -278.996002F));
+ builder.AddLine(new Vector2(-261.112F, -278.996002F));
+ builder.AddLine(new Vector2(-261.112F, -274.820007F));
+ builder.AddLine(new Vector2(-260.5F, -270.679993F));
+ builder.AddLine(new Vector2(-261.112F, -266.503998F));
+ builder.AddLine(new Vector2(-261.112F, -261.895996F));
+ builder.AddLine(new Vector2(-257.835999F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-269.140015F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-269.980011F, -265.855988F), new Vector2(-270.634003F, -266.54599F), new Vector2(-271.10199F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-271.570007F, -268.298004F), new Vector2(-271.803986F, -269.312012F), new Vector2(-271.803986F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-271.803986F, -271.59201F), new Vector2(-271.570007F, -272.593994F), new Vector2(-271.10199F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-270.634003F, -274.346008F), new Vector2(-269.985992F, -275.036011F), new Vector2(-269.15799F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-268.329987F, -276.044006F), new Vector2(-267.376007F, -276.29599F), new Vector2(-266.29599F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-265.216003F, -276.29599F), new Vector2(-264.273987F, -276.049988F), new Vector2(-263.470001F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(-262.665985F, -275.06601F), new Vector2(-262.036011F, -274.376007F), new Vector2(-261.579987F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(-261.123993F, -272.600006F), new Vector2(-260.895996F, -271.579987F), new Vector2(-260.895996F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-260.895996F, -268.723999F), new Vector2(-261.388F, -267.325989F), new Vector2(-262.372009F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(-263.355988F, -265.141998F), new Vector2(-264.652008F, -264.596008F), new Vector2(-266.26001F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-267.339996F, -264.596008F), new Vector2(-268.299988F, -264.847992F), new Vector2(-269.140015F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-263.308014F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-262.276001F, -262.885986F), new Vector2(-261.45401F, -263.635986F), new Vector2(-260.84201F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-260.230011F, -265.556F), new Vector2(-259.888F, -266.64801F), new Vector2(-259.81601F, -267.872009F));
+ builder.AddLine(new Vector2(-259.81601F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-259.888F, -274.268005F), new Vector2(-260.235992F, -275.365997F), new Vector2(-260.859985F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-261.484009F, -277.261993F), new Vector2(-262.306F, -278.006012F), new Vector2(-263.325989F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-264.346008F, -279.085999F), new Vector2(-265.503998F, -279.355988F), new Vector2(-266.799988F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-268.384003F, -279.355988F), new Vector2(-269.806F, -278.959991F), new Vector2(-271.06601F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-272.325989F, -277.376007F), new Vector2(-273.321991F, -276.308014F), new Vector2(-274.053986F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-274.786011F, -273.619995F), new Vector2(-275.152008F, -272.108002F), new Vector2(-275.152008F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-275.152008F, -268.747986F), new Vector2(-274.786011F, -267.235992F), new Vector2(-274.053986F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-273.321991F, -264.548004F), new Vector2(-272.325989F, -263.485992F), new Vector2(-271.06601F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-269.806F, -261.925995F), new Vector2(-268.384003F, -261.536011F), new Vector2(-266.799988F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-265.503998F, -261.536011F), new Vector2(-264.339996F, -261.806F), new Vector2(-263.308014F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1283()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-276.700012F, -276.044006F));
+ builder.AddLine(new Vector2(-276.700012F, -278.996002F));
+ builder.AddLine(new Vector2(-288.364014F, -278.996002F));
+ builder.AddLine(new Vector2(-288.364014F, -276.044006F));
+ builder.AddLine(new Vector2(-276.700012F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-280.911987F, -261.895996F));
+ builder.AddLine(new Vector2(-280.911987F, -286.160004F));
+ builder.AddLine(new Vector2(-284.152008F, -286.160004F));
+ builder.AddLine(new Vector2(-284.152008F, -261.895996F));
+ builder.AddLine(new Vector2(-280.911987F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1284()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-292.126007F, -262.940002F));
+ builder.AddCubicBezier(new Vector2(-290.985992F, -263.876007F), new Vector2(-290.415985F, -265.14801F), new Vector2(-290.415985F, -266.756012F));
+ builder.AddCubicBezier(new Vector2(-290.415985F, -267.812012F), new Vector2(-290.638F, -268.664001F), new Vector2(-291.082001F, -269.312012F));
+ builder.AddCubicBezier(new Vector2(-291.526001F, -269.959991F), new Vector2(-292.096008F, -270.476013F), new Vector2(-292.791992F, -270.859985F));
+ builder.AddCubicBezier(new Vector2(-293.488007F, -271.243988F), new Vector2(-294.220001F, -271.549988F), new Vector2(-294.988007F, -271.778015F));
+ builder.AddCubicBezier(new Vector2(-295.756012F, -272.006012F), new Vector2(-296.493988F, -272.227997F), new Vector2(-297.201996F, -272.444F));
+ builder.AddCubicBezier(new Vector2(-297.910004F, -272.660004F), new Vector2(-298.480011F, -272.924011F), new Vector2(-298.911987F, -273.235992F));
+ builder.AddCubicBezier(new Vector2(-299.343994F, -273.548004F), new Vector2(-299.559998F, -273.992004F), new Vector2(-299.559998F, -274.567993F));
+ builder.AddCubicBezier(new Vector2(-299.559998F, -275.119995F), new Vector2(-299.313995F, -275.563995F), new Vector2(-298.821991F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(-298.329987F, -276.235992F), new Vector2(-297.615997F, -276.403992F), new Vector2(-296.679993F, -276.403992F));
+ builder.AddCubicBezier(new Vector2(-295.791992F, -276.403992F), new Vector2(-295F, -276.235992F), new Vector2(-294.303986F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(-293.608002F, -275.563995F), new Vector2(-293.007996F, -275.084015F), new Vector2(-292.503998F, -274.459991F));
+ builder.AddLine(new Vector2(-290.415985F, -276.548004F));
+ builder.AddCubicBezier(new Vector2(-291.088013F, -277.484009F), new Vector2(-291.946014F, -278.186005F), new Vector2(-292.98999F, -278.653992F));
+ builder.AddCubicBezier(new Vector2(-294.033997F, -279.122009F), new Vector2(-295.227997F, -279.355988F), new Vector2(-296.571991F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-297.843994F, -279.355988F), new Vector2(-298.936005F, -279.152008F), new Vector2(-299.847992F, -278.743988F));
+ builder.AddCubicBezier(new Vector2(-300.76001F, -278.335999F), new Vector2(-301.462006F, -277.753998F), new Vector2(-301.95401F, -276.997986F));
+ builder.AddCubicBezier(new Vector2(-302.446014F, -276.242004F), new Vector2(-302.691986F, -275.347992F), new Vector2(-302.691986F, -274.31601F));
+ builder.AddCubicBezier(new Vector2(-302.691986F, -273.283997F), new Vector2(-302.470001F, -272.450012F), new Vector2(-302.026001F, -271.813995F));
+ builder.AddCubicBezier(new Vector2(-301.582001F, -271.178009F), new Vector2(-301.011993F, -270.679993F), new Vector2(-300.31601F, -270.320007F));
+ builder.AddCubicBezier(new Vector2(-299.619995F, -269.959991F), new Vector2(-298.881989F, -269.671997F), new Vector2(-298.10199F, -269.455994F));
+ builder.AddCubicBezier(new Vector2(-297.321991F, -269.23999F), new Vector2(-296.584015F, -269.018005F), new Vector2(-295.888F, -268.790009F));
+ builder.AddCubicBezier(new Vector2(-295.191986F, -268.562012F), new Vector2(-294.622009F, -268.273987F), new Vector2(-294.178009F, -267.925995F));
+ builder.AddCubicBezier(new Vector2(-293.734009F, -267.578003F), new Vector2(-293.511993F, -267.09201F), new Vector2(-293.511993F, -266.467987F));
+ builder.AddCubicBezier(new Vector2(-293.511993F, -265.843994F), new Vector2(-293.787994F, -265.358002F), new Vector2(-294.339996F, -265.01001F));
+ builder.AddCubicBezier(new Vector2(-294.891998F, -264.661987F), new Vector2(-295.671997F, -264.488007F), new Vector2(-296.679993F, -264.488007F));
+ builder.AddCubicBezier(new Vector2(-297.687988F, -264.488007F), new Vector2(-298.600006F, -264.674011F), new Vector2(-299.415985F, -265.04599F));
+ builder.AddCubicBezier(new Vector2(-300.231995F, -265.417999F), new Vector2(-300.951996F, -265.988007F), new Vector2(-301.575989F, -266.756012F));
+ builder.AddLine(new Vector2(-303.664001F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-303.135986F, -264.019989F), new Vector2(-302.518005F, -263.462006F), new Vector2(-301.809998F, -262.993988F));
+ builder.AddCubicBezier(new Vector2(-301.10199F, -262.526001F), new Vector2(-300.31601F, -262.165985F), new Vector2(-299.451996F, -261.914001F));
+ builder.AddCubicBezier(new Vector2(-298.588013F, -261.661987F), new Vector2(-297.675995F, -261.536011F), new Vector2(-296.716003F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-294.79599F, -261.536011F), new Vector2(-293.265991F, -262.003998F), new Vector2(-292.126007F, -262.940002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1285()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-318.640015F, -261.895996F));
+ builder.AddLine(new Vector2(-318.640015F, -278.996002F));
+ builder.AddLine(new Vector2(-321.880005F, -278.996002F));
+ builder.AddLine(new Vector2(-321.880005F, -261.895996F));
+ builder.AddLine(new Vector2(-318.640015F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-306.544006F, -261.895996F));
+ builder.AddLine(new Vector2(-306.544006F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(-306.544006F, -273.691986F), new Vector2(-306.832001F, -274.802002F), new Vector2(-307.40799F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(-307.984009F, -276.890015F), new Vector2(-308.769989F, -277.735992F), new Vector2(-309.765991F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(-310.761993F, -279.032013F), new Vector2(-311.90799F, -279.355988F), new Vector2(-313.20401F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-314.5F, -279.355988F), new Vector2(-315.664001F, -279.062012F), new Vector2(-316.696014F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(-317.727997F, -277.885986F), new Vector2(-318.532013F, -277.088013F), new Vector2(-319.108002F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-319.68399F, -275.071991F), new Vector2(-319.971985F, -273.920013F), new Vector2(-319.971985F, -272.623993F));
+ builder.AddLine(new Vector2(-318.640015F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(-318.640015F, -272.731995F), new Vector2(-318.447998F, -273.5F), new Vector2(-318.063995F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(-317.679993F, -274.843994F), new Vector2(-317.152008F, -275.372009F), new Vector2(-316.480011F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(-315.808014F, -276.140015F), new Vector2(-315.040009F, -276.332001F), new Vector2(-314.175995F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-312.880005F, -276.332001F), new Vector2(-311.829987F, -275.911987F), new Vector2(-311.026001F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(-310.221985F, -274.231995F), new Vector2(-309.820007F, -273.164001F), new Vector2(-309.820007F, -271.868011F));
+ builder.AddLine(new Vector2(-309.820007F, -261.895996F));
+ builder.AddLine(new Vector2(-306.544006F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1286()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-327.208008F, -261.895996F));
+ builder.AddLine(new Vector2(-327.208008F, -286.880005F));
+ builder.AddLine(new Vector2(-330.59201F, -286.880005F));
+ builder.AddLine(new Vector2(-330.59201F, -261.895996F));
+ builder.AddLine(new Vector2(-327.208008F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1287()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-346.503998F, -256.928009F));
+ builder.AddLine(new Vector2(-344.09201F, -261.391998F));
+ builder.AddCubicBezier(new Vector2(-343.779999F, -261.992004F), new Vector2(-343.570007F, -262.477997F), new Vector2(-343.462006F, -262.850006F));
+ builder.AddCubicBezier(new Vector2(-343.354004F, -263.221985F), new Vector2(-343.299988F, -263.540009F), new Vector2(-343.299988F, -263.803986F));
+ builder.AddCubicBezier(new Vector2(-343.299988F, -264.5F), new Vector2(-343.540009F, -265.082001F), new Vector2(-344.019989F, -265.549988F));
+ builder.AddCubicBezier(new Vector2(-344.5F, -266.018005F), new Vector2(-345.052002F, -266.252014F), new Vector2(-345.675995F, -266.252014F));
+ builder.AddCubicBezier(new Vector2(-346.372009F, -266.252014F), new Vector2(-346.947998F, -266.018005F), new Vector2(-347.403992F, -265.549988F));
+ builder.AddCubicBezier(new Vector2(-347.859985F, -265.082001F), new Vector2(-348.088013F, -264.5F), new Vector2(-348.088013F, -263.803986F));
+ builder.AddCubicBezier(new Vector2(-348.088013F, -263.179993F), new Vector2(-347.877991F, -262.65799F), new Vector2(-347.458008F, -262.238007F));
+ builder.AddCubicBezier(new Vector2(-347.037994F, -261.817993F), new Vector2(-346.575989F, -261.608002F), new Vector2(-346.071991F, -261.608002F));
+ builder.AddCubicBezier(new Vector2(-345.832001F, -261.608002F), new Vector2(-345.615997F, -261.691986F), new Vector2(-345.424011F, -261.859985F));
+ builder.AddCubicBezier(new Vector2(-345.231995F, -262.028015F), new Vector2(-345.075989F, -262.243988F), new Vector2(-344.955994F, -262.507996F));
+ builder.AddLine(new Vector2(-346.108002F, -262.220001F));
+ builder.AddLine(new Vector2(-348.339996F, -257.936005F));
+ builder.AddLine(new Vector2(-346.503998F, -256.928009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1288()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-362.631989F, -261.895996F));
+ builder.AddLine(new Vector2(-362.631989F, -287.600006F));
+ builder.AddLine(new Vector2(-365.872009F, -287.600006F));
+ builder.AddLine(new Vector2(-365.872009F, -261.895996F));
+ builder.AddLine(new Vector2(-362.631989F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-350.752014F, -261.895996F));
+ builder.AddLine(new Vector2(-359.752014F, -271.652008F));
+ builder.AddLine(new Vector2(-359.895996F, -269.779999F));
+ builder.AddLine(new Vector2(-351.075989F, -278.996002F));
+ builder.AddLine(new Vector2(-355.036011F, -278.996002F));
+ builder.AddLine(new Vector2(-362.920013F, -270.644012F));
+ builder.AddLine(new Vector2(-354.928009F, -261.895996F));
+ builder.AddLine(new Vector2(-350.752014F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1289()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-381.279999F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-382.119995F, -265.928009F), new Vector2(-382.779999F, -266.618011F), new Vector2(-383.26001F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-383.73999F, -268.369995F), new Vector2(-383.980011F, -269.372009F), new Vector2(-383.980011F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-383.980011F, -271.604004F), new Vector2(-383.73999F, -272.588013F), new Vector2(-383.26001F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-382.779999F, -274.31601F), new Vector2(-382.119995F, -274.993988F), new Vector2(-381.279999F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-380.440002F, -275.977997F), new Vector2(-379.492004F, -276.223999F), new Vector2(-378.436005F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(-377.332001F, -276.223999F), new Vector2(-376.365997F, -275.977997F), new Vector2(-375.537994F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-374.709991F, -274.993988F), new Vector2(-374.049988F, -274.31601F), new Vector2(-373.558014F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-373.06601F, -272.588013F), new Vector2(-372.820007F, -271.604004F), new Vector2(-372.820007F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-372.820007F, -269.372009F), new Vector2(-373.059998F, -268.369995F), new Vector2(-373.540009F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-374.019989F, -266.618011F), new Vector2(-374.679993F, -265.928009F), new Vector2(-375.519989F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-376.359985F, -264.920013F), new Vector2(-377.332001F, -264.667999F), new Vector2(-378.436005F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-379.492004F, -264.667999F), new Vector2(-380.440002F, -264.920013F), new Vector2(-381.279999F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-373.881989F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-372.526001F, -263.515991F), new Vector2(-371.451996F, -264.589996F), new Vector2(-370.660004F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-369.868011F, -267.302002F), new Vector2(-369.471985F, -268.820007F), new Vector2(-369.471985F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-369.471985F, -272.156006F), new Vector2(-369.868011F, -273.656006F), new Vector2(-370.660004F, -275F));
+ builder.AddCubicBezier(new Vector2(-371.451996F, -276.343994F), new Vector2(-372.526001F, -277.406006F), new Vector2(-373.881989F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-375.238007F, -278.966003F), new Vector2(-376.756012F, -279.355988F), new Vector2(-378.436005F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-380.09201F, -279.355988F), new Vector2(-381.59201F, -278.959991F), new Vector2(-382.936005F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-384.279999F, -277.376007F), new Vector2(-385.347992F, -276.313995F), new Vector2(-386.140015F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(-386.932007F, -273.649994F), new Vector2(-387.328003F, -272.156006F), new Vector2(-387.328003F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-387.328003F, -268.820007F), new Vector2(-386.932007F, -267.302002F), new Vector2(-386.140015F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-385.347992F, -264.589996F), new Vector2(-384.279999F, -263.515991F), new Vector2(-382.936005F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-381.59201F, -261.932007F), new Vector2(-380.09201F, -261.536011F), new Vector2(-378.436005F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-376.756012F, -261.536011F), new Vector2(-375.238007F, -261.932007F), new Vector2(-373.881989F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1290()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-384.951996F, -283.783997F));
+ builder.AddLine(new Vector2(-384.951996F, -286.880005F));
+ builder.AddLine(new Vector2(-405.291992F, -286.880005F));
+ builder.AddLine(new Vector2(-405.291992F, -283.783997F));
+ builder.AddLine(new Vector2(-384.951996F, -283.783997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-393.411987F, -261.895996F));
+ builder.AddLine(new Vector2(-393.411987F, -286.160004F));
+ builder.AddLine(new Vector2(-396.832001F, -286.160004F));
+ builder.AddLine(new Vector2(-396.832001F, -261.895996F));
+ builder.AddLine(new Vector2(-393.411987F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1291()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-418.68399F, -261.895996F));
+ builder.AddLine(new Vector2(-418.68399F, -287.600006F));
+ builder.AddLine(new Vector2(-421.924011F, -287.600006F));
+ builder.AddLine(new Vector2(-421.924011F, -261.895996F));
+ builder.AddLine(new Vector2(-418.68399F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-406.803986F, -261.895996F));
+ builder.AddLine(new Vector2(-415.803986F, -271.652008F));
+ builder.AddLine(new Vector2(-415.947998F, -269.779999F));
+ builder.AddLine(new Vector2(-407.127991F, -278.996002F));
+ builder.AddLine(new Vector2(-411.088013F, -278.996002F));
+ builder.AddLine(new Vector2(-418.971985F, -270.644012F));
+ builder.AddLine(new Vector2(-410.980011F, -261.895996F));
+ builder.AddLine(new Vector2(-406.803986F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1292()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-426.855988F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-426.471985F, -283.406006F), new Vector2(-426.279999F, -283.903992F), new Vector2(-426.279999F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-426.279999F, -285.079987F), new Vector2(-426.471985F, -285.56601F), new Vector2(-426.855988F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-427.23999F, -286.358002F), new Vector2(-427.731995F, -286.556F), new Vector2(-428.332001F, -286.556F));
+ builder.AddCubicBezier(new Vector2(-428.932007F, -286.556F), new Vector2(-429.424011F, -286.358002F), new Vector2(-429.808014F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-430.191986F, -285.56601F), new Vector2(-430.384003F, -285.079987F), new Vector2(-430.384003F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-430.384003F, -283.903992F), new Vector2(-430.191986F, -283.406006F), new Vector2(-429.808014F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-429.424011F, -282.614014F), new Vector2(-428.932007F, -282.415985F), new Vector2(-428.332001F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(-427.731995F, -282.415985F), new Vector2(-427.23999F, -282.614014F), new Vector2(-426.855988F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-426.712006F, -261.895996F));
+ builder.AddLine(new Vector2(-426.712006F, -278.996002F));
+ builder.AddLine(new Vector2(-429.988007F, -278.996002F));
+ builder.AddLine(new Vector2(-429.988007F, -261.895996F));
+ builder.AddLine(new Vector2(-426.712006F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1293()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-433.444F, -283.783997F));
+ builder.AddLine(new Vector2(-433.444F, -286.880005F));
+ builder.AddLine(new Vector2(-453.783997F, -286.880005F));
+ builder.AddLine(new Vector2(-453.783997F, -283.783997F));
+ builder.AddLine(new Vector2(-433.444F, -283.783997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-441.903992F, -261.895996F));
+ builder.AddLine(new Vector2(-441.903992F, -286.160004F));
+ builder.AddLine(new Vector2(-445.324005F, -286.160004F));
+ builder.AddLine(new Vector2(-445.324005F, -261.895996F));
+ builder.AddLine(new Vector2(-441.903992F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1294()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-463.756012F, -261.895996F));
+ builder.AddLine(new Vector2(-463.756012F, -272.876007F));
+ builder.AddCubicBezier(new Vector2(-463.756012F, -274.220001F), new Vector2(-464.049988F, -275.372009F), new Vector2(-464.638F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-465.226013F, -277.291992F), new Vector2(-466.011993F, -278.036011F), new Vector2(-466.996002F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-467.980011F, -279.09201F), new Vector2(-469.096008F, -279.355988F), new Vector2(-470.343994F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-471.544006F, -279.355988F), new Vector2(-472.64801F, -279.085999F), new Vector2(-473.656006F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-474.664001F, -278.006012F), new Vector2(-475.485992F, -277.261993F), new Vector2(-476.122009F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-476.757996F, -275.365997F), new Vector2(-477.112F, -274.231995F), new Vector2(-477.18399F, -272.911987F));
+ builder.AddLine(new Vector2(-475.347992F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-475.347992F, -273.09201F), new Vector2(-475.156006F, -273.824005F), new Vector2(-474.772003F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-474.388F, -275.023987F), new Vector2(-473.877991F, -275.492004F), new Vector2(-473.242004F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-472.605988F, -276.164001F), new Vector2(-471.891998F, -276.332001F), new Vector2(-471.100006F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-469.947998F, -276.332001F), new Vector2(-468.981995F, -275.966003F), new Vector2(-468.201996F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-467.421997F, -274.502014F), new Vector2(-467.032013F, -273.5F), new Vector2(-467.032013F, -272.227997F));
+ builder.AddLine(new Vector2(-467.032013F, -261.895996F));
+ builder.AddLine(new Vector2(-463.756012F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-475.347992F, -261.895996F));
+ builder.AddLine(new Vector2(-475.347992F, -272.911987F));
+ builder.AddCubicBezier(new Vector2(-475.347992F, -274.231995F), new Vector2(-475.630005F, -275.372009F), new Vector2(-476.194F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-476.757996F, -277.291992F), new Vector2(-477.526001F, -278.036011F), new Vector2(-478.497986F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-479.470001F, -279.09201F), new Vector2(-480.556F, -279.355988F), new Vector2(-481.756012F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-482.980011F, -279.355988F), new Vector2(-484.084015F, -279.085999F), new Vector2(-485.067993F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-486.052002F, -278.006012F), new Vector2(-486.825989F, -277.256012F), new Vector2(-487.390015F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-487.95401F, -275.335999F), new Vector2(-488.235992F, -274.208008F), new Vector2(-488.235992F, -272.911987F));
+ builder.AddLine(new Vector2(-486.903992F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-486.903992F, -273.09201F), new Vector2(-486.712006F, -273.824005F), new Vector2(-486.328003F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-485.944F, -275.023987F), new Vector2(-485.440002F, -275.492004F), new Vector2(-484.81601F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-484.191986F, -276.164001F), new Vector2(-483.484009F, -276.332001F), new Vector2(-482.691986F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-481.515991F, -276.332001F), new Vector2(-480.537994F, -275.966003F), new Vector2(-479.757996F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-478.977997F, -274.502014F), new Vector2(-478.588013F, -273.5F), new Vector2(-478.588013F, -272.227997F));
+ builder.AddLine(new Vector2(-478.588013F, -261.895996F));
+ builder.AddLine(new Vector2(-475.347992F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-486.903992F, -261.895996F));
+ builder.AddLine(new Vector2(-486.903992F, -278.996002F));
+ builder.AddLine(new Vector2(-490.144012F, -278.996002F));
+ builder.AddLine(new Vector2(-490.144012F, -261.895996F));
+ builder.AddLine(new Vector2(-486.903992F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1295()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-505.552002F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-506.391998F, -265.928009F), new Vector2(-507.052002F, -266.618011F), new Vector2(-507.532013F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-508.011993F, -268.369995F), new Vector2(-508.252014F, -269.372009F), new Vector2(-508.252014F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-508.252014F, -271.604004F), new Vector2(-508.011993F, -272.588013F), new Vector2(-507.532013F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-507.052002F, -274.31601F), new Vector2(-506.391998F, -274.993988F), new Vector2(-505.552002F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-504.712006F, -275.977997F), new Vector2(-503.764008F, -276.223999F), new Vector2(-502.708008F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(-501.604004F, -276.223999F), new Vector2(-500.638F, -275.977997F), new Vector2(-499.809998F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-498.981995F, -274.993988F), new Vector2(-498.321991F, -274.31601F), new Vector2(-497.829987F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-497.338013F, -272.588013F), new Vector2(-497.09201F, -271.604004F), new Vector2(-497.09201F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-497.09201F, -269.372009F), new Vector2(-497.332001F, -268.369995F), new Vector2(-497.812012F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-498.291992F, -266.618011F), new Vector2(-498.951996F, -265.928009F), new Vector2(-499.791992F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-500.631989F, -264.920013F), new Vector2(-501.604004F, -264.667999F), new Vector2(-502.708008F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-503.764008F, -264.667999F), new Vector2(-504.712006F, -264.920013F), new Vector2(-505.552002F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-498.153992F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-496.798004F, -263.515991F), new Vector2(-495.723999F, -264.589996F), new Vector2(-494.932007F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-494.140015F, -267.302002F), new Vector2(-493.743988F, -268.820007F), new Vector2(-493.743988F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-493.743988F, -272.156006F), new Vector2(-494.140015F, -273.656006F), new Vector2(-494.932007F, -275F));
+ builder.AddCubicBezier(new Vector2(-495.723999F, -276.343994F), new Vector2(-496.798004F, -277.406006F), new Vector2(-498.153992F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-499.51001F, -278.966003F), new Vector2(-501.028015F, -279.355988F), new Vector2(-502.708008F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-504.364014F, -279.355988F), new Vector2(-505.864014F, -278.959991F), new Vector2(-507.208008F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-508.552002F, -277.376007F), new Vector2(-509.619995F, -276.313995F), new Vector2(-510.411987F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(-511.20401F, -273.649994F), new Vector2(-511.600006F, -272.156006F), new Vector2(-511.600006F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-511.600006F, -268.820007F), new Vector2(-511.20401F, -267.302002F), new Vector2(-510.411987F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-509.619995F, -264.589996F), new Vector2(-508.552002F, -263.515991F), new Vector2(-507.208008F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-505.864014F, -261.932007F), new Vector2(-504.364014F, -261.536011F), new Vector2(-502.708008F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-501.028015F, -261.536011F), new Vector2(-499.51001F, -261.932007F), new Vector2(-498.153992F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1296()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-519.987976F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(-519.219971F, -275.911987F), new Vector2(-518.236023F, -276.29599F), new Vector2(-517.036011F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-516.460022F, -276.29599F), new Vector2(-515.955994F, -276.212006F), new Vector2(-515.523987F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(-515.09198F, -275.876007F), new Vector2(-514.695984F, -275.600006F), new Vector2(-514.335999F, -275.216003F));
+ builder.AddLine(new Vector2(-512.211975F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-512.812012F, -278.108002F), new Vector2(-513.460022F, -278.605988F), new Vector2(-514.156006F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(-514.85199F, -279.205994F), new Vector2(-515.632019F, -279.355988F), new Vector2(-516.495972F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-518.392029F, -279.355988F), new Vector2(-519.843994F, -278.708008F), new Vector2(-520.85199F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-521.859985F, -276.115997F), new Vector2(-522.364014F, -274.376007F), new Vector2(-522.364014F, -272.191986F));
+ builder.AddLine(new Vector2(-521.140015F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(-521.140015F, -273.200012F), new Vector2(-520.755981F, -274.376007F), new Vector2(-519.987976F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-521.140015F, -261.895996F));
+ builder.AddLine(new Vector2(-521.140015F, -278.996002F));
+ builder.AddLine(new Vector2(-524.380005F, -278.996002F));
+ builder.AddLine(new Vector2(-524.380005F, -261.895996F));
+ builder.AddLine(new Vector2(-521.140015F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1297()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-526.971985F, -276.044006F));
+ builder.AddLine(new Vector2(-526.971985F, -278.996002F));
+ builder.AddLine(new Vector2(-539.859985F, -278.996002F));
+ builder.AddLine(new Vector2(-539.859985F, -276.044006F));
+ builder.AddLine(new Vector2(-526.971985F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-532.40802F, -261.895996F));
+ builder.AddLine(new Vector2(-532.40802F, -281.552002F));
+ builder.AddCubicBezier(new Vector2(-532.40802F, -282.608002F), new Vector2(-532.125977F, -283.429993F), new Vector2(-531.562012F, -284.018005F));
+ builder.AddCubicBezier(new Vector2(-530.997986F, -284.605988F), new Vector2(-530.200012F, -284.899994F), new Vector2(-529.16803F, -284.899994F));
+ builder.AddCubicBezier(new Vector2(-528.616028F, -284.899994F), new Vector2(-528.14801F, -284.81601F), new Vector2(-527.763977F, -284.64801F));
+ builder.AddCubicBezier(new Vector2(-527.380005F, -284.480011F), new Vector2(-527.031982F, -284.227997F), new Vector2(-526.719971F, -283.891998F));
+ builder.AddLine(new Vector2(-524.596008F, -285.980011F));
+ builder.AddCubicBezier(new Vector2(-525.195984F, -286.627991F), new Vector2(-525.856018F, -287.119995F), new Vector2(-526.575989F, -287.455994F));
+ builder.AddCubicBezier(new Vector2(-527.296021F, -287.791992F), new Vector2(-528.14801F, -287.959991F), new Vector2(-529.132019F, -287.959991F));
+ builder.AddCubicBezier(new Vector2(-530.427979F, -287.959991F), new Vector2(-531.567993F, -287.68399F), new Vector2(-532.552002F, -287.131989F));
+ builder.AddCubicBezier(new Vector2(-533.536011F, -286.579987F), new Vector2(-534.304016F, -285.824005F), new Vector2(-534.856018F, -284.864014F));
+ builder.AddCubicBezier(new Vector2(-535.40802F, -283.903992F), new Vector2(-535.684021F, -282.799988F), new Vector2(-535.684021F, -281.552002F));
+ builder.AddLine(new Vector2(-535.684021F, -261.895996F));
+ builder.AddLine(new Vector2(-532.40802F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1298()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-561.478027F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-562.30603F, -266.414001F), new Vector2(-562.953979F, -267.067993F), new Vector2(-563.421997F, -267.90799F));
+ builder.AddCubicBezier(new Vector2(-563.890015F, -268.747986F), new Vector2(-564.124023F, -269.708008F), new Vector2(-564.124023F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(-564.124023F, -271.868011F), new Vector2(-563.890015F, -272.821991F), new Vector2(-563.421997F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(-562.953979F, -274.477997F), new Vector2(-562.312012F, -275.126007F), new Vector2(-561.495972F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(-560.679993F, -276.062012F), new Vector2(-559.731995F, -276.29599F), new Vector2(-558.651978F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-557.596008F, -276.29599F), new Vector2(-556.666016F, -276.062012F), new Vector2(-555.862F, -275.593994F));
+ builder.AddCubicBezier(new Vector2(-555.057983F, -275.126007F), new Vector2(-554.434021F, -274.477997F), new Vector2(-553.98999F, -273.649994F));
+ builder.AddCubicBezier(new Vector2(-553.546021F, -272.821991F), new Vector2(-553.323975F, -271.855988F), new Vector2(-553.323975F, -270.752014F));
+ builder.AddCubicBezier(new Vector2(-553.323975F, -269.64801F), new Vector2(-553.546021F, -268.682007F), new Vector2(-553.98999F, -267.854004F));
+ builder.AddCubicBezier(new Vector2(-554.434021F, -267.026001F), new Vector2(-555.052002F, -266.384003F), new Vector2(-555.843994F, -265.928009F));
+ builder.AddCubicBezier(new Vector2(-556.635986F, -265.471985F), new Vector2(-557.572021F, -265.243988F), new Vector2(-558.651978F, -265.243988F));
+ builder.AddCubicBezier(new Vector2(-559.708008F, -265.243988F), new Vector2(-560.650024F, -265.477997F), new Vector2(-561.478027F, -265.946014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-555.736023F, -262.976013F));
+ builder.AddCubicBezier(new Vector2(-554.703979F, -263.503998F), new Vector2(-553.882019F, -264.242004F), new Vector2(-553.27002F, -265.190002F));
+ builder.AddCubicBezier(new Vector2(-552.65802F, -266.138F), new Vector2(-552.315979F, -267.235992F), new Vector2(-552.244019F, -268.484009F));
+ builder.AddLine(new Vector2(-552.244019F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-552.315979F, -274.291992F), new Vector2(-552.651978F, -275.402008F), new Vector2(-553.252014F, -276.350006F));
+ builder.AddCubicBezier(new Vector2(-553.85199F, -277.298004F), new Vector2(-554.674011F, -278.036011F), new Vector2(-555.718018F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-556.762024F, -279.09201F), new Vector2(-557.955994F, -279.355988F), new Vector2(-559.299988F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-560.835999F, -279.355988F), new Vector2(-562.228027F, -278.977997F), new Vector2(-563.476013F, -278.221985F));
+ builder.AddCubicBezier(new Vector2(-564.723999F, -277.466003F), new Vector2(-565.702026F, -276.446014F), new Vector2(-566.409973F, -275.161987F));
+ builder.AddCubicBezier(new Vector2(-567.117981F, -273.877991F), new Vector2(-567.471985F, -272.420013F), new Vector2(-567.471985F, -270.787994F));
+ builder.AddCubicBezier(new Vector2(-567.471985F, -269.156006F), new Vector2(-567.112F, -267.686005F), new Vector2(-566.392029F, -266.377991F));
+ builder.AddCubicBezier(new Vector2(-565.671997F, -265.070007F), new Vector2(-564.69397F, -264.044006F), new Vector2(-563.458008F, -263.299988F));
+ builder.AddCubicBezier(new Vector2(-562.221985F, -262.556F), new Vector2(-560.823975F, -262.18399F), new Vector2(-559.263977F, -262.18399F));
+ builder.AddCubicBezier(new Vector2(-557.94397F, -262.18399F), new Vector2(-556.768005F, -262.447998F), new Vector2(-555.736023F, -262.976013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-554.565979F, -255.397995F));
+ builder.AddCubicBezier(new Vector2(-553.210022F, -256.082001F), new Vector2(-552.153992F, -257.041992F), new Vector2(-551.39801F, -258.278015F));
+ builder.AddCubicBezier(new Vector2(-550.642029F, -259.514008F), new Vector2(-550.263977F, -260.947998F), new Vector2(-550.263977F, -262.579987F));
+ builder.AddLine(new Vector2(-550.263977F, -278.996002F));
+ builder.AddLine(new Vector2(-553.504028F, -278.996002F));
+ builder.AddLine(new Vector2(-553.504028F, -274.496002F));
+ builder.AddLine(new Vector2(-552.927979F, -270.679993F));
+ builder.AddLine(new Vector2(-553.504028F, -266.828003F));
+ builder.AddLine(new Vector2(-553.504028F, -262.579987F));
+ builder.AddCubicBezier(new Vector2(-553.504028F, -261.019989F), new Vector2(-554.02002F, -259.778015F), new Vector2(-555.052002F, -258.854004F));
+ builder.AddCubicBezier(new Vector2(-556.083984F, -257.929993F), new Vector2(-557.463989F, -257.467987F), new Vector2(-559.192017F, -257.467987F));
+ builder.AddCubicBezier(new Vector2(-560.512024F, -257.467987F), new Vector2(-561.651978F, -257.701996F), new Vector2(-562.612F, -258.170013F));
+ builder.AddCubicBezier(new Vector2(-563.572021F, -258.638F), new Vector2(-564.400024F, -259.31601F), new Vector2(-565.096008F, -260.20401F));
+ builder.AddLine(new Vector2(-567.219971F, -258.079987F));
+ builder.AddCubicBezier(new Vector2(-566.380005F, -256.903992F), new Vector2(-565.288025F, -255.992004F), new Vector2(-563.94397F, -255.343994F));
+ builder.AddCubicBezier(new Vector2(-562.599976F, -254.695999F), new Vector2(-561.039978F, -254.371994F), new Vector2(-559.263977F, -254.371994F));
+ builder.AddCubicBezier(new Vector2(-557.487976F, -254.371994F), new Vector2(-555.921997F, -254.714005F), new Vector2(-554.565979F, -255.397995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1299()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-582.843994F, -261.895996F));
+ builder.AddLine(new Vector2(-582.843994F, -278.996002F));
+ builder.AddLine(new Vector2(-586.083984F, -278.996002F));
+ builder.AddLine(new Vector2(-586.083984F, -261.895996F));
+ builder.AddLine(new Vector2(-582.843994F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-570.747986F, -261.895996F));
+ builder.AddLine(new Vector2(-570.747986F, -272.515991F));
+ builder.AddCubicBezier(new Vector2(-570.747986F, -273.691986F), new Vector2(-571.036011F, -274.802002F), new Vector2(-571.612F, -275.846008F));
+ builder.AddCubicBezier(new Vector2(-572.187988F, -276.890015F), new Vector2(-572.973999F, -277.735992F), new Vector2(-573.969971F, -278.384003F));
+ builder.AddCubicBezier(new Vector2(-574.966003F, -279.032013F), new Vector2(-576.112F, -279.355988F), new Vector2(-577.40802F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-578.703979F, -279.355988F), new Vector2(-579.867981F, -279.062012F), new Vector2(-580.900024F, -278.473999F));
+ builder.AddCubicBezier(new Vector2(-581.932007F, -277.885986F), new Vector2(-582.736023F, -277.088013F), new Vector2(-583.312012F, -276.079987F));
+ builder.AddCubicBezier(new Vector2(-583.888F, -275.071991F), new Vector2(-584.176025F, -273.920013F), new Vector2(-584.176025F, -272.623993F));
+ builder.AddLine(new Vector2(-582.843994F, -271.868011F));
+ builder.AddCubicBezier(new Vector2(-582.843994F, -272.731995F), new Vector2(-582.651978F, -273.5F), new Vector2(-582.268005F, -274.171997F));
+ builder.AddCubicBezier(new Vector2(-581.883972F, -274.843994F), new Vector2(-581.356018F, -275.372009F), new Vector2(-580.684021F, -275.756012F));
+ builder.AddCubicBezier(new Vector2(-580.012024F, -276.140015F), new Vector2(-579.244019F, -276.332001F), new Vector2(-578.380005F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-577.083984F, -276.332001F), new Vector2(-576.033997F, -275.911987F), new Vector2(-575.22998F, -275.071991F));
+ builder.AddCubicBezier(new Vector2(-574.426025F, -274.231995F), new Vector2(-574.023987F, -273.164001F), new Vector2(-574.023987F, -271.868011F));
+ builder.AddLine(new Vector2(-574.023987F, -261.895996F));
+ builder.AddLine(new Vector2(-570.747986F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1300()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-591.015991F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-590.632019F, -283.406006F), new Vector2(-590.440002F, -283.903992F), new Vector2(-590.440002F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-590.440002F, -285.079987F), new Vector2(-590.632019F, -285.56601F), new Vector2(-591.015991F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-591.400024F, -286.358002F), new Vector2(-591.892029F, -286.556F), new Vector2(-592.492004F, -286.556F));
+ builder.AddCubicBezier(new Vector2(-593.09198F, -286.556F), new Vector2(-593.583984F, -286.358002F), new Vector2(-593.968018F, -285.962006F));
+ builder.AddCubicBezier(new Vector2(-594.35199F, -285.56601F), new Vector2(-594.544006F, -285.079987F), new Vector2(-594.544006F, -284.503998F));
+ builder.AddCubicBezier(new Vector2(-594.544006F, -283.903992F), new Vector2(-594.35199F, -283.406006F), new Vector2(-593.968018F, -283.01001F));
+ builder.AddCubicBezier(new Vector2(-593.583984F, -282.614014F), new Vector2(-593.09198F, -282.415985F), new Vector2(-592.492004F, -282.415985F));
+ builder.AddCubicBezier(new Vector2(-591.892029F, -282.415985F), new Vector2(-591.400024F, -282.614014F), new Vector2(-591.015991F, -283.01001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-590.872009F, -261.895996F));
+ builder.AddLine(new Vector2(-590.872009F, -278.996002F));
+ builder.AddLine(new Vector2(-594.14801F, -278.996002F));
+ builder.AddLine(new Vector2(-594.14801F, -261.895996F));
+ builder.AddLine(new Vector2(-590.872009F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1301()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-597.315979F, -276.044006F));
+ builder.AddLine(new Vector2(-597.315979F, -278.996002F));
+ builder.AddLine(new Vector2(-608.97998F, -278.996002F));
+ builder.AddLine(new Vector2(-608.97998F, -276.044006F));
+ builder.AddLine(new Vector2(-597.315979F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-601.528015F, -261.895996F));
+ builder.AddLine(new Vector2(-601.528015F, -286.160004F));
+ builder.AddLine(new Vector2(-604.768005F, -286.160004F));
+ builder.AddLine(new Vector2(-604.768005F, -261.895996F));
+ builder.AddLine(new Vector2(-601.528015F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1302()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-617.403992F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(-616.635986F, -275.911987F), new Vector2(-615.651978F, -276.29599F), new Vector2(-614.452026F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-613.875977F, -276.29599F), new Vector2(-613.372009F, -276.212006F), new Vector2(-612.940002F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(-612.507996F, -275.876007F), new Vector2(-612.112F, -275.600006F), new Vector2(-611.752014F, -275.216003F));
+ builder.AddLine(new Vector2(-609.627991F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-610.228027F, -278.108002F), new Vector2(-610.875977F, -278.605988F), new Vector2(-611.572021F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(-612.268005F, -279.205994F), new Vector2(-613.047974F, -279.355988F), new Vector2(-613.911987F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-615.807983F, -279.355988F), new Vector2(-617.26001F, -278.708008F), new Vector2(-618.268005F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-619.276001F, -276.115997F), new Vector2(-619.780029F, -274.376007F), new Vector2(-619.780029F, -272.191986F));
+ builder.AddLine(new Vector2(-618.55603F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(-618.55603F, -273.200012F), new Vector2(-618.171997F, -274.376007F), new Vector2(-617.403992F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-618.55603F, -261.895996F));
+ builder.AddLine(new Vector2(-618.55603F, -278.996002F));
+ builder.AddLine(new Vector2(-621.796021F, -278.996002F));
+ builder.AddLine(new Vector2(-621.796021F, -261.895996F));
+ builder.AddLine(new Vector2(-618.55603F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1303()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-626.512024F, -261.895996F));
+ builder.AddLine(new Vector2(-626.512024F, -278.996002F));
+ builder.AddLine(new Vector2(-629.788025F, -278.996002F));
+ builder.AddLine(new Vector2(-629.788025F, -274.820007F));
+ builder.AddLine(new Vector2(-629.176025F, -270.679993F));
+ builder.AddLine(new Vector2(-629.788025F, -266.503998F));
+ builder.AddLine(new Vector2(-629.788025F, -261.895996F));
+ builder.AddLine(new Vector2(-626.512024F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-637.815979F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-638.656006F, -265.855988F), new Vector2(-639.309998F, -266.54599F), new Vector2(-639.778015F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-640.245972F, -268.298004F), new Vector2(-640.47998F, -269.312012F), new Vector2(-640.47998F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-640.47998F, -271.59201F), new Vector2(-640.245972F, -272.593994F), new Vector2(-639.778015F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-639.309998F, -274.346008F), new Vector2(-638.661987F, -275.036011F), new Vector2(-637.833984F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-637.005981F, -276.044006F), new Vector2(-636.052002F, -276.29599F), new Vector2(-634.971985F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-633.892029F, -276.29599F), new Vector2(-632.950012F, -276.049988F), new Vector2(-632.145996F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(-631.34198F, -275.06601F), new Vector2(-630.711975F, -274.376007F), new Vector2(-630.255981F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(-629.799988F, -272.600006F), new Vector2(-629.572021F, -271.579987F), new Vector2(-629.572021F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-629.572021F, -268.723999F), new Vector2(-630.064026F, -267.325989F), new Vector2(-631.047974F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(-632.031982F, -265.141998F), new Vector2(-633.328003F, -264.596008F), new Vector2(-634.935974F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-636.015991F, -264.596008F), new Vector2(-636.976013F, -264.847992F), new Vector2(-637.815979F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-631.984009F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-630.952026F, -262.885986F), new Vector2(-630.130005F, -263.635986F), new Vector2(-629.518005F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-628.906006F, -265.556F), new Vector2(-628.564026F, -266.64801F), new Vector2(-628.492004F, -267.872009F));
+ builder.AddLine(new Vector2(-628.492004F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-628.564026F, -274.268005F), new Vector2(-628.911987F, -275.365997F), new Vector2(-629.536011F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-630.159973F, -277.261993F), new Vector2(-630.981995F, -278.006012F), new Vector2(-632.002014F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-633.021973F, -279.085999F), new Vector2(-634.179993F, -279.355988F), new Vector2(-635.476013F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-637.059998F, -279.355988F), new Vector2(-638.481995F, -278.959991F), new Vector2(-639.742004F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-641.002014F, -277.376007F), new Vector2(-641.997986F, -276.308014F), new Vector2(-642.72998F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-643.461975F, -273.619995F), new Vector2(-643.828003F, -272.108002F), new Vector2(-643.828003F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-643.828003F, -268.747986F), new Vector2(-643.461975F, -267.235992F), new Vector2(-642.72998F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-641.997986F, -264.548004F), new Vector2(-641.002014F, -263.485992F), new Vector2(-639.742004F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-638.481995F, -261.925995F), new Vector2(-637.059998F, -261.536011F), new Vector2(-635.476013F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-634.179993F, -261.536011F), new Vector2(-633.015991F, -261.806F), new Vector2(-631.984009F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1304()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-645.375977F, -276.044006F));
+ builder.AddLine(new Vector2(-645.375977F, -278.996002F));
+ builder.AddLine(new Vector2(-657.039978F, -278.996002F));
+ builder.AddLine(new Vector2(-657.039978F, -276.044006F));
+ builder.AddLine(new Vector2(-645.375977F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-649.588013F, -261.895996F));
+ builder.AddLine(new Vector2(-649.588013F, -286.160004F));
+ builder.AddLine(new Vector2(-652.828003F, -286.160004F));
+ builder.AddLine(new Vector2(-652.828003F, -261.895996F));
+ builder.AddLine(new Vector2(-649.588013F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1305()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-660.802002F, -262.940002F));
+ builder.AddCubicBezier(new Vector2(-659.661987F, -263.876007F), new Vector2(-659.09198F, -265.14801F), new Vector2(-659.09198F, -266.756012F));
+ builder.AddCubicBezier(new Vector2(-659.09198F, -267.812012F), new Vector2(-659.314026F, -268.664001F), new Vector2(-659.757996F, -269.312012F));
+ builder.AddCubicBezier(new Vector2(-660.202026F, -269.959991F), new Vector2(-660.771973F, -270.476013F), new Vector2(-661.468018F, -270.859985F));
+ builder.AddCubicBezier(new Vector2(-662.164001F, -271.243988F), new Vector2(-662.895996F, -271.549988F), new Vector2(-663.664001F, -271.778015F));
+ builder.AddCubicBezier(new Vector2(-664.432007F, -272.006012F), new Vector2(-665.169983F, -272.227997F), new Vector2(-665.877991F, -272.444F));
+ builder.AddCubicBezier(new Vector2(-666.585999F, -272.660004F), new Vector2(-667.156006F, -272.924011F), new Vector2(-667.588013F, -273.235992F));
+ builder.AddCubicBezier(new Vector2(-668.02002F, -273.548004F), new Vector2(-668.236023F, -273.992004F), new Vector2(-668.236023F, -274.567993F));
+ builder.AddCubicBezier(new Vector2(-668.236023F, -275.119995F), new Vector2(-667.98999F, -275.563995F), new Vector2(-667.497986F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(-667.005981F, -276.235992F), new Vector2(-666.291992F, -276.403992F), new Vector2(-665.356018F, -276.403992F));
+ builder.AddCubicBezier(new Vector2(-664.468018F, -276.403992F), new Vector2(-663.676025F, -276.235992F), new Vector2(-662.97998F, -275.899994F));
+ builder.AddCubicBezier(new Vector2(-662.283997F, -275.563995F), new Vector2(-661.684021F, -275.084015F), new Vector2(-661.179993F, -274.459991F));
+ builder.AddLine(new Vector2(-659.09198F, -276.548004F));
+ builder.AddCubicBezier(new Vector2(-659.763977F, -277.484009F), new Vector2(-660.622009F, -278.186005F), new Vector2(-661.666016F, -278.653992F));
+ builder.AddCubicBezier(new Vector2(-662.710022F, -279.122009F), new Vector2(-663.903992F, -279.355988F), new Vector2(-665.247986F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-666.52002F, -279.355988F), new Vector2(-667.612F, -279.152008F), new Vector2(-668.523987F, -278.743988F));
+ builder.AddCubicBezier(new Vector2(-669.435974F, -278.335999F), new Vector2(-670.138F, -277.753998F), new Vector2(-670.630005F, -276.997986F));
+ builder.AddCubicBezier(new Vector2(-671.122009F, -276.242004F), new Vector2(-671.367981F, -275.347992F), new Vector2(-671.367981F, -274.31601F));
+ builder.AddCubicBezier(new Vector2(-671.367981F, -273.283997F), new Vector2(-671.145996F, -272.450012F), new Vector2(-670.702026F, -271.813995F));
+ builder.AddCubicBezier(new Vector2(-670.257996F, -271.178009F), new Vector2(-669.687988F, -270.679993F), new Vector2(-668.992004F, -270.320007F));
+ builder.AddCubicBezier(new Vector2(-668.296021F, -269.959991F), new Vector2(-667.557983F, -269.671997F), new Vector2(-666.778015F, -269.455994F));
+ builder.AddCubicBezier(new Vector2(-665.997986F, -269.23999F), new Vector2(-665.26001F, -269.018005F), new Vector2(-664.564026F, -268.790009F));
+ builder.AddCubicBezier(new Vector2(-663.867981F, -268.562012F), new Vector2(-663.297974F, -268.273987F), new Vector2(-662.854004F, -267.925995F));
+ builder.AddCubicBezier(new Vector2(-662.409973F, -267.578003F), new Vector2(-662.187988F, -267.09201F), new Vector2(-662.187988F, -266.467987F));
+ builder.AddCubicBezier(new Vector2(-662.187988F, -265.843994F), new Vector2(-662.463989F, -265.358002F), new Vector2(-663.015991F, -265.01001F));
+ builder.AddCubicBezier(new Vector2(-663.567993F, -264.661987F), new Vector2(-664.348022F, -264.488007F), new Vector2(-665.356018F, -264.488007F));
+ builder.AddCubicBezier(new Vector2(-666.364014F, -264.488007F), new Vector2(-667.276001F, -264.674011F), new Vector2(-668.09198F, -265.04599F));
+ builder.AddCubicBezier(new Vector2(-668.90802F, -265.417999F), new Vector2(-669.627991F, -265.988007F), new Vector2(-670.252014F, -266.756012F));
+ builder.AddLine(new Vector2(-672.340027F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-671.812012F, -264.019989F), new Vector2(-671.19397F, -263.462006F), new Vector2(-670.486023F, -262.993988F));
+ builder.AddCubicBezier(new Vector2(-669.778015F, -262.526001F), new Vector2(-668.992004F, -262.165985F), new Vector2(-668.127991F, -261.914001F));
+ builder.AddCubicBezier(new Vector2(-667.263977F, -261.661987F), new Vector2(-666.35199F, -261.536011F), new Vector2(-665.392029F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-663.471985F, -261.536011F), new Vector2(-661.942017F, -262.003998F), new Vector2(-660.802002F, -262.940002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1306()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-686.164001F, -256.928009F));
+ builder.AddLine(new Vector2(-683.752014F, -261.391998F));
+ builder.AddCubicBezier(new Vector2(-683.440002F, -261.992004F), new Vector2(-683.22998F, -262.477997F), new Vector2(-683.122009F, -262.850006F));
+ builder.AddCubicBezier(new Vector2(-683.013977F, -263.221985F), new Vector2(-682.960022F, -263.540009F), new Vector2(-682.960022F, -263.803986F));
+ builder.AddCubicBezier(new Vector2(-682.960022F, -264.5F), new Vector2(-683.200012F, -265.082001F), new Vector2(-683.679993F, -265.549988F));
+ builder.AddCubicBezier(new Vector2(-684.159973F, -266.018005F), new Vector2(-684.711975F, -266.252014F), new Vector2(-685.335999F, -266.252014F));
+ builder.AddCubicBezier(new Vector2(-686.031982F, -266.252014F), new Vector2(-686.607971F, -266.018005F), new Vector2(-687.064026F, -265.549988F));
+ builder.AddCubicBezier(new Vector2(-687.52002F, -265.082001F), new Vector2(-687.747986F, -264.5F), new Vector2(-687.747986F, -263.803986F));
+ builder.AddCubicBezier(new Vector2(-687.747986F, -263.179993F), new Vector2(-687.538025F, -262.65799F), new Vector2(-687.117981F, -262.238007F));
+ builder.AddCubicBezier(new Vector2(-686.697998F, -261.817993F), new Vector2(-686.236023F, -261.608002F), new Vector2(-685.731995F, -261.608002F));
+ builder.AddCubicBezier(new Vector2(-685.492004F, -261.608002F), new Vector2(-685.276001F, -261.691986F), new Vector2(-685.083984F, -261.859985F));
+ builder.AddCubicBezier(new Vector2(-684.892029F, -262.028015F), new Vector2(-684.736023F, -262.243988F), new Vector2(-684.616028F, -262.507996F));
+ builder.AddLine(new Vector2(-685.768005F, -262.220001F));
+ builder.AddLine(new Vector2(-688F, -257.936005F));
+ builder.AddLine(new Vector2(-686.164001F, -256.928009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1307()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-692.572021F, -261.895996F));
+ builder.AddLine(new Vector2(-692.572021F, -272.876007F));
+ builder.AddCubicBezier(new Vector2(-692.572021F, -274.220001F), new Vector2(-692.866028F, -275.372009F), new Vector2(-693.453979F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-694.041992F, -277.291992F), new Vector2(-694.828003F, -278.036011F), new Vector2(-695.812012F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-696.796021F, -279.09201F), new Vector2(-697.911987F, -279.355988F), new Vector2(-699.159973F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-700.359985F, -279.355988F), new Vector2(-701.463989F, -279.085999F), new Vector2(-702.471985F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-703.47998F, -278.006012F), new Vector2(-704.302002F, -277.261993F), new Vector2(-704.937988F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-705.573975F, -275.365997F), new Vector2(-705.927979F, -274.231995F), new Vector2(-706F, -272.911987F));
+ builder.AddLine(new Vector2(-704.164001F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-704.164001F, -273.09201F), new Vector2(-703.971985F, -273.824005F), new Vector2(-703.588013F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-703.203979F, -275.023987F), new Vector2(-702.69397F, -275.492004F), new Vector2(-702.057983F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-701.421997F, -276.164001F), new Vector2(-700.708008F, -276.332001F), new Vector2(-699.916016F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-698.763977F, -276.332001F), new Vector2(-697.797974F, -275.966003F), new Vector2(-697.018005F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-696.237976F, -274.502014F), new Vector2(-695.848022F, -273.5F), new Vector2(-695.848022F, -272.227997F));
+ builder.AddLine(new Vector2(-695.848022F, -261.895996F));
+ builder.AddLine(new Vector2(-692.572021F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-704.164001F, -261.895996F));
+ builder.AddLine(new Vector2(-704.164001F, -272.911987F));
+ builder.AddCubicBezier(new Vector2(-704.164001F, -274.231995F), new Vector2(-704.445984F, -275.372009F), new Vector2(-705.01001F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-705.573975F, -277.291992F), new Vector2(-706.34198F, -278.036011F), new Vector2(-707.314026F, -278.563995F));
+ builder.AddCubicBezier(new Vector2(-708.286011F, -279.09201F), new Vector2(-709.372009F, -279.355988F), new Vector2(-710.572021F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-711.796021F, -279.355988F), new Vector2(-712.900024F, -279.085999F), new Vector2(-713.883972F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-714.867981F, -278.006012F), new Vector2(-715.642029F, -277.256012F), new Vector2(-716.205994F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-716.77002F, -275.335999F), new Vector2(-717.052002F, -274.208008F), new Vector2(-717.052002F, -272.911987F));
+ builder.AddLine(new Vector2(-715.719971F, -272.227997F));
+ builder.AddCubicBezier(new Vector2(-715.719971F, -273.09201F), new Vector2(-715.528015F, -273.824005F), new Vector2(-715.143982F, -274.424011F));
+ builder.AddCubicBezier(new Vector2(-714.76001F, -275.023987F), new Vector2(-714.255981F, -275.492004F), new Vector2(-713.632019F, -275.828003F));
+ builder.AddCubicBezier(new Vector2(-713.007996F, -276.164001F), new Vector2(-712.299988F, -276.332001F), new Vector2(-711.507996F, -276.332001F));
+ builder.AddCubicBezier(new Vector2(-710.33197F, -276.332001F), new Vector2(-709.354004F, -275.966003F), new Vector2(-708.573975F, -275.234009F));
+ builder.AddCubicBezier(new Vector2(-707.794006F, -274.502014F), new Vector2(-707.403992F, -273.5F), new Vector2(-707.403992F, -272.227997F));
+ builder.AddLine(new Vector2(-707.403992F, -261.895996F));
+ builder.AddLine(new Vector2(-704.164001F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-715.719971F, -261.895996F));
+ builder.AddLine(new Vector2(-715.719971F, -278.996002F));
+ builder.AddLine(new Vector2(-718.960022F, -278.996002F));
+ builder.AddLine(new Vector2(-718.960022F, -261.895996F));
+ builder.AddLine(new Vector2(-715.719971F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1308()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-729.075989F, -275.144012F));
+ builder.AddCubicBezier(new Vector2(-728.307983F, -275.911987F), new Vector2(-727.323975F, -276.29599F), new Vector2(-726.124023F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-725.547974F, -276.29599F), new Vector2(-725.044006F, -276.212006F), new Vector2(-724.612F, -276.044006F));
+ builder.AddCubicBezier(new Vector2(-724.179993F, -275.876007F), new Vector2(-723.783997F, -275.600006F), new Vector2(-723.424011F, -275.216003F));
+ builder.AddLine(new Vector2(-721.299988F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-721.900024F, -278.108002F), new Vector2(-722.547974F, -278.605988F), new Vector2(-723.244019F, -278.906006F));
+ builder.AddCubicBezier(new Vector2(-723.940002F, -279.205994F), new Vector2(-724.719971F, -279.355988F), new Vector2(-725.583984F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-727.47998F, -279.355988F), new Vector2(-728.932007F, -278.708008F), new Vector2(-729.940002F, -277.411987F));
+ builder.AddCubicBezier(new Vector2(-730.947998F, -276.115997F), new Vector2(-731.452026F, -274.376007F), new Vector2(-731.452026F, -272.191986F));
+ builder.AddLine(new Vector2(-730.228027F, -271.615997F));
+ builder.AddCubicBezier(new Vector2(-730.228027F, -273.200012F), new Vector2(-729.843994F, -274.376007F), new Vector2(-729.075989F, -275.144012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-730.228027F, -261.895996F));
+ builder.AddLine(new Vector2(-730.228027F, -278.996002F));
+ builder.AddLine(new Vector2(-733.468018F, -278.996002F));
+ builder.AddLine(new Vector2(-733.468018F, -261.895996F));
+ builder.AddLine(new Vector2(-730.228027F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1309()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-748.875977F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-749.716003F, -265.928009F), new Vector2(-750.375977F, -266.618011F), new Vector2(-750.856018F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-751.335999F, -268.369995F), new Vector2(-751.575989F, -269.372009F), new Vector2(-751.575989F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-751.575989F, -271.604004F), new Vector2(-751.335999F, -272.588013F), new Vector2(-750.856018F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-750.375977F, -274.31601F), new Vector2(-749.716003F, -274.993988F), new Vector2(-748.875977F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-748.036011F, -275.977997F), new Vector2(-747.088013F, -276.223999F), new Vector2(-746.031982F, -276.223999F));
+ builder.AddCubicBezier(new Vector2(-744.927979F, -276.223999F), new Vector2(-743.961975F, -275.977997F), new Vector2(-743.133972F, -275.485992F));
+ builder.AddCubicBezier(new Vector2(-742.30603F, -274.993988F), new Vector2(-741.645996F, -274.31601F), new Vector2(-741.153992F, -273.451996F));
+ builder.AddCubicBezier(new Vector2(-740.661987F, -272.588013F), new Vector2(-740.416016F, -271.604004F), new Vector2(-740.416016F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-740.416016F, -269.372009F), new Vector2(-740.656006F, -268.369995F), new Vector2(-741.135986F, -267.493988F));
+ builder.AddCubicBezier(new Vector2(-741.616028F, -266.618011F), new Vector2(-742.276001F, -265.928009F), new Vector2(-743.116028F, -265.424011F));
+ builder.AddCubicBezier(new Vector2(-743.955994F, -264.920013F), new Vector2(-744.927979F, -264.667999F), new Vector2(-746.031982F, -264.667999F));
+ builder.AddCubicBezier(new Vector2(-747.088013F, -264.667999F), new Vector2(-748.036011F, -264.920013F), new Vector2(-748.875977F, -265.424011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-741.478027F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-740.122009F, -263.515991F), new Vector2(-739.047974F, -264.589996F), new Vector2(-738.255981F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-737.463989F, -267.302002F), new Vector2(-737.067993F, -268.820007F), new Vector2(-737.067993F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-737.067993F, -272.156006F), new Vector2(-737.463989F, -273.656006F), new Vector2(-738.255981F, -275F));
+ builder.AddCubicBezier(new Vector2(-739.047974F, -276.343994F), new Vector2(-740.122009F, -277.406006F), new Vector2(-741.478027F, -278.186005F));
+ builder.AddCubicBezier(new Vector2(-742.833984F, -278.966003F), new Vector2(-744.35199F, -279.355988F), new Vector2(-746.031982F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-747.687988F, -279.355988F), new Vector2(-749.187988F, -278.959991F), new Vector2(-750.531982F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-751.875977F, -277.376007F), new Vector2(-752.94397F, -276.313995F), new Vector2(-753.736023F, -274.981995F));
+ builder.AddCubicBezier(new Vector2(-754.528015F, -273.649994F), new Vector2(-754.924011F, -272.156006F), new Vector2(-754.924011F, -270.5F));
+ builder.AddCubicBezier(new Vector2(-754.924011F, -268.820007F), new Vector2(-754.528015F, -267.302002F), new Vector2(-753.736023F, -265.946014F));
+ builder.AddCubicBezier(new Vector2(-752.94397F, -264.589996F), new Vector2(-751.875977F, -263.515991F), new Vector2(-750.531982F, -262.723999F));
+ builder.AddCubicBezier(new Vector2(-749.187988F, -261.932007F), new Vector2(-747.687988F, -261.536011F), new Vector2(-746.031982F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-744.35199F, -261.536011F), new Vector2(-742.833984F, -261.932007F), new Vector2(-741.478027F, -262.723999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1310()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-756.075989F, -276.044006F));
+ builder.AddLine(new Vector2(-756.075989F, -278.996002F));
+ builder.AddLine(new Vector2(-768.963989F, -278.996002F));
+ builder.AddLine(new Vector2(-768.963989F, -276.044006F));
+ builder.AddLine(new Vector2(-756.075989F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-761.512024F, -261.895996F));
+ builder.AddLine(new Vector2(-761.512024F, -281.552002F));
+ builder.AddCubicBezier(new Vector2(-761.512024F, -282.608002F), new Vector2(-761.22998F, -283.429993F), new Vector2(-760.666016F, -284.018005F));
+ builder.AddCubicBezier(new Vector2(-760.10199F, -284.605988F), new Vector2(-759.304016F, -284.899994F), new Vector2(-758.271973F, -284.899994F));
+ builder.AddCubicBezier(new Vector2(-757.719971F, -284.899994F), new Vector2(-757.252014F, -284.81601F), new Vector2(-756.867981F, -284.64801F));
+ builder.AddCubicBezier(new Vector2(-756.484009F, -284.480011F), new Vector2(-756.135986F, -284.227997F), new Vector2(-755.823975F, -283.891998F));
+ builder.AddLine(new Vector2(-753.700012F, -285.980011F));
+ builder.AddCubicBezier(new Vector2(-754.299988F, -286.627991F), new Vector2(-754.960022F, -287.119995F), new Vector2(-755.679993F, -287.455994F));
+ builder.AddCubicBezier(new Vector2(-756.400024F, -287.791992F), new Vector2(-757.252014F, -287.959991F), new Vector2(-758.236023F, -287.959991F));
+ builder.AddCubicBezier(new Vector2(-759.531982F, -287.959991F), new Vector2(-760.671997F, -287.68399F), new Vector2(-761.656006F, -287.131989F));
+ builder.AddCubicBezier(new Vector2(-762.640015F, -286.579987F), new Vector2(-763.40802F, -285.824005F), new Vector2(-763.960022F, -284.864014F));
+ builder.AddCubicBezier(new Vector2(-764.512024F, -283.903992F), new Vector2(-764.788025F, -282.799988F), new Vector2(-764.788025F, -281.552002F));
+ builder.AddLine(new Vector2(-764.788025F, -261.895996F));
+ builder.AddLine(new Vector2(-761.512024F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1311()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-769.719971F, -276.044006F));
+ builder.AddLine(new Vector2(-769.719971F, -278.996002F));
+ builder.AddLine(new Vector2(-781.383972F, -278.996002F));
+ builder.AddLine(new Vector2(-781.383972F, -276.044006F));
+ builder.AddLine(new Vector2(-769.719971F, -276.044006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-773.932007F, -261.895996F));
+ builder.AddLine(new Vector2(-773.932007F, -286.160004F));
+ builder.AddLine(new Vector2(-777.171997F, -286.160004F));
+ builder.AddLine(new Vector2(-777.171997F, -261.895996F));
+ builder.AddLine(new Vector2(-773.932007F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1312()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-784.44397F, -261.895996F));
+ builder.AddLine(new Vector2(-784.44397F, -278.996002F));
+ builder.AddLine(new Vector2(-787.719971F, -278.996002F));
+ builder.AddLine(new Vector2(-787.719971F, -274.820007F));
+ builder.AddLine(new Vector2(-787.107971F, -270.679993F));
+ builder.AddLine(new Vector2(-787.719971F, -266.503998F));
+ builder.AddLine(new Vector2(-787.719971F, -261.895996F));
+ builder.AddLine(new Vector2(-784.44397F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-795.747986F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-796.588013F, -265.855988F), new Vector2(-797.242004F, -266.54599F), new Vector2(-797.710022F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-798.177979F, -268.298004F), new Vector2(-798.411987F, -269.312012F), new Vector2(-798.411987F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-798.411987F, -271.59201F), new Vector2(-798.177979F, -272.593994F), new Vector2(-797.710022F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-797.242004F, -274.346008F), new Vector2(-796.593994F, -275.036011F), new Vector2(-795.765991F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-794.937988F, -276.044006F), new Vector2(-793.984009F, -276.29599F), new Vector2(-792.903992F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-791.823975F, -276.29599F), new Vector2(-790.882019F, -276.049988F), new Vector2(-790.078003F, -275.558014F));
+ builder.AddCubicBezier(new Vector2(-789.273987F, -275.06601F), new Vector2(-788.643982F, -274.376007F), new Vector2(-788.187988F, -273.488007F));
+ builder.AddCubicBezier(new Vector2(-787.731995F, -272.600006F), new Vector2(-787.504028F, -271.579987F), new Vector2(-787.504028F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-787.504028F, -268.723999F), new Vector2(-787.995972F, -267.325989F), new Vector2(-788.97998F, -266.234009F));
+ builder.AddCubicBezier(new Vector2(-789.963989F, -265.141998F), new Vector2(-791.26001F, -264.596008F), new Vector2(-792.867981F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-793.947998F, -264.596008F), new Vector2(-794.90802F, -264.847992F), new Vector2(-795.747986F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-789.916016F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-788.883972F, -262.885986F), new Vector2(-788.062012F, -263.635986F), new Vector2(-787.450012F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-786.838013F, -265.556F), new Vector2(-786.495972F, -266.64801F), new Vector2(-786.424011F, -267.872009F));
+ builder.AddLine(new Vector2(-786.424011F, -273.019989F));
+ builder.AddCubicBezier(new Vector2(-786.495972F, -274.268005F), new Vector2(-786.843994F, -275.365997F), new Vector2(-787.468018F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-788.09198F, -277.261993F), new Vector2(-788.914001F, -278.006012F), new Vector2(-789.934021F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-790.953979F, -279.085999F), new Vector2(-792.112F, -279.355988F), new Vector2(-793.40802F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-794.992004F, -279.355988F), new Vector2(-796.414001F, -278.959991F), new Vector2(-797.674011F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-798.934021F, -277.376007F), new Vector2(-799.929993F, -276.308014F), new Vector2(-800.661987F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-801.393982F, -273.619995F), new Vector2(-801.76001F, -272.108002F), new Vector2(-801.76001F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-801.76001F, -268.747986F), new Vector2(-801.393982F, -267.235992F), new Vector2(-800.661987F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-799.929993F, -264.548004F), new Vector2(-798.934021F, -263.485992F), new Vector2(-797.674011F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-796.414001F, -261.925995F), new Vector2(-794.992004F, -261.536011F), new Vector2(-793.40802F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-792.112F, -261.536011F), new Vector2(-790.947998F, -261.806F), new Vector2(-789.916016F, -262.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1313()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-805.432007F, -261.895996F));
+ builder.AddLine(new Vector2(-805.432007F, -287.600006F));
+ builder.AddLine(new Vector2(-808.671997F, -287.600006F));
+ builder.AddLine(new Vector2(-808.671997F, -261.895996F));
+ builder.AddLine(new Vector2(-805.432007F, -261.895996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1314()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-823.98999F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-824.817993F, -265.855988F), new Vector2(-825.453979F, -266.54599F), new Vector2(-825.89801F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-826.34198F, -268.298004F), new Vector2(-826.564026F, -269.299988F), new Vector2(-826.564026F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-826.564026F, -271.579987F), new Vector2(-826.335999F, -272.593994F), new Vector2(-825.880005F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-825.424011F, -274.346008F), new Vector2(-824.788025F, -275.036011F), new Vector2(-823.971985F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-823.156006F, -276.044006F), new Vector2(-822.219971F, -276.29599F), new Vector2(-821.164001F, -276.29599F));
+ builder.AddCubicBezier(new Vector2(-820.083984F, -276.29599F), new Vector2(-819.135986F, -276.044006F), new Vector2(-818.320007F, -275.540009F));
+ builder.AddCubicBezier(new Vector2(-817.504028F, -275.036011F), new Vector2(-816.862F, -274.346008F), new Vector2(-816.393982F, -273.470001F));
+ builder.AddCubicBezier(new Vector2(-815.926025F, -272.593994F), new Vector2(-815.692017F, -271.59201F), new Vector2(-815.692017F, -270.463989F));
+ builder.AddCubicBezier(new Vector2(-815.692017F, -269.312012F), new Vector2(-815.926025F, -268.298004F), new Vector2(-816.393982F, -267.421997F));
+ builder.AddCubicBezier(new Vector2(-816.862F, -266.54599F), new Vector2(-817.504028F, -265.855988F), new Vector2(-818.320007F, -265.35199F));
+ builder.AddCubicBezier(new Vector2(-819.135986F, -264.847992F), new Vector2(-820.083984F, -264.596008F), new Vector2(-821.164001F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-822.219971F, -264.596008F), new Vector2(-823.161987F, -264.847992F), new Vector2(-823.98999F, -265.35199F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-826.383972F, -254.731995F));
+ builder.AddLine(new Vector2(-826.383972F, -266.179993F));
+ builder.AddLine(new Vector2(-826.995972F, -270.355988F));
+ builder.AddLine(new Vector2(-826.383972F, -274.496002F));
+ builder.AddLine(new Vector2(-826.383972F, -278.996002F));
+ builder.AddLine(new Vector2(-829.624023F, -278.996002F));
+ builder.AddLine(new Vector2(-829.624023F, -254.731995F));
+ builder.AddLine(new Vector2(-826.383972F, -254.731995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-816.393982F, -262.705994F));
+ builder.AddCubicBezier(new Vector2(-815.133972F, -263.485992F), new Vector2(-814.143982F, -264.548004F), new Vector2(-813.424011F, -265.891998F));
+ builder.AddCubicBezier(new Vector2(-812.703979F, -267.235992F), new Vector2(-812.343994F, -268.747986F), new Vector2(-812.343994F, -270.428009F));
+ builder.AddCubicBezier(new Vector2(-812.343994F, -272.108002F), new Vector2(-812.703979F, -273.619995F), new Vector2(-813.424011F, -274.963989F));
+ builder.AddCubicBezier(new Vector2(-814.143982F, -276.308014F), new Vector2(-815.133972F, -277.376007F), new Vector2(-816.393982F, -278.167999F));
+ builder.AddCubicBezier(new Vector2(-817.653992F, -278.959991F), new Vector2(-819.064026F, -279.355988F), new Vector2(-820.624023F, -279.355988F));
+ builder.AddCubicBezier(new Vector2(-821.895996F, -279.355988F), new Vector2(-823.054016F, -279.085999F), new Vector2(-824.098022F, -278.54599F));
+ builder.AddCubicBezier(new Vector2(-825.142029F, -278.006012F), new Vector2(-825.981995F, -277.261993F), new Vector2(-826.617981F, -276.313995F));
+ builder.AddCubicBezier(new Vector2(-827.254028F, -275.365997F), new Vector2(-827.607971F, -274.268005F), new Vector2(-827.679993F, -273.019989F));
+ builder.AddLine(new Vector2(-827.679993F, -267.872009F));
+ builder.AddCubicBezier(new Vector2(-827.607971F, -266.64801F), new Vector2(-827.26001F, -265.556F), new Vector2(-826.635986F, -264.596008F));
+ builder.AddCubicBezier(new Vector2(-826.012024F, -263.635986F), new Vector2(-825.177979F, -262.885986F), new Vector2(-824.133972F, -262.346008F));
+ builder.AddCubicBezier(new Vector2(-823.090027F, -261.806F), new Vector2(-821.919983F, -261.536011F), new Vector2(-820.624023F, -261.536011F));
+ builder.AddCubicBezier(new Vector2(-819.064026F, -261.536011F), new Vector2(-817.653992F, -261.925995F), new Vector2(-816.393982F, -262.705994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1315()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(723.559998F, -305.096008F));
+ builder.AddLine(new Vector2(723.559998F, -322.196014F));
+ builder.AddLine(new Vector2(720.283997F, -322.196014F));
+ builder.AddLine(new Vector2(720.283997F, -318.019989F));
+ builder.AddLine(new Vector2(720.895996F, -313.880005F));
+ builder.AddLine(new Vector2(720.283997F, -309.70401F));
+ builder.AddLine(new Vector2(720.283997F, -305.096008F));
+ builder.AddLine(new Vector2(723.559998F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(712.255981F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(711.416016F, -309.056F), new Vector2(710.762024F, -309.746002F), new Vector2(710.294006F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(709.825989F, -311.497986F), new Vector2(709.59198F, -312.511993F), new Vector2(709.59198F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(709.59198F, -314.791992F), new Vector2(709.825989F, -315.794006F), new Vector2(710.294006F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(710.762024F, -317.54599F), new Vector2(711.409973F, -318.235992F), new Vector2(712.237976F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(713.065979F, -319.243988F), new Vector2(714.02002F, -319.496002F), new Vector2(715.099976F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(716.179993F, -319.496002F), new Vector2(717.122009F, -319.25F), new Vector2(717.926025F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(718.72998F, -318.265991F), new Vector2(719.359985F, -317.575989F), new Vector2(719.815979F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(720.271973F, -315.799988F), new Vector2(720.5F, -314.779999F), new Vector2(720.5F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(720.5F, -311.924011F), new Vector2(720.007996F, -310.526001F), new Vector2(719.023987F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(718.039978F, -308.34201F), new Vector2(716.744019F, -307.79599F), new Vector2(715.135986F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(714.05603F, -307.79599F), new Vector2(713.096008F, -308.048004F), new Vector2(712.255981F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(718.088013F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(719.119995F, -306.085999F), new Vector2(719.942017F, -306.835999F), new Vector2(720.554016F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(721.166016F, -308.756012F), new Vector2(721.507996F, -309.847992F), new Vector2(721.580017F, -311.071991F));
+ builder.AddLine(new Vector2(721.580017F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(721.507996F, -317.467987F), new Vector2(721.159973F, -318.56601F), new Vector2(720.536011F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(719.911987F, -320.462006F), new Vector2(719.090027F, -321.205994F), new Vector2(718.070007F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(717.049988F, -322.286011F), new Vector2(715.892029F, -322.556F), new Vector2(714.596008F, -322.556F));
+ builder.AddCubicBezier(new Vector2(713.012024F, -322.556F), new Vector2(711.590027F, -322.160004F), new Vector2(710.330017F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(709.070007F, -320.575989F), new Vector2(708.073975F, -319.507996F), new Vector2(707.34198F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(706.609985F, -316.820007F), new Vector2(706.244019F, -315.308014F), new Vector2(706.244019F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(706.244019F, -311.947998F), new Vector2(706.609985F, -310.436005F), new Vector2(707.34198F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(708.073975F, -307.747986F), new Vector2(709.070007F, -306.686005F), new Vector2(710.330017F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(711.590027F, -305.126007F), new Vector2(713.012024F, -304.735992F), new Vector2(714.596008F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(715.892029F, -304.735992F), new Vector2(717.05603F, -305.006012F), new Vector2(718.088013F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1316()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(702.392029F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(702.776001F, -326.605988F), new Vector2(702.968018F, -327.104004F), new Vector2(702.968018F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(702.968018F, -328.279999F), new Vector2(702.776001F, -328.765991F), new Vector2(702.392029F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(702.007996F, -329.558014F), new Vector2(701.515991F, -329.756012F), new Vector2(700.916016F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(700.315979F, -329.756012F), new Vector2(699.823975F, -329.558014F), new Vector2(699.440002F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(699.05603F, -328.765991F), new Vector2(698.864014F, -328.279999F), new Vector2(698.864014F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(698.864014F, -327.104004F), new Vector2(699.05603F, -326.605988F), new Vector2(699.440002F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(699.823975F, -325.813995F), new Vector2(700.315979F, -325.615997F), new Vector2(700.916016F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(701.515991F, -325.615997F), new Vector2(702.007996F, -325.813995F), new Vector2(702.392029F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(702.536011F, -305.096008F));
+ builder.AddLine(new Vector2(702.536011F, -322.196014F));
+ builder.AddLine(new Vector2(699.26001F, -322.196014F));
+ builder.AddLine(new Vector2(699.26001F, -305.096008F));
+ builder.AddLine(new Vector2(702.536011F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1317()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(694.544006F, -330.799988F));
+ builder.AddLine(new Vector2(691.268005F, -330.799988F));
+ builder.AddLine(new Vector2(691.268005F, -318.019989F));
+ builder.AddLine(new Vector2(691.880005F, -313.880005F));
+ builder.AddLine(new Vector2(691.268005F, -309.70401F));
+ builder.AddLine(new Vector2(691.268005F, -305.096008F));
+ builder.AddLine(new Vector2(694.544006F, -305.096008F));
+ builder.AddLine(new Vector2(694.544006F, -330.799988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(683.221985F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(682.393982F, -309.026001F), new Vector2(681.745972F, -309.716003F), new Vector2(681.278015F, -310.604004F));
+ builder.AddCubicBezier(new Vector2(680.809998F, -311.492004F), new Vector2(680.575989F, -312.511993F), new Vector2(680.575989F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(680.575989F, -314.81601F), new Vector2(680.809998F, -315.829987F), new Vector2(681.278015F, -316.705994F));
+ builder.AddCubicBezier(new Vector2(681.745972F, -317.582001F), new Vector2(682.388F, -318.265991F), new Vector2(683.203979F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(684.02002F, -319.25F), new Vector2(684.968018F, -319.496002F), new Vector2(686.047974F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(687.127991F, -319.496002F), new Vector2(688.075989F, -319.243988F), new Vector2(688.892029F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(689.708008F, -318.235992F), new Vector2(690.343994F, -317.54599F), new Vector2(690.799988F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(691.255981F, -315.794006F), new Vector2(691.484009F, -314.779999F), new Vector2(691.484009F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(691.484009F, -312.5F), new Vector2(691.255981F, -311.497986F), new Vector2(690.799988F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(690.343994F, -309.746002F), new Vector2(689.708008F, -309.056F), new Vector2(688.892029F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(688.075989F, -308.048004F), new Vector2(687.127991F, -307.79599F), new Vector2(686.047974F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(684.992004F, -307.79599F), new Vector2(684.049988F, -308.041992F), new Vector2(683.221985F, -308.533997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(689.036011F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(690.067993F, -306.085999F), new Vector2(690.895996F, -306.835999F), new Vector2(691.52002F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(692.143982F, -308.756012F), new Vector2(692.492004F, -309.847992F), new Vector2(692.564026F, -311.071991F));
+ builder.AddLine(new Vector2(692.564026F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(692.492004F, -317.467987F), new Vector2(692.138F, -318.56601F), new Vector2(691.502014F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(690.866028F, -320.462006F), new Vector2(690.031982F, -321.205994F), new Vector2(689F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(687.968018F, -322.286011F), new Vector2(686.804016F, -322.556F), new Vector2(685.507996F, -322.556F));
+ builder.AddCubicBezier(new Vector2(683.947998F, -322.556F), new Vector2(682.544006F, -322.160004F), new Vector2(681.296021F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(680.047974F, -320.575989F), new Vector2(679.057983F, -319.507996F), new Vector2(678.325989F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(677.593994F, -316.820007F), new Vector2(677.228027F, -315.308014F), new Vector2(677.228027F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(677.228027F, -311.947998F), new Vector2(677.593994F, -310.436005F), new Vector2(678.325989F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(679.057983F, -307.747986F), new Vector2(680.047974F, -306.686005F), new Vector2(681.296021F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(682.544006F, -305.126007F), new Vector2(683.947998F, -304.735992F), new Vector2(685.507996F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(686.828003F, -304.735992F), new Vector2(688.004028F, -305.006012F), new Vector2(689.036011F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1318()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(670.711975F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(671.888F, -305.996002F), new Vector2(672.895996F, -306.727997F), new Vector2(673.736023F, -307.687988F));
+ builder.AddLine(new Vector2(671.64801F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(671.072021F, -309.140015F), new Vector2(670.382019F, -308.635986F), new Vector2(669.578003F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(668.773987F, -307.963989F), new Vector2(667.892029F, -307.79599F), new Vector2(666.932007F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(665.780029F, -307.79599F), new Vector2(664.76001F, -308.041992F), new Vector2(663.872009F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(662.984009F, -309.026001F), new Vector2(662.299988F, -309.721985F), new Vector2(661.820007F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(661.340027F, -311.522003F), new Vector2(661.099976F, -312.571991F), new Vector2(661.099976F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(661.099976F, -314.947998F), new Vector2(661.328003F, -315.967987F), new Vector2(661.783997F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(662.23999F, -317.696014F), new Vector2(662.888F, -318.368011F), new Vector2(663.728027F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(664.567993F, -319.328003F), new Vector2(665.539978F, -319.567993F), new Vector2(666.643982F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(667.700012F, -319.567993F), new Vector2(668.599976F, -319.346008F), new Vector2(669.343994F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(670.088013F, -318.458008F), new Vector2(670.664001F, -317.834015F), new Vector2(671.072021F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(671.47998F, -316.226013F), new Vector2(671.684021F, -315.247986F), new Vector2(671.684021F, -314.096008F));
+ builder.AddLine(new Vector2(672.872009F, -315.140015F));
+ builder.AddLine(new Vector2(660.164001F, -315.140015F));
+ builder.AddLine(new Vector2(660.164001F, -312.440002F));
+ builder.AddLine(new Vector2(674.599976F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(674.671997F, -312.776001F), new Vector2(674.719971F, -313.082001F), new Vector2(674.744019F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(674.768005F, -313.634003F), new Vector2(674.780029F, -313.891998F), new Vector2(674.780029F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(674.780029F, -315.764008F), new Vector2(674.437988F, -317.216003F), new Vector2(673.754028F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(673.070007F, -319.76001F), new Vector2(672.116028F, -320.756012F), new Vector2(670.892029F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(669.66803F, -322.196014F), new Vector2(668.276001F, -322.556F), new Vector2(666.716003F, -322.556F));
+ builder.AddCubicBezier(new Vector2(665.059998F, -322.556F), new Vector2(663.565979F, -322.165985F), new Vector2(662.234009F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(660.901978F, -320.605988F), new Vector2(659.846008F, -319.544006F), new Vector2(659.065979F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(658.286011F, -316.855988F), new Vector2(657.895996F, -315.343994F), new Vector2(657.895996F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(657.895996F, -311.959991F), new Vector2(658.291992F, -310.436005F), new Vector2(659.083984F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(659.875977F, -307.747986F), new Vector2(660.950012F, -306.686005F), new Vector2(662.30603F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(663.661987F, -305.126007F), new Vector2(665.203979F, -304.735992F), new Vector2(666.932007F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(668.276001F, -304.735992F), new Vector2(669.536011F, -304.988007F), new Vector2(670.711975F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1319()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(654.619995F, -305.096008F));
+ builder.AddLine(new Vector2(654.619995F, -316.075989F));
+ builder.AddCubicBezier(new Vector2(654.619995F, -317.420013F), new Vector2(654.325989F, -318.571991F), new Vector2(653.737976F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(653.150024F, -320.492004F), new Vector2(652.364014F, -321.235992F), new Vector2(651.380005F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(650.395996F, -322.291992F), new Vector2(649.280029F, -322.556F), new Vector2(648.031982F, -322.556F));
+ builder.AddCubicBezier(new Vector2(646.83197F, -322.556F), new Vector2(645.728027F, -322.286011F), new Vector2(644.719971F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(643.711975F, -321.205994F), new Vector2(642.890015F, -320.462006F), new Vector2(642.254028F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(641.617981F, -318.56601F), new Vector2(641.263977F, -317.432007F), new Vector2(641.192017F, -316.112F));
+ builder.AddLine(new Vector2(643.028015F, -315.428009F));
+ builder.AddCubicBezier(new Vector2(643.028015F, -316.291992F), new Vector2(643.219971F, -317.023987F), new Vector2(643.604004F, -317.623993F));
+ builder.AddCubicBezier(new Vector2(643.987976F, -318.223999F), new Vector2(644.497986F, -318.691986F), new Vector2(645.133972F, -319.028015F));
+ builder.AddCubicBezier(new Vector2(645.77002F, -319.364014F), new Vector2(646.484009F, -319.532013F), new Vector2(647.276001F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(648.427979F, -319.532013F), new Vector2(649.393982F, -319.165985F), new Vector2(650.174011F, -318.43399F));
+ builder.AddCubicBezier(new Vector2(650.953979F, -317.701996F), new Vector2(651.343994F, -316.700012F), new Vector2(651.343994F, -315.428009F));
+ builder.AddLine(new Vector2(651.343994F, -305.096008F));
+ builder.AddLine(new Vector2(654.619995F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(643.028015F, -305.096008F));
+ builder.AddLine(new Vector2(643.028015F, -316.112F));
+ builder.AddCubicBezier(new Vector2(643.028015F, -317.432007F), new Vector2(642.745972F, -318.571991F), new Vector2(642.182007F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(641.617981F, -320.492004F), new Vector2(640.849976F, -321.235992F), new Vector2(639.877991F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(638.906006F, -322.291992F), new Vector2(637.820007F, -322.556F), new Vector2(636.619995F, -322.556F));
+ builder.AddCubicBezier(new Vector2(635.395996F, -322.556F), new Vector2(634.291992F, -322.286011F), new Vector2(633.307983F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(632.323975F, -321.205994F), new Vector2(631.549988F, -320.455994F), new Vector2(630.986023F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(630.421997F, -318.536011F), new Vector2(630.140015F, -317.40799F), new Vector2(630.140015F, -316.112F));
+ builder.AddLine(new Vector2(631.471985F, -315.428009F));
+ builder.AddCubicBezier(new Vector2(631.471985F, -316.291992F), new Vector2(631.664001F, -317.023987F), new Vector2(632.047974F, -317.623993F));
+ builder.AddCubicBezier(new Vector2(632.432007F, -318.223999F), new Vector2(632.935974F, -318.691986F), new Vector2(633.559998F, -319.028015F));
+ builder.AddCubicBezier(new Vector2(634.184021F, -319.364014F), new Vector2(634.892029F, -319.532013F), new Vector2(635.684021F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(636.859985F, -319.532013F), new Vector2(637.838013F, -319.165985F), new Vector2(638.617981F, -318.43399F));
+ builder.AddCubicBezier(new Vector2(639.39801F, -317.701996F), new Vector2(639.788025F, -316.700012F), new Vector2(639.788025F, -315.428009F));
+ builder.AddLine(new Vector2(639.788025F, -305.096008F));
+ builder.AddLine(new Vector2(643.028015F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(631.471985F, -305.096008F));
+ builder.AddLine(new Vector2(631.471985F, -322.196014F));
+ builder.AddLine(new Vector2(628.231995F, -322.196014F));
+ builder.AddLine(new Vector2(628.231995F, -305.096008F));
+ builder.AddLine(new Vector2(631.471985F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1320()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(616.028015F, -305.096008F));
+ builder.AddLine(new Vector2(616.028015F, -330.799988F));
+ builder.AddLine(new Vector2(612.788025F, -330.799988F));
+ builder.AddLine(new Vector2(612.788025F, -305.096008F));
+ builder.AddLine(new Vector2(616.028015F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1321()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(608.072021F, -305.096008F));
+ builder.AddLine(new Vector2(608.072021F, -322.196014F));
+ builder.AddLine(new Vector2(604.796021F, -322.196014F));
+ builder.AddLine(new Vector2(604.796021F, -318.019989F));
+ builder.AddLine(new Vector2(605.40802F, -313.880005F));
+ builder.AddLine(new Vector2(604.796021F, -309.70401F));
+ builder.AddLine(new Vector2(604.796021F, -305.096008F));
+ builder.AddLine(new Vector2(608.072021F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(596.768005F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(595.927979F, -309.056F), new Vector2(595.273987F, -309.746002F), new Vector2(594.80603F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(594.338013F, -311.497986F), new Vector2(594.104004F, -312.511993F), new Vector2(594.104004F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(594.104004F, -314.791992F), new Vector2(594.338013F, -315.794006F), new Vector2(594.80603F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(595.273987F, -317.54599F), new Vector2(595.921997F, -318.235992F), new Vector2(596.75F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(597.578003F, -319.243988F), new Vector2(598.531982F, -319.496002F), new Vector2(599.612F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(600.692017F, -319.496002F), new Vector2(601.633972F, -319.25F), new Vector2(602.437988F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(603.242004F, -318.265991F), new Vector2(603.872009F, -317.575989F), new Vector2(604.328003F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(604.783997F, -315.799988F), new Vector2(605.012024F, -314.779999F), new Vector2(605.012024F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(605.012024F, -311.924011F), new Vector2(604.52002F, -310.526001F), new Vector2(603.536011F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(602.552002F, -308.34201F), new Vector2(601.255981F, -307.79599F), new Vector2(599.64801F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(598.567993F, -307.79599F), new Vector2(597.607971F, -308.048004F), new Vector2(596.768005F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(602.599976F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(603.632019F, -306.085999F), new Vector2(604.453979F, -306.835999F), new Vector2(605.065979F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(605.677979F, -308.756012F), new Vector2(606.02002F, -309.847992F), new Vector2(606.09198F, -311.071991F));
+ builder.AddLine(new Vector2(606.09198F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(606.02002F, -317.467987F), new Vector2(605.671997F, -318.56601F), new Vector2(605.047974F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(604.424011F, -320.462006F), new Vector2(603.60199F, -321.205994F), new Vector2(602.58197F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(601.562012F, -322.286011F), new Vector2(600.403992F, -322.556F), new Vector2(599.107971F, -322.556F));
+ builder.AddCubicBezier(new Vector2(597.523987F, -322.556F), new Vector2(596.10199F, -322.160004F), new Vector2(594.84198F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(593.58197F, -320.575989F), new Vector2(592.585999F, -319.507996F), new Vector2(591.854004F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(591.122009F, -316.820007F), new Vector2(590.755981F, -315.308014F), new Vector2(590.755981F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(590.755981F, -311.947998F), new Vector2(591.122009F, -310.436005F), new Vector2(591.854004F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(592.585999F, -307.747986F), new Vector2(593.58197F, -306.686005F), new Vector2(594.84198F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(596.10199F, -305.126007F), new Vector2(597.523987F, -304.735992F), new Vector2(599.107971F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(600.403992F, -304.735992F), new Vector2(601.567993F, -305.006012F), new Vector2(602.599976F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1322()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(586.903992F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(587.288025F, -326.605988F), new Vector2(587.47998F, -327.104004F), new Vector2(587.47998F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(587.47998F, -328.279999F), new Vector2(587.288025F, -328.765991F), new Vector2(586.903992F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(586.52002F, -329.558014F), new Vector2(586.028015F, -329.756012F), new Vector2(585.427979F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(584.828003F, -329.756012F), new Vector2(584.335999F, -329.558014F), new Vector2(583.952026F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(583.567993F, -328.765991F), new Vector2(583.375977F, -328.279999F), new Vector2(583.375977F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(583.375977F, -327.104004F), new Vector2(583.567993F, -326.605988F), new Vector2(583.952026F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(584.335999F, -325.813995F), new Vector2(584.828003F, -325.615997F), new Vector2(585.427979F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(586.028015F, -325.615997F), new Vector2(586.52002F, -325.813995F), new Vector2(586.903992F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(587.047974F, -305.096008F));
+ builder.AddLine(new Vector2(587.047974F, -322.196014F));
+ builder.AddLine(new Vector2(583.771973F, -322.196014F));
+ builder.AddLine(new Vector2(583.771973F, -305.096008F));
+ builder.AddLine(new Vector2(587.047974F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1323()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(577.669983F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(578.809998F, -305.996002F), new Vector2(579.776001F, -306.70401F), new Vector2(580.567993F, -307.615997F));
+ builder.AddLine(new Vector2(578.44397F, -309.776001F));
+ builder.AddCubicBezier(new Vector2(577.892029F, -309.152008F), new Vector2(577.237976F, -308.678009F), new Vector2(576.481995F, -308.354004F));
+ builder.AddCubicBezier(new Vector2(575.726013F, -308.029999F), new Vector2(574.892029F, -307.868011F), new Vector2(573.97998F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(572.900024F, -307.868011F), new Vector2(571.940002F, -308.119995F), new Vector2(571.099976F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(570.26001F, -309.127991F), new Vector2(569.599976F, -309.812012F), new Vector2(569.119995F, -310.675995F));
+ builder.AddCubicBezier(new Vector2(568.640015F, -311.540009F), new Vector2(568.400024F, -312.536011F), new Vector2(568.400024F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(568.400024F, -314.791992F), new Vector2(568.640015F, -315.787994F), new Vector2(569.119995F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(569.599976F, -317.515991F), new Vector2(570.26001F, -318.194F), new Vector2(571.099976F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(571.940002F, -319.178009F), new Vector2(572.900024F, -319.424011F), new Vector2(573.97998F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(574.867981F, -319.424011F), new Vector2(575.695984F, -319.261993F), new Vector2(576.463989F, -318.937988F));
+ builder.AddCubicBezier(new Vector2(577.231995F, -318.614014F), new Vector2(577.880005F, -318.140015F), new Vector2(578.40802F, -317.515991F));
+ builder.AddLine(new Vector2(580.567993F, -319.675995F));
+ builder.AddCubicBezier(new Vector2(579.752014F, -320.612F), new Vector2(578.780029F, -321.325989F), new Vector2(577.651978F, -321.817993F));
+ builder.AddCubicBezier(new Vector2(576.523987F, -322.309998F), new Vector2(575.299988F, -322.556F), new Vector2(573.97998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(572.299988F, -322.556F), new Vector2(570.781982F, -322.165985F), new Vector2(569.426025F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(568.070007F, -320.605988F), new Vector2(567.002014F, -319.544006F), new Vector2(566.221985F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(565.442017F, -316.855988F), new Vector2(565.052002F, -315.343994F), new Vector2(565.052002F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(565.052002F, -312.007996F), new Vector2(565.442017F, -310.502014F), new Vector2(566.221985F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(567.002014F, -307.790009F), new Vector2(568.070007F, -306.716003F), new Vector2(569.426025F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(570.781982F, -305.131989F), new Vector2(572.299988F, -304.735992F), new Vector2(573.97998F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(575.299988F, -304.735992F), new Vector2(576.530029F, -304.988007F), new Vector2(577.669983F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1324()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(550.76001F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(549.919983F, -309.127991F), new Vector2(549.26001F, -309.817993F), new Vector2(548.780029F, -310.694F));
+ builder.AddCubicBezier(new Vector2(548.299988F, -311.570007F), new Vector2(548.059998F, -312.571991F), new Vector2(548.059998F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(548.059998F, -314.803986F), new Vector2(548.299988F, -315.787994F), new Vector2(548.780029F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(549.26001F, -317.515991F), new Vector2(549.919983F, -318.194F), new Vector2(550.76001F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(551.599976F, -319.178009F), new Vector2(552.547974F, -319.424011F), new Vector2(553.604004F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(554.708008F, -319.424011F), new Vector2(555.674011F, -319.178009F), new Vector2(556.502014F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(557.330017F, -318.194F), new Vector2(557.98999F, -317.515991F), new Vector2(558.481995F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(558.973999F, -315.787994F), new Vector2(559.219971F, -314.803986F), new Vector2(559.219971F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(559.219971F, -312.571991F), new Vector2(558.97998F, -311.570007F), new Vector2(558.5F, -310.694F));
+ builder.AddCubicBezier(new Vector2(558.02002F, -309.817993F), new Vector2(557.359985F, -309.127991F), new Vector2(556.52002F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(555.679993F, -308.119995F), new Vector2(554.708008F, -307.868011F), new Vector2(553.604004F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(552.547974F, -307.868011F), new Vector2(551.599976F, -308.119995F), new Vector2(550.76001F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(558.15802F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(559.513977F, -306.716003F), new Vector2(560.588013F, -307.790009F), new Vector2(561.380005F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(562.171997F, -310.502014F), new Vector2(562.567993F, -312.019989F), new Vector2(562.567993F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(562.567993F, -315.355988F), new Vector2(562.171997F, -316.855988F), new Vector2(561.380005F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(560.588013F, -319.544006F), new Vector2(559.513977F, -320.605988F), new Vector2(558.15802F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(556.802002F, -322.165985F), new Vector2(555.283997F, -322.556F), new Vector2(553.604004F, -322.556F));
+ builder.AddCubicBezier(new Vector2(551.947998F, -322.556F), new Vector2(550.447998F, -322.160004F), new Vector2(549.104004F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(547.76001F, -320.575989F), new Vector2(546.692017F, -319.514008F), new Vector2(545.900024F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(545.107971F, -316.850006F), new Vector2(544.711975F, -315.355988F), new Vector2(544.711975F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(544.711975F, -312.019989F), new Vector2(545.107971F, -310.502014F), new Vector2(545.900024F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(546.692017F, -307.790009F), new Vector2(547.76001F, -306.716003F), new Vector2(549.104004F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(550.447998F, -305.131989F), new Vector2(551.947998F, -304.735992F), new Vector2(553.604004F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(555.283997F, -304.735992F), new Vector2(556.802002F, -305.131989F), new Vector2(558.15802F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1325()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(540.481995F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(541.622009F, -307.075989F), new Vector2(542.192017F, -308.347992F), new Vector2(542.192017F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(542.192017F, -311.011993F), new Vector2(541.969971F, -311.864014F), new Vector2(541.526001F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(541.08197F, -313.160004F), new Vector2(540.512024F, -313.675995F), new Vector2(539.815979F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(539.119995F, -314.444F), new Vector2(538.388F, -314.75F), new Vector2(537.619995F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(536.85199F, -315.205994F), new Vector2(536.114014F, -315.428009F), new Vector2(535.406006F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(534.697998F, -315.859985F), new Vector2(534.127991F, -316.123993F), new Vector2(533.695984F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(533.263977F, -316.747986F), new Vector2(533.047974F, -317.191986F), new Vector2(533.047974F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(533.047974F, -318.320007F), new Vector2(533.294006F, -318.764008F), new Vector2(533.786011F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(534.278015F, -319.436005F), new Vector2(534.992004F, -319.604004F), new Vector2(535.927979F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(536.815979F, -319.604004F), new Vector2(537.607971F, -319.436005F), new Vector2(538.304016F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(539F, -318.764008F), new Vector2(539.599976F, -318.283997F), new Vector2(540.104004F, -317.660004F));
+ builder.AddLine(new Vector2(542.192017F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(541.52002F, -320.68399F), new Vector2(540.661987F, -321.385986F), new Vector2(539.617981F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(538.573975F, -322.321991F), new Vector2(537.380005F, -322.556F), new Vector2(536.036011F, -322.556F));
+ builder.AddCubicBezier(new Vector2(534.763977F, -322.556F), new Vector2(533.671997F, -322.35199F), new Vector2(532.76001F, -321.944F));
+ builder.AddCubicBezier(new Vector2(531.848022F, -321.536011F), new Vector2(531.145996F, -320.95401F), new Vector2(530.653992F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(530.161987F, -319.441986F), new Vector2(529.916016F, -318.548004F), new Vector2(529.916016F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(529.916016F, -316.484009F), new Vector2(530.138F, -315.649994F), new Vector2(530.58197F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(531.026001F, -314.377991F), new Vector2(531.596008F, -313.880005F), new Vector2(532.291992F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(532.987976F, -313.160004F), new Vector2(533.726013F, -312.872009F), new Vector2(534.505981F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(535.286011F, -312.440002F), new Vector2(536.023987F, -312.217987F), new Vector2(536.719971F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(537.416016F, -311.761993F), new Vector2(537.986023F, -311.473999F), new Vector2(538.429993F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(538.874023F, -310.778015F), new Vector2(539.096008F, -310.291992F), new Vector2(539.096008F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(539.096008F, -309.044006F), new Vector2(538.820007F, -308.558014F), new Vector2(538.268005F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(537.716003F, -307.862F), new Vector2(536.935974F, -307.687988F), new Vector2(535.927979F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(534.919983F, -307.687988F), new Vector2(534.007996F, -307.873993F), new Vector2(533.192017F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(532.375977F, -308.618011F), new Vector2(531.656006F, -309.187988F), new Vector2(531.031982F, -309.955994F));
+ builder.AddLine(new Vector2(528.94397F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(529.471985F, -307.220001F), new Vector2(530.090027F, -306.661987F), new Vector2(530.797974F, -306.194F));
+ builder.AddCubicBezier(new Vector2(531.505981F, -305.726013F), new Vector2(532.291992F, -305.365997F), new Vector2(533.156006F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(534.02002F, -304.862F), new Vector2(534.932007F, -304.735992F), new Vector2(535.892029F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(537.812012F, -304.735992F), new Vector2(539.34198F, -305.20401F), new Vector2(540.481995F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1326()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(517.65802F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(518.797974F, -307.075989F), new Vector2(519.367981F, -308.347992F), new Vector2(519.367981F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(519.367981F, -311.011993F), new Vector2(519.145996F, -311.864014F), new Vector2(518.702026F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(518.257996F, -313.160004F), new Vector2(517.687988F, -313.675995F), new Vector2(516.992004F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(516.296021F, -314.444F), new Vector2(515.564026F, -314.75F), new Vector2(514.796021F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(514.028015F, -315.205994F), new Vector2(513.289978F, -315.428009F), new Vector2(512.58197F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(511.873993F, -315.859985F), new Vector2(511.303986F, -316.123993F), new Vector2(510.872009F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(510.440002F, -316.747986F), new Vector2(510.223999F, -317.191986F), new Vector2(510.223999F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(510.223999F, -318.320007F), new Vector2(510.470001F, -318.764008F), new Vector2(510.962006F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(511.45401F, -319.436005F), new Vector2(512.16803F, -319.604004F), new Vector2(513.104004F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(513.992004F, -319.604004F), new Vector2(514.783997F, -319.436005F), new Vector2(515.47998F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(516.176025F, -318.764008F), new Vector2(516.776001F, -318.283997F), new Vector2(517.280029F, -317.660004F));
+ builder.AddLine(new Vector2(519.367981F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(518.695984F, -320.68399F), new Vector2(517.838013F, -321.385986F), new Vector2(516.794006F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(515.75F, -322.321991F), new Vector2(514.55603F, -322.556F), new Vector2(513.211975F, -322.556F));
+ builder.AddCubicBezier(new Vector2(511.940002F, -322.556F), new Vector2(510.847992F, -322.35199F), new Vector2(509.936005F, -321.944F));
+ builder.AddCubicBezier(new Vector2(509.023987F, -321.536011F), new Vector2(508.321991F, -320.95401F), new Vector2(507.829987F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(507.338013F, -319.441986F), new Vector2(507.09201F, -318.548004F), new Vector2(507.09201F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(507.09201F, -316.484009F), new Vector2(507.313995F, -315.649994F), new Vector2(507.757996F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(508.201996F, -314.377991F), new Vector2(508.772003F, -313.880005F), new Vector2(509.467987F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(510.164001F, -313.160004F), new Vector2(510.902008F, -312.872009F), new Vector2(511.682007F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(512.461975F, -312.440002F), new Vector2(513.200012F, -312.217987F), new Vector2(513.895996F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(514.59198F, -311.761993F), new Vector2(515.161987F, -311.473999F), new Vector2(515.606018F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(516.049988F, -310.778015F), new Vector2(516.271973F, -310.291992F), new Vector2(516.271973F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(516.271973F, -309.044006F), new Vector2(515.995972F, -308.558014F), new Vector2(515.44397F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(514.892029F, -307.862F), new Vector2(514.112F, -307.687988F), new Vector2(513.104004F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(512.096008F, -307.687988F), new Vector2(511.18399F, -307.873993F), new Vector2(510.368011F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(509.552002F, -308.618011F), new Vector2(508.832001F, -309.187988F), new Vector2(508.208008F, -309.955994F));
+ builder.AddLine(new Vector2(506.119995F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(506.64801F, -307.220001F), new Vector2(507.265991F, -306.661987F), new Vector2(507.973999F, -306.194F));
+ builder.AddCubicBezier(new Vector2(508.682007F, -305.726013F), new Vector2(509.467987F, -305.365997F), new Vector2(510.332001F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(511.196014F, -304.862F), new Vector2(512.107971F, -304.735992F), new Vector2(513.067993F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(514.987976F, -304.735992F), new Vector2(516.518005F, -305.20401F), new Vector2(517.65802F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1327()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(502.286011F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(503.425995F, -307.075989F), new Vector2(503.996002F, -308.347992F), new Vector2(503.996002F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(503.996002F, -311.011993F), new Vector2(503.773987F, -311.864014F), new Vector2(503.329987F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(502.885986F, -313.160004F), new Vector2(502.31601F, -313.675995F), new Vector2(501.619995F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(500.924011F, -314.444F), new Vector2(500.191986F, -314.75F), new Vector2(499.424011F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(498.656006F, -315.205994F), new Vector2(497.917999F, -315.428009F), new Vector2(497.209991F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(496.502014F, -315.859985F), new Vector2(495.932007F, -316.123993F), new Vector2(495.5F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(495.067993F, -316.747986F), new Vector2(494.85199F, -317.191986F), new Vector2(494.85199F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(494.85199F, -318.320007F), new Vector2(495.097992F, -318.764008F), new Vector2(495.589996F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(496.082001F, -319.436005F), new Vector2(496.79599F, -319.604004F), new Vector2(497.731995F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(498.619995F, -319.604004F), new Vector2(499.411987F, -319.436005F), new Vector2(500.108002F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(500.803986F, -318.764008F), new Vector2(501.403992F, -318.283997F), new Vector2(501.90799F, -317.660004F));
+ builder.AddLine(new Vector2(503.996002F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(503.324005F, -320.68399F), new Vector2(502.466003F, -321.385986F), new Vector2(501.421997F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(500.377991F, -322.321991F), new Vector2(499.18399F, -322.556F), new Vector2(497.839996F, -322.556F));
+ builder.AddCubicBezier(new Vector2(496.567993F, -322.556F), new Vector2(495.476013F, -322.35199F), new Vector2(494.563995F, -321.944F));
+ builder.AddCubicBezier(new Vector2(493.652008F, -321.536011F), new Vector2(492.950012F, -320.95401F), new Vector2(492.458008F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(491.966003F, -319.441986F), new Vector2(491.720001F, -318.548004F), new Vector2(491.720001F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(491.720001F, -316.484009F), new Vector2(491.941986F, -315.649994F), new Vector2(492.385986F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(492.829987F, -314.377991F), new Vector2(493.399994F, -313.880005F), new Vector2(494.096008F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(494.791992F, -313.160004F), new Vector2(495.529999F, -312.872009F), new Vector2(496.309998F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(497.089996F, -312.440002F), new Vector2(497.828003F, -312.217987F), new Vector2(498.523987F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(499.220001F, -311.761993F), new Vector2(499.790009F, -311.473999F), new Vector2(500.234009F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(500.678009F, -310.778015F), new Vector2(500.899994F, -310.291992F), new Vector2(500.899994F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(500.899994F, -309.044006F), new Vector2(500.623993F, -308.558014F), new Vector2(500.071991F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(499.519989F, -307.862F), new Vector2(498.73999F, -307.687988F), new Vector2(497.731995F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(496.723999F, -307.687988F), new Vector2(495.812012F, -307.873993F), new Vector2(494.996002F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(494.179993F, -308.618011F), new Vector2(493.459991F, -309.187988F), new Vector2(492.835999F, -309.955994F));
+ builder.AddLine(new Vector2(490.747986F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(491.276001F, -307.220001F), new Vector2(491.894012F, -306.661987F), new Vector2(492.60199F, -306.194F));
+ builder.AddCubicBezier(new Vector2(493.309998F, -305.726013F), new Vector2(494.096008F, -305.365997F), new Vector2(494.959991F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(495.824005F, -304.862F), new Vector2(496.735992F, -304.735992F), new Vector2(497.696014F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(499.615997F, -304.735992F), new Vector2(501.145996F, -305.20401F), new Vector2(502.286011F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1328()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(476.85199F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(476.011993F, -309.127991F), new Vector2(475.35199F, -309.817993F), new Vector2(474.872009F, -310.694F));
+ builder.AddCubicBezier(new Vector2(474.391998F, -311.570007F), new Vector2(474.152008F, -312.571991F), new Vector2(474.152008F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(474.152008F, -314.803986F), new Vector2(474.391998F, -315.787994F), new Vector2(474.872009F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(475.35199F, -317.515991F), new Vector2(476.011993F, -318.194F), new Vector2(476.85199F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(477.691986F, -319.178009F), new Vector2(478.640015F, -319.424011F), new Vector2(479.696014F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(480.799988F, -319.424011F), new Vector2(481.765991F, -319.178009F), new Vector2(482.593994F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(483.421997F, -318.194F), new Vector2(484.082001F, -317.515991F), new Vector2(484.574005F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(485.06601F, -315.787994F), new Vector2(485.312012F, -314.803986F), new Vector2(485.312012F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(485.312012F, -312.571991F), new Vector2(485.071991F, -311.570007F), new Vector2(484.59201F, -310.694F));
+ builder.AddCubicBezier(new Vector2(484.112F, -309.817993F), new Vector2(483.451996F, -309.127991F), new Vector2(482.612F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(481.772003F, -308.119995F), new Vector2(480.799988F, -307.868011F), new Vector2(479.696014F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(478.640015F, -307.868011F), new Vector2(477.691986F, -308.119995F), new Vector2(476.85199F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(484.25F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(485.605988F, -306.716003F), new Vector2(486.679993F, -307.790009F), new Vector2(487.471985F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(488.264008F, -310.502014F), new Vector2(488.660004F, -312.019989F), new Vector2(488.660004F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(488.660004F, -315.355988F), new Vector2(488.264008F, -316.855988F), new Vector2(487.471985F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(486.679993F, -319.544006F), new Vector2(485.605988F, -320.605988F), new Vector2(484.25F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(482.894012F, -322.165985F), new Vector2(481.376007F, -322.556F), new Vector2(479.696014F, -322.556F));
+ builder.AddCubicBezier(new Vector2(478.040009F, -322.556F), new Vector2(476.540009F, -322.160004F), new Vector2(475.196014F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(473.85199F, -320.575989F), new Vector2(472.783997F, -319.514008F), new Vector2(471.992004F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(471.200012F, -316.850006F), new Vector2(470.803986F, -315.355988F), new Vector2(470.803986F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(470.803986F, -312.019989F), new Vector2(471.200012F, -310.502014F), new Vector2(471.992004F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(472.783997F, -307.790009F), new Vector2(473.85199F, -306.716003F), new Vector2(475.196014F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(476.540009F, -305.131989F), new Vector2(478.040009F, -304.735992F), new Vector2(479.696014F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(481.376007F, -304.735992F), new Vector2(482.894012F, -305.131989F), new Vector2(484.25F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1329()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(462.415985F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(463.18399F, -319.112F), new Vector2(464.167999F, -319.496002F), new Vector2(465.368011F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(465.944F, -319.496002F), new Vector2(466.447998F, -319.411987F), new Vector2(466.880005F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(467.312012F, -319.075989F), new Vector2(467.708008F, -318.799988F), new Vector2(468.067993F, -318.415985F));
+ builder.AddLine(new Vector2(470.191986F, -320.612F));
+ builder.AddCubicBezier(new Vector2(469.59201F, -321.308014F), new Vector2(468.944F, -321.806F), new Vector2(468.247986F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(467.552002F, -322.406006F), new Vector2(466.772003F, -322.556F), new Vector2(465.90799F, -322.556F));
+ builder.AddCubicBezier(new Vector2(464.011993F, -322.556F), new Vector2(462.559998F, -321.90799F), new Vector2(461.552002F, -320.612F));
+ builder.AddCubicBezier(new Vector2(460.544006F, -319.31601F), new Vector2(460.040009F, -317.575989F), new Vector2(460.040009F, -315.391998F));
+ builder.AddLine(new Vector2(461.264008F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(461.264008F, -316.399994F), new Vector2(461.64801F, -317.575989F), new Vector2(462.415985F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(461.264008F, -305.096008F));
+ builder.AddLine(new Vector2(461.264008F, -322.196014F));
+ builder.AddLine(new Vector2(458.023987F, -322.196014F));
+ builder.AddLine(new Vector2(458.023987F, -305.096008F));
+ builder.AddLine(new Vector2(461.264008F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1330()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(451.921997F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(453.062012F, -305.996002F), new Vector2(454.028015F, -306.70401F), new Vector2(454.820007F, -307.615997F));
+ builder.AddLine(new Vector2(452.696014F, -309.776001F));
+ builder.AddCubicBezier(new Vector2(452.144012F, -309.152008F), new Vector2(451.48999F, -308.678009F), new Vector2(450.734009F, -308.354004F));
+ builder.AddCubicBezier(new Vector2(449.977997F, -308.029999F), new Vector2(449.144012F, -307.868011F), new Vector2(448.231995F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(447.152008F, -307.868011F), new Vector2(446.191986F, -308.119995F), new Vector2(445.35199F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(444.511993F, -309.127991F), new Vector2(443.85199F, -309.812012F), new Vector2(443.372009F, -310.675995F));
+ builder.AddCubicBezier(new Vector2(442.891998F, -311.540009F), new Vector2(442.652008F, -312.536011F), new Vector2(442.652008F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(442.652008F, -314.791992F), new Vector2(442.891998F, -315.787994F), new Vector2(443.372009F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(443.85199F, -317.515991F), new Vector2(444.511993F, -318.194F), new Vector2(445.35199F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(446.191986F, -319.178009F), new Vector2(447.152008F, -319.424011F), new Vector2(448.231995F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(449.119995F, -319.424011F), new Vector2(449.947998F, -319.261993F), new Vector2(450.716003F, -318.937988F));
+ builder.AddCubicBezier(new Vector2(451.484009F, -318.614014F), new Vector2(452.131989F, -318.140015F), new Vector2(452.660004F, -317.515991F));
+ builder.AddLine(new Vector2(454.820007F, -319.675995F));
+ builder.AddCubicBezier(new Vector2(454.003998F, -320.612F), new Vector2(453.032013F, -321.325989F), new Vector2(451.903992F, -321.817993F));
+ builder.AddCubicBezier(new Vector2(450.776001F, -322.309998F), new Vector2(449.552002F, -322.556F), new Vector2(448.231995F, -322.556F));
+ builder.AddCubicBezier(new Vector2(446.552002F, -322.556F), new Vector2(445.033997F, -322.165985F), new Vector2(443.678009F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(442.321991F, -320.605988F), new Vector2(441.253998F, -319.544006F), new Vector2(440.473999F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(439.694F, -316.855988F), new Vector2(439.303986F, -315.343994F), new Vector2(439.303986F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(439.303986F, -312.007996F), new Vector2(439.694F, -310.502014F), new Vector2(440.473999F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(441.253998F, -307.790009F), new Vector2(442.321991F, -306.716003F), new Vector2(443.678009F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(445.033997F, -305.131989F), new Vector2(446.552002F, -304.735992F), new Vector2(448.231995F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(449.552002F, -304.735992F), new Vector2(450.782013F, -304.988007F), new Vector2(451.921997F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1331()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(435.70401F, -305.096008F));
+ builder.AddLine(new Vector2(435.70401F, -322.196014F));
+ builder.AddLine(new Vector2(432.428009F, -322.196014F));
+ builder.AddLine(new Vector2(432.428009F, -318.019989F));
+ builder.AddLine(new Vector2(433.040009F, -313.880005F));
+ builder.AddLine(new Vector2(432.428009F, -309.70401F));
+ builder.AddLine(new Vector2(432.428009F, -305.096008F));
+ builder.AddLine(new Vector2(435.70401F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(424.399994F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(423.559998F, -309.056F), new Vector2(422.906006F, -309.746002F), new Vector2(422.437988F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(421.970001F, -311.497986F), new Vector2(421.735992F, -312.511993F), new Vector2(421.735992F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(421.735992F, -314.791992F), new Vector2(421.970001F, -315.794006F), new Vector2(422.437988F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(422.906006F, -317.54599F), new Vector2(423.553986F, -318.235992F), new Vector2(424.381989F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(425.209991F, -319.243988F), new Vector2(426.164001F, -319.496002F), new Vector2(427.243988F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(428.324005F, -319.496002F), new Vector2(429.265991F, -319.25F), new Vector2(430.070007F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(430.873993F, -318.265991F), new Vector2(431.503998F, -317.575989F), new Vector2(431.959991F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(432.415985F, -315.799988F), new Vector2(432.644012F, -314.779999F), new Vector2(432.644012F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(432.644012F, -311.924011F), new Vector2(432.152008F, -310.526001F), new Vector2(431.167999F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(430.18399F, -308.34201F), new Vector2(428.888F, -307.79599F), new Vector2(427.279999F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(426.200012F, -307.79599F), new Vector2(425.23999F, -308.048004F), new Vector2(424.399994F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(430.231995F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(431.264008F, -306.085999F), new Vector2(432.085999F, -306.835999F), new Vector2(432.697998F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(433.309998F, -308.756012F), new Vector2(433.652008F, -309.847992F), new Vector2(433.723999F, -311.071991F));
+ builder.AddLine(new Vector2(433.723999F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(433.652008F, -317.467987F), new Vector2(433.303986F, -318.56601F), new Vector2(432.679993F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(432.056F, -320.462006F), new Vector2(431.234009F, -321.205994F), new Vector2(430.213989F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(429.194F, -322.286011F), new Vector2(428.036011F, -322.556F), new Vector2(426.73999F, -322.556F));
+ builder.AddCubicBezier(new Vector2(425.156006F, -322.556F), new Vector2(423.734009F, -322.160004F), new Vector2(422.473999F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(421.213989F, -320.575989F), new Vector2(420.217987F, -319.507996F), new Vector2(419.485992F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(418.753998F, -316.820007F), new Vector2(418.388F, -315.308014F), new Vector2(418.388F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(418.388F, -311.947998F), new Vector2(418.753998F, -310.436005F), new Vector2(419.485992F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(420.217987F, -307.747986F), new Vector2(421.213989F, -306.686005F), new Vector2(422.473999F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(423.734009F, -305.126007F), new Vector2(425.156006F, -304.735992F), new Vector2(426.73999F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(428.036011F, -304.735992F), new Vector2(429.200012F, -305.006012F), new Vector2(430.231995F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1332()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(396.697998F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(395.869995F, -309.056F), new Vector2(395.234009F, -309.746002F), new Vector2(394.790009F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(394.346008F, -311.497986F), new Vector2(394.123993F, -312.5F), new Vector2(394.123993F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(394.123993F, -314.779999F), new Vector2(394.35199F, -315.794006F), new Vector2(394.808014F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(395.264008F, -317.54599F), new Vector2(395.899994F, -318.235992F), new Vector2(396.716003F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(397.532013F, -319.243988F), new Vector2(398.467987F, -319.496002F), new Vector2(399.523987F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(400.604004F, -319.496002F), new Vector2(401.552002F, -319.243988F), new Vector2(402.368011F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(403.18399F, -318.235992F), new Vector2(403.825989F, -317.54599F), new Vector2(404.294006F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(404.761993F, -315.794006F), new Vector2(404.996002F, -314.791992F), new Vector2(404.996002F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(404.996002F, -312.511993F), new Vector2(404.761993F, -311.497986F), new Vector2(404.294006F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(403.825989F, -309.746002F), new Vector2(403.18399F, -309.056F), new Vector2(402.368011F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(401.552002F, -308.048004F), new Vector2(400.604004F, -307.79599F), new Vector2(399.523987F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(398.467987F, -307.79599F), new Vector2(397.526001F, -308.048004F), new Vector2(396.697998F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(394.303986F, -297.932007F));
+ builder.AddLine(new Vector2(394.303986F, -309.380005F));
+ builder.AddLine(new Vector2(393.691986F, -313.556F));
+ builder.AddLine(new Vector2(394.303986F, -317.696014F));
+ builder.AddLine(new Vector2(394.303986F, -322.196014F));
+ builder.AddLine(new Vector2(391.063995F, -322.196014F));
+ builder.AddLine(new Vector2(391.063995F, -297.932007F));
+ builder.AddLine(new Vector2(394.303986F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(404.294006F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(405.553986F, -306.686005F), new Vector2(406.544006F, -307.747986F), new Vector2(407.264008F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(407.984009F, -310.436005F), new Vector2(408.343994F, -311.947998F), new Vector2(408.343994F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(408.343994F, -315.308014F), new Vector2(407.984009F, -316.820007F), new Vector2(407.264008F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(406.544006F, -319.507996F), new Vector2(405.553986F, -320.575989F), new Vector2(404.294006F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(403.033997F, -322.160004F), new Vector2(401.623993F, -322.556F), new Vector2(400.063995F, -322.556F));
+ builder.AddCubicBezier(new Vector2(398.791992F, -322.556F), new Vector2(397.634003F, -322.286011F), new Vector2(396.589996F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(395.54599F, -321.205994F), new Vector2(394.705994F, -320.462006F), new Vector2(394.070007F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(393.43399F, -318.56601F), new Vector2(393.079987F, -317.467987F), new Vector2(393.007996F, -316.220001F));
+ builder.AddLine(new Vector2(393.007996F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(393.079987F, -309.847992F), new Vector2(393.428009F, -308.756012F), new Vector2(394.052002F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(394.675995F, -306.835999F), new Vector2(395.51001F, -306.085999F), new Vector2(396.553986F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(397.597992F, -305.006012F), new Vector2(398.768005F, -304.735992F), new Vector2(400.063995F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(401.623993F, -304.735992F), new Vector2(403.033997F, -305.126007F), new Vector2(404.294006F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1333()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(386.131989F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(386.515991F, -326.605988F), new Vector2(386.708008F, -327.104004F), new Vector2(386.708008F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(386.708008F, -328.279999F), new Vector2(386.515991F, -328.765991F), new Vector2(386.131989F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(385.747986F, -329.558014F), new Vector2(385.256012F, -329.756012F), new Vector2(384.656006F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(384.056F, -329.756012F), new Vector2(383.563995F, -329.558014F), new Vector2(383.179993F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(382.79599F, -328.765991F), new Vector2(382.604004F, -328.279999F), new Vector2(382.604004F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(382.604004F, -327.104004F), new Vector2(382.79599F, -326.605988F), new Vector2(383.179993F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(383.563995F, -325.813995F), new Vector2(384.056F, -325.615997F), new Vector2(384.656006F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(385.256012F, -325.615997F), new Vector2(385.747986F, -325.813995F), new Vector2(386.131989F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(386.276001F, -305.096008F));
+ builder.AddLine(new Vector2(386.276001F, -322.196014F));
+ builder.AddLine(new Vector2(383F, -322.196014F));
+ builder.AddLine(new Vector2(383F, -305.096008F));
+ builder.AddLine(new Vector2(386.276001F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1334()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(366.511993F, -305.096008F));
+ builder.AddLine(new Vector2(366.511993F, -330.799988F));
+ builder.AddLine(new Vector2(363.272003F, -330.799988F));
+ builder.AddLine(new Vector2(363.272003F, -305.096008F));
+ builder.AddLine(new Vector2(366.511993F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(378.608002F, -305.096008F));
+ builder.AddLine(new Vector2(378.608002F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(378.608002F, -317.059998F), new Vector2(378.320007F, -318.247986F), new Vector2(377.743988F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(377.167999F, -320.312012F), new Vector2(376.381989F, -321.115997F), new Vector2(375.385986F, -321.691986F));
+ builder.AddCubicBezier(new Vector2(374.390015F, -322.268005F), new Vector2(373.243988F, -322.556F), new Vector2(371.947998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(370.652008F, -322.556F), new Vector2(369.488007F, -322.261993F), new Vector2(368.455994F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(367.424011F, -321.085999F), new Vector2(366.619995F, -320.287994F), new Vector2(366.044006F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(365.467987F, -318.272003F), new Vector2(365.179993F, -317.119995F), new Vector2(365.179993F, -315.824005F));
+ builder.AddLine(new Vector2(366.511993F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(366.511993F, -315.932007F), new Vector2(366.70401F, -316.700012F), new Vector2(367.088013F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(367.471985F, -318.044006F), new Vector2(368F, -318.571991F), new Vector2(368.671997F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(369.343994F, -319.339996F), new Vector2(370.112F, -319.532013F), new Vector2(370.976013F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(372.272003F, -319.532013F), new Vector2(373.321991F, -319.112F), new Vector2(374.126007F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(374.929993F, -317.432007F), new Vector2(375.332001F, -316.364014F), new Vector2(375.332001F, -315.067993F));
+ builder.AddLine(new Vector2(375.332001F, -305.096008F));
+ builder.AddLine(new Vector2(378.608002F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1335()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(357.925995F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(359.06601F, -307.075989F), new Vector2(359.635986F, -308.347992F), new Vector2(359.635986F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(359.635986F, -311.011993F), new Vector2(359.414001F, -311.864014F), new Vector2(358.970001F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(358.526001F, -313.160004F), new Vector2(357.955994F, -313.675995F), new Vector2(357.26001F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(356.563995F, -314.444F), new Vector2(355.832001F, -314.75F), new Vector2(355.063995F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(354.29599F, -315.205994F), new Vector2(353.558014F, -315.428009F), new Vector2(352.850006F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(352.141998F, -315.859985F), new Vector2(351.571991F, -316.123993F), new Vector2(351.140015F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(350.708008F, -316.747986F), new Vector2(350.492004F, -317.191986F), new Vector2(350.492004F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(350.492004F, -318.320007F), new Vector2(350.738007F, -318.764008F), new Vector2(351.230011F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(351.721985F, -319.436005F), new Vector2(352.436005F, -319.604004F), new Vector2(353.372009F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(354.26001F, -319.604004F), new Vector2(355.052002F, -319.436005F), new Vector2(355.747986F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(356.444F, -318.764008F), new Vector2(357.044006F, -318.283997F), new Vector2(357.548004F, -317.660004F));
+ builder.AddLine(new Vector2(359.635986F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(358.963989F, -320.68399F), new Vector2(358.105988F, -321.385986F), new Vector2(357.062012F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(356.018005F, -322.321991F), new Vector2(354.824005F, -322.556F), new Vector2(353.480011F, -322.556F));
+ builder.AddCubicBezier(new Vector2(352.208008F, -322.556F), new Vector2(351.115997F, -322.35199F), new Vector2(350.20401F, -321.944F));
+ builder.AddCubicBezier(new Vector2(349.291992F, -321.536011F), new Vector2(348.589996F, -320.95401F), new Vector2(348.097992F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(347.605988F, -319.441986F), new Vector2(347.359985F, -318.548004F), new Vector2(347.359985F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(347.359985F, -316.484009F), new Vector2(347.582001F, -315.649994F), new Vector2(348.026001F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(348.470001F, -314.377991F), new Vector2(349.040009F, -313.880005F), new Vector2(349.735992F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(350.432007F, -313.160004F), new Vector2(351.170013F, -312.872009F), new Vector2(351.950012F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(352.730011F, -312.440002F), new Vector2(353.467987F, -312.217987F), new Vector2(354.164001F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(354.859985F, -311.761993F), new Vector2(355.429993F, -311.473999F), new Vector2(355.873993F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(356.317993F, -310.778015F), new Vector2(356.540009F, -310.291992F), new Vector2(356.540009F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(356.540009F, -309.044006F), new Vector2(356.264008F, -308.558014F), new Vector2(355.712006F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(355.160004F, -307.862F), new Vector2(354.380005F, -307.687988F), new Vector2(353.372009F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(352.364014F, -307.687988F), new Vector2(351.451996F, -307.873993F), new Vector2(350.635986F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(349.820007F, -308.618011F), new Vector2(349.100006F, -309.187988F), new Vector2(348.476013F, -309.955994F));
+ builder.AddLine(new Vector2(346.388F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(346.915985F, -307.220001F), new Vector2(347.533997F, -306.661987F), new Vector2(348.242004F, -306.194F));
+ builder.AddCubicBezier(new Vector2(348.950012F, -305.726013F), new Vector2(349.735992F, -305.365997F), new Vector2(350.600006F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(351.463989F, -304.862F), new Vector2(352.376007F, -304.735992F), new Vector2(353.335999F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(355.256012F, -304.735992F), new Vector2(356.786011F, -305.20401F), new Vector2(357.925995F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1336()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(338.216003F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(338.984009F, -319.112F), new Vector2(339.967987F, -319.496002F), new Vector2(341.167999F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(341.743988F, -319.496002F), new Vector2(342.247986F, -319.411987F), new Vector2(342.679993F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(343.112F, -319.075989F), new Vector2(343.507996F, -318.799988F), new Vector2(343.868011F, -318.415985F));
+ builder.AddLine(new Vector2(345.992004F, -320.612F));
+ builder.AddCubicBezier(new Vector2(345.391998F, -321.308014F), new Vector2(344.743988F, -321.806F), new Vector2(344.048004F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(343.35199F, -322.406006F), new Vector2(342.571991F, -322.556F), new Vector2(341.708008F, -322.556F));
+ builder.AddCubicBezier(new Vector2(339.812012F, -322.556F), new Vector2(338.359985F, -321.90799F), new Vector2(337.35199F, -320.612F));
+ builder.AddCubicBezier(new Vector2(336.343994F, -319.31601F), new Vector2(335.839996F, -317.575989F), new Vector2(335.839996F, -315.391998F));
+ builder.AddLine(new Vector2(337.063995F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(337.063995F, -316.399994F), new Vector2(337.447998F, -317.575989F), new Vector2(338.216003F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(337.063995F, -305.096008F));
+ builder.AddLine(new Vector2(337.063995F, -322.196014F));
+ builder.AddLine(new Vector2(333.824005F, -322.196014F));
+ builder.AddLine(new Vector2(333.824005F, -305.096008F));
+ builder.AddLine(new Vector2(337.063995F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1337()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(318.415985F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(317.575989F, -309.127991F), new Vector2(316.915985F, -309.817993F), new Vector2(316.436005F, -310.694F));
+ builder.AddCubicBezier(new Vector2(315.955994F, -311.570007F), new Vector2(315.716003F, -312.571991F), new Vector2(315.716003F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(315.716003F, -314.803986F), new Vector2(315.955994F, -315.787994F), new Vector2(316.436005F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(316.915985F, -317.515991F), new Vector2(317.575989F, -318.194F), new Vector2(318.415985F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(319.256012F, -319.178009F), new Vector2(320.20401F, -319.424011F), new Vector2(321.26001F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(322.364014F, -319.424011F), new Vector2(323.329987F, -319.178009F), new Vector2(324.15799F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(324.985992F, -318.194F), new Vector2(325.645996F, -317.515991F), new Vector2(326.138F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(326.630005F, -315.787994F), new Vector2(326.876007F, -314.803986F), new Vector2(326.876007F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(326.876007F, -312.571991F), new Vector2(326.635986F, -311.570007F), new Vector2(326.156006F, -310.694F));
+ builder.AddCubicBezier(new Vector2(325.675995F, -309.817993F), new Vector2(325.015991F, -309.127991F), new Vector2(324.175995F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(323.335999F, -308.119995F), new Vector2(322.364014F, -307.868011F), new Vector2(321.26001F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(320.20401F, -307.868011F), new Vector2(319.256012F, -308.119995F), new Vector2(318.415985F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(325.813995F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(327.170013F, -306.716003F), new Vector2(328.243988F, -307.790009F), new Vector2(329.036011F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(329.828003F, -310.502014F), new Vector2(330.223999F, -312.019989F), new Vector2(330.223999F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(330.223999F, -315.355988F), new Vector2(329.828003F, -316.855988F), new Vector2(329.036011F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(328.243988F, -319.544006F), new Vector2(327.170013F, -320.605988F), new Vector2(325.813995F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(324.458008F, -322.165985F), new Vector2(322.940002F, -322.556F), new Vector2(321.26001F, -322.556F));
+ builder.AddCubicBezier(new Vector2(319.604004F, -322.556F), new Vector2(318.104004F, -322.160004F), new Vector2(316.76001F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(315.415985F, -320.575989F), new Vector2(314.347992F, -319.514008F), new Vector2(313.556F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(312.764008F, -316.850006F), new Vector2(312.368011F, -315.355988F), new Vector2(312.368011F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(312.368011F, -312.019989F), new Vector2(312.764008F, -310.502014F), new Vector2(313.556F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(314.347992F, -307.790009F), new Vector2(315.415985F, -306.716003F), new Vector2(316.76001F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(318.104004F, -305.131989F), new Vector2(319.604004F, -304.735992F), new Vector2(321.26001F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(322.940002F, -304.735992F), new Vector2(324.458008F, -305.131989F), new Vector2(325.813995F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1338()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(308.138F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(309.278015F, -307.075989F), new Vector2(309.847992F, -308.347992F), new Vector2(309.847992F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(309.847992F, -311.011993F), new Vector2(309.626007F, -311.864014F), new Vector2(309.182007F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(308.738007F, -313.160004F), new Vector2(308.167999F, -313.675995F), new Vector2(307.471985F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(306.776001F, -314.444F), new Vector2(306.044006F, -314.75F), new Vector2(305.276001F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(304.507996F, -315.205994F), new Vector2(303.769989F, -315.428009F), new Vector2(303.062012F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(302.354004F, -315.859985F), new Vector2(301.783997F, -316.123993F), new Vector2(301.35199F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(300.920013F, -316.747986F), new Vector2(300.70401F, -317.191986F), new Vector2(300.70401F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(300.70401F, -318.320007F), new Vector2(300.950012F, -318.764008F), new Vector2(301.441986F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(301.93399F, -319.436005F), new Vector2(302.64801F, -319.604004F), new Vector2(303.584015F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(304.471985F, -319.604004F), new Vector2(305.264008F, -319.436005F), new Vector2(305.959991F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(306.656006F, -318.764008F), new Vector2(307.256012F, -318.283997F), new Vector2(307.76001F, -317.660004F));
+ builder.AddLine(new Vector2(309.847992F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(309.175995F, -320.68399F), new Vector2(308.317993F, -321.385986F), new Vector2(307.273987F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(306.230011F, -322.321991F), new Vector2(305.036011F, -322.556F), new Vector2(303.691986F, -322.556F));
+ builder.AddCubicBezier(new Vector2(302.420013F, -322.556F), new Vector2(301.328003F, -322.35199F), new Vector2(300.415985F, -321.944F));
+ builder.AddCubicBezier(new Vector2(299.503998F, -321.536011F), new Vector2(298.802002F, -320.95401F), new Vector2(298.309998F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(297.817993F, -319.441986F), new Vector2(297.571991F, -318.548004F), new Vector2(297.571991F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(297.571991F, -316.484009F), new Vector2(297.794006F, -315.649994F), new Vector2(298.238007F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(298.682007F, -314.377991F), new Vector2(299.252014F, -313.880005F), new Vector2(299.947998F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(300.644012F, -313.160004F), new Vector2(301.381989F, -312.872009F), new Vector2(302.161987F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(302.941986F, -312.440002F), new Vector2(303.679993F, -312.217987F), new Vector2(304.376007F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(305.071991F, -311.761993F), new Vector2(305.641998F, -311.473999F), new Vector2(306.085999F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(306.529999F, -310.778015F), new Vector2(306.752014F, -310.291992F), new Vector2(306.752014F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(306.752014F, -309.044006F), new Vector2(306.476013F, -308.558014F), new Vector2(305.924011F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(305.372009F, -307.862F), new Vector2(304.59201F, -307.687988F), new Vector2(303.584015F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(302.575989F, -307.687988F), new Vector2(301.664001F, -307.873993F), new Vector2(300.847992F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(300.032013F, -308.618011F), new Vector2(299.312012F, -309.187988F), new Vector2(298.687988F, -309.955994F));
+ builder.AddLine(new Vector2(296.600006F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(297.127991F, -307.220001F), new Vector2(297.746002F, -306.661987F), new Vector2(298.45401F, -306.194F));
+ builder.AddCubicBezier(new Vector2(299.161987F, -305.726013F), new Vector2(299.947998F, -305.365997F), new Vector2(300.812012F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(301.675995F, -304.862F), new Vector2(302.588013F, -304.735992F), new Vector2(303.548004F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(305.467987F, -304.735992F), new Vector2(306.997986F, -305.20401F), new Vector2(308.138F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1339()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(281.623993F, -305.096008F));
+ builder.AddLine(new Vector2(281.623993F, -322.196014F));
+ builder.AddLine(new Vector2(278.384003F, -322.196014F));
+ builder.AddLine(new Vector2(278.384003F, -305.096008F));
+ builder.AddLine(new Vector2(281.623993F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(293.720001F, -305.096008F));
+ builder.AddLine(new Vector2(293.720001F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(293.720001F, -316.891998F), new Vector2(293.432007F, -318.002014F), new Vector2(292.855988F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(292.279999F, -320.089996F), new Vector2(291.493988F, -320.936005F), new Vector2(290.497986F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(289.502014F, -322.231995F), new Vector2(288.355988F, -322.556F), new Vector2(287.059998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(285.764008F, -322.556F), new Vector2(284.600006F, -322.261993F), new Vector2(283.567993F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(282.536011F, -321.085999F), new Vector2(281.731995F, -320.287994F), new Vector2(281.156006F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(280.579987F, -318.272003F), new Vector2(280.291992F, -317.119995F), new Vector2(280.291992F, -315.824005F));
+ builder.AddLine(new Vector2(281.623993F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(281.623993F, -315.932007F), new Vector2(281.81601F, -316.700012F), new Vector2(282.200012F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(282.584015F, -318.044006F), new Vector2(283.112F, -318.571991F), new Vector2(283.783997F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(284.455994F, -319.339996F), new Vector2(285.223999F, -319.532013F), new Vector2(286.088013F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(287.384003F, -319.532013F), new Vector2(288.43399F, -319.112F), new Vector2(289.238007F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(290.041992F, -317.432007F), new Vector2(290.444F, -316.364014F), new Vector2(290.444F, -315.067993F));
+ builder.AddLine(new Vector2(290.444F, -305.096008F));
+ builder.AddLine(new Vector2(293.720001F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1340()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(270.787994F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(271.963989F, -305.996002F), new Vector2(272.971985F, -306.727997F), new Vector2(273.812012F, -307.687988F));
+ builder.AddLine(new Vector2(271.723999F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(271.14801F, -309.140015F), new Vector2(270.458008F, -308.635986F), new Vector2(269.653992F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(268.850006F, -307.963989F), new Vector2(267.967987F, -307.79599F), new Vector2(267.007996F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(265.855988F, -307.79599F), new Vector2(264.835999F, -308.041992F), new Vector2(263.947998F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(263.059998F, -309.026001F), new Vector2(262.376007F, -309.721985F), new Vector2(261.895996F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(261.415985F, -311.522003F), new Vector2(261.175995F, -312.571991F), new Vector2(261.175995F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(261.175995F, -314.947998F), new Vector2(261.403992F, -315.967987F), new Vector2(261.859985F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(262.31601F, -317.696014F), new Vector2(262.963989F, -318.368011F), new Vector2(263.803986F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(264.644012F, -319.328003F), new Vector2(265.615997F, -319.567993F), new Vector2(266.720001F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(267.776001F, -319.567993F), new Vector2(268.675995F, -319.346008F), new Vector2(269.420013F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(270.164001F, -318.458008F), new Vector2(270.73999F, -317.834015F), new Vector2(271.14801F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(271.556F, -316.226013F), new Vector2(271.76001F, -315.247986F), new Vector2(271.76001F, -314.096008F));
+ builder.AddLine(new Vector2(272.947998F, -315.140015F));
+ builder.AddLine(new Vector2(260.23999F, -315.140015F));
+ builder.AddLine(new Vector2(260.23999F, -312.440002F));
+ builder.AddLine(new Vector2(274.675995F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(274.747986F, -312.776001F), new Vector2(274.79599F, -313.082001F), new Vector2(274.820007F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(274.843994F, -313.634003F), new Vector2(274.855988F, -313.891998F), new Vector2(274.855988F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(274.855988F, -315.764008F), new Vector2(274.514008F, -317.216003F), new Vector2(273.829987F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(273.145996F, -319.76001F), new Vector2(272.191986F, -320.756012F), new Vector2(270.967987F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(269.743988F, -322.196014F), new Vector2(268.35199F, -322.556F), new Vector2(266.791992F, -322.556F));
+ builder.AddCubicBezier(new Vector2(265.135986F, -322.556F), new Vector2(263.641998F, -322.165985F), new Vector2(262.309998F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(260.977997F, -320.605988F), new Vector2(259.921997F, -319.544006F), new Vector2(259.141998F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(258.362F, -316.855988F), new Vector2(257.971985F, -315.343994F), new Vector2(257.971985F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(257.971985F, -311.959991F), new Vector2(258.368011F, -310.436005F), new Vector2(259.160004F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(259.951996F, -307.747986F), new Vector2(261.026001F, -306.686005F), new Vector2(262.381989F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(263.738007F, -305.126007F), new Vector2(265.279999F, -304.735992F), new Vector2(267.007996F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(268.35199F, -304.735992F), new Vector2(269.612F, -304.988007F), new Vector2(270.787994F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1341()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(253.309998F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(254.449997F, -305.996002F), new Vector2(255.416F, -306.70401F), new Vector2(256.208008F, -307.615997F));
+ builder.AddLine(new Vector2(254.084F, -309.776001F));
+ builder.AddCubicBezier(new Vector2(253.531998F, -309.152008F), new Vector2(252.878006F, -308.678009F), new Vector2(252.121994F, -308.354004F));
+ builder.AddCubicBezier(new Vector2(251.365997F, -308.029999F), new Vector2(250.531998F, -307.868011F), new Vector2(249.619995F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(248.539993F, -307.868011F), new Vector2(247.580002F, -308.119995F), new Vector2(246.740005F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(245.899994F, -309.127991F), new Vector2(245.240005F, -309.812012F), new Vector2(244.759995F, -310.675995F));
+ builder.AddCubicBezier(new Vector2(244.279999F, -311.540009F), new Vector2(244.039993F, -312.536011F), new Vector2(244.039993F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(244.039993F, -314.791992F), new Vector2(244.279999F, -315.787994F), new Vector2(244.759995F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(245.240005F, -317.515991F), new Vector2(245.899994F, -318.194F), new Vector2(246.740005F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(247.580002F, -319.178009F), new Vector2(248.539993F, -319.424011F), new Vector2(249.619995F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(250.507996F, -319.424011F), new Vector2(251.335999F, -319.261993F), new Vector2(252.104004F, -318.937988F));
+ builder.AddCubicBezier(new Vector2(252.871994F, -318.614014F), new Vector2(253.520004F, -318.140015F), new Vector2(254.048004F, -317.515991F));
+ builder.AddLine(new Vector2(256.208008F, -319.675995F));
+ builder.AddCubicBezier(new Vector2(255.391998F, -320.612F), new Vector2(254.419998F, -321.325989F), new Vector2(253.292007F, -321.817993F));
+ builder.AddCubicBezier(new Vector2(252.164001F, -322.309998F), new Vector2(250.940002F, -322.556F), new Vector2(249.619995F, -322.556F));
+ builder.AddCubicBezier(new Vector2(247.940002F, -322.556F), new Vector2(246.421997F, -322.165985F), new Vector2(245.065994F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(243.710007F, -320.605988F), new Vector2(242.641998F, -319.544006F), new Vector2(241.862F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(241.082001F, -316.855988F), new Vector2(240.692001F, -315.343994F), new Vector2(240.692001F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(240.692001F, -312.007996F), new Vector2(241.082001F, -310.502014F), new Vector2(241.862F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(242.641998F, -307.790009F), new Vector2(243.710007F, -306.716003F), new Vector2(245.065994F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(246.421997F, -305.131989F), new Vector2(247.940002F, -304.735992F), new Vector2(249.619995F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(250.940002F, -304.735992F), new Vector2(252.169998F, -304.988007F), new Vector2(253.309998F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1342()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(226.759995F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(227.936005F, -305.996002F), new Vector2(228.944F, -306.727997F), new Vector2(229.783997F, -307.687988F));
+ builder.AddLine(new Vector2(227.695999F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(227.119995F, -309.140015F), new Vector2(226.429993F, -308.635986F), new Vector2(225.626007F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(224.822006F, -307.963989F), new Vector2(223.940002F, -307.79599F), new Vector2(222.979996F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(221.828003F, -307.79599F), new Vector2(220.807999F, -308.041992F), new Vector2(219.919998F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(219.031998F, -309.026001F), new Vector2(218.348007F, -309.721985F), new Vector2(217.867996F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(217.388F, -311.522003F), new Vector2(217.147995F, -312.571991F), new Vector2(217.147995F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(217.147995F, -314.947998F), new Vector2(217.376007F, -315.967987F), new Vector2(217.832001F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(218.287994F, -317.696014F), new Vector2(218.936005F, -318.368011F), new Vector2(219.776001F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(220.615997F, -319.328003F), new Vector2(221.587997F, -319.567993F), new Vector2(222.692001F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(223.748001F, -319.567993F), new Vector2(224.647995F, -319.346008F), new Vector2(225.391998F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(226.136002F, -318.458008F), new Vector2(226.712006F, -317.834015F), new Vector2(227.119995F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(227.528F, -316.226013F), new Vector2(227.731995F, -315.247986F), new Vector2(227.731995F, -314.096008F));
+ builder.AddLine(new Vector2(228.919998F, -315.140015F));
+ builder.AddLine(new Vector2(216.212006F, -315.140015F));
+ builder.AddLine(new Vector2(216.212006F, -312.440002F));
+ builder.AddLine(new Vector2(230.647995F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(230.720001F, -312.776001F), new Vector2(230.768005F, -313.082001F), new Vector2(230.792007F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(230.815994F, -313.634003F), new Vector2(230.828003F, -313.891998F), new Vector2(230.828003F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(230.828003F, -315.764008F), new Vector2(230.485992F, -317.216003F), new Vector2(229.802002F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(229.117996F, -319.76001F), new Vector2(228.164001F, -320.756012F), new Vector2(226.940002F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(225.716003F, -322.196014F), new Vector2(224.324005F, -322.556F), new Vector2(222.764008F, -322.556F));
+ builder.AddCubicBezier(new Vector2(221.108002F, -322.556F), new Vector2(219.613998F, -322.165985F), new Vector2(218.281998F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(216.949997F, -320.605988F), new Vector2(215.893997F, -319.544006F), new Vector2(215.113998F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(214.334F, -316.855988F), new Vector2(213.944F, -315.343994F), new Vector2(213.944F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(213.944F, -311.959991F), new Vector2(214.339996F, -310.436005F), new Vector2(215.132004F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(215.923996F, -307.747986F), new Vector2(216.998001F, -306.686005F), new Vector2(218.354004F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(219.710007F, -305.126007F), new Vector2(221.251999F, -304.735992F), new Vector2(222.979996F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(224.324005F, -304.735992F), new Vector2(225.584F, -304.988007F), new Vector2(226.759995F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1343()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(209.281998F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(210.421997F, -305.996002F), new Vector2(211.388F, -306.70401F), new Vector2(212.179993F, -307.615997F));
+ builder.AddLine(new Vector2(210.056F, -309.776001F));
+ builder.AddCubicBezier(new Vector2(209.503998F, -309.152008F), new Vector2(208.850006F, -308.678009F), new Vector2(208.093994F, -308.354004F));
+ builder.AddCubicBezier(new Vector2(207.337997F, -308.029999F), new Vector2(206.503998F, -307.868011F), new Vector2(205.591995F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(204.511993F, -307.868011F), new Vector2(203.552002F, -308.119995F), new Vector2(202.712006F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(201.871994F, -309.127991F), new Vector2(201.212006F, -309.812012F), new Vector2(200.731995F, -310.675995F));
+ builder.AddCubicBezier(new Vector2(200.251999F, -311.540009F), new Vector2(200.011993F, -312.536011F), new Vector2(200.011993F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(200.011993F, -314.791992F), new Vector2(200.251999F, -315.787994F), new Vector2(200.731995F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(201.212006F, -317.515991F), new Vector2(201.871994F, -318.194F), new Vector2(202.712006F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(203.552002F, -319.178009F), new Vector2(204.511993F, -319.424011F), new Vector2(205.591995F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(206.479996F, -319.424011F), new Vector2(207.307999F, -319.261993F), new Vector2(208.076004F, -318.937988F));
+ builder.AddCubicBezier(new Vector2(208.843994F, -318.614014F), new Vector2(209.492004F, -318.140015F), new Vector2(210.020004F, -317.515991F));
+ builder.AddLine(new Vector2(212.179993F, -319.675995F));
+ builder.AddCubicBezier(new Vector2(211.363998F, -320.612F), new Vector2(210.391998F, -321.325989F), new Vector2(209.264008F, -321.817993F));
+ builder.AddCubicBezier(new Vector2(208.136002F, -322.309998F), new Vector2(206.912003F, -322.556F), new Vector2(205.591995F, -322.556F));
+ builder.AddCubicBezier(new Vector2(203.912003F, -322.556F), new Vector2(202.393997F, -322.165985F), new Vector2(201.037994F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(199.682007F, -320.605988F), new Vector2(198.613998F, -319.544006F), new Vector2(197.834F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(197.054001F, -316.855988F), new Vector2(196.664001F, -315.343994F), new Vector2(196.664001F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(196.664001F, -312.007996F), new Vector2(197.054001F, -310.502014F), new Vector2(197.834F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(198.613998F, -307.790009F), new Vector2(199.682007F, -306.716003F), new Vector2(201.037994F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(202.393997F, -305.131989F), new Vector2(203.912003F, -304.735992F), new Vector2(205.591995F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(206.912003F, -304.735992F), new Vector2(208.141998F, -304.988007F), new Vector2(209.281998F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1344()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(188.276001F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(189.044006F, -319.112F), new Vector2(190.028F, -319.496002F), new Vector2(191.227997F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(191.804001F, -319.496002F), new Vector2(192.307999F, -319.411987F), new Vector2(192.740005F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(193.171997F, -319.075989F), new Vector2(193.567993F, -318.799988F), new Vector2(193.927994F, -318.415985F));
+ builder.AddLine(new Vector2(196.052002F, -320.612F));
+ builder.AddCubicBezier(new Vector2(195.451996F, -321.308014F), new Vector2(194.804001F, -321.806F), new Vector2(194.108002F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(193.412003F, -322.406006F), new Vector2(192.632004F, -322.556F), new Vector2(191.768005F, -322.556F));
+ builder.AddCubicBezier(new Vector2(189.871994F, -322.556F), new Vector2(188.419998F, -321.90799F), new Vector2(187.412003F, -320.612F));
+ builder.AddCubicBezier(new Vector2(186.404007F, -319.31601F), new Vector2(185.899994F, -317.575989F), new Vector2(185.899994F, -315.391998F));
+ builder.AddLine(new Vector2(187.123993F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(187.123993F, -316.399994F), new Vector2(187.507996F, -317.575989F), new Vector2(188.276001F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(187.123993F, -305.096008F));
+ builder.AddLine(new Vector2(187.123993F, -322.196014F));
+ builder.AddLine(new Vector2(183.884003F, -322.196014F));
+ builder.AddLine(new Vector2(183.884003F, -305.096008F));
+ builder.AddLine(new Vector2(187.123993F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1345()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(168.475998F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(167.636002F, -309.127991F), new Vector2(166.975998F, -309.817993F), new Vector2(166.496002F, -310.694F));
+ builder.AddCubicBezier(new Vector2(166.016006F, -311.570007F), new Vector2(165.776001F, -312.571991F), new Vector2(165.776001F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(165.776001F, -314.803986F), new Vector2(166.016006F, -315.787994F), new Vector2(166.496002F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(166.975998F, -317.515991F), new Vector2(167.636002F, -318.194F), new Vector2(168.475998F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(169.315994F, -319.178009F), new Vector2(170.264008F, -319.424011F), new Vector2(171.320007F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(172.423996F, -319.424011F), new Vector2(173.389999F, -319.178009F), new Vector2(174.218002F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(175.046005F, -318.194F), new Vector2(175.705994F, -317.515991F), new Vector2(176.197998F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(176.690002F, -315.787994F), new Vector2(176.936005F, -314.803986F), new Vector2(176.936005F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(176.936005F, -312.571991F), new Vector2(176.695999F, -311.570007F), new Vector2(176.216003F, -310.694F));
+ builder.AddCubicBezier(new Vector2(175.735992F, -309.817993F), new Vector2(175.076004F, -309.127991F), new Vector2(174.235992F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(173.395996F, -308.119995F), new Vector2(172.423996F, -307.868011F), new Vector2(171.320007F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(170.264008F, -307.868011F), new Vector2(169.315994F, -308.119995F), new Vector2(168.475998F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(175.873993F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(177.229996F, -306.716003F), new Vector2(178.304001F, -307.790009F), new Vector2(179.095993F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(179.888F, -310.502014F), new Vector2(180.283997F, -312.019989F), new Vector2(180.283997F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(180.283997F, -315.355988F), new Vector2(179.888F, -316.855988F), new Vector2(179.095993F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(178.304001F, -319.544006F), new Vector2(177.229996F, -320.605988F), new Vector2(175.873993F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(174.518005F, -322.165985F), new Vector2(173F, -322.556F), new Vector2(171.320007F, -322.556F));
+ builder.AddCubicBezier(new Vector2(169.664001F, -322.556F), new Vector2(168.164001F, -322.160004F), new Vector2(166.820007F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(165.475998F, -320.575989F), new Vector2(164.408005F, -319.514008F), new Vector2(163.615997F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(162.824005F, -316.850006F), new Vector2(162.427994F, -315.355988F), new Vector2(162.427994F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(162.427994F, -312.019989F), new Vector2(162.824005F, -310.502014F), new Vector2(163.615997F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(164.408005F, -307.790009F), new Vector2(165.475998F, -306.716003F), new Vector2(166.820007F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(168.164001F, -305.131989F), new Vector2(169.664001F, -304.735992F), new Vector2(171.320007F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(173F, -304.735992F), new Vector2(174.518005F, -305.131989F), new Vector2(175.873993F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1346()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(161.276001F, -319.243988F));
+ builder.AddLine(new Vector2(161.276001F, -322.196014F));
+ builder.AddLine(new Vector2(148.388F, -322.196014F));
+ builder.AddLine(new Vector2(148.388F, -319.243988F));
+ builder.AddLine(new Vector2(161.276001F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(155.839996F, -305.096008F));
+ builder.AddLine(new Vector2(155.839996F, -324.752014F));
+ builder.AddCubicBezier(new Vector2(155.839996F, -325.808014F), new Vector2(156.121994F, -326.630005F), new Vector2(156.686005F, -327.217987F));
+ builder.AddCubicBezier(new Vector2(157.25F, -327.806F), new Vector2(158.048004F, -328.100006F), new Vector2(159.080002F, -328.100006F));
+ builder.AddCubicBezier(new Vector2(159.632004F, -328.100006F), new Vector2(160.100006F, -328.015991F), new Vector2(160.483994F, -327.847992F));
+ builder.AddCubicBezier(new Vector2(160.867996F, -327.679993F), new Vector2(161.216003F, -327.428009F), new Vector2(161.528F, -327.09201F));
+ builder.AddLine(new Vector2(163.651993F, -329.179993F));
+ builder.AddCubicBezier(new Vector2(163.052002F, -329.828003F), new Vector2(162.391998F, -330.320007F), new Vector2(161.671997F, -330.656006F));
+ builder.AddCubicBezier(new Vector2(160.951996F, -330.992004F), new Vector2(160.100006F, -331.160004F), new Vector2(159.115997F, -331.160004F));
+ builder.AddCubicBezier(new Vector2(157.820007F, -331.160004F), new Vector2(156.679993F, -330.884003F), new Vector2(155.695999F, -330.332001F));
+ builder.AddCubicBezier(new Vector2(154.712006F, -329.779999F), new Vector2(153.944F, -329.023987F), new Vector2(153.391998F, -328.063995F));
+ builder.AddCubicBezier(new Vector2(152.839996F, -327.104004F), new Vector2(152.563995F, -326F), new Vector2(152.563995F, -324.752014F));
+ builder.AddLine(new Vector2(152.563995F, -305.096008F));
+ builder.AddLine(new Vector2(155.839996F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1347()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(127.292F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(126.452003F, -309.127991F), new Vector2(125.792F, -309.817993F), new Vector2(125.311996F, -310.694F));
+ builder.AddCubicBezier(new Vector2(124.832001F, -311.570007F), new Vector2(124.592003F, -312.571991F), new Vector2(124.592003F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(124.592003F, -314.803986F), new Vector2(124.832001F, -315.787994F), new Vector2(125.311996F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(125.792F, -317.515991F), new Vector2(126.452003F, -318.194F), new Vector2(127.292F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(128.132004F, -319.178009F), new Vector2(129.080002F, -319.424011F), new Vector2(130.136002F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(131.240005F, -319.424011F), new Vector2(132.205994F, -319.178009F), new Vector2(133.033997F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(133.862F, -318.194F), new Vector2(134.522003F, -317.515991F), new Vector2(135.014008F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(135.505997F, -315.787994F), new Vector2(135.751999F, -314.803986F), new Vector2(135.751999F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(135.751999F, -312.571991F), new Vector2(135.511993F, -311.570007F), new Vector2(135.031998F, -310.694F));
+ builder.AddCubicBezier(new Vector2(134.552002F, -309.817993F), new Vector2(133.891998F, -309.127991F), new Vector2(133.052002F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(132.212006F, -308.119995F), new Vector2(131.240005F, -307.868011F), new Vector2(130.136002F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(129.080002F, -307.868011F), new Vector2(128.132004F, -308.119995F), new Vector2(127.292F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(134.690002F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(136.046005F, -306.716003F), new Vector2(137.119995F, -307.790009F), new Vector2(137.912003F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(138.703995F, -310.502014F), new Vector2(139.100006F, -312.019989F), new Vector2(139.100006F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(139.100006F, -315.355988F), new Vector2(138.703995F, -316.855988F), new Vector2(137.912003F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(137.119995F, -319.544006F), new Vector2(136.046005F, -320.605988F), new Vector2(134.690002F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(133.334F, -322.165985F), new Vector2(131.815994F, -322.556F), new Vector2(130.136002F, -322.556F));
+ builder.AddCubicBezier(new Vector2(128.479996F, -322.556F), new Vector2(126.980003F, -322.160004F), new Vector2(125.636002F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(124.292F, -320.575989F), new Vector2(123.223999F, -319.514008F), new Vector2(122.431999F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(121.639999F, -316.850006F), new Vector2(121.244003F, -315.355988F), new Vector2(121.244003F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(121.244003F, -312.019989F), new Vector2(121.639999F, -310.502014F), new Vector2(122.431999F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(123.223999F, -307.790009F), new Vector2(124.292F, -306.716003F), new Vector2(125.636002F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(126.980003F, -305.131989F), new Vector2(128.479996F, -304.735992F), new Vector2(130.136002F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(131.815994F, -304.735992F), new Vector2(133.334F, -305.131989F), new Vector2(134.690002F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1348()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(119.732002F, -319.243988F));
+ builder.AddLine(new Vector2(119.732002F, -322.196014F));
+ builder.AddLine(new Vector2(108.068001F, -322.196014F));
+ builder.AddLine(new Vector2(108.068001F, -319.243988F));
+ builder.AddLine(new Vector2(119.732002F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(115.519997F, -305.096008F));
+ builder.AddLine(new Vector2(115.519997F, -329.359985F));
+ builder.AddLine(new Vector2(112.279999F, -329.359985F));
+ builder.AddLine(new Vector2(112.279999F, -305.096008F));
+ builder.AddLine(new Vector2(115.519997F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1349()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(85.711998F, -305.096008F));
+ builder.AddLine(new Vector2(85.711998F, -322.196014F));
+ builder.AddLine(new Vector2(82.4720001F, -322.196014F));
+ builder.AddLine(new Vector2(82.4720001F, -305.096008F));
+ builder.AddLine(new Vector2(85.711998F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(97.8079987F, -305.096008F));
+ builder.AddLine(new Vector2(97.8079987F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(97.8079987F, -316.891998F), new Vector2(97.5199966F, -318.002014F), new Vector2(96.9440002F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(96.3679962F, -320.089996F), new Vector2(95.5820007F, -320.936005F), new Vector2(94.5859985F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(93.5899963F, -322.231995F), new Vector2(92.4440002F, -322.556F), new Vector2(91.1480026F, -322.556F));
+ builder.AddCubicBezier(new Vector2(89.8519974F, -322.556F), new Vector2(88.6880035F, -322.261993F), new Vector2(87.6559982F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(86.6240005F, -321.085999F), new Vector2(85.8199997F, -320.287994F), new Vector2(85.2440033F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(84.6679993F, -318.272003F), new Vector2(84.3799973F, -317.119995F), new Vector2(84.3799973F, -315.824005F));
+ builder.AddLine(new Vector2(85.711998F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(85.711998F, -315.932007F), new Vector2(85.9039993F, -316.700012F), new Vector2(86.288002F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(86.6719971F, -318.044006F), new Vector2(87.1999969F, -318.571991F), new Vector2(87.8720016F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(88.5439987F, -319.339996F), new Vector2(89.3119965F, -319.532013F), new Vector2(90.1760025F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(91.4720001F, -319.532013F), new Vector2(92.5220032F, -319.112F), new Vector2(93.3259964F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(94.1299973F, -317.432007F), new Vector2(94.5319977F, -316.364014F), new Vector2(94.5319977F, -315.067993F));
+ builder.AddLine(new Vector2(94.5319977F, -305.096008F));
+ builder.AddLine(new Vector2(97.8079987F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1350()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(77.7559967F, -305.096008F));
+ builder.AddLine(new Vector2(77.7559967F, -322.196014F));
+ builder.AddLine(new Vector2(74.4800034F, -322.196014F));
+ builder.AddLine(new Vector2(74.4800034F, -318.019989F));
+ builder.AddLine(new Vector2(75.0920029F, -313.880005F));
+ builder.AddLine(new Vector2(74.4800034F, -309.70401F));
+ builder.AddLine(new Vector2(74.4800034F, -305.096008F));
+ builder.AddLine(new Vector2(77.7559967F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(66.4520035F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(65.6119995F, -309.056F), new Vector2(64.9580002F, -309.746002F), new Vector2(64.4899979F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(64.0220032F, -311.497986F), new Vector2(63.7879982F, -312.511993F), new Vector2(63.7879982F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(63.7879982F, -314.791992F), new Vector2(64.0220032F, -315.794006F), new Vector2(64.4899979F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(64.9580002F, -317.54599F), new Vector2(65.6060028F, -318.235992F), new Vector2(66.4339981F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(67.262001F, -319.243988F), new Vector2(68.2160034F, -319.496002F), new Vector2(69.2959976F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(70.3759995F, -319.496002F), new Vector2(71.3180008F, -319.25F), new Vector2(72.1220016F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(72.9260025F, -318.265991F), new Vector2(73.5559998F, -317.575989F), new Vector2(74.012001F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(74.4680023F, -315.799988F), new Vector2(74.6959991F, -314.779999F), new Vector2(74.6959991F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(74.6959991F, -311.924011F), new Vector2(74.2040024F, -310.526001F), new Vector2(73.2200012F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(72.2360001F, -308.34201F), new Vector2(70.9400024F, -307.79599F), new Vector2(69.3320007F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(68.2519989F, -307.79599F), new Vector2(67.2919998F, -308.048004F), new Vector2(66.4520035F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(72.2839966F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(73.3160019F, -306.085999F), new Vector2(74.1380005F, -306.835999F), new Vector2(74.75F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(75.3619995F, -308.756012F), new Vector2(75.7040024F, -309.847992F), new Vector2(75.776001F, -311.071991F));
+ builder.AddLine(new Vector2(75.776001F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(75.7040024F, -317.467987F), new Vector2(75.3560028F, -318.56601F), new Vector2(74.7320023F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(74.1080017F, -320.462006F), new Vector2(73.2860031F, -321.205994F), new Vector2(72.2659988F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(71.2460022F, -322.286011F), new Vector2(70.0879974F, -322.556F), new Vector2(68.7919998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(67.2080002F, -322.556F), new Vector2(65.7860031F, -322.160004F), new Vector2(64.526001F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(63.2659988F, -320.575989F), new Vector2(62.2700005F, -319.507996F), new Vector2(61.5379982F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(60.8059998F, -316.820007F), new Vector2(60.4399986F, -315.308014F), new Vector2(60.4399986F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(60.4399986F, -311.947998F), new Vector2(60.8059998F, -310.436005F), new Vector2(61.5379982F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(62.2700005F, -307.747986F), new Vector2(63.2659988F, -306.686005F), new Vector2(64.526001F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(65.7860031F, -305.126007F), new Vector2(67.2080002F, -304.735992F), new Vector2(68.7919998F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(70.0879974F, -304.735992F), new Vector2(71.2519989F, -305.006012F), new Vector2(72.2839966F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1351()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(45.5900002F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(44.762001F, -309.614014F), new Vector2(44.1139984F, -310.268005F), new Vector2(43.6459999F, -311.108002F));
+ builder.AddCubicBezier(new Vector2(43.1780014F, -311.947998F), new Vector2(42.9440002F, -312.90799F), new Vector2(42.9440002F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(42.9440002F, -315.067993F), new Vector2(43.1780014F, -316.022003F), new Vector2(43.6459999F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(44.1139984F, -317.678009F), new Vector2(44.7560005F, -318.325989F), new Vector2(45.5719986F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(46.3880005F, -319.261993F), new Vector2(47.3359985F, -319.496002F), new Vector2(48.4160004F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(49.4720001F, -319.496002F), new Vector2(50.4020004F, -319.261993F), new Vector2(51.2060013F, -318.794006F));
+ builder.AddCubicBezier(new Vector2(52.0099983F, -318.325989F), new Vector2(52.6339989F, -317.678009F), new Vector2(53.0779991F, -316.850006F));
+ builder.AddCubicBezier(new Vector2(53.5219994F, -316.022003F), new Vector2(53.7439995F, -315.056F), new Vector2(53.7439995F, -313.951996F));
+ builder.AddCubicBezier(new Vector2(53.7439995F, -312.847992F), new Vector2(53.5219994F, -311.881989F), new Vector2(53.0779991F, -311.053986F));
+ builder.AddCubicBezier(new Vector2(52.6339989F, -310.226013F), new Vector2(52.0159988F, -309.584015F), new Vector2(51.223999F, -309.127991F));
+ builder.AddCubicBezier(new Vector2(50.4319992F, -308.671997F), new Vector2(49.4959984F, -308.444F), new Vector2(48.4160004F, -308.444F));
+ builder.AddCubicBezier(new Vector2(47.3600006F, -308.444F), new Vector2(46.4179993F, -308.678009F), new Vector2(45.5900002F, -309.145996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(51.3320007F, -306.175995F));
+ builder.AddCubicBezier(new Vector2(52.3639984F, -306.70401F), new Vector2(53.1860008F, -307.441986F), new Vector2(53.7980003F, -308.390015F));
+ builder.AddCubicBezier(new Vector2(54.4099998F, -309.338013F), new Vector2(54.7519989F, -310.436005F), new Vector2(54.8240013F, -311.68399F));
+ builder.AddLine(new Vector2(54.8240013F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(54.7519989F, -317.492004F), new Vector2(54.4160004F, -318.60199F), new Vector2(53.8160019F, -319.549988F));
+ builder.AddCubicBezier(new Vector2(53.2159996F, -320.497986F), new Vector2(52.394001F, -321.235992F), new Vector2(51.3499985F, -321.764008F));
+ builder.AddCubicBezier(new Vector2(50.3059998F, -322.291992F), new Vector2(49.1119995F, -322.556F), new Vector2(47.7680016F, -322.556F));
+ builder.AddCubicBezier(new Vector2(46.2319984F, -322.556F), new Vector2(44.8400002F, -322.178009F), new Vector2(43.5919991F, -321.421997F));
+ builder.AddCubicBezier(new Vector2(42.3440018F, -320.665985F), new Vector2(41.3660011F, -319.645996F), new Vector2(40.6580009F, -318.362F));
+ builder.AddCubicBezier(new Vector2(39.9500008F, -317.078003F), new Vector2(39.5960007F, -315.619995F), new Vector2(39.5960007F, -313.988007F));
+ builder.AddCubicBezier(new Vector2(39.5960007F, -312.355988F), new Vector2(39.9560013F, -310.885986F), new Vector2(40.6759987F, -309.578003F));
+ builder.AddCubicBezier(new Vector2(41.3959999F, -308.269989F), new Vector2(42.3740005F, -307.243988F), new Vector2(43.6100006F, -306.5F));
+ builder.AddCubicBezier(new Vector2(44.8460007F, -305.756012F), new Vector2(46.2439995F, -305.384003F), new Vector2(47.8040009F, -305.384003F));
+ builder.AddCubicBezier(new Vector2(49.1240005F, -305.384003F), new Vector2(50.2999992F, -305.64801F), new Vector2(51.3320007F, -306.175995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(52.5019989F, -298.597992F));
+ builder.AddCubicBezier(new Vector2(53.8580017F, -299.282013F), new Vector2(54.9140015F, -300.242004F), new Vector2(55.6699982F, -301.477997F));
+ builder.AddCubicBezier(new Vector2(56.4259987F, -302.713989F), new Vector2(56.8040009F, -304.14801F), new Vector2(56.8040009F, -305.779999F));
+ builder.AddLine(new Vector2(56.8040009F, -322.196014F));
+ builder.AddLine(new Vector2(53.5639992F, -322.196014F));
+ builder.AddLine(new Vector2(53.5639992F, -317.696014F));
+ builder.AddLine(new Vector2(54.1399994F, -313.880005F));
+ builder.AddLine(new Vector2(53.5639992F, -310.028015F));
+ builder.AddLine(new Vector2(53.5639992F, -305.779999F));
+ builder.AddCubicBezier(new Vector2(53.5639992F, -304.220001F), new Vector2(53.0480003F, -302.977997F), new Vector2(52.0159988F, -302.053986F));
+ builder.AddCubicBezier(new Vector2(50.9840012F, -301.130005F), new Vector2(49.6040001F, -300.667999F), new Vector2(47.8759995F, -300.667999F));
+ builder.AddCubicBezier(new Vector2(46.5559998F, -300.667999F), new Vector2(45.4160004F, -300.902008F), new Vector2(44.4560013F, -301.369995F));
+ builder.AddCubicBezier(new Vector2(43.4959984F, -301.838013F), new Vector2(42.6679993F, -302.515991F), new Vector2(41.9720001F, -303.403992F));
+ builder.AddLine(new Vector2(39.8479996F, -301.279999F));
+ builder.AddCubicBezier(new Vector2(40.6879997F, -300.104004F), new Vector2(41.7799988F, -299.191986F), new Vector2(43.1240005F, -298.544006F));
+ builder.AddCubicBezier(new Vector2(44.4679985F, -297.895996F), new Vector2(46.0279999F, -297.571991F), new Vector2(47.8040009F, -297.571991F));
+ builder.AddCubicBezier(new Vector2(49.5800018F, -297.571991F), new Vector2(51.1459999F, -297.914001F), new Vector2(52.5019989F, -298.597992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1352()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(33.1160011F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(34.2919998F, -305.996002F), new Vector2(35.2999992F, -306.727997F), new Vector2(36.1399994F, -307.687988F));
+ builder.AddLine(new Vector2(34.0519981F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(33.4760017F, -309.140015F), new Vector2(32.7859993F, -308.635986F), new Vector2(31.9820004F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(31.1779995F, -307.963989F), new Vector2(30.2959995F, -307.79599F), new Vector2(29.3360004F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(28.184F, -307.79599F), new Vector2(27.1639996F, -308.041992F), new Vector2(26.2759991F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(25.3880005F, -309.026001F), new Vector2(24.7040005F, -309.721985F), new Vector2(24.2240009F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(23.7439995F, -311.522003F), new Vector2(23.5039997F, -312.571991F), new Vector2(23.5039997F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(23.5039997F, -314.947998F), new Vector2(23.7320004F, -315.967987F), new Vector2(24.1879997F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(24.6439991F, -317.696014F), new Vector2(25.2919998F, -318.368011F), new Vector2(26.132F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(26.9720001F, -319.328003F), new Vector2(27.9440002F, -319.567993F), new Vector2(29.0480003F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(30.1040001F, -319.567993F), new Vector2(31.0039997F, -319.346008F), new Vector2(31.7479992F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(32.4920006F, -318.458008F), new Vector2(33.0680008F, -317.834015F), new Vector2(33.4760017F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(33.8839989F, -316.226013F), new Vector2(34.0880013F, -315.247986F), new Vector2(34.0880013F, -314.096008F));
+ builder.AddLine(new Vector2(35.276001F, -315.140015F));
+ builder.AddLine(new Vector2(22.5680008F, -315.140015F));
+ builder.AddLine(new Vector2(22.5680008F, -312.440002F));
+ builder.AddLine(new Vector2(37.0040016F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(37.0760002F, -312.776001F), new Vector2(37.1240005F, -313.082001F), new Vector2(37.1479988F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(37.1720009F, -313.634003F), new Vector2(37.1839981F, -313.891998F), new Vector2(37.1839981F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(37.1839981F, -315.764008F), new Vector2(36.8419991F, -317.216003F), new Vector2(36.1580009F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(35.473999F, -319.76001F), new Vector2(34.5200005F, -320.756012F), new Vector2(33.2960014F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(32.0719986F, -322.196014F), new Vector2(30.6800003F, -322.556F), new Vector2(29.1200008F, -322.556F));
+ builder.AddCubicBezier(new Vector2(27.4640007F, -322.556F), new Vector2(25.9699993F, -322.165985F), new Vector2(24.6380005F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(23.3059998F, -320.605988F), new Vector2(22.25F, -319.544006F), new Vector2(21.4699993F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(20.6900005F, -316.855988F), new Vector2(20.2999992F, -315.343994F), new Vector2(20.2999992F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(20.2999992F, -311.959991F), new Vector2(20.6959991F, -310.436005F), new Vector2(21.4880009F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(22.2800007F, -307.747986F), new Vector2(23.3540001F, -306.686005F), new Vector2(24.7099991F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(26.066F, -305.126007F), new Vector2(27.6079998F, -304.735992F), new Vector2(29.3360004F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(30.6800003F, -304.735992F), new Vector2(31.9400005F, -304.988007F), new Vector2(33.1160011F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1353()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(6.09800005F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(5.26999998F, -309.056F), new Vector2(4.63399982F, -309.746002F), new Vector2(4.19000006F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(3.74600005F, -311.497986F), new Vector2(3.52399993F, -312.5F), new Vector2(3.52399993F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(3.52399993F, -314.779999F), new Vector2(3.75200009F, -315.794006F), new Vector2(4.20800018F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(4.66400003F, -317.54599F), new Vector2(5.30000019F, -318.235992F), new Vector2(6.11600018F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(6.93200016F, -319.243988F), new Vector2(7.86800003F, -319.496002F), new Vector2(8.92399979F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(10.0039997F, -319.496002F), new Vector2(10.9519997F, -319.243988F), new Vector2(11.7679996F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(12.5839996F, -318.235992F), new Vector2(13.2259998F, -317.54599F), new Vector2(13.6940002F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(14.1619997F, -315.794006F), new Vector2(14.3959999F, -314.791992F), new Vector2(14.3959999F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(14.3959999F, -312.511993F), new Vector2(14.1619997F, -311.497986F), new Vector2(13.6940002F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(13.2259998F, -309.746002F), new Vector2(12.5839996F, -309.056F), new Vector2(11.7679996F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(10.9519997F, -308.048004F), new Vector2(10.0039997F, -307.79599F), new Vector2(8.92399979F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(7.86800003F, -307.79599F), new Vector2(6.92600012F, -308.048004F), new Vector2(6.09800005F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(3.704F, -305.096008F));
+ builder.AddLine(new Vector2(3.704F, -309.70401F));
+ builder.AddLine(new Vector2(3.09200001F, -313.880005F));
+ builder.AddLine(new Vector2(3.704F, -318.019989F));
+ builder.AddLine(new Vector2(3.704F, -330.799988F));
+ builder.AddLine(new Vector2(0.463999987F, -330.799988F));
+ builder.AddLine(new Vector2(0.463999987F, -305.096008F));
+ builder.AddLine(new Vector2(3.704F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(13.6940002F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(14.9540005F, -306.686005F), new Vector2(15.9440002F, -307.747986F), new Vector2(16.6639996F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(17.3840008F, -310.436005F), new Vector2(17.7439995F, -311.947998F), new Vector2(17.7439995F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(17.7439995F, -315.308014F), new Vector2(17.3840008F, -316.820007F), new Vector2(16.6639996F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(15.9440002F, -319.507996F), new Vector2(14.9540005F, -320.575989F), new Vector2(13.6940002F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(12.434F, -322.160004F), new Vector2(11.0240002F, -322.556F), new Vector2(9.46399975F, -322.556F));
+ builder.AddCubicBezier(new Vector2(8.19200039F, -322.556F), new Vector2(7.03399992F, -322.286011F), new Vector2(5.98999977F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(4.9460001F, -321.205994F), new Vector2(4.10599995F, -320.462006F), new Vector2(3.47000003F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(2.83400011F, -318.56601F), new Vector2(2.48000002F, -317.467987F), new Vector2(2.40799999F, -316.220001F));
+ builder.AddLine(new Vector2(2.40799999F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(2.48000002F, -309.847992F), new Vector2(2.82800007F, -308.756012F), new Vector2(3.4519999F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(4.07600021F, -306.835999F), new Vector2(4.90999985F, -306.085999F), new Vector2(5.954F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(6.99800014F, -305.006012F), new Vector2(8.16800022F, -304.735992F), new Vector2(9.46399975F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(11.0240002F, -304.735992F), new Vector2(12.434F, -305.126007F), new Vector2(13.6940002F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1354()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-21.1720009F, -297.932007F));
+ builder.AddLine(new Vector2(-17.9319992F, -304.951996F));
+ builder.AddLine(new Vector2(-19.7679996F, -308.264008F));
+ builder.AddLine(new Vector2(-24.7719994F, -297.932007F));
+ builder.AddLine(new Vector2(-21.1720009F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-17.9319992F, -304.951996F));
+ builder.AddLine(new Vector2(-9.93999958F, -322.196014F));
+ builder.AddLine(new Vector2(-13.54F, -322.196014F));
+ builder.AddLine(new Vector2(-19.3360004F, -308.696014F));
+ builder.AddLine(new Vector2(-18.184F, -308.696014F));
+ builder.AddLine(new Vector2(-23.6919994F, -322.196014F));
+ builder.AddLine(new Vector2(-27.2919998F, -322.196014F));
+ builder.AddLine(new Vector2(-19.8759995F, -304.951996F));
+ builder.AddLine(new Vector2(-17.9319992F, -304.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1355()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-32.7999992F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-31.6240005F, -305.996002F), new Vector2(-30.6159992F, -306.727997F), new Vector2(-29.7759991F, -307.687988F));
+ builder.AddLine(new Vector2(-31.8640003F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-32.4399986F, -309.140015F), new Vector2(-33.1300011F, -308.635986F), new Vector2(-33.9339981F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-34.737999F, -307.963989F), new Vector2(-35.6199989F, -307.79599F), new Vector2(-36.5800018F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-37.7319984F, -307.79599F), new Vector2(-38.7519989F, -308.041992F), new Vector2(-39.6399994F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-40.5279999F, -309.026001F), new Vector2(-41.2120018F, -309.721985F), new Vector2(-41.6920013F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-42.1720009F, -311.522003F), new Vector2(-42.4119987F, -312.571991F), new Vector2(-42.4119987F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-42.4119987F, -314.947998F), new Vector2(-42.1839981F, -315.967987F), new Vector2(-41.7280006F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-41.2719994F, -317.696014F), new Vector2(-40.6240005F, -318.368011F), new Vector2(-39.7840004F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-38.9440002F, -319.328003F), new Vector2(-37.9720001F, -319.567993F), new Vector2(-36.868F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-35.8120003F, -319.567993F), new Vector2(-34.9119987F, -319.346008F), new Vector2(-34.1679993F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-33.4239998F, -318.458008F), new Vector2(-32.8479996F, -317.834015F), new Vector2(-32.4399986F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-32.0320015F, -316.226013F), new Vector2(-31.8279991F, -315.247986F), new Vector2(-31.8279991F, -314.096008F));
+ builder.AddLine(new Vector2(-30.6399994F, -315.140015F));
+ builder.AddLine(new Vector2(-43.3479996F, -315.140015F));
+ builder.AddLine(new Vector2(-43.3479996F, -312.440002F));
+ builder.AddLine(new Vector2(-28.9120007F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-28.8400002F, -312.776001F), new Vector2(-28.7919998F, -313.082001F), new Vector2(-28.7679996F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-28.7439995F, -313.634003F), new Vector2(-28.7320004F, -313.891998F), new Vector2(-28.7320004F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-28.7320004F, -315.764008F), new Vector2(-29.0739994F, -317.216003F), new Vector2(-29.7579994F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-30.4419994F, -319.76001F), new Vector2(-31.3959999F, -320.756012F), new Vector2(-32.6199989F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-33.8440018F, -322.196014F), new Vector2(-35.2360001F, -322.556F), new Vector2(-36.7960014F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-38.4519997F, -322.556F), new Vector2(-39.9459991F, -322.165985F), new Vector2(-41.2779999F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-42.6100006F, -320.605988F), new Vector2(-43.6660004F, -319.544006F), new Vector2(-44.4459991F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-45.2260017F, -316.855988F), new Vector2(-45.6160011F, -315.343994F), new Vector2(-45.6160011F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-45.6160011F, -311.959991F), new Vector2(-45.2200012F, -310.436005F), new Vector2(-44.4280014F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-43.6360016F, -307.747986F), new Vector2(-42.5620003F, -306.686005F), new Vector2(-41.2060013F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-39.8499985F, -305.126007F), new Vector2(-38.3079987F, -304.735992F), new Vector2(-36.5800018F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-35.2360001F, -304.735992F), new Vector2(-33.9760017F, -304.988007F), new Vector2(-32.7999992F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1356()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-60.987999F, -305.096008F));
+ builder.AddLine(new Vector2(-60.987999F, -330.799988F));
+ builder.AddLine(new Vector2(-64.2279968F, -330.799988F));
+ builder.AddLine(new Vector2(-64.2279968F, -305.096008F));
+ builder.AddLine(new Vector2(-60.987999F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-48.8919983F, -305.096008F));
+ builder.AddLine(new Vector2(-48.8919983F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-48.8919983F, -317.059998F), new Vector2(-49.1800003F, -318.247986F), new Vector2(-49.7560005F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-50.3320007F, -320.312012F), new Vector2(-51.118F, -321.115997F), new Vector2(-52.1139984F, -321.691986F));
+ builder.AddCubicBezier(new Vector2(-53.1100006F, -322.268005F), new Vector2(-54.2560005F, -322.556F), new Vector2(-55.5519981F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-56.8479996F, -322.556F), new Vector2(-58.012001F, -322.261993F), new Vector2(-59.0439987F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-60.0760002F, -321.085999F), new Vector2(-60.8800011F, -320.287994F), new Vector2(-61.4560013F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-62.0320015F, -318.272003F), new Vector2(-62.3199997F, -317.119995F), new Vector2(-62.3199997F, -315.824005F));
+ builder.AddLine(new Vector2(-60.987999F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-60.987999F, -315.932007F), new Vector2(-60.7960014F, -316.700012F), new Vector2(-60.4119987F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-60.0279999F, -318.044006F), new Vector2(-59.5F, -318.571991F), new Vector2(-58.8279991F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-58.1559982F, -319.339996F), new Vector2(-57.3880005F, -319.532013F), new Vector2(-56.5239983F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-55.2280006F, -319.532013F), new Vector2(-54.1780014F, -319.112F), new Vector2(-53.3740005F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-52.5699997F, -317.432007F), new Vector2(-52.1679993F, -316.364014F), new Vector2(-52.1679993F, -315.067993F));
+ builder.AddLine(new Vector2(-52.1679993F, -305.096008F));
+ builder.AddLine(new Vector2(-48.8919983F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1357()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-67.6839981F, -326.984009F));
+ builder.AddLine(new Vector2(-67.6839981F, -330.079987F));
+ builder.AddLine(new Vector2(-88.0240021F, -330.079987F));
+ builder.AddLine(new Vector2(-88.0240021F, -326.984009F));
+ builder.AddLine(new Vector2(-67.6839981F, -326.984009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-76.1439972F, -305.096008F));
+ builder.AddLine(new Vector2(-76.1439972F, -329.359985F));
+ builder.AddLine(new Vector2(-79.564003F, -329.359985F));
+ builder.AddLine(new Vector2(-79.564003F, -305.096008F));
+ builder.AddLine(new Vector2(-76.1439972F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1358()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-99.526001F, -305.437988F));
+ builder.AddCubicBezier(new Vector2(-99.0820007F, -305.906006F), new Vector2(-98.8600006F, -306.463989F), new Vector2(-98.8600006F, -307.112F));
+ builder.AddCubicBezier(new Vector2(-98.8600006F, -307.783997F), new Vector2(-99.0820007F, -308.34201F), new Vector2(-99.526001F, -308.786011F));
+ builder.AddCubicBezier(new Vector2(-99.9700012F, -309.230011F), new Vector2(-100.528F, -309.451996F), new Vector2(-101.199997F, -309.451996F));
+ builder.AddCubicBezier(new Vector2(-101.896004F, -309.451996F), new Vector2(-102.459999F, -309.230011F), new Vector2(-102.891998F, -308.786011F));
+ builder.AddCubicBezier(new Vector2(-103.323997F, -308.34201F), new Vector2(-103.540001F, -307.783997F), new Vector2(-103.540001F, -307.112F));
+ builder.AddCubicBezier(new Vector2(-103.540001F, -306.463989F), new Vector2(-103.323997F, -305.906006F), new Vector2(-102.891998F, -305.437988F));
+ builder.AddCubicBezier(new Vector2(-102.459999F, -304.970001F), new Vector2(-101.896004F, -304.735992F), new Vector2(-101.199997F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-100.528F, -304.735992F), new Vector2(-99.9700012F, -304.970001F), new Vector2(-99.526001F, -305.437988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1359()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-120.531998F, -305.096008F));
+ builder.AddLine(new Vector2(-120.531998F, -322.196014F));
+ builder.AddLine(new Vector2(-123.772003F, -322.196014F));
+ builder.AddLine(new Vector2(-123.772003F, -305.096008F));
+ builder.AddLine(new Vector2(-120.531998F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-108.435997F, -305.096008F));
+ builder.AddLine(new Vector2(-108.435997F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-108.435997F, -316.891998F), new Vector2(-108.723999F, -318.002014F), new Vector2(-109.300003F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-109.875999F, -320.089996F), new Vector2(-110.662003F, -320.936005F), new Vector2(-111.657997F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-112.653999F, -322.231995F), new Vector2(-113.800003F, -322.556F), new Vector2(-115.096001F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-116.391998F, -322.556F), new Vector2(-117.556F, -322.261993F), new Vector2(-118.587997F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-119.620003F, -321.085999F), new Vector2(-120.424004F, -320.287994F), new Vector2(-121F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-121.575996F, -318.272003F), new Vector2(-121.863998F, -317.119995F), new Vector2(-121.863998F, -315.824005F));
+ builder.AddLine(new Vector2(-120.531998F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-120.531998F, -315.932007F), new Vector2(-120.339996F, -316.700012F), new Vector2(-119.956001F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-119.571999F, -318.044006F), new Vector2(-119.043999F, -318.571991F), new Vector2(-118.372002F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-117.699997F, -319.339996F), new Vector2(-116.931999F, -319.532013F), new Vector2(-116.068001F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-114.772003F, -319.532013F), new Vector2(-113.722F, -319.112F), new Vector2(-112.917999F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-112.113998F, -317.432007F), new Vector2(-111.711998F, -316.364014F), new Vector2(-111.711998F, -315.067993F));
+ builder.AddLine(new Vector2(-111.711998F, -305.096008F));
+ builder.AddLine(new Vector2(-108.435997F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1360()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-139.179993F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-140.020004F, -309.127991F), new Vector2(-140.679993F, -309.817993F), new Vector2(-141.160004F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-141.639999F, -311.570007F), new Vector2(-141.880005F, -312.571991F), new Vector2(-141.880005F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-141.880005F, -314.803986F), new Vector2(-141.639999F, -315.787994F), new Vector2(-141.160004F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-140.679993F, -317.515991F), new Vector2(-140.020004F, -318.194F), new Vector2(-139.179993F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-138.339996F, -319.178009F), new Vector2(-137.391998F, -319.424011F), new Vector2(-136.335999F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-135.231995F, -319.424011F), new Vector2(-134.266006F, -319.178009F), new Vector2(-133.438004F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-132.610001F, -318.194F), new Vector2(-131.949997F, -317.515991F), new Vector2(-131.457993F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-130.966003F, -315.787994F), new Vector2(-130.720001F, -314.803986F), new Vector2(-130.720001F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-130.720001F, -312.571991F), new Vector2(-130.960007F, -311.570007F), new Vector2(-131.440002F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-131.919998F, -309.817993F), new Vector2(-132.580002F, -309.127991F), new Vector2(-133.419998F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-134.259995F, -308.119995F), new Vector2(-135.231995F, -307.868011F), new Vector2(-136.335999F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-137.391998F, -307.868011F), new Vector2(-138.339996F, -308.119995F), new Vector2(-139.179993F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-131.781998F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-130.425995F, -306.716003F), new Vector2(-129.352005F, -307.790009F), new Vector2(-128.559998F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-127.767998F, -310.502014F), new Vector2(-127.372002F, -312.019989F), new Vector2(-127.372002F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-127.372002F, -315.355988F), new Vector2(-127.767998F, -316.855988F), new Vector2(-128.559998F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-129.352005F, -319.544006F), new Vector2(-130.425995F, -320.605988F), new Vector2(-131.781998F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-133.138F, -322.165985F), new Vector2(-134.656006F, -322.556F), new Vector2(-136.335999F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-137.992004F, -322.556F), new Vector2(-139.492004F, -322.160004F), new Vector2(-140.835999F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-142.179993F, -320.575989F), new Vector2(-143.248001F, -319.514008F), new Vector2(-144.039993F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-144.832001F, -316.850006F), new Vector2(-145.227997F, -315.355988F), new Vector2(-145.227997F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-145.227997F, -312.019989F), new Vector2(-144.832001F, -310.502014F), new Vector2(-144.039993F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-143.248001F, -307.790009F), new Vector2(-142.179993F, -306.716003F), new Vector2(-140.835999F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-139.492004F, -305.131989F), new Vector2(-137.992004F, -304.735992F), new Vector2(-136.335999F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-134.656006F, -304.735992F), new Vector2(-133.138F, -305.131989F), new Vector2(-131.781998F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1361()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-149.457993F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(-148.317993F, -307.075989F), new Vector2(-147.748001F, -308.347992F), new Vector2(-147.748001F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(-147.748001F, -311.011993F), new Vector2(-147.970001F, -311.864014F), new Vector2(-148.414001F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(-148.858002F, -313.160004F), new Vector2(-149.427994F, -313.675995F), new Vector2(-150.123993F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(-150.820007F, -314.444F), new Vector2(-151.552002F, -314.75F), new Vector2(-152.320007F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(-153.087997F, -315.205994F), new Vector2(-153.826004F, -315.428009F), new Vector2(-154.533997F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(-155.242004F, -315.859985F), new Vector2(-155.811996F, -316.123993F), new Vector2(-156.244003F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(-156.675995F, -316.747986F), new Vector2(-156.891998F, -317.191986F), new Vector2(-156.891998F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(-156.891998F, -318.320007F), new Vector2(-156.645996F, -318.764008F), new Vector2(-156.154007F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-155.662003F, -319.436005F), new Vector2(-154.947998F, -319.604004F), new Vector2(-154.011993F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(-153.123993F, -319.604004F), new Vector2(-152.332001F, -319.436005F), new Vector2(-151.636002F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-150.940002F, -318.764008F), new Vector2(-150.339996F, -318.283997F), new Vector2(-149.835999F, -317.660004F));
+ builder.AddLine(new Vector2(-147.748001F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(-148.419998F, -320.68399F), new Vector2(-149.278F, -321.385986F), new Vector2(-150.322006F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(-151.365997F, -322.321991F), new Vector2(-152.559998F, -322.556F), new Vector2(-153.904007F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-155.175995F, -322.556F), new Vector2(-156.268005F, -322.35199F), new Vector2(-157.179993F, -321.944F));
+ builder.AddCubicBezier(new Vector2(-158.091995F, -321.536011F), new Vector2(-158.794006F, -320.95401F), new Vector2(-159.285995F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(-159.778F, -319.441986F), new Vector2(-160.024002F, -318.548004F), new Vector2(-160.024002F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(-160.024002F, -316.484009F), new Vector2(-159.802002F, -315.649994F), new Vector2(-159.358002F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(-158.914001F, -314.377991F), new Vector2(-158.343994F, -313.880005F), new Vector2(-157.647995F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(-156.951996F, -313.160004F), new Vector2(-156.214005F, -312.872009F), new Vector2(-155.434006F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(-154.654007F, -312.440002F), new Vector2(-153.916F, -312.217987F), new Vector2(-153.220001F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(-152.524002F, -311.761993F), new Vector2(-151.953995F, -311.473999F), new Vector2(-151.509995F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(-151.065994F, -310.778015F), new Vector2(-150.843994F, -310.291992F), new Vector2(-150.843994F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(-150.843994F, -309.044006F), new Vector2(-151.119995F, -308.558014F), new Vector2(-151.671997F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(-152.223999F, -307.862F), new Vector2(-153.003998F, -307.687988F), new Vector2(-154.011993F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(-155.020004F, -307.687988F), new Vector2(-155.932007F, -307.873993F), new Vector2(-156.748001F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(-157.563995F, -308.618011F), new Vector2(-158.283997F, -309.187988F), new Vector2(-158.908005F, -309.955994F));
+ builder.AddLine(new Vector2(-160.996002F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-160.468002F, -307.220001F), new Vector2(-159.850006F, -306.661987F), new Vector2(-159.141998F, -306.194F));
+ builder.AddCubicBezier(new Vector2(-158.434006F, -305.726013F), new Vector2(-157.647995F, -305.365997F), new Vector2(-156.783997F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(-155.919998F, -304.862F), new Vector2(-155.007996F, -304.735992F), new Vector2(-154.048004F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-152.128006F, -304.735992F), new Vector2(-150.598007F, -305.20401F), new Vector2(-149.457993F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1362()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-164.199997F, -305.096008F));
+ builder.AddLine(new Vector2(-164.199997F, -322.196014F));
+ builder.AddLine(new Vector2(-167.475998F, -322.196014F));
+ builder.AddLine(new Vector2(-167.475998F, -318.019989F));
+ builder.AddLine(new Vector2(-166.863998F, -313.880005F));
+ builder.AddLine(new Vector2(-167.475998F, -309.70401F));
+ builder.AddLine(new Vector2(-167.475998F, -305.096008F));
+ builder.AddLine(new Vector2(-164.199997F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-175.503998F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-176.343994F, -309.056F), new Vector2(-176.998001F, -309.746002F), new Vector2(-177.466003F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-177.934006F, -311.497986F), new Vector2(-178.167999F, -312.511993F), new Vector2(-178.167999F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-178.167999F, -314.791992F), new Vector2(-177.934006F, -315.794006F), new Vector2(-177.466003F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-176.998001F, -317.54599F), new Vector2(-176.350006F, -318.235992F), new Vector2(-175.522003F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-174.694F, -319.243988F), new Vector2(-173.740005F, -319.496002F), new Vector2(-172.660004F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-171.580002F, -319.496002F), new Vector2(-170.638F, -319.25F), new Vector2(-169.834F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(-169.029999F, -318.265991F), new Vector2(-168.399994F, -317.575989F), new Vector2(-167.944F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(-167.488007F, -315.799988F), new Vector2(-167.259995F, -314.779999F), new Vector2(-167.259995F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-167.259995F, -311.924011F), new Vector2(-167.751999F, -310.526001F), new Vector2(-168.735992F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(-169.720001F, -308.34201F), new Vector2(-171.016006F, -307.79599F), new Vector2(-172.623993F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-173.703995F, -307.79599F), new Vector2(-174.664001F, -308.048004F), new Vector2(-175.503998F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-169.671997F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-168.639999F, -306.085999F), new Vector2(-167.817993F, -306.835999F), new Vector2(-167.205994F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-166.593994F, -308.756012F), new Vector2(-166.251999F, -309.847992F), new Vector2(-166.179993F, -311.071991F));
+ builder.AddLine(new Vector2(-166.179993F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-166.251999F, -317.467987F), new Vector2(-166.600006F, -318.56601F), new Vector2(-167.223999F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-167.848007F, -320.462006F), new Vector2(-168.669998F, -321.205994F), new Vector2(-169.690002F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-170.710007F, -322.286011F), new Vector2(-171.867996F, -322.556F), new Vector2(-173.164001F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-174.748001F, -322.556F), new Vector2(-176.169998F, -322.160004F), new Vector2(-177.429993F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-178.690002F, -320.575989F), new Vector2(-179.686005F, -319.507996F), new Vector2(-180.417999F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-181.149994F, -316.820007F), new Vector2(-181.516006F, -315.308014F), new Vector2(-181.516006F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-181.516006F, -311.947998F), new Vector2(-181.149994F, -310.436005F), new Vector2(-180.417999F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-179.686005F, -307.747986F), new Vector2(-178.690002F, -306.686005F), new Vector2(-177.429993F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-176.169998F, -305.126007F), new Vector2(-174.748001F, -304.735992F), new Vector2(-173.164001F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-171.867996F, -304.735992F), new Vector2(-170.703995F, -305.006012F), new Vector2(-169.671997F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1363()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-188.031998F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-186.856003F, -305.996002F), new Vector2(-185.848007F, -306.727997F), new Vector2(-185.007996F, -307.687988F));
+ builder.AddLine(new Vector2(-187.095993F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-187.671997F, -309.140015F), new Vector2(-188.362F, -308.635986F), new Vector2(-189.166F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-189.970001F, -307.963989F), new Vector2(-190.852005F, -307.79599F), new Vector2(-191.811996F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-192.964005F, -307.79599F), new Vector2(-193.983994F, -308.041992F), new Vector2(-194.871994F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-195.759995F, -309.026001F), new Vector2(-196.444F, -309.721985F), new Vector2(-196.923996F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-197.404007F, -311.522003F), new Vector2(-197.643997F, -312.571991F), new Vector2(-197.643997F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-197.643997F, -314.947998F), new Vector2(-197.416F, -315.967987F), new Vector2(-196.960007F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-196.503998F, -317.696014F), new Vector2(-195.856003F, -318.368011F), new Vector2(-195.016006F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-194.175995F, -319.328003F), new Vector2(-193.203995F, -319.567993F), new Vector2(-192.100006F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-191.044006F, -319.567993F), new Vector2(-190.143997F, -319.346008F), new Vector2(-189.399994F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-188.656006F, -318.458008F), new Vector2(-188.080002F, -317.834015F), new Vector2(-187.671997F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-187.264008F, -316.226013F), new Vector2(-187.059998F, -315.247986F), new Vector2(-187.059998F, -314.096008F));
+ builder.AddLine(new Vector2(-185.871994F, -315.140015F));
+ builder.AddLine(new Vector2(-198.580002F, -315.140015F));
+ builder.AddLine(new Vector2(-198.580002F, -312.440002F));
+ builder.AddLine(new Vector2(-184.143997F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-184.072006F, -312.776001F), new Vector2(-184.024002F, -313.082001F), new Vector2(-184F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-183.975998F, -313.634003F), new Vector2(-183.964005F, -313.891998F), new Vector2(-183.964005F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-183.964005F, -315.764008F), new Vector2(-184.306F, -317.216003F), new Vector2(-184.990005F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-185.673996F, -319.76001F), new Vector2(-186.628006F, -320.756012F), new Vector2(-187.852005F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-189.076004F, -322.196014F), new Vector2(-190.468002F, -322.556F), new Vector2(-192.028F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-193.684006F, -322.556F), new Vector2(-195.177994F, -322.165985F), new Vector2(-196.509995F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-197.841995F, -320.605988F), new Vector2(-198.897995F, -319.544006F), new Vector2(-199.677994F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-200.457993F, -316.855988F), new Vector2(-200.848007F, -315.343994F), new Vector2(-200.848007F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-200.848007F, -311.959991F), new Vector2(-200.451996F, -310.436005F), new Vector2(-199.660004F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-198.867996F, -307.747986F), new Vector2(-197.794006F, -306.686005F), new Vector2(-196.438004F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-195.082001F, -305.126007F), new Vector2(-193.539993F, -304.735992F), new Vector2(-191.811996F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-190.468002F, -304.735992F), new Vector2(-189.207993F, -304.988007F), new Vector2(-188.031998F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1364()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-209.235992F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-208.468002F, -319.112F), new Vector2(-207.483994F, -319.496002F), new Vector2(-206.283997F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-205.707993F, -319.496002F), new Vector2(-205.203995F, -319.411987F), new Vector2(-204.772003F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-204.339996F, -319.075989F), new Vector2(-203.944F, -318.799988F), new Vector2(-203.584F, -318.415985F));
+ builder.AddLine(new Vector2(-201.460007F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-202.059998F, -321.308014F), new Vector2(-202.707993F, -321.806F), new Vector2(-203.404007F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-204.100006F, -322.406006F), new Vector2(-204.880005F, -322.556F), new Vector2(-205.744003F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-207.639999F, -322.556F), new Vector2(-209.091995F, -321.90799F), new Vector2(-210.100006F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-211.108002F, -319.31601F), new Vector2(-211.612F, -317.575989F), new Vector2(-211.612F, -315.391998F));
+ builder.AddLine(new Vector2(-210.388F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-210.388F, -316.399994F), new Vector2(-210.003998F, -317.575989F), new Vector2(-209.235992F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-210.388F, -305.096008F));
+ builder.AddLine(new Vector2(-210.388F, -322.196014F));
+ builder.AddLine(new Vector2(-213.628006F, -322.196014F));
+ builder.AddLine(new Vector2(-213.628006F, -305.096008F));
+ builder.AddLine(new Vector2(-210.388F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1365()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-235.264008F, -297.932007F));
+ builder.AddLine(new Vector2(-232.024002F, -304.951996F));
+ builder.AddLine(new Vector2(-233.860001F, -308.264008F));
+ builder.AddLine(new Vector2(-238.863998F, -297.932007F));
+ builder.AddLine(new Vector2(-235.264008F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-232.024002F, -304.951996F));
+ builder.AddLine(new Vector2(-224.031998F, -322.196014F));
+ builder.AddLine(new Vector2(-227.632004F, -322.196014F));
+ builder.AddLine(new Vector2(-233.427994F, -308.696014F));
+ builder.AddLine(new Vector2(-232.276001F, -308.696014F));
+ builder.AddLine(new Vector2(-237.783997F, -322.196014F));
+ builder.AddLine(new Vector2(-241.384003F, -322.196014F));
+ builder.AddLine(new Vector2(-233.968002F, -304.951996F));
+ builder.AddLine(new Vector2(-232.024002F, -304.951996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1366()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-256.071991F, -305.096008F));
+ builder.AddLine(new Vector2(-256.071991F, -322.196014F));
+ builder.AddLine(new Vector2(-259.312012F, -322.196014F));
+ builder.AddLine(new Vector2(-259.312012F, -305.096008F));
+ builder.AddLine(new Vector2(-256.071991F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-243.975998F, -305.096008F));
+ builder.AddLine(new Vector2(-243.975998F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-243.975998F, -316.891998F), new Vector2(-244.264008F, -318.002014F), new Vector2(-244.839996F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-245.416F, -320.089996F), new Vector2(-246.201996F, -320.936005F), new Vector2(-247.197998F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-248.194F, -322.231995F), new Vector2(-249.339996F, -322.556F), new Vector2(-250.636002F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-251.932007F, -322.556F), new Vector2(-253.095993F, -322.261993F), new Vector2(-254.128006F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-255.160004F, -321.085999F), new Vector2(-255.964005F, -320.287994F), new Vector2(-256.540009F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-257.115997F, -318.272003F), new Vector2(-257.403992F, -317.119995F), new Vector2(-257.403992F, -315.824005F));
+ builder.AddLine(new Vector2(-256.071991F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-256.071991F, -315.932007F), new Vector2(-255.880005F, -316.700012F), new Vector2(-255.496002F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-255.112F, -318.044006F), new Vector2(-254.584F, -318.571991F), new Vector2(-253.912003F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-253.240005F, -319.339996F), new Vector2(-252.472F, -319.532013F), new Vector2(-251.608002F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-250.311996F, -319.532013F), new Vector2(-249.261993F, -319.112F), new Vector2(-248.457993F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-247.654007F, -317.432007F), new Vector2(-247.251999F, -316.364014F), new Vector2(-247.251999F, -315.067993F));
+ builder.AddLine(new Vector2(-247.251999F, -305.096008F));
+ builder.AddLine(new Vector2(-243.975998F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1367()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-264.028015F, -305.096008F));
+ builder.AddLine(new Vector2(-264.028015F, -322.196014F));
+ builder.AddLine(new Vector2(-267.303986F, -322.196014F));
+ builder.AddLine(new Vector2(-267.303986F, -318.019989F));
+ builder.AddLine(new Vector2(-266.691986F, -313.880005F));
+ builder.AddLine(new Vector2(-267.303986F, -309.70401F));
+ builder.AddLine(new Vector2(-267.303986F, -305.096008F));
+ builder.AddLine(new Vector2(-264.028015F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-275.332001F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-276.171997F, -309.056F), new Vector2(-276.825989F, -309.746002F), new Vector2(-277.294006F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-277.761993F, -311.497986F), new Vector2(-277.996002F, -312.511993F), new Vector2(-277.996002F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-277.996002F, -314.791992F), new Vector2(-277.761993F, -315.794006F), new Vector2(-277.294006F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-276.825989F, -317.54599F), new Vector2(-276.178009F, -318.235992F), new Vector2(-275.350006F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-274.522003F, -319.243988F), new Vector2(-273.567993F, -319.496002F), new Vector2(-272.488007F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-271.40799F, -319.496002F), new Vector2(-270.466003F, -319.25F), new Vector2(-269.661987F, -318.757996F));
+ builder.AddCubicBezier(new Vector2(-268.858002F, -318.265991F), new Vector2(-268.227997F, -317.575989F), new Vector2(-267.772003F, -316.687988F));
+ builder.AddCubicBezier(new Vector2(-267.31601F, -315.799988F), new Vector2(-267.088013F, -314.779999F), new Vector2(-267.088013F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-267.088013F, -311.924011F), new Vector2(-267.579987F, -310.526001F), new Vector2(-268.563995F, -309.43399F));
+ builder.AddCubicBezier(new Vector2(-269.548004F, -308.34201F), new Vector2(-270.843994F, -307.79599F), new Vector2(-272.451996F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-273.532013F, -307.79599F), new Vector2(-274.492004F, -308.048004F), new Vector2(-275.332001F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-269.5F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-268.467987F, -306.085999F), new Vector2(-267.645996F, -306.835999F), new Vector2(-267.033997F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-266.421997F, -308.756012F), new Vector2(-266.079987F, -309.847992F), new Vector2(-266.007996F, -311.071991F));
+ builder.AddLine(new Vector2(-266.007996F, -316.220001F));
+ builder.AddCubicBezier(new Vector2(-266.079987F, -317.467987F), new Vector2(-266.428009F, -318.56601F), new Vector2(-267.052002F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-267.675995F, -320.462006F), new Vector2(-268.497986F, -321.205994F), new Vector2(-269.518005F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-270.537994F, -322.286011F), new Vector2(-271.696014F, -322.556F), new Vector2(-272.992004F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-274.575989F, -322.556F), new Vector2(-275.997986F, -322.160004F), new Vector2(-277.257996F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-278.518005F, -320.575989F), new Vector2(-279.514008F, -319.507996F), new Vector2(-280.246002F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-280.977997F, -316.820007F), new Vector2(-281.343994F, -315.308014F), new Vector2(-281.343994F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-281.343994F, -311.947998F), new Vector2(-280.977997F, -310.436005F), new Vector2(-280.246002F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-279.514008F, -307.747986F), new Vector2(-278.518005F, -306.686005F), new Vector2(-277.257996F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-275.997986F, -305.126007F), new Vector2(-274.575989F, -304.735992F), new Vector2(-272.992004F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-271.696014F, -304.735992F), new Vector2(-270.532013F, -305.006012F), new Vector2(-269.5F, -305.54599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1368()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-290.884003F, -319.243988F));
+ builder.AddLine(new Vector2(-290.884003F, -322.196014F));
+ builder.AddLine(new Vector2(-302.548004F, -322.196014F));
+ builder.AddLine(new Vector2(-302.548004F, -319.243988F));
+ builder.AddLine(new Vector2(-290.884003F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-295.096008F, -305.096008F));
+ builder.AddLine(new Vector2(-295.096008F, -329.359985F));
+ builder.AddLine(new Vector2(-298.335999F, -329.359985F));
+ builder.AddLine(new Vector2(-298.335999F, -305.096008F));
+ builder.AddLine(new Vector2(-295.096008F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1369()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-308.847992F, -305.726013F));
+ builder.AddCubicBezier(new Vector2(-307.743988F, -306.338013F), new Vector2(-306.880005F, -307.208008F), new Vector2(-306.256012F, -308.335999F));
+ builder.AddCubicBezier(new Vector2(-305.631989F, -309.463989F), new Vector2(-305.320007F, -310.772003F), new Vector2(-305.320007F, -312.26001F));
+ builder.AddLine(new Vector2(-305.320007F, -322.196014F));
+ builder.AddLine(new Vector2(-308.559998F, -322.196014F));
+ builder.AddLine(new Vector2(-308.559998F, -312.403992F));
+ builder.AddCubicBezier(new Vector2(-308.559998F, -310.988007F), new Vector2(-308.920013F, -309.877991F), new Vector2(-309.640015F, -309.074005F));
+ builder.AddCubicBezier(new Vector2(-310.359985F, -308.269989F), new Vector2(-311.355988F, -307.868011F), new Vector2(-312.627991F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-313.467987F, -307.868011F), new Vector2(-314.200012F, -308.048004F), new Vector2(-314.824005F, -308.40799F));
+ builder.AddCubicBezier(new Vector2(-315.447998F, -308.768005F), new Vector2(-315.921997F, -309.290009F), new Vector2(-316.246002F, -309.973999F));
+ builder.AddCubicBezier(new Vector2(-316.570007F, -310.65799F), new Vector2(-316.731995F, -311.467987F), new Vector2(-316.731995F, -312.403992F));
+ builder.AddLine(new Vector2(-316.731995F, -322.196014F));
+ builder.AddLine(new Vector2(-319.971985F, -322.196014F));
+ builder.AddLine(new Vector2(-319.971985F, -312.26001F));
+ builder.AddCubicBezier(new Vector2(-319.971985F, -310.772003F), new Vector2(-319.660004F, -309.463989F), new Vector2(-319.036011F, -308.335999F));
+ builder.AddCubicBezier(new Vector2(-318.411987F, -307.208008F), new Vector2(-317.541992F, -306.338013F), new Vector2(-316.425995F, -305.726013F));
+ builder.AddCubicBezier(new Vector2(-315.309998F, -305.114014F), new Vector2(-314.044006F, -304.808014F), new Vector2(-312.627991F, -304.808014F));
+ builder.AddCubicBezier(new Vector2(-311.212006F, -304.808014F), new Vector2(-309.951996F, -305.114014F), new Vector2(-308.847992F, -305.726013F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1370()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-334.947998F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-335.787994F, -309.127991F), new Vector2(-336.447998F, -309.817993F), new Vector2(-336.928009F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-337.40799F, -311.570007F), new Vector2(-337.64801F, -312.571991F), new Vector2(-337.64801F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-337.64801F, -314.803986F), new Vector2(-337.40799F, -315.787994F), new Vector2(-336.928009F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-336.447998F, -317.515991F), new Vector2(-335.787994F, -318.194F), new Vector2(-334.947998F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-334.108002F, -319.178009F), new Vector2(-333.160004F, -319.424011F), new Vector2(-332.104004F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-331F, -319.424011F), new Vector2(-330.033997F, -319.178009F), new Vector2(-329.205994F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-328.377991F, -318.194F), new Vector2(-327.717987F, -317.515991F), new Vector2(-327.226013F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-326.734009F, -315.787994F), new Vector2(-326.488007F, -314.803986F), new Vector2(-326.488007F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-326.488007F, -312.571991F), new Vector2(-326.727997F, -311.570007F), new Vector2(-327.208008F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-327.687988F, -309.817993F), new Vector2(-328.347992F, -309.127991F), new Vector2(-329.187988F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-330.028015F, -308.119995F), new Vector2(-331F, -307.868011F), new Vector2(-332.104004F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-333.160004F, -307.868011F), new Vector2(-334.108002F, -308.119995F), new Vector2(-334.947998F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-327.549988F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-326.194F, -306.716003F), new Vector2(-325.119995F, -307.790009F), new Vector2(-324.328003F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-323.536011F, -310.502014F), new Vector2(-323.140015F, -312.019989F), new Vector2(-323.140015F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-323.140015F, -315.355988F), new Vector2(-323.536011F, -316.855988F), new Vector2(-324.328003F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-325.119995F, -319.544006F), new Vector2(-326.194F, -320.605988F), new Vector2(-327.549988F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-328.906006F, -322.165985F), new Vector2(-330.424011F, -322.556F), new Vector2(-332.104004F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-333.76001F, -322.556F), new Vector2(-335.26001F, -322.160004F), new Vector2(-336.604004F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-337.947998F, -320.575989F), new Vector2(-339.015991F, -319.514008F), new Vector2(-339.808014F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-340.600006F, -316.850006F), new Vector2(-340.996002F, -315.355988F), new Vector2(-340.996002F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-340.996002F, -312.019989F), new Vector2(-340.600006F, -310.502014F), new Vector2(-339.808014F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-339.015991F, -307.790009F), new Vector2(-337.947998F, -306.716003F), new Vector2(-336.604004F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-335.26001F, -305.131989F), new Vector2(-333.76001F, -304.735992F), new Vector2(-332.104004F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-330.424011F, -304.735992F), new Vector2(-328.906006F, -305.131989F), new Vector2(-327.549988F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1371()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-356.368011F, -305.096008F));
+ builder.AddLine(new Vector2(-356.368011F, -330.799988F));
+ builder.AddLine(new Vector2(-359.608002F, -330.799988F));
+ builder.AddLine(new Vector2(-359.608002F, -305.096008F));
+ builder.AddLine(new Vector2(-356.368011F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-344.272003F, -305.096008F));
+ builder.AddLine(new Vector2(-344.272003F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-344.272003F, -317.059998F), new Vector2(-344.559998F, -318.247986F), new Vector2(-345.135986F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-345.712006F, -320.312012F), new Vector2(-346.497986F, -321.115997F), new Vector2(-347.493988F, -321.691986F));
+ builder.AddCubicBezier(new Vector2(-348.48999F, -322.268005F), new Vector2(-349.635986F, -322.556F), new Vector2(-350.932007F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-352.227997F, -322.556F), new Vector2(-353.391998F, -322.261993F), new Vector2(-354.424011F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-355.455994F, -321.085999F), new Vector2(-356.26001F, -320.287994F), new Vector2(-356.835999F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-357.411987F, -318.272003F), new Vector2(-357.700012F, -317.119995F), new Vector2(-357.700012F, -315.824005F));
+ builder.AddLine(new Vector2(-356.368011F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-356.368011F, -315.932007F), new Vector2(-356.175995F, -316.700012F), new Vector2(-355.791992F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-355.40799F, -318.044006F), new Vector2(-354.880005F, -318.571991F), new Vector2(-354.208008F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-353.536011F, -319.339996F), new Vector2(-352.768005F, -319.532013F), new Vector2(-351.903992F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-350.608002F, -319.532013F), new Vector2(-349.558014F, -319.112F), new Vector2(-348.753998F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-347.950012F, -317.432007F), new Vector2(-347.548004F, -316.364014F), new Vector2(-347.548004F, -315.067993F));
+ builder.AddLine(new Vector2(-347.548004F, -305.096008F));
+ builder.AddLine(new Vector2(-344.272003F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1372()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-362.776001F, -319.243988F));
+ builder.AddLine(new Vector2(-362.776001F, -322.196014F));
+ builder.AddLine(new Vector2(-374.440002F, -322.196014F));
+ builder.AddLine(new Vector2(-374.440002F, -319.243988F));
+ builder.AddLine(new Vector2(-362.776001F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-366.988007F, -305.096008F));
+ builder.AddLine(new Vector2(-366.988007F, -329.359985F));
+ builder.AddLine(new Vector2(-370.227997F, -329.359985F));
+ builder.AddLine(new Vector2(-370.227997F, -305.096008F));
+ builder.AddLine(new Vector2(-366.988007F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1373()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-377.787994F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-377.403992F, -326.605988F), new Vector2(-377.212006F, -327.104004F), new Vector2(-377.212006F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-377.212006F, -328.279999F), new Vector2(-377.403992F, -328.765991F), new Vector2(-377.787994F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-378.171997F, -329.558014F), new Vector2(-378.664001F, -329.756012F), new Vector2(-379.264008F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-379.864014F, -329.756012F), new Vector2(-380.355988F, -329.558014F), new Vector2(-380.73999F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-381.123993F, -328.765991F), new Vector2(-381.31601F, -328.279999F), new Vector2(-381.31601F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-381.31601F, -327.104004F), new Vector2(-381.123993F, -326.605988F), new Vector2(-380.73999F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-380.355988F, -325.813995F), new Vector2(-379.864014F, -325.615997F), new Vector2(-379.264008F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-378.664001F, -325.615997F), new Vector2(-378.171997F, -325.813995F), new Vector2(-377.787994F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-377.644012F, -305.096008F));
+ builder.AddLine(new Vector2(-377.644012F, -322.196014F));
+ builder.AddLine(new Vector2(-380.920013F, -322.196014F));
+ builder.AddLine(new Vector2(-380.920013F, -305.096008F));
+ builder.AddLine(new Vector2(-377.644012F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1374()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-400.864014F, -305.096008F));
+ builder.AddLine(new Vector2(-395.895996F, -317.984009F));
+ builder.AddLine(new Vector2(-397.084015F, -317.984009F));
+ builder.AddLine(new Vector2(-392.152008F, -305.096008F));
+ builder.AddLine(new Vector2(-390.243988F, -305.096008F));
+ builder.AddLine(new Vector2(-383.511993F, -322.196014F));
+ builder.AddLine(new Vector2(-386.895996F, -322.196014F));
+ builder.AddLine(new Vector2(-391.791992F, -308.876007F));
+ builder.AddLine(new Vector2(-390.712006F, -308.876007F));
+ builder.AddLine(new Vector2(-395.571991F, -322.196014F));
+ builder.AddLine(new Vector2(-397.444F, -322.196014F));
+ builder.AddLine(new Vector2(-402.303986F, -308.876007F));
+ builder.AddLine(new Vector2(-401.223999F, -308.876007F));
+ builder.AddLine(new Vector2(-406.119995F, -322.196014F));
+ builder.AddLine(new Vector2(-409.503998F, -322.196014F));
+ builder.AddLine(new Vector2(-402.772003F, -305.096008F));
+ builder.AddLine(new Vector2(-400.864014F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1375()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-420.429993F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(-419.290009F, -307.075989F), new Vector2(-418.720001F, -308.347992F), new Vector2(-418.720001F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(-418.720001F, -311.011993F), new Vector2(-418.941986F, -311.864014F), new Vector2(-419.385986F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(-419.829987F, -313.160004F), new Vector2(-420.399994F, -313.675995F), new Vector2(-421.096008F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(-421.791992F, -314.444F), new Vector2(-422.523987F, -314.75F), new Vector2(-423.291992F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(-424.059998F, -315.205994F), new Vector2(-424.798004F, -315.428009F), new Vector2(-425.506012F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(-426.213989F, -315.859985F), new Vector2(-426.783997F, -316.123993F), new Vector2(-427.216003F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(-427.64801F, -316.747986F), new Vector2(-427.864014F, -317.191986F), new Vector2(-427.864014F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(-427.864014F, -318.320007F), new Vector2(-427.618011F, -318.764008F), new Vector2(-427.126007F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-426.634003F, -319.436005F), new Vector2(-425.920013F, -319.604004F), new Vector2(-424.984009F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(-424.096008F, -319.604004F), new Vector2(-423.303986F, -319.436005F), new Vector2(-422.608002F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-421.911987F, -318.764008F), new Vector2(-421.312012F, -318.283997F), new Vector2(-420.808014F, -317.660004F));
+ builder.AddLine(new Vector2(-418.720001F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(-419.391998F, -320.68399F), new Vector2(-420.25F, -321.385986F), new Vector2(-421.294006F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(-422.338013F, -322.321991F), new Vector2(-423.532013F, -322.556F), new Vector2(-424.876007F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-426.14801F, -322.556F), new Vector2(-427.23999F, -322.35199F), new Vector2(-428.152008F, -321.944F));
+ builder.AddCubicBezier(new Vector2(-429.063995F, -321.536011F), new Vector2(-429.765991F, -320.95401F), new Vector2(-430.257996F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(-430.75F, -319.441986F), new Vector2(-430.996002F, -318.548004F), new Vector2(-430.996002F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(-430.996002F, -316.484009F), new Vector2(-430.773987F, -315.649994F), new Vector2(-430.329987F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(-429.885986F, -314.377991F), new Vector2(-429.31601F, -313.880005F), new Vector2(-428.619995F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(-427.924011F, -313.160004F), new Vector2(-427.186005F, -312.872009F), new Vector2(-426.406006F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(-425.626007F, -312.440002F), new Vector2(-424.888F, -312.217987F), new Vector2(-424.191986F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(-423.496002F, -311.761993F), new Vector2(-422.925995F, -311.473999F), new Vector2(-422.481995F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(-422.037994F, -310.778015F), new Vector2(-421.81601F, -310.291992F), new Vector2(-421.81601F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(-421.81601F, -309.044006F), new Vector2(-422.09201F, -308.558014F), new Vector2(-422.644012F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(-423.196014F, -307.862F), new Vector2(-423.976013F, -307.687988F), new Vector2(-424.984009F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(-425.992004F, -307.687988F), new Vector2(-426.903992F, -307.873993F), new Vector2(-427.720001F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(-428.536011F, -308.618011F), new Vector2(-429.256012F, -309.187988F), new Vector2(-429.880005F, -309.955994F));
+ builder.AddLine(new Vector2(-431.967987F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-431.440002F, -307.220001F), new Vector2(-430.821991F, -306.661987F), new Vector2(-430.114014F, -306.194F));
+ builder.AddCubicBezier(new Vector2(-429.406006F, -305.726013F), new Vector2(-428.619995F, -305.365997F), new Vector2(-427.756012F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(-426.891998F, -304.862F), new Vector2(-425.980011F, -304.735992F), new Vector2(-425.019989F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-423.100006F, -304.735992F), new Vector2(-421.570007F, -305.20401F), new Vector2(-420.429993F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1376()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-440.140015F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-439.372009F, -319.112F), new Vector2(-438.388F, -319.496002F), new Vector2(-437.187988F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-436.612F, -319.496002F), new Vector2(-436.108002F, -319.411987F), new Vector2(-435.675995F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-435.243988F, -319.075989F), new Vector2(-434.847992F, -318.799988F), new Vector2(-434.488007F, -318.415985F));
+ builder.AddLine(new Vector2(-432.364014F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-432.963989F, -321.308014F), new Vector2(-433.612F, -321.806F), new Vector2(-434.308014F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-435.003998F, -322.406006F), new Vector2(-435.783997F, -322.556F), new Vector2(-436.64801F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-438.544006F, -322.556F), new Vector2(-439.996002F, -321.90799F), new Vector2(-441.003998F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-442.011993F, -319.31601F), new Vector2(-442.515991F, -317.575989F), new Vector2(-442.515991F, -315.391998F));
+ builder.AddLine(new Vector2(-441.291992F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-441.291992F, -316.399994F), new Vector2(-440.90799F, -317.575989F), new Vector2(-440.140015F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-441.291992F, -305.096008F));
+ builder.AddLine(new Vector2(-441.291992F, -322.196014F));
+ builder.AddLine(new Vector2(-444.532013F, -322.196014F));
+ builder.AddLine(new Vector2(-444.532013F, -305.096008F));
+ builder.AddLine(new Vector2(-441.291992F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1377()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-452.127991F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-450.951996F, -305.996002F), new Vector2(-449.944F, -306.727997F), new Vector2(-449.104004F, -307.687988F));
+ builder.AddLine(new Vector2(-451.191986F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-451.768005F, -309.140015F), new Vector2(-452.458008F, -308.635986F), new Vector2(-453.261993F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-454.06601F, -307.963989F), new Vector2(-454.947998F, -307.79599F), new Vector2(-455.90799F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-457.059998F, -307.79599F), new Vector2(-458.079987F, -308.041992F), new Vector2(-458.967987F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-459.855988F, -309.026001F), new Vector2(-460.540009F, -309.721985F), new Vector2(-461.019989F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-461.5F, -311.522003F), new Vector2(-461.73999F, -312.571991F), new Vector2(-461.73999F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-461.73999F, -314.947998F), new Vector2(-461.511993F, -315.967987F), new Vector2(-461.056F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-460.600006F, -317.696014F), new Vector2(-459.951996F, -318.368011F), new Vector2(-459.112F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-458.272003F, -319.328003F), new Vector2(-457.299988F, -319.567993F), new Vector2(-456.196014F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-455.140015F, -319.567993F), new Vector2(-454.23999F, -319.346008F), new Vector2(-453.496002F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-452.752014F, -318.458008F), new Vector2(-452.175995F, -317.834015F), new Vector2(-451.768005F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-451.359985F, -316.226013F), new Vector2(-451.156006F, -315.247986F), new Vector2(-451.156006F, -314.096008F));
+ builder.AddLine(new Vector2(-449.967987F, -315.140015F));
+ builder.AddLine(new Vector2(-462.675995F, -315.140015F));
+ builder.AddLine(new Vector2(-462.675995F, -312.440002F));
+ builder.AddLine(new Vector2(-448.23999F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-448.167999F, -312.776001F), new Vector2(-448.119995F, -313.082001F), new Vector2(-448.096008F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-448.071991F, -313.634003F), new Vector2(-448.059998F, -313.891998F), new Vector2(-448.059998F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-448.059998F, -315.764008F), new Vector2(-448.402008F, -317.216003F), new Vector2(-449.085999F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-449.769989F, -319.76001F), new Vector2(-450.723999F, -320.756012F), new Vector2(-451.947998F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-453.171997F, -322.196014F), new Vector2(-454.563995F, -322.556F), new Vector2(-456.123993F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-457.779999F, -322.556F), new Vector2(-459.273987F, -322.165985F), new Vector2(-460.605988F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-461.937988F, -320.605988F), new Vector2(-462.993988F, -319.544006F), new Vector2(-463.773987F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-464.553986F, -316.855988F), new Vector2(-464.944F, -315.343994F), new Vector2(-464.944F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-464.944F, -311.959991F), new Vector2(-464.548004F, -310.436005F), new Vector2(-463.756012F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-462.963989F, -307.747986F), new Vector2(-461.890015F, -306.686005F), new Vector2(-460.533997F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-459.178009F, -305.126007F), new Vector2(-457.635986F, -304.735992F), new Vector2(-455.90799F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-454.563995F, -304.735992F), new Vector2(-453.303986F, -304.988007F), new Vector2(-452.127991F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1378()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-466.455994F, -319.243988F));
+ builder.AddLine(new Vector2(-466.455994F, -322.196014F));
+ builder.AddLine(new Vector2(-478.119995F, -322.196014F));
+ builder.AddLine(new Vector2(-478.119995F, -319.243988F));
+ builder.AddLine(new Vector2(-466.455994F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-470.667999F, -305.096008F));
+ builder.AddLine(new Vector2(-470.667999F, -329.359985F));
+ builder.AddLine(new Vector2(-473.90799F, -329.359985F));
+ builder.AddLine(new Vector2(-473.90799F, -305.096008F));
+ builder.AddLine(new Vector2(-470.667999F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1379()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-481.881989F, -306.140015F));
+ builder.AddCubicBezier(new Vector2(-480.742004F, -307.075989F), new Vector2(-480.171997F, -308.347992F), new Vector2(-480.171997F, -309.955994F));
+ builder.AddCubicBezier(new Vector2(-480.171997F, -311.011993F), new Vector2(-480.394012F, -311.864014F), new Vector2(-480.838013F, -312.511993F));
+ builder.AddCubicBezier(new Vector2(-481.282013F, -313.160004F), new Vector2(-481.85199F, -313.675995F), new Vector2(-482.548004F, -314.059998F));
+ builder.AddCubicBezier(new Vector2(-483.243988F, -314.444F), new Vector2(-483.976013F, -314.75F), new Vector2(-484.743988F, -314.977997F));
+ builder.AddCubicBezier(new Vector2(-485.511993F, -315.205994F), new Vector2(-486.25F, -315.428009F), new Vector2(-486.958008F, -315.644012F));
+ builder.AddCubicBezier(new Vector2(-487.665985F, -315.859985F), new Vector2(-488.235992F, -316.123993F), new Vector2(-488.667999F, -316.436005F));
+ builder.AddCubicBezier(new Vector2(-489.100006F, -316.747986F), new Vector2(-489.31601F, -317.191986F), new Vector2(-489.31601F, -317.768005F));
+ builder.AddCubicBezier(new Vector2(-489.31601F, -318.320007F), new Vector2(-489.070007F, -318.764008F), new Vector2(-488.578003F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-488.085999F, -319.436005F), new Vector2(-487.372009F, -319.604004F), new Vector2(-486.436005F, -319.604004F));
+ builder.AddCubicBezier(new Vector2(-485.548004F, -319.604004F), new Vector2(-484.756012F, -319.436005F), new Vector2(-484.059998F, -319.100006F));
+ builder.AddCubicBezier(new Vector2(-483.364014F, -318.764008F), new Vector2(-482.764008F, -318.283997F), new Vector2(-482.26001F, -317.660004F));
+ builder.AddLine(new Vector2(-480.171997F, -319.747986F));
+ builder.AddCubicBezier(new Vector2(-480.843994F, -320.68399F), new Vector2(-481.701996F, -321.385986F), new Vector2(-482.746002F, -321.854004F));
+ builder.AddCubicBezier(new Vector2(-483.790009F, -322.321991F), new Vector2(-484.984009F, -322.556F), new Vector2(-486.328003F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-487.600006F, -322.556F), new Vector2(-488.691986F, -322.35199F), new Vector2(-489.604004F, -321.944F));
+ builder.AddCubicBezier(new Vector2(-490.515991F, -321.536011F), new Vector2(-491.217987F, -320.95401F), new Vector2(-491.709991F, -320.197998F));
+ builder.AddCubicBezier(new Vector2(-492.201996F, -319.441986F), new Vector2(-492.447998F, -318.548004F), new Vector2(-492.447998F, -317.515991F));
+ builder.AddCubicBezier(new Vector2(-492.447998F, -316.484009F), new Vector2(-492.226013F, -315.649994F), new Vector2(-491.782013F, -315.014008F));
+ builder.AddCubicBezier(new Vector2(-491.338013F, -314.377991F), new Vector2(-490.768005F, -313.880005F), new Vector2(-490.071991F, -313.519989F));
+ builder.AddCubicBezier(new Vector2(-489.376007F, -313.160004F), new Vector2(-488.638F, -312.872009F), new Vector2(-487.858002F, -312.656006F));
+ builder.AddCubicBezier(new Vector2(-487.078003F, -312.440002F), new Vector2(-486.339996F, -312.217987F), new Vector2(-485.644012F, -311.98999F));
+ builder.AddCubicBezier(new Vector2(-484.947998F, -311.761993F), new Vector2(-484.377991F, -311.473999F), new Vector2(-483.93399F, -311.126007F));
+ builder.AddCubicBezier(new Vector2(-483.48999F, -310.778015F), new Vector2(-483.268005F, -310.291992F), new Vector2(-483.268005F, -309.667999F));
+ builder.AddCubicBezier(new Vector2(-483.268005F, -309.044006F), new Vector2(-483.544006F, -308.558014F), new Vector2(-484.096008F, -308.209991F));
+ builder.AddCubicBezier(new Vector2(-484.64801F, -307.862F), new Vector2(-485.428009F, -307.687988F), new Vector2(-486.436005F, -307.687988F));
+ builder.AddCubicBezier(new Vector2(-487.444F, -307.687988F), new Vector2(-488.355988F, -307.873993F), new Vector2(-489.171997F, -308.246002F));
+ builder.AddCubicBezier(new Vector2(-489.988007F, -308.618011F), new Vector2(-490.708008F, -309.187988F), new Vector2(-491.332001F, -309.955994F));
+ builder.AddLine(new Vector2(-493.420013F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-492.891998F, -307.220001F), new Vector2(-492.273987F, -306.661987F), new Vector2(-491.56601F, -306.194F));
+ builder.AddCubicBezier(new Vector2(-490.858002F, -305.726013F), new Vector2(-490.071991F, -305.365997F), new Vector2(-489.208008F, -305.114014F));
+ builder.AddCubicBezier(new Vector2(-488.343994F, -304.862F), new Vector2(-487.432007F, -304.735992F), new Vector2(-486.471985F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-484.552002F, -304.735992F), new Vector2(-483.022003F, -305.20401F), new Vector2(-481.881989F, -306.140015F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1380()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-499.503998F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-498.328003F, -305.996002F), new Vector2(-497.320007F, -306.727997F), new Vector2(-496.480011F, -307.687988F));
+ builder.AddLine(new Vector2(-498.567993F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-499.144012F, -309.140015F), new Vector2(-499.834015F, -308.635986F), new Vector2(-500.638F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-501.441986F, -307.963989F), new Vector2(-502.324005F, -307.79599F), new Vector2(-503.283997F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-504.436005F, -307.79599F), new Vector2(-505.455994F, -308.041992F), new Vector2(-506.343994F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-507.231995F, -309.026001F), new Vector2(-507.915985F, -309.721985F), new Vector2(-508.395996F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-508.876007F, -311.522003F), new Vector2(-509.115997F, -312.571991F), new Vector2(-509.115997F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-509.115997F, -314.947998F), new Vector2(-508.888F, -315.967987F), new Vector2(-508.432007F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-507.976013F, -317.696014F), new Vector2(-507.328003F, -318.368011F), new Vector2(-506.488007F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-505.64801F, -319.328003F), new Vector2(-504.675995F, -319.567993F), new Vector2(-503.571991F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-502.515991F, -319.567993F), new Vector2(-501.615997F, -319.346008F), new Vector2(-500.872009F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-500.127991F, -318.458008F), new Vector2(-499.552002F, -317.834015F), new Vector2(-499.144012F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-498.735992F, -316.226013F), new Vector2(-498.532013F, -315.247986F), new Vector2(-498.532013F, -314.096008F));
+ builder.AddLine(new Vector2(-497.343994F, -315.140015F));
+ builder.AddLine(new Vector2(-510.052002F, -315.140015F));
+ builder.AddLine(new Vector2(-510.052002F, -312.440002F));
+ builder.AddLine(new Vector2(-495.615997F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-495.544006F, -312.776001F), new Vector2(-495.496002F, -313.082001F), new Vector2(-495.471985F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-495.447998F, -313.634003F), new Vector2(-495.436005F, -313.891998F), new Vector2(-495.436005F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-495.436005F, -315.764008F), new Vector2(-495.778015F, -317.216003F), new Vector2(-496.462006F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-497.145996F, -319.76001F), new Vector2(-498.100006F, -320.756012F), new Vector2(-499.324005F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-500.548004F, -322.196014F), new Vector2(-501.940002F, -322.556F), new Vector2(-503.5F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-505.156006F, -322.556F), new Vector2(-506.649994F, -322.165985F), new Vector2(-507.981995F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-509.313995F, -320.605988F), new Vector2(-510.369995F, -319.544006F), new Vector2(-511.149994F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-511.929993F, -316.855988F), new Vector2(-512.320007F, -315.343994F), new Vector2(-512.320007F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-512.320007F, -311.959991F), new Vector2(-511.924011F, -310.436005F), new Vector2(-511.131989F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-510.339996F, -307.747986F), new Vector2(-509.265991F, -306.686005F), new Vector2(-507.910004F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-506.553986F, -305.126007F), new Vector2(-505.011993F, -304.735992F), new Vector2(-503.283997F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-501.940002F, -304.735992F), new Vector2(-500.679993F, -304.988007F), new Vector2(-499.503998F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1381()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-513.83197F, -319.243988F));
+ builder.AddLine(new Vector2(-513.83197F, -322.196014F));
+ builder.AddLine(new Vector2(-525.495972F, -322.196014F));
+ builder.AddLine(new Vector2(-525.495972F, -319.243988F));
+ builder.AddLine(new Vector2(-513.83197F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-518.044006F, -305.096008F));
+ builder.AddLine(new Vector2(-518.044006F, -329.359985F));
+ builder.AddLine(new Vector2(-521.283997F, -329.359985F));
+ builder.AddLine(new Vector2(-521.283997F, -305.096008F));
+ builder.AddLine(new Vector2(-518.044006F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1382()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-538.780029F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-539.619995F, -309.127991F), new Vector2(-540.280029F, -309.817993F), new Vector2(-540.76001F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-541.23999F, -311.570007F), new Vector2(-541.47998F, -312.571991F), new Vector2(-541.47998F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-541.47998F, -314.803986F), new Vector2(-541.23999F, -315.787994F), new Vector2(-540.76001F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-540.280029F, -317.515991F), new Vector2(-539.619995F, -318.194F), new Vector2(-538.780029F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-537.940002F, -319.178009F), new Vector2(-536.992004F, -319.424011F), new Vector2(-535.935974F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-534.83197F, -319.424011F), new Vector2(-533.866028F, -319.178009F), new Vector2(-533.038025F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-532.210022F, -318.194F), new Vector2(-531.549988F, -317.515991F), new Vector2(-531.057983F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-530.565979F, -315.787994F), new Vector2(-530.320007F, -314.803986F), new Vector2(-530.320007F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-530.320007F, -312.571991F), new Vector2(-530.559998F, -311.570007F), new Vector2(-531.039978F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-531.52002F, -309.817993F), new Vector2(-532.179993F, -309.127991F), new Vector2(-533.02002F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-533.859985F, -308.119995F), new Vector2(-534.83197F, -307.868011F), new Vector2(-535.935974F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-536.992004F, -307.868011F), new Vector2(-537.940002F, -308.119995F), new Vector2(-538.780029F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-531.382019F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-530.026001F, -306.716003F), new Vector2(-528.952026F, -307.790009F), new Vector2(-528.159973F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-527.367981F, -310.502014F), new Vector2(-526.971985F, -312.019989F), new Vector2(-526.971985F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-526.971985F, -315.355988F), new Vector2(-527.367981F, -316.855988F), new Vector2(-528.159973F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-528.952026F, -319.544006F), new Vector2(-530.026001F, -320.605988F), new Vector2(-531.382019F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-532.737976F, -322.165985F), new Vector2(-534.255981F, -322.556F), new Vector2(-535.935974F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-537.59198F, -322.556F), new Vector2(-539.09198F, -322.160004F), new Vector2(-540.435974F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-541.780029F, -320.575989F), new Vector2(-542.848022F, -319.514008F), new Vector2(-543.640015F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-544.432007F, -316.850006F), new Vector2(-544.828003F, -315.355988F), new Vector2(-544.828003F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-544.828003F, -312.019989F), new Vector2(-544.432007F, -310.502014F), new Vector2(-543.640015F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-542.848022F, -307.790009F), new Vector2(-541.780029F, -306.716003F), new Vector2(-540.435974F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-539.09198F, -305.131989F), new Vector2(-537.59198F, -304.735992F), new Vector2(-535.935974F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-534.255981F, -304.735992F), new Vector2(-532.737976F, -305.131989F), new Vector2(-531.382019F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1383()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-553.216003F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-552.447998F, -319.112F), new Vector2(-551.463989F, -319.496002F), new Vector2(-550.263977F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-549.687988F, -319.496002F), new Vector2(-549.184021F, -319.411987F), new Vector2(-548.752014F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-548.320007F, -319.075989F), new Vector2(-547.924011F, -318.799988F), new Vector2(-547.564026F, -318.415985F));
+ builder.AddLine(new Vector2(-545.440002F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-546.039978F, -321.308014F), new Vector2(-546.687988F, -321.806F), new Vector2(-547.383972F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-548.080017F, -322.406006F), new Vector2(-548.859985F, -322.556F), new Vector2(-549.723999F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-551.619995F, -322.556F), new Vector2(-553.072021F, -321.90799F), new Vector2(-554.080017F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-555.088013F, -319.31601F), new Vector2(-555.59198F, -317.575989F), new Vector2(-555.59198F, -315.391998F));
+ builder.AddLine(new Vector2(-554.367981F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-554.367981F, -316.399994F), new Vector2(-553.984009F, -317.575989F), new Vector2(-553.216003F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-554.367981F, -305.096008F));
+ builder.AddLine(new Vector2(-554.367981F, -322.196014F));
+ builder.AddLine(new Vector2(-557.607971F, -322.196014F));
+ builder.AddLine(new Vector2(-557.607971F, -305.096008F));
+ builder.AddLine(new Vector2(-554.367981F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1384()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-572.926025F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-573.754028F, -309.056F), new Vector2(-574.390015F, -309.746002F), new Vector2(-574.833984F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-575.278015F, -311.497986F), new Vector2(-575.5F, -312.5F), new Vector2(-575.5F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-575.5F, -314.779999F), new Vector2(-575.271973F, -315.794006F), new Vector2(-574.815979F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-574.359985F, -317.54599F), new Vector2(-573.723999F, -318.235992F), new Vector2(-572.90802F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-572.09198F, -319.243988F), new Vector2(-571.156006F, -319.496002F), new Vector2(-570.099976F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-569.02002F, -319.496002F), new Vector2(-568.072021F, -319.243988F), new Vector2(-567.255981F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-566.440002F, -318.235992F), new Vector2(-565.797974F, -317.54599F), new Vector2(-565.330017F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-564.862F, -315.794006F), new Vector2(-564.627991F, -314.791992F), new Vector2(-564.627991F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-564.627991F, -312.511993F), new Vector2(-564.862F, -311.497986F), new Vector2(-565.330017F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-565.797974F, -309.746002F), new Vector2(-566.440002F, -309.056F), new Vector2(-567.255981F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-568.072021F, -308.048004F), new Vector2(-569.02002F, -307.79599F), new Vector2(-570.099976F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-571.156006F, -307.79599F), new Vector2(-572.098022F, -308.048004F), new Vector2(-572.926025F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-575.320007F, -297.932007F));
+ builder.AddLine(new Vector2(-575.320007F, -309.380005F));
+ builder.AddLine(new Vector2(-575.932007F, -313.556F));
+ builder.AddLine(new Vector2(-575.320007F, -317.696014F));
+ builder.AddLine(new Vector2(-575.320007F, -322.196014F));
+ builder.AddLine(new Vector2(-578.559998F, -322.196014F));
+ builder.AddLine(new Vector2(-578.559998F, -297.932007F));
+ builder.AddLine(new Vector2(-575.320007F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-565.330017F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-564.070007F, -306.686005F), new Vector2(-563.080017F, -307.747986F), new Vector2(-562.359985F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-561.640015F, -310.436005F), new Vector2(-561.280029F, -311.947998F), new Vector2(-561.280029F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-561.280029F, -315.308014F), new Vector2(-561.640015F, -316.820007F), new Vector2(-562.359985F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-563.080017F, -319.507996F), new Vector2(-564.070007F, -320.575989F), new Vector2(-565.330017F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-566.590027F, -322.160004F), new Vector2(-568F, -322.556F), new Vector2(-569.559998F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-570.83197F, -322.556F), new Vector2(-571.98999F, -322.286011F), new Vector2(-573.033997F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-574.078003F, -321.205994F), new Vector2(-574.91803F, -320.462006F), new Vector2(-575.554016F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-576.190002F, -318.56601F), new Vector2(-576.544006F, -317.467987F), new Vector2(-576.616028F, -316.220001F));
+ builder.AddLine(new Vector2(-576.616028F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(-576.544006F, -309.847992F), new Vector2(-576.195984F, -308.756012F), new Vector2(-575.572021F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-574.947998F, -306.835999F), new Vector2(-574.114014F, -306.085999F), new Vector2(-573.070007F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-572.026001F, -305.006012F), new Vector2(-570.856018F, -304.735992F), new Vector2(-569.559998F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-568F, -304.735992F), new Vector2(-566.590027F, -305.126007F), new Vector2(-565.330017F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1385()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-593.607971F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-592.432007F, -305.996002F), new Vector2(-591.424011F, -306.727997F), new Vector2(-590.583984F, -307.687988F));
+ builder.AddLine(new Vector2(-592.671997F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-593.247986F, -309.140015F), new Vector2(-593.937988F, -308.635986F), new Vector2(-594.742004F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-595.546021F, -307.963989F), new Vector2(-596.427979F, -307.79599F), new Vector2(-597.388F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-598.539978F, -307.79599F), new Vector2(-599.559998F, -308.041992F), new Vector2(-600.447998F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-601.335999F, -309.026001F), new Vector2(-602.02002F, -309.721985F), new Vector2(-602.5F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-602.97998F, -311.522003F), new Vector2(-603.219971F, -312.571991F), new Vector2(-603.219971F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-603.219971F, -314.947998F), new Vector2(-602.992004F, -315.967987F), new Vector2(-602.536011F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-602.080017F, -317.696014F), new Vector2(-601.432007F, -318.368011F), new Vector2(-600.59198F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-599.752014F, -319.328003F), new Vector2(-598.780029F, -319.567993F), new Vector2(-597.676025F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-596.619995F, -319.567993F), new Vector2(-595.719971F, -319.346008F), new Vector2(-594.976013F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-594.231995F, -318.458008F), new Vector2(-593.656006F, -317.834015F), new Vector2(-593.247986F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-592.840027F, -316.226013F), new Vector2(-592.635986F, -315.247986F), new Vector2(-592.635986F, -314.096008F));
+ builder.AddLine(new Vector2(-591.447998F, -315.140015F));
+ builder.AddLine(new Vector2(-604.156006F, -315.140015F));
+ builder.AddLine(new Vector2(-604.156006F, -312.440002F));
+ builder.AddLine(new Vector2(-589.719971F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-589.64801F, -312.776001F), new Vector2(-589.599976F, -313.082001F), new Vector2(-589.575989F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-589.552002F, -313.634003F), new Vector2(-589.539978F, -313.891998F), new Vector2(-589.539978F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-589.539978F, -315.764008F), new Vector2(-589.882019F, -317.216003F), new Vector2(-590.565979F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-591.25F, -319.76001F), new Vector2(-592.203979F, -320.756012F), new Vector2(-593.427979F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-594.651978F, -322.196014F), new Vector2(-596.044006F, -322.556F), new Vector2(-597.604004F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-599.26001F, -322.556F), new Vector2(-600.754028F, -322.165985F), new Vector2(-602.085999F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-603.41803F, -320.605988F), new Vector2(-604.473999F, -319.544006F), new Vector2(-605.254028F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-606.033997F, -316.855988F), new Vector2(-606.424011F, -315.343994F), new Vector2(-606.424011F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-606.424011F, -311.959991F), new Vector2(-606.028015F, -310.436005F), new Vector2(-605.236023F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-604.44397F, -307.747986F), new Vector2(-603.369995F, -306.686005F), new Vector2(-602.013977F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-600.65802F, -305.126007F), new Vector2(-599.116028F, -304.735992F), new Vector2(-597.388F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-596.044006F, -304.735992F), new Vector2(-594.783997F, -304.988007F), new Vector2(-593.607971F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1386()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-621.796021F, -305.096008F));
+ builder.AddLine(new Vector2(-621.796021F, -330.799988F));
+ builder.AddLine(new Vector2(-625.036011F, -330.799988F));
+ builder.AddLine(new Vector2(-625.036011F, -305.096008F));
+ builder.AddLine(new Vector2(-621.796021F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-609.700012F, -305.096008F));
+ builder.AddLine(new Vector2(-609.700012F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-609.700012F, -317.059998F), new Vector2(-609.987976F, -318.247986F), new Vector2(-610.564026F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-611.140015F, -320.312012F), new Vector2(-611.926025F, -321.115997F), new Vector2(-612.921997F, -321.691986F));
+ builder.AddCubicBezier(new Vector2(-613.91803F, -322.268005F), new Vector2(-615.064026F, -322.556F), new Vector2(-616.359985F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-617.656006F, -322.556F), new Vector2(-618.820007F, -322.261993F), new Vector2(-619.85199F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-620.883972F, -321.085999F), new Vector2(-621.687988F, -320.287994F), new Vector2(-622.263977F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-622.840027F, -318.272003F), new Vector2(-623.127991F, -317.119995F), new Vector2(-623.127991F, -315.824005F));
+ builder.AddLine(new Vector2(-621.796021F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-621.796021F, -315.932007F), new Vector2(-621.604004F, -316.700012F), new Vector2(-621.219971F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-620.835999F, -318.044006F), new Vector2(-620.307983F, -318.571991F), new Vector2(-619.635986F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-618.963989F, -319.339996F), new Vector2(-618.195984F, -319.532013F), new Vector2(-617.33197F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-616.036011F, -319.532013F), new Vector2(-614.986023F, -319.112F), new Vector2(-614.182007F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-613.377991F, -317.432007F), new Vector2(-612.976013F, -316.364014F), new Vector2(-612.976013F, -315.067993F));
+ builder.AddLine(new Vector2(-612.976013F, -305.096008F));
+ builder.AddLine(new Vector2(-609.700012F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1387()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-628.203979F, -319.243988F));
+ builder.AddLine(new Vector2(-628.203979F, -322.196014F));
+ builder.AddLine(new Vector2(-639.867981F, -322.196014F));
+ builder.AddLine(new Vector2(-639.867981F, -319.243988F));
+ builder.AddLine(new Vector2(-628.203979F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-632.416016F, -305.096008F));
+ builder.AddLine(new Vector2(-632.416016F, -329.359985F));
+ builder.AddLine(new Vector2(-635.656006F, -329.359985F));
+ builder.AddLine(new Vector2(-635.656006F, -305.096008F));
+ builder.AddLine(new Vector2(-632.416016F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1388()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-661.143982F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-661.984009F, -309.127991F), new Vector2(-662.643982F, -309.817993F), new Vector2(-663.124023F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-663.604004F, -311.570007F), new Vector2(-663.843994F, -312.571991F), new Vector2(-663.843994F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-663.843994F, -314.803986F), new Vector2(-663.604004F, -315.787994F), new Vector2(-663.124023F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-662.643982F, -317.515991F), new Vector2(-661.984009F, -318.194F), new Vector2(-661.143982F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-660.304016F, -319.178009F), new Vector2(-659.356018F, -319.424011F), new Vector2(-658.299988F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-657.195984F, -319.424011F), new Vector2(-656.22998F, -319.178009F), new Vector2(-655.401978F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-654.573975F, -318.194F), new Vector2(-653.914001F, -317.515991F), new Vector2(-653.421997F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-652.929993F, -315.787994F), new Vector2(-652.684021F, -314.803986F), new Vector2(-652.684021F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-652.684021F, -312.571991F), new Vector2(-652.924011F, -311.570007F), new Vector2(-653.403992F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-653.883972F, -309.817993F), new Vector2(-654.544006F, -309.127991F), new Vector2(-655.383972F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-656.223999F, -308.119995F), new Vector2(-657.195984F, -307.868011F), new Vector2(-658.299988F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-659.356018F, -307.868011F), new Vector2(-660.304016F, -308.119995F), new Vector2(-661.143982F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-653.745972F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-652.390015F, -306.716003F), new Vector2(-651.315979F, -307.790009F), new Vector2(-650.523987F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-649.731995F, -310.502014F), new Vector2(-649.335999F, -312.019989F), new Vector2(-649.335999F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-649.335999F, -315.355988F), new Vector2(-649.731995F, -316.855988F), new Vector2(-650.523987F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-651.315979F, -319.544006F), new Vector2(-652.390015F, -320.605988F), new Vector2(-653.745972F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-655.10199F, -322.165985F), new Vector2(-656.619995F, -322.556F), new Vector2(-658.299988F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-659.955994F, -322.556F), new Vector2(-661.455994F, -322.160004F), new Vector2(-662.799988F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-664.143982F, -320.575989F), new Vector2(-665.211975F, -319.514008F), new Vector2(-666.004028F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-666.796021F, -316.850006F), new Vector2(-667.192017F, -315.355988F), new Vector2(-667.192017F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-667.192017F, -312.019989F), new Vector2(-666.796021F, -310.502014F), new Vector2(-666.004028F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-665.211975F, -307.790009F), new Vector2(-664.143982F, -306.716003F), new Vector2(-662.799988F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-661.455994F, -305.131989F), new Vector2(-659.955994F, -304.735992F), new Vector2(-658.299988F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-656.619995F, -304.735992F), new Vector2(-655.10199F, -305.131989F), new Vector2(-653.745972F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1389()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-668.703979F, -319.243988F));
+ builder.AddLine(new Vector2(-668.703979F, -322.196014F));
+ builder.AddLine(new Vector2(-680.367981F, -322.196014F));
+ builder.AddLine(new Vector2(-680.367981F, -319.243988F));
+ builder.AddLine(new Vector2(-668.703979F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-672.916016F, -305.096008F));
+ builder.AddLine(new Vector2(-672.916016F, -329.359985F));
+ builder.AddLine(new Vector2(-676.156006F, -329.359985F));
+ builder.AddLine(new Vector2(-676.156006F, -305.096008F));
+ builder.AddLine(new Vector2(-672.916016F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1390()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-693.83197F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-692.656006F, -305.996002F), new Vector2(-691.64801F, -306.727997F), new Vector2(-690.807983F, -307.687988F));
+ builder.AddLine(new Vector2(-692.895996F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-693.471985F, -309.140015F), new Vector2(-694.161987F, -308.635986F), new Vector2(-694.966003F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-695.77002F, -307.963989F), new Vector2(-696.651978F, -307.79599F), new Vector2(-697.612F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-698.763977F, -307.79599F), new Vector2(-699.783997F, -308.041992F), new Vector2(-700.671997F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-701.559998F, -309.026001F), new Vector2(-702.244019F, -309.721985F), new Vector2(-702.723999F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-703.203979F, -311.522003F), new Vector2(-703.44397F, -312.571991F), new Vector2(-703.44397F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-703.44397F, -314.947998F), new Vector2(-703.216003F, -315.967987F), new Vector2(-702.76001F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-702.304016F, -317.696014F), new Vector2(-701.656006F, -318.368011F), new Vector2(-700.815979F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-699.976013F, -319.328003F), new Vector2(-699.004028F, -319.567993F), new Vector2(-697.900024F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-696.843994F, -319.567993F), new Vector2(-695.94397F, -319.346008F), new Vector2(-695.200012F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-694.455994F, -318.458008F), new Vector2(-693.880005F, -317.834015F), new Vector2(-693.471985F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-693.064026F, -316.226013F), new Vector2(-692.859985F, -315.247986F), new Vector2(-692.859985F, -314.096008F));
+ builder.AddLine(new Vector2(-691.671997F, -315.140015F));
+ builder.AddLine(new Vector2(-704.380005F, -315.140015F));
+ builder.AddLine(new Vector2(-704.380005F, -312.440002F));
+ builder.AddLine(new Vector2(-689.94397F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-689.872009F, -312.776001F), new Vector2(-689.823975F, -313.082001F), new Vector2(-689.799988F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-689.776001F, -313.634003F), new Vector2(-689.763977F, -313.891998F), new Vector2(-689.763977F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-689.763977F, -315.764008F), new Vector2(-690.106018F, -317.216003F), new Vector2(-690.789978F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-691.473999F, -319.76001F), new Vector2(-692.427979F, -320.756012F), new Vector2(-693.651978F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-694.875977F, -322.196014F), new Vector2(-696.268005F, -322.556F), new Vector2(-697.828003F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-699.484009F, -322.556F), new Vector2(-700.978027F, -322.165985F), new Vector2(-702.309998F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-703.642029F, -320.605988F), new Vector2(-704.697998F, -319.544006F), new Vector2(-705.478027F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-706.257996F, -316.855988F), new Vector2(-706.64801F, -315.343994F), new Vector2(-706.64801F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-706.64801F, -311.959991F), new Vector2(-706.252014F, -310.436005F), new Vector2(-705.460022F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-704.66803F, -307.747986F), new Vector2(-703.593994F, -306.686005F), new Vector2(-702.237976F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-700.882019F, -305.126007F), new Vector2(-699.340027F, -304.735992F), new Vector2(-697.612F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-696.268005F, -304.735992F), new Vector2(-695.007996F, -304.988007F), new Vector2(-693.83197F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1391()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-715.036011F, -318.343994F));
+ builder.AddCubicBezier(new Vector2(-714.268005F, -319.112F), new Vector2(-713.283997F, -319.496002F), new Vector2(-712.083984F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-711.507996F, -319.496002F), new Vector2(-711.004028F, -319.411987F), new Vector2(-710.572021F, -319.243988F));
+ builder.AddCubicBezier(new Vector2(-710.140015F, -319.075989F), new Vector2(-709.744019F, -318.799988F), new Vector2(-709.383972F, -318.415985F));
+ builder.AddLine(new Vector2(-707.26001F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-707.859985F, -321.308014F), new Vector2(-708.507996F, -321.806F), new Vector2(-709.203979F, -322.105988F));
+ builder.AddCubicBezier(new Vector2(-709.900024F, -322.406006F), new Vector2(-710.679993F, -322.556F), new Vector2(-711.544006F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-713.440002F, -322.556F), new Vector2(-714.892029F, -321.90799F), new Vector2(-715.900024F, -320.612F));
+ builder.AddCubicBezier(new Vector2(-716.90802F, -319.31601F), new Vector2(-717.411987F, -317.575989F), new Vector2(-717.411987F, -315.391998F));
+ builder.AddLine(new Vector2(-716.187988F, -314.81601F));
+ builder.AddCubicBezier(new Vector2(-716.187988F, -316.399994F), new Vector2(-715.804016F, -317.575989F), new Vector2(-715.036011F, -318.343994F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-716.187988F, -305.096008F));
+ builder.AddLine(new Vector2(-716.187988F, -322.196014F));
+ builder.AddLine(new Vector2(-719.427979F, -322.196014F));
+ builder.AddLine(new Vector2(-719.427979F, -305.096008F));
+ builder.AddLine(new Vector2(-716.187988F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1392()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-724.359985F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-723.976013F, -326.605988F), new Vector2(-723.783997F, -327.104004F), new Vector2(-723.783997F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-723.783997F, -328.279999F), new Vector2(-723.976013F, -328.765991F), new Vector2(-724.359985F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-724.744019F, -329.558014F), new Vector2(-725.236023F, -329.756012F), new Vector2(-725.835999F, -329.756012F));
+ builder.AddCubicBezier(new Vector2(-726.435974F, -329.756012F), new Vector2(-726.927979F, -329.558014F), new Vector2(-727.312012F, -329.161987F));
+ builder.AddCubicBezier(new Vector2(-727.695984F, -328.765991F), new Vector2(-727.888F, -328.279999F), new Vector2(-727.888F, -327.70401F));
+ builder.AddCubicBezier(new Vector2(-727.888F, -327.104004F), new Vector2(-727.695984F, -326.605988F), new Vector2(-727.312012F, -326.209991F));
+ builder.AddCubicBezier(new Vector2(-726.927979F, -325.813995F), new Vector2(-726.435974F, -325.615997F), new Vector2(-725.835999F, -325.615997F));
+ builder.AddCubicBezier(new Vector2(-725.236023F, -325.615997F), new Vector2(-724.744019F, -325.813995F), new Vector2(-724.359985F, -326.209991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-724.216003F, -305.096008F));
+ builder.AddLine(new Vector2(-724.216003F, -322.196014F));
+ builder.AddLine(new Vector2(-727.492004F, -322.196014F));
+ builder.AddLine(new Vector2(-727.492004F, -305.096008F));
+ builder.AddLine(new Vector2(-724.216003F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1393()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-730.731995F, -319.243988F));
+ builder.AddLine(new Vector2(-730.731995F, -322.196014F));
+ builder.AddLine(new Vector2(-743.619995F, -322.196014F));
+ builder.AddLine(new Vector2(-743.619995F, -319.243988F));
+ builder.AddLine(new Vector2(-730.731995F, -319.243988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-736.16803F, -305.096008F));
+ builder.AddLine(new Vector2(-736.16803F, -324.752014F));
+ builder.AddCubicBezier(new Vector2(-736.16803F, -325.808014F), new Vector2(-735.885986F, -326.630005F), new Vector2(-735.322021F, -327.217987F));
+ builder.AddCubicBezier(new Vector2(-734.757996F, -327.806F), new Vector2(-733.960022F, -328.100006F), new Vector2(-732.927979F, -328.100006F));
+ builder.AddCubicBezier(new Vector2(-732.375977F, -328.100006F), new Vector2(-731.90802F, -328.015991F), new Vector2(-731.523987F, -327.847992F));
+ builder.AddCubicBezier(new Vector2(-731.140015F, -327.679993F), new Vector2(-730.791992F, -327.428009F), new Vector2(-730.47998F, -327.09201F));
+ builder.AddLine(new Vector2(-728.356018F, -329.179993F));
+ builder.AddCubicBezier(new Vector2(-728.955994F, -329.828003F), new Vector2(-729.616028F, -330.320007F), new Vector2(-730.335999F, -330.656006F));
+ builder.AddCubicBezier(new Vector2(-731.05603F, -330.992004F), new Vector2(-731.90802F, -331.160004F), new Vector2(-732.892029F, -331.160004F));
+ builder.AddCubicBezier(new Vector2(-734.187988F, -331.160004F), new Vector2(-735.328003F, -330.884003F), new Vector2(-736.312012F, -330.332001F));
+ builder.AddCubicBezier(new Vector2(-737.296021F, -329.779999F), new Vector2(-738.064026F, -329.023987F), new Vector2(-738.616028F, -328.063995F));
+ builder.AddCubicBezier(new Vector2(-739.16803F, -327.104004F), new Vector2(-739.44397F, -326F), new Vector2(-739.44397F, -324.752014F));
+ builder.AddLine(new Vector2(-739.44397F, -305.096008F));
+ builder.AddLine(new Vector2(-736.16803F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1394()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-765.796021F, -305.096008F));
+ builder.AddLine(new Vector2(-765.796021F, -322.196014F));
+ builder.AddLine(new Vector2(-769.036011F, -322.196014F));
+ builder.AddLine(new Vector2(-769.036011F, -305.096008F));
+ builder.AddLine(new Vector2(-765.796021F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-753.700012F, -305.096008F));
+ builder.AddLine(new Vector2(-753.700012F, -315.716003F));
+ builder.AddCubicBezier(new Vector2(-753.700012F, -316.891998F), new Vector2(-753.987976F, -318.002014F), new Vector2(-754.564026F, -319.04599F));
+ builder.AddCubicBezier(new Vector2(-755.140015F, -320.089996F), new Vector2(-755.926025F, -320.936005F), new Vector2(-756.921997F, -321.584015F));
+ builder.AddCubicBezier(new Vector2(-757.91803F, -322.231995F), new Vector2(-759.064026F, -322.556F), new Vector2(-760.359985F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-761.656006F, -322.556F), new Vector2(-762.820007F, -322.261993F), new Vector2(-763.85199F, -321.674011F));
+ builder.AddCubicBezier(new Vector2(-764.883972F, -321.085999F), new Vector2(-765.687988F, -320.287994F), new Vector2(-766.263977F, -319.279999F));
+ builder.AddCubicBezier(new Vector2(-766.840027F, -318.272003F), new Vector2(-767.127991F, -317.119995F), new Vector2(-767.127991F, -315.824005F));
+ builder.AddLine(new Vector2(-765.796021F, -315.067993F));
+ builder.AddCubicBezier(new Vector2(-765.796021F, -315.932007F), new Vector2(-765.604004F, -316.700012F), new Vector2(-765.219971F, -317.372009F));
+ builder.AddCubicBezier(new Vector2(-764.835999F, -318.044006F), new Vector2(-764.307983F, -318.571991F), new Vector2(-763.635986F, -318.955994F));
+ builder.AddCubicBezier(new Vector2(-762.963989F, -319.339996F), new Vector2(-762.195984F, -319.532013F), new Vector2(-761.33197F, -319.532013F));
+ builder.AddCubicBezier(new Vector2(-760.036011F, -319.532013F), new Vector2(-758.986023F, -319.112F), new Vector2(-758.182007F, -318.272003F));
+ builder.AddCubicBezier(new Vector2(-757.377991F, -317.432007F), new Vector2(-756.976013F, -316.364014F), new Vector2(-756.976013F, -315.067993F));
+ builder.AddLine(new Vector2(-756.976013F, -305.096008F));
+ builder.AddLine(new Vector2(-753.700012F, -305.096008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1395()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-776.632019F, -305.492004F));
+ builder.AddCubicBezier(new Vector2(-775.455994F, -305.996002F), new Vector2(-774.447998F, -306.727997F), new Vector2(-773.607971F, -307.687988F));
+ builder.AddLine(new Vector2(-775.695984F, -309.812012F));
+ builder.AddCubicBezier(new Vector2(-776.271973F, -309.140015F), new Vector2(-776.961975F, -308.635986F), new Vector2(-777.765991F, -308.299988F));
+ builder.AddCubicBezier(new Vector2(-778.570007F, -307.963989F), new Vector2(-779.452026F, -307.79599F), new Vector2(-780.411987F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-781.564026F, -307.79599F), new Vector2(-782.583984F, -308.041992F), new Vector2(-783.471985F, -308.533997F));
+ builder.AddCubicBezier(new Vector2(-784.359985F, -309.026001F), new Vector2(-785.044006F, -309.721985F), new Vector2(-785.523987F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-786.004028F, -311.522003F), new Vector2(-786.244019F, -312.571991F), new Vector2(-786.244019F, -313.772003F));
+ builder.AddCubicBezier(new Vector2(-786.244019F, -314.947998F), new Vector2(-786.015991F, -315.967987F), new Vector2(-785.559998F, -316.832001F));
+ builder.AddCubicBezier(new Vector2(-785.104004F, -317.696014F), new Vector2(-784.455994F, -318.368011F), new Vector2(-783.616028F, -318.847992F));
+ builder.AddCubicBezier(new Vector2(-782.776001F, -319.328003F), new Vector2(-781.804016F, -319.567993F), new Vector2(-780.700012F, -319.567993F));
+ builder.AddCubicBezier(new Vector2(-779.643982F, -319.567993F), new Vector2(-778.744019F, -319.346008F), new Vector2(-778F, -318.902008F));
+ builder.AddCubicBezier(new Vector2(-777.255981F, -318.458008F), new Vector2(-776.679993F, -317.834015F), new Vector2(-776.271973F, -317.029999F));
+ builder.AddCubicBezier(new Vector2(-775.864014F, -316.226013F), new Vector2(-775.659973F, -315.247986F), new Vector2(-775.659973F, -314.096008F));
+ builder.AddLine(new Vector2(-774.471985F, -315.140015F));
+ builder.AddLine(new Vector2(-787.179993F, -315.140015F));
+ builder.AddLine(new Vector2(-787.179993F, -312.440002F));
+ builder.AddLine(new Vector2(-772.744019F, -312.440002F));
+ builder.AddCubicBezier(new Vector2(-772.671997F, -312.776001F), new Vector2(-772.624023F, -313.082001F), new Vector2(-772.599976F, -313.358002F));
+ builder.AddCubicBezier(new Vector2(-772.575989F, -313.634003F), new Vector2(-772.564026F, -313.891998F), new Vector2(-772.564026F, -314.131989F));
+ builder.AddCubicBezier(new Vector2(-772.564026F, -315.764008F), new Vector2(-772.906006F, -317.216003F), new Vector2(-773.590027F, -318.488007F));
+ builder.AddCubicBezier(new Vector2(-774.273987F, -319.76001F), new Vector2(-775.228027F, -320.756012F), new Vector2(-776.452026F, -321.476013F));
+ builder.AddCubicBezier(new Vector2(-777.676025F, -322.196014F), new Vector2(-779.067993F, -322.556F), new Vector2(-780.627991F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-782.283997F, -322.556F), new Vector2(-783.778015F, -322.165985F), new Vector2(-785.109985F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-786.442017F, -320.605988F), new Vector2(-787.497986F, -319.544006F), new Vector2(-788.278015F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-789.057983F, -316.855988F), new Vector2(-789.447998F, -315.343994F), new Vector2(-789.447998F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-789.447998F, -311.959991F), new Vector2(-789.052002F, -310.436005F), new Vector2(-788.26001F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-787.468018F, -307.747986F), new Vector2(-786.393982F, -306.686005F), new Vector2(-785.038025F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-783.682007F, -305.126007F), new Vector2(-782.140015F, -304.735992F), new Vector2(-780.411987F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-779.067993F, -304.735992F), new Vector2(-777.807983F, -304.988007F), new Vector2(-776.632019F, -305.492004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1396()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-803.650024F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-804.478027F, -309.056F), new Vector2(-805.114014F, -309.746002F), new Vector2(-805.557983F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-806.002014F, -311.497986F), new Vector2(-806.223999F, -312.5F), new Vector2(-806.223999F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-806.223999F, -314.779999F), new Vector2(-805.995972F, -315.794006F), new Vector2(-805.539978F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-805.083984F, -317.54599F), new Vector2(-804.447998F, -318.235992F), new Vector2(-803.632019F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-802.815979F, -319.243988F), new Vector2(-801.880005F, -319.496002F), new Vector2(-800.823975F, -319.496002F));
+ builder.AddCubicBezier(new Vector2(-799.744019F, -319.496002F), new Vector2(-798.796021F, -319.243988F), new Vector2(-797.97998F, -318.73999F));
+ builder.AddCubicBezier(new Vector2(-797.164001F, -318.235992F), new Vector2(-796.521973F, -317.54599F), new Vector2(-796.054016F, -316.670013F));
+ builder.AddCubicBezier(new Vector2(-795.585999F, -315.794006F), new Vector2(-795.35199F, -314.791992F), new Vector2(-795.35199F, -313.664001F));
+ builder.AddCubicBezier(new Vector2(-795.35199F, -312.511993F), new Vector2(-795.585999F, -311.497986F), new Vector2(-796.054016F, -310.622009F));
+ builder.AddCubicBezier(new Vector2(-796.521973F, -309.746002F), new Vector2(-797.164001F, -309.056F), new Vector2(-797.97998F, -308.552002F));
+ builder.AddCubicBezier(new Vector2(-798.796021F, -308.048004F), new Vector2(-799.744019F, -307.79599F), new Vector2(-800.823975F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-801.880005F, -307.79599F), new Vector2(-802.822021F, -308.048004F), new Vector2(-803.650024F, -308.552002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-806.044006F, -297.932007F));
+ builder.AddLine(new Vector2(-806.044006F, -309.380005F));
+ builder.AddLine(new Vector2(-806.656006F, -313.556F));
+ builder.AddLine(new Vector2(-806.044006F, -317.696014F));
+ builder.AddLine(new Vector2(-806.044006F, -322.196014F));
+ builder.AddLine(new Vector2(-809.283997F, -322.196014F));
+ builder.AddLine(new Vector2(-809.283997F, -297.932007F));
+ builder.AddLine(new Vector2(-806.044006F, -297.932007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-796.054016F, -305.906006F));
+ builder.AddCubicBezier(new Vector2(-794.794006F, -306.686005F), new Vector2(-793.804016F, -307.747986F), new Vector2(-793.083984F, -309.09201F));
+ builder.AddCubicBezier(new Vector2(-792.364014F, -310.436005F), new Vector2(-792.004028F, -311.947998F), new Vector2(-792.004028F, -313.627991F));
+ builder.AddCubicBezier(new Vector2(-792.004028F, -315.308014F), new Vector2(-792.364014F, -316.820007F), new Vector2(-793.083984F, -318.164001F));
+ builder.AddCubicBezier(new Vector2(-793.804016F, -319.507996F), new Vector2(-794.794006F, -320.575989F), new Vector2(-796.054016F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-797.314026F, -322.160004F), new Vector2(-798.723999F, -322.556F), new Vector2(-800.283997F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-801.55603F, -322.556F), new Vector2(-802.713989F, -322.286011F), new Vector2(-803.757996F, -321.746002F));
+ builder.AddCubicBezier(new Vector2(-804.802002F, -321.205994F), new Vector2(-805.642029F, -320.462006F), new Vector2(-806.278015F, -319.514008F));
+ builder.AddCubicBezier(new Vector2(-806.914001F, -318.56601F), new Vector2(-807.268005F, -317.467987F), new Vector2(-807.340027F, -316.220001F));
+ builder.AddLine(new Vector2(-807.340027F, -311.071991F));
+ builder.AddCubicBezier(new Vector2(-807.268005F, -309.847992F), new Vector2(-806.919983F, -308.756012F), new Vector2(-806.296021F, -307.79599F));
+ builder.AddCubicBezier(new Vector2(-805.671997F, -306.835999F), new Vector2(-804.838013F, -306.085999F), new Vector2(-803.794006F, -305.54599F));
+ builder.AddCubicBezier(new Vector2(-802.75F, -305.006012F), new Vector2(-801.580017F, -304.735992F), new Vector2(-800.283997F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-798.723999F, -304.735992F), new Vector2(-797.314026F, -305.126007F), new Vector2(-796.054016F, -305.906006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1397()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-824.692017F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-825.531982F, -309.127991F), new Vector2(-826.192017F, -309.817993F), new Vector2(-826.671997F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-827.151978F, -311.570007F), new Vector2(-827.392029F, -312.571991F), new Vector2(-827.392029F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-827.392029F, -314.803986F), new Vector2(-827.151978F, -315.787994F), new Vector2(-826.671997F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-826.192017F, -317.515991F), new Vector2(-825.531982F, -318.194F), new Vector2(-824.692017F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-823.85199F, -319.178009F), new Vector2(-822.903992F, -319.424011F), new Vector2(-821.848022F, -319.424011F));
+ builder.AddCubicBezier(new Vector2(-820.744019F, -319.424011F), new Vector2(-819.778015F, -319.178009F), new Vector2(-818.950012F, -318.686005F));
+ builder.AddCubicBezier(new Vector2(-818.122009F, -318.194F), new Vector2(-817.461975F, -317.515991F), new Vector2(-816.969971F, -316.652008F));
+ builder.AddCubicBezier(new Vector2(-816.478027F, -315.787994F), new Vector2(-816.231995F, -314.803986F), new Vector2(-816.231995F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-816.231995F, -312.571991F), new Vector2(-816.471985F, -311.570007F), new Vector2(-816.952026F, -310.694F));
+ builder.AddCubicBezier(new Vector2(-817.432007F, -309.817993F), new Vector2(-818.09198F, -309.127991F), new Vector2(-818.932007F, -308.623993F));
+ builder.AddCubicBezier(new Vector2(-819.771973F, -308.119995F), new Vector2(-820.744019F, -307.868011F), new Vector2(-821.848022F, -307.868011F));
+ builder.AddCubicBezier(new Vector2(-822.903992F, -307.868011F), new Vector2(-823.85199F, -308.119995F), new Vector2(-824.692017F, -308.623993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-817.294006F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-815.937988F, -306.716003F), new Vector2(-814.864014F, -307.790009F), new Vector2(-814.072021F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-813.280029F, -310.502014F), new Vector2(-812.883972F, -312.019989F), new Vector2(-812.883972F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-812.883972F, -315.355988F), new Vector2(-813.280029F, -316.855988F), new Vector2(-814.072021F, -318.200012F));
+ builder.AddCubicBezier(new Vector2(-814.864014F, -319.544006F), new Vector2(-815.937988F, -320.605988F), new Vector2(-817.294006F, -321.385986F));
+ builder.AddCubicBezier(new Vector2(-818.650024F, -322.165985F), new Vector2(-820.16803F, -322.556F), new Vector2(-821.848022F, -322.556F));
+ builder.AddCubicBezier(new Vector2(-823.504028F, -322.556F), new Vector2(-825.004028F, -322.160004F), new Vector2(-826.348022F, -321.368011F));
+ builder.AddCubicBezier(new Vector2(-827.692017F, -320.575989F), new Vector2(-828.76001F, -319.514008F), new Vector2(-829.552002F, -318.182007F));
+ builder.AddCubicBezier(new Vector2(-830.343994F, -316.850006F), new Vector2(-830.73999F, -315.355988F), new Vector2(-830.73999F, -313.700012F));
+ builder.AddCubicBezier(new Vector2(-830.73999F, -312.019989F), new Vector2(-830.343994F, -310.502014F), new Vector2(-829.552002F, -309.145996F));
+ builder.AddCubicBezier(new Vector2(-828.76001F, -307.790009F), new Vector2(-827.692017F, -306.716003F), new Vector2(-826.348022F, -305.924011F));
+ builder.AddCubicBezier(new Vector2(-825.004028F, -305.131989F), new Vector2(-823.504028F, -304.735992F), new Vector2(-821.848022F, -304.735992F));
+ builder.AddCubicBezier(new Vector2(-820.16803F, -304.735992F), new Vector2(-818.650024F, -305.131989F), new Vector2(-817.294006F, -305.924011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1398()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(789.547974F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(788.708008F, -352.328003F), new Vector2(788.047974F, -353.018005F), new Vector2(787.567993F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(787.088013F, -354.769989F), new Vector2(786.848022F, -355.772003F), new Vector2(786.848022F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(786.848022F, -358.003998F), new Vector2(787.088013F, -358.988007F), new Vector2(787.567993F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(788.047974F, -360.716003F), new Vector2(788.708008F, -361.394012F), new Vector2(789.547974F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(790.388F, -362.377991F), new Vector2(791.335999F, -362.623993F), new Vector2(792.392029F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(793.495972F, -362.623993F), new Vector2(794.461975F, -362.377991F), new Vector2(795.289978F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(796.117981F, -361.394012F), new Vector2(796.778015F, -360.716003F), new Vector2(797.27002F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(797.762024F, -358.988007F), new Vector2(798.007996F, -358.003998F), new Vector2(798.007996F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(798.007996F, -355.772003F), new Vector2(797.768005F, -354.769989F), new Vector2(797.288025F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(796.807983F, -353.018005F), new Vector2(796.14801F, -352.328003F), new Vector2(795.307983F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(794.468018F, -351.320007F), new Vector2(793.495972F, -351.067993F), new Vector2(792.392029F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(791.335999F, -351.067993F), new Vector2(790.388F, -351.320007F), new Vector2(789.547974F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(796.945984F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(798.302002F, -349.915985F), new Vector2(799.375977F, -350.98999F), new Vector2(800.16803F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(800.960022F, -353.701996F), new Vector2(801.356018F, -355.220001F), new Vector2(801.356018F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(801.356018F, -358.556F), new Vector2(800.960022F, -360.056F), new Vector2(800.16803F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(799.375977F, -362.743988F), new Vector2(798.302002F, -363.806F), new Vector2(796.945984F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(795.590027F, -365.365997F), new Vector2(794.072021F, -365.756012F), new Vector2(792.392029F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(790.736023F, -365.756012F), new Vector2(789.236023F, -365.359985F), new Vector2(787.892029F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(786.547974F, -363.776001F), new Vector2(785.47998F, -362.713989F), new Vector2(784.687988F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(783.895996F, -360.049988F), new Vector2(783.5F, -358.556F), new Vector2(783.5F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(783.5F, -355.220001F), new Vector2(783.895996F, -353.701996F), new Vector2(784.687988F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(785.47998F, -350.98999F), new Vector2(786.547974F, -349.915985F), new Vector2(787.892029F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(789.236023F, -348.332001F), new Vector2(790.736023F, -347.936005F), new Vector2(792.392029F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(794.072021F, -347.936005F), new Vector2(795.590027F, -348.332001F), new Vector2(796.945984F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1399()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(781.987976F, -362.444F));
+ builder.AddLine(new Vector2(781.987976F, -365.395996F));
+ builder.AddLine(new Vector2(770.323975F, -365.395996F));
+ builder.AddLine(new Vector2(770.323975F, -362.444F));
+ builder.AddLine(new Vector2(781.987976F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(777.776001F, -348.29599F));
+ builder.AddLine(new Vector2(777.776001F, -372.559998F));
+ builder.AddLine(new Vector2(774.536011F, -372.559998F));
+ builder.AddLine(new Vector2(774.536011F, -348.29599F));
+ builder.AddLine(new Vector2(777.776001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1400()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(747.968018F, -348.29599F));
+ builder.AddLine(new Vector2(747.968018F, -365.395996F));
+ builder.AddLine(new Vector2(744.728027F, -365.395996F));
+ builder.AddLine(new Vector2(744.728027F, -348.29599F));
+ builder.AddLine(new Vector2(747.968018F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(760.064026F, -348.29599F));
+ builder.AddLine(new Vector2(760.064026F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(760.064026F, -360.09201F), new Vector2(759.776001F, -361.201996F), new Vector2(759.200012F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(758.624023F, -363.290009F), new Vector2(757.838013F, -364.135986F), new Vector2(756.84198F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(755.846008F, -365.432007F), new Vector2(754.700012F, -365.756012F), new Vector2(753.403992F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(752.107971F, -365.756012F), new Vector2(750.94397F, -365.462006F), new Vector2(749.911987F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(748.880005F, -364.286011F), new Vector2(748.075989F, -363.488007F), new Vector2(747.5F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(746.924011F, -361.471985F), new Vector2(746.635986F, -360.320007F), new Vector2(746.635986F, -359.023987F));
+ builder.AddLine(new Vector2(747.968018F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(747.968018F, -359.131989F), new Vector2(748.159973F, -359.899994F), new Vector2(748.544006F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(748.927979F, -361.243988F), new Vector2(749.455994F, -361.772003F), new Vector2(750.127991F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(750.799988F, -362.540009F), new Vector2(751.567993F, -362.731995F), new Vector2(752.432007F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(753.728027F, -362.731995F), new Vector2(754.778015F, -362.312012F), new Vector2(755.58197F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(756.385986F, -360.631989F), new Vector2(756.788025F, -359.563995F), new Vector2(756.788025F, -358.268005F));
+ builder.AddLine(new Vector2(756.788025F, -348.29599F));
+ builder.AddLine(new Vector2(760.064026F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1401()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(740.012024F, -348.29599F));
+ builder.AddLine(new Vector2(740.012024F, -365.395996F));
+ builder.AddLine(new Vector2(736.736023F, -365.395996F));
+ builder.AddLine(new Vector2(736.736023F, -361.220001F));
+ builder.AddLine(new Vector2(737.348022F, -357.079987F));
+ builder.AddLine(new Vector2(736.736023F, -352.903992F));
+ builder.AddLine(new Vector2(736.736023F, -348.29599F));
+ builder.AddLine(new Vector2(740.012024F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(728.708008F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(727.867981F, -352.256012F), new Vector2(727.213989F, -352.946014F), new Vector2(726.745972F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(726.278015F, -354.697998F), new Vector2(726.044006F, -355.712006F), new Vector2(726.044006F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(726.044006F, -357.992004F), new Vector2(726.278015F, -358.993988F), new Vector2(726.745972F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(727.213989F, -360.746002F), new Vector2(727.862F, -361.436005F), new Vector2(728.690002F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(729.518005F, -362.444F), new Vector2(730.471985F, -362.696014F), new Vector2(731.552002F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(732.632019F, -362.696014F), new Vector2(733.573975F, -362.450012F), new Vector2(734.377991F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(735.182007F, -361.466003F), new Vector2(735.812012F, -360.776001F), new Vector2(736.268005F, -359.888F));
+ builder.AddCubicBezier(new Vector2(736.723999F, -359F), new Vector2(736.952026F, -357.980011F), new Vector2(736.952026F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(736.952026F, -355.123993F), new Vector2(736.460022F, -353.726013F), new Vector2(735.476013F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(734.492004F, -351.541992F), new Vector2(733.195984F, -350.996002F), new Vector2(731.588013F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(730.507996F, -350.996002F), new Vector2(729.547974F, -351.247986F), new Vector2(728.708008F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(734.539978F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(735.572021F, -349.286011F), new Vector2(736.393982F, -350.036011F), new Vector2(737.005981F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(737.617981F, -351.955994F), new Vector2(737.960022F, -353.048004F), new Vector2(738.031982F, -354.272003F));
+ builder.AddLine(new Vector2(738.031982F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(737.960022F, -360.667999F), new Vector2(737.612F, -361.765991F), new Vector2(736.987976F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(736.364014F, -363.661987F), new Vector2(735.541992F, -364.406006F), new Vector2(734.521973F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(733.502014F, -365.485992F), new Vector2(732.343994F, -365.756012F), new Vector2(731.047974F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(729.463989F, -365.756012F), new Vector2(728.041992F, -365.359985F), new Vector2(726.781982F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(725.521973F, -363.776001F), new Vector2(724.526001F, -362.708008F), new Vector2(723.794006F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(723.062012F, -360.019989F), new Vector2(722.695984F, -358.507996F), new Vector2(722.695984F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(722.695984F, -355.14801F), new Vector2(723.062012F, -353.635986F), new Vector2(723.794006F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(724.526001F, -350.947998F), new Vector2(725.521973F, -349.885986F), new Vector2(726.781982F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(728.041992F, -348.325989F), new Vector2(729.463989F, -347.936005F), new Vector2(731.047974F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(732.343994F, -347.936005F), new Vector2(733.507996F, -348.205994F), new Vector2(734.539978F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1402()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(707.846008F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(707.018005F, -352.813995F), new Vector2(706.369995F, -353.467987F), new Vector2(705.901978F, -354.308014F));
+ builder.AddCubicBezier(new Vector2(705.434021F, -355.14801F), new Vector2(705.200012F, -356.108002F), new Vector2(705.200012F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(705.200012F, -358.268005F), new Vector2(705.434021F, -359.221985F), new Vector2(705.901978F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(706.369995F, -360.877991F), new Vector2(707.012024F, -361.526001F), new Vector2(707.828003F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(708.643982F, -362.462006F), new Vector2(709.59198F, -362.696014F), new Vector2(710.671997F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(711.728027F, -362.696014F), new Vector2(712.65802F, -362.462006F), new Vector2(713.461975F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(714.265991F, -361.526001F), new Vector2(714.890015F, -360.877991F), new Vector2(715.333984F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(715.778015F, -359.221985F), new Vector2(716F, -358.256012F), new Vector2(716F, -357.152008F));
+ builder.AddCubicBezier(new Vector2(716F, -356.048004F), new Vector2(715.778015F, -355.082001F), new Vector2(715.333984F, -354.253998F));
+ builder.AddCubicBezier(new Vector2(714.890015F, -353.425995F), new Vector2(714.271973F, -352.783997F), new Vector2(713.47998F, -352.328003F));
+ builder.AddCubicBezier(new Vector2(712.687988F, -351.872009F), new Vector2(711.752014F, -351.644012F), new Vector2(710.671997F, -351.644012F));
+ builder.AddCubicBezier(new Vector2(709.616028F, -351.644012F), new Vector2(708.674011F, -351.877991F), new Vector2(707.846008F, -352.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(713.588013F, -349.376007F));
+ builder.AddCubicBezier(new Vector2(714.619995F, -349.903992F), new Vector2(715.442017F, -350.641998F), new Vector2(716.054016F, -351.589996F));
+ builder.AddCubicBezier(new Vector2(716.666016F, -352.537994F), new Vector2(717.007996F, -353.635986F), new Vector2(717.080017F, -354.884003F));
+ builder.AddLine(new Vector2(717.080017F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(717.007996F, -360.691986F), new Vector2(716.671997F, -361.802002F), new Vector2(716.072021F, -362.75F));
+ builder.AddCubicBezier(new Vector2(715.471985F, -363.697998F), new Vector2(714.650024F, -364.436005F), new Vector2(713.606018F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(712.562012F, -365.492004F), new Vector2(711.367981F, -365.756012F), new Vector2(710.023987F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(708.487976F, -365.756012F), new Vector2(707.096008F, -365.377991F), new Vector2(705.848022F, -364.622009F));
+ builder.AddCubicBezier(new Vector2(704.599976F, -363.865997F), new Vector2(703.622009F, -362.846008F), new Vector2(702.914001F, -361.562012F));
+ builder.AddCubicBezier(new Vector2(702.205994F, -360.278015F), new Vector2(701.85199F, -358.820007F), new Vector2(701.85199F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(701.85199F, -355.556F), new Vector2(702.211975F, -354.085999F), new Vector2(702.932007F, -352.778015F));
+ builder.AddCubicBezier(new Vector2(703.651978F, -351.470001F), new Vector2(704.630005F, -350.444F), new Vector2(705.866028F, -349.700012F));
+ builder.AddCubicBezier(new Vector2(707.10199F, -348.955994F), new Vector2(708.5F, -348.584015F), new Vector2(710.059998F, -348.584015F));
+ builder.AddCubicBezier(new Vector2(711.380005F, -348.584015F), new Vector2(712.55603F, -348.847992F), new Vector2(713.588013F, -349.376007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(714.757996F, -341.798004F));
+ builder.AddCubicBezier(new Vector2(716.114014F, -342.481995F), new Vector2(717.169983F, -343.441986F), new Vector2(717.926025F, -344.678009F));
+ builder.AddCubicBezier(new Vector2(718.682007F, -345.914001F), new Vector2(719.059998F, -347.347992F), new Vector2(719.059998F, -348.980011F));
+ builder.AddLine(new Vector2(719.059998F, -365.395996F));
+ builder.AddLine(new Vector2(715.820007F, -365.395996F));
+ builder.AddLine(new Vector2(715.820007F, -360.895996F));
+ builder.AddLine(new Vector2(716.395996F, -357.079987F));
+ builder.AddLine(new Vector2(715.820007F, -353.227997F));
+ builder.AddLine(new Vector2(715.820007F, -348.980011F));
+ builder.AddCubicBezier(new Vector2(715.820007F, -347.420013F), new Vector2(715.304016F, -346.178009F), new Vector2(714.271973F, -345.253998F));
+ builder.AddCubicBezier(new Vector2(713.23999F, -344.329987F), new Vector2(711.859985F, -343.868011F), new Vector2(710.132019F, -343.868011F));
+ builder.AddCubicBezier(new Vector2(708.812012F, -343.868011F), new Vector2(707.671997F, -344.10199F), new Vector2(706.711975F, -344.570007F));
+ builder.AddCubicBezier(new Vector2(705.752014F, -345.037994F), new Vector2(704.924011F, -345.716003F), new Vector2(704.228027F, -346.604004F));
+ builder.AddLine(new Vector2(702.104004F, -344.480011F));
+ builder.AddCubicBezier(new Vector2(702.94397F, -343.303986F), new Vector2(704.036011F, -342.391998F), new Vector2(705.380005F, -341.743988F));
+ builder.AddCubicBezier(new Vector2(706.723999F, -341.096008F), new Vector2(708.283997F, -340.772003F), new Vector2(710.059998F, -340.772003F));
+ builder.AddCubicBezier(new Vector2(711.835999F, -340.772003F), new Vector2(713.401978F, -341.114014F), new Vector2(714.757996F, -341.798004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1403()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(695.372009F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(696.547974F, -349.196014F), new Vector2(697.55603F, -349.928009F), new Vector2(698.395996F, -350.888F));
+ builder.AddLine(new Vector2(696.307983F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(695.731995F, -352.339996F), new Vector2(695.041992F, -351.835999F), new Vector2(694.237976F, -351.5F));
+ builder.AddCubicBezier(new Vector2(693.434021F, -351.164001F), new Vector2(692.552002F, -350.996002F), new Vector2(691.59198F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(690.440002F, -350.996002F), new Vector2(689.419983F, -351.242004F), new Vector2(688.531982F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(687.643982F, -352.226013F), new Vector2(686.960022F, -352.921997F), new Vector2(686.47998F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(686F, -354.721985F), new Vector2(685.76001F, -355.772003F), new Vector2(685.76001F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(685.76001F, -358.14801F), new Vector2(685.987976F, -359.167999F), new Vector2(686.44397F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(686.900024F, -360.895996F), new Vector2(687.547974F, -361.567993F), new Vector2(688.388F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(689.228027F, -362.528015F), new Vector2(690.200012F, -362.768005F), new Vector2(691.304016F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(692.359985F, -362.768005F), new Vector2(693.26001F, -362.54599F), new Vector2(694.004028F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(694.747986F, -361.65799F), new Vector2(695.323975F, -361.033997F), new Vector2(695.731995F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(696.140015F, -359.425995F), new Vector2(696.343994F, -358.447998F), new Vector2(696.343994F, -357.29599F));
+ builder.AddLine(new Vector2(697.531982F, -358.339996F));
+ builder.AddLine(new Vector2(684.823975F, -358.339996F));
+ builder.AddLine(new Vector2(684.823975F, -355.640015F));
+ builder.AddLine(new Vector2(699.26001F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(699.33197F, -355.976013F), new Vector2(699.380005F, -356.282013F), new Vector2(699.403992F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(699.427979F, -356.834015F), new Vector2(699.440002F, -357.09201F), new Vector2(699.440002F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(699.440002F, -358.963989F), new Vector2(699.098022F, -360.415985F), new Vector2(698.414001F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(697.72998F, -362.959991F), new Vector2(696.776001F, -363.955994F), new Vector2(695.552002F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(694.328003F, -365.395996F), new Vector2(692.935974F, -365.756012F), new Vector2(691.375977F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(689.719971F, -365.756012F), new Vector2(688.226013F, -365.365997F), new Vector2(686.893982F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(685.562012F, -363.806F), new Vector2(684.505981F, -362.743988F), new Vector2(683.726013F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(682.945984F, -360.056F), new Vector2(682.55603F, -358.544006F), new Vector2(682.55603F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(682.55603F, -355.160004F), new Vector2(682.952026F, -353.635986F), new Vector2(683.744019F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(684.536011F, -350.947998F), new Vector2(685.609985F, -349.885986F), new Vector2(686.966003F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(688.322021F, -348.325989F), new Vector2(689.864014F, -347.936005F), new Vector2(691.59198F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(692.935974F, -347.936005F), new Vector2(694.195984F, -348.187988F), new Vector2(695.372009F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1404()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(668.354004F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(667.526001F, -352.256012F), new Vector2(666.890015F, -352.946014F), new Vector2(666.445984F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(666.002014F, -354.697998F), new Vector2(665.780029F, -355.700012F), new Vector2(665.780029F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(665.780029F, -357.980011F), new Vector2(666.007996F, -358.993988F), new Vector2(666.463989F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(666.919983F, -360.746002F), new Vector2(667.55603F, -361.436005F), new Vector2(668.372009F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(669.187988F, -362.444F), new Vector2(670.124023F, -362.696014F), new Vector2(671.179993F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(672.26001F, -362.696014F), new Vector2(673.208008F, -362.444F), new Vector2(674.023987F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(674.840027F, -361.436005F), new Vector2(675.481995F, -360.746002F), new Vector2(675.950012F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(676.41803F, -358.993988F), new Vector2(676.651978F, -357.992004F), new Vector2(676.651978F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(676.651978F, -355.712006F), new Vector2(676.41803F, -354.697998F), new Vector2(675.950012F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(675.481995F, -352.946014F), new Vector2(674.840027F, -352.256012F), new Vector2(674.023987F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(673.208008F, -351.247986F), new Vector2(672.26001F, -350.996002F), new Vector2(671.179993F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(670.124023F, -350.996002F), new Vector2(669.182007F, -351.247986F), new Vector2(668.354004F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(665.960022F, -348.29599F));
+ builder.AddLine(new Vector2(665.960022F, -352.903992F));
+ builder.AddLine(new Vector2(665.348022F, -357.079987F));
+ builder.AddLine(new Vector2(665.960022F, -361.220001F));
+ builder.AddLine(new Vector2(665.960022F, -374F));
+ builder.AddLine(new Vector2(662.719971F, -374F));
+ builder.AddLine(new Vector2(662.719971F, -348.29599F));
+ builder.AddLine(new Vector2(665.960022F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(675.950012F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(677.210022F, -349.885986F), new Vector2(678.200012F, -350.947998F), new Vector2(678.919983F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(679.640015F, -353.635986F), new Vector2(680F, -355.14801F), new Vector2(680F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(680F, -358.507996F), new Vector2(679.640015F, -360.019989F), new Vector2(678.919983F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(678.200012F, -362.708008F), new Vector2(677.210022F, -363.776001F), new Vector2(675.950012F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(674.690002F, -365.359985F), new Vector2(673.280029F, -365.756012F), new Vector2(671.719971F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(670.447998F, -365.756012F), new Vector2(669.289978F, -365.485992F), new Vector2(668.245972F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(667.202026F, -364.406006F), new Vector2(666.362F, -363.661987F), new Vector2(665.726013F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(665.090027F, -361.765991F), new Vector2(664.736023F, -360.667999F), new Vector2(664.664001F, -359.420013F));
+ builder.AddLine(new Vector2(664.664001F, -354.272003F));
+ builder.AddCubicBezier(new Vector2(664.736023F, -353.048004F), new Vector2(665.083984F, -351.955994F), new Vector2(665.708008F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(666.33197F, -350.036011F), new Vector2(667.166016F, -349.286011F), new Vector2(668.210022F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(669.254028F, -348.205994F), new Vector2(670.424011F, -347.936005F), new Vector2(671.719971F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(673.280029F, -347.936005F), new Vector2(674.690002F, -348.325989F), new Vector2(675.950012F, -349.105988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1405()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(650.552002F, -374F));
+ builder.AddLine(new Vector2(647.276001F, -374F));
+ builder.AddLine(new Vector2(647.276001F, -361.220001F));
+ builder.AddLine(new Vector2(647.888F, -357.079987F));
+ builder.AddLine(new Vector2(647.276001F, -352.903992F));
+ builder.AddLine(new Vector2(647.276001F, -348.29599F));
+ builder.AddLine(new Vector2(650.552002F, -348.29599F));
+ builder.AddLine(new Vector2(650.552002F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(639.22998F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(638.401978F, -352.226013F), new Vector2(637.754028F, -352.915985F), new Vector2(637.286011F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(636.817993F, -354.691986F), new Vector2(636.583984F, -355.712006F), new Vector2(636.583984F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(636.583984F, -358.015991F), new Vector2(636.817993F, -359.029999F), new Vector2(637.286011F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(637.754028F, -360.782013F), new Vector2(638.395996F, -361.466003F), new Vector2(639.211975F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(640.028015F, -362.450012F), new Vector2(640.976013F, -362.696014F), new Vector2(642.05603F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(643.135986F, -362.696014F), new Vector2(644.083984F, -362.444F), new Vector2(644.900024F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(645.716003F, -361.436005F), new Vector2(646.35199F, -360.746002F), new Vector2(646.807983F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(647.263977F, -358.993988F), new Vector2(647.492004F, -357.980011F), new Vector2(647.492004F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(647.492004F, -355.700012F), new Vector2(647.263977F, -354.697998F), new Vector2(646.807983F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(646.35199F, -352.946014F), new Vector2(645.716003F, -352.256012F), new Vector2(644.900024F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(644.083984F, -351.247986F), new Vector2(643.135986F, -350.996002F), new Vector2(642.05603F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(641F, -350.996002F), new Vector2(640.057983F, -351.242004F), new Vector2(639.22998F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(645.044006F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(646.075989F, -349.286011F), new Vector2(646.903992F, -350.036011F), new Vector2(647.528015F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(648.151978F, -351.955994F), new Vector2(648.5F, -353.048004F), new Vector2(648.572021F, -354.272003F));
+ builder.AddLine(new Vector2(648.572021F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(648.5F, -360.667999F), new Vector2(648.145996F, -361.765991F), new Vector2(647.51001F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(646.874023F, -363.661987F), new Vector2(646.039978F, -364.406006F), new Vector2(645.007996F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(643.976013F, -365.485992F), new Vector2(642.812012F, -365.756012F), new Vector2(641.515991F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(639.955994F, -365.756012F), new Vector2(638.552002F, -365.359985F), new Vector2(637.304016F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(636.05603F, -363.776001F), new Vector2(635.065979F, -362.708008F), new Vector2(634.333984F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(633.60199F, -360.019989F), new Vector2(633.236023F, -358.507996F), new Vector2(633.236023F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(633.236023F, -355.14801F), new Vector2(633.60199F, -353.635986F), new Vector2(634.333984F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(635.065979F, -350.947998F), new Vector2(636.05603F, -349.885986F), new Vector2(637.304016F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(638.552002F, -348.325989F), new Vector2(639.955994F, -347.936005F), new Vector2(641.515991F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(642.835999F, -347.936005F), new Vector2(644.012024F, -348.205994F), new Vector2(645.044006F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1406()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(617.828003F, -348.29599F));
+ builder.AddLine(new Vector2(617.828003F, -365.395996F));
+ builder.AddLine(new Vector2(614.588013F, -365.395996F));
+ builder.AddLine(new Vector2(614.588013F, -348.29599F));
+ builder.AddLine(new Vector2(617.828003F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(629.924011F, -348.29599F));
+ builder.AddLine(new Vector2(629.924011F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(629.924011F, -360.09201F), new Vector2(629.635986F, -361.201996F), new Vector2(629.059998F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(628.484009F, -363.290009F), new Vector2(627.697998F, -364.135986F), new Vector2(626.702026F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(625.705994F, -365.432007F), new Vector2(624.559998F, -365.756012F), new Vector2(623.263977F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(621.968018F, -365.756012F), new Vector2(620.804016F, -365.462006F), new Vector2(619.771973F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(618.73999F, -364.286011F), new Vector2(617.935974F, -363.488007F), new Vector2(617.359985F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(616.783997F, -361.471985F), new Vector2(616.495972F, -360.320007F), new Vector2(616.495972F, -359.023987F));
+ builder.AddLine(new Vector2(617.828003F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(617.828003F, -359.131989F), new Vector2(618.02002F, -359.899994F), new Vector2(618.403992F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(618.788025F, -361.243988F), new Vector2(619.315979F, -361.772003F), new Vector2(619.987976F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(620.659973F, -362.540009F), new Vector2(621.427979F, -362.731995F), new Vector2(622.291992F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(623.588013F, -362.731995F), new Vector2(624.638F, -362.312012F), new Vector2(625.442017F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(626.245972F, -360.631989F), new Vector2(626.64801F, -359.563995F), new Vector2(626.64801F, -358.268005F));
+ builder.AddLine(new Vector2(626.64801F, -348.29599F));
+ builder.AddLine(new Vector2(629.924011F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1407()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(609.872009F, -348.29599F));
+ builder.AddLine(new Vector2(609.872009F, -365.395996F));
+ builder.AddLine(new Vector2(606.596008F, -365.395996F));
+ builder.AddLine(new Vector2(606.596008F, -361.220001F));
+ builder.AddLine(new Vector2(607.208008F, -357.079987F));
+ builder.AddLine(new Vector2(606.596008F, -352.903992F));
+ builder.AddLine(new Vector2(606.596008F, -348.29599F));
+ builder.AddLine(new Vector2(609.872009F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(598.567993F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(597.728027F, -352.256012F), new Vector2(597.073975F, -352.946014F), new Vector2(596.606018F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(596.138F, -354.697998F), new Vector2(595.903992F, -355.712006F), new Vector2(595.903992F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(595.903992F, -357.992004F), new Vector2(596.138F, -358.993988F), new Vector2(596.606018F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(597.073975F, -360.746002F), new Vector2(597.721985F, -361.436005F), new Vector2(598.549988F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(599.377991F, -362.444F), new Vector2(600.33197F, -362.696014F), new Vector2(601.411987F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(602.492004F, -362.696014F), new Vector2(603.434021F, -362.450012F), new Vector2(604.237976F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(605.041992F, -361.466003F), new Vector2(605.671997F, -360.776001F), new Vector2(606.127991F, -359.888F));
+ builder.AddCubicBezier(new Vector2(606.583984F, -359F), new Vector2(606.812012F, -357.980011F), new Vector2(606.812012F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(606.812012F, -355.123993F), new Vector2(606.320007F, -353.726013F), new Vector2(605.335999F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(604.35199F, -351.541992F), new Vector2(603.05603F, -350.996002F), new Vector2(601.447998F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(600.367981F, -350.996002F), new Vector2(599.40802F, -351.247986F), new Vector2(598.567993F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(604.400024F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(605.432007F, -349.286011F), new Vector2(606.254028F, -350.036011F), new Vector2(606.866028F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(607.478027F, -351.955994F), new Vector2(607.820007F, -353.048004F), new Vector2(607.892029F, -354.272003F));
+ builder.AddLine(new Vector2(607.892029F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(607.820007F, -360.667999F), new Vector2(607.471985F, -361.765991F), new Vector2(606.848022F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(606.223999F, -363.661987F), new Vector2(605.401978F, -364.406006F), new Vector2(604.382019F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(603.362F, -365.485992F), new Vector2(602.203979F, -365.756012F), new Vector2(600.90802F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(599.323975F, -365.756012F), new Vector2(597.901978F, -365.359985F), new Vector2(596.642029F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(595.382019F, -363.776001F), new Vector2(594.385986F, -362.708008F), new Vector2(593.653992F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(592.921997F, -360.019989F), new Vector2(592.55603F, -358.507996F), new Vector2(592.55603F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(592.55603F, -355.14801F), new Vector2(592.921997F, -353.635986F), new Vector2(593.653992F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(594.385986F, -350.947998F), new Vector2(595.382019F, -349.885986F), new Vector2(596.642029F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(597.901978F, -348.325989F), new Vector2(599.323975F, -347.936005F), new Vector2(600.90802F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(602.203979F, -347.936005F), new Vector2(603.367981F, -348.205994F), new Vector2(604.400024F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1408()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(578.588013F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(579.763977F, -349.196014F), new Vector2(580.771973F, -349.928009F), new Vector2(581.612F, -350.888F));
+ builder.AddLine(new Vector2(579.523987F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(578.947998F, -352.339996F), new Vector2(578.257996F, -351.835999F), new Vector2(577.453979F, -351.5F));
+ builder.AddCubicBezier(new Vector2(576.650024F, -351.164001F), new Vector2(575.768005F, -350.996002F), new Vector2(574.807983F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(573.656006F, -350.996002F), new Vector2(572.635986F, -351.242004F), new Vector2(571.747986F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(570.859985F, -352.226013F), new Vector2(570.176025F, -352.921997F), new Vector2(569.695984F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(569.216003F, -354.721985F), new Vector2(568.976013F, -355.772003F), new Vector2(568.976013F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(568.976013F, -358.14801F), new Vector2(569.203979F, -359.167999F), new Vector2(569.659973F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(570.116028F, -360.895996F), new Vector2(570.763977F, -361.567993F), new Vector2(571.604004F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(572.44397F, -362.528015F), new Vector2(573.416016F, -362.768005F), new Vector2(574.52002F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(575.575989F, -362.768005F), new Vector2(576.476013F, -362.54599F), new Vector2(577.219971F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(577.963989F, -361.65799F), new Vector2(578.539978F, -361.033997F), new Vector2(578.947998F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(579.356018F, -359.425995F), new Vector2(579.559998F, -358.447998F), new Vector2(579.559998F, -357.29599F));
+ builder.AddLine(new Vector2(580.747986F, -358.339996F));
+ builder.AddLine(new Vector2(568.039978F, -358.339996F));
+ builder.AddLine(new Vector2(568.039978F, -355.640015F));
+ builder.AddLine(new Vector2(582.476013F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(582.547974F, -355.976013F), new Vector2(582.596008F, -356.282013F), new Vector2(582.619995F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(582.643982F, -356.834015F), new Vector2(582.656006F, -357.09201F), new Vector2(582.656006F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(582.656006F, -358.963989F), new Vector2(582.314026F, -360.415985F), new Vector2(581.630005F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(580.945984F, -362.959991F), new Vector2(579.992004F, -363.955994F), new Vector2(578.768005F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(577.544006F, -365.395996F), new Vector2(576.151978F, -365.756012F), new Vector2(574.59198F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(572.935974F, -365.756012F), new Vector2(571.442017F, -365.365997F), new Vector2(570.109985F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(568.778015F, -363.806F), new Vector2(567.721985F, -362.743988F), new Vector2(566.942017F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(566.161987F, -360.056F), new Vector2(565.771973F, -358.544006F), new Vector2(565.771973F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(565.771973F, -355.160004F), new Vector2(566.16803F, -353.635986F), new Vector2(566.960022F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(567.752014F, -350.947998F), new Vector2(568.825989F, -349.885986F), new Vector2(570.182007F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(571.538025F, -348.325989F), new Vector2(573.080017F, -347.936005F), new Vector2(574.807983F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(576.151978F, -347.936005F), new Vector2(577.411987F, -348.187988F), new Vector2(578.588013F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1409()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(561.109985F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(562.25F, -349.196014F), new Vector2(563.216003F, -349.903992F), new Vector2(564.007996F, -350.81601F));
+ builder.AddLine(new Vector2(561.883972F, -352.976013F));
+ builder.AddCubicBezier(new Vector2(561.33197F, -352.35199F), new Vector2(560.677979F, -351.877991F), new Vector2(559.921997F, -351.553986F));
+ builder.AddCubicBezier(new Vector2(559.166016F, -351.230011F), new Vector2(558.33197F, -351.067993F), new Vector2(557.419983F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(556.340027F, -351.067993F), new Vector2(555.380005F, -351.320007F), new Vector2(554.539978F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(553.700012F, -352.328003F), new Vector2(553.039978F, -353.011993F), new Vector2(552.559998F, -353.876007F));
+ builder.AddCubicBezier(new Vector2(552.080017F, -354.73999F), new Vector2(551.840027F, -355.735992F), new Vector2(551.840027F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(551.840027F, -357.992004F), new Vector2(552.080017F, -358.988007F), new Vector2(552.559998F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(553.039978F, -360.716003F), new Vector2(553.700012F, -361.394012F), new Vector2(554.539978F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(555.380005F, -362.377991F), new Vector2(556.340027F, -362.623993F), new Vector2(557.419983F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(558.307983F, -362.623993F), new Vector2(559.135986F, -362.462006F), new Vector2(559.903992F, -362.138F));
+ builder.AddCubicBezier(new Vector2(560.671997F, -361.813995F), new Vector2(561.320007F, -361.339996F), new Vector2(561.848022F, -360.716003F));
+ builder.AddLine(new Vector2(564.007996F, -362.876007F));
+ builder.AddCubicBezier(new Vector2(563.192017F, -363.812012F), new Vector2(562.219971F, -364.526001F), new Vector2(561.09198F, -365.018005F));
+ builder.AddCubicBezier(new Vector2(559.963989F, -365.51001F), new Vector2(558.73999F, -365.756012F), new Vector2(557.419983F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(555.73999F, -365.756012F), new Vector2(554.221985F, -365.365997F), new Vector2(552.866028F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(551.51001F, -363.806F), new Vector2(550.442017F, -362.743988F), new Vector2(549.661987F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(548.882019F, -360.056F), new Vector2(548.492004F, -358.544006F), new Vector2(548.492004F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(548.492004F, -355.208008F), new Vector2(548.882019F, -353.701996F), new Vector2(549.661987F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(550.442017F, -350.98999F), new Vector2(551.51001F, -349.915985F), new Vector2(552.866028F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(554.221985F, -348.332001F), new Vector2(555.73999F, -347.936005F), new Vector2(557.419983F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(558.73999F, -347.936005F), new Vector2(559.969971F, -348.187988F), new Vector2(561.109985F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1410()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(533.119995F, -348.29599F));
+ builder.AddLine(new Vector2(533.119995F, -365.395996F));
+ builder.AddLine(new Vector2(529.880005F, -365.395996F));
+ builder.AddLine(new Vector2(529.880005F, -348.29599F));
+ builder.AddLine(new Vector2(533.119995F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(545.216003F, -348.29599F));
+ builder.AddLine(new Vector2(545.216003F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(545.216003F, -360.09201F), new Vector2(544.927979F, -361.201996F), new Vector2(544.35199F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(543.776001F, -363.290009F), new Vector2(542.98999F, -364.135986F), new Vector2(541.994019F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(540.997986F, -365.432007F), new Vector2(539.85199F, -365.756012F), new Vector2(538.55603F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(537.26001F, -365.756012F), new Vector2(536.096008F, -365.462006F), new Vector2(535.064026F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(534.031982F, -364.286011F), new Vector2(533.228027F, -363.488007F), new Vector2(532.651978F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(532.075989F, -361.471985F), new Vector2(531.788025F, -360.320007F), new Vector2(531.788025F, -359.023987F));
+ builder.AddLine(new Vector2(533.119995F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(533.119995F, -359.131989F), new Vector2(533.312012F, -359.899994F), new Vector2(533.695984F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(534.080017F, -361.243988F), new Vector2(534.607971F, -361.772003F), new Vector2(535.280029F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(535.952026F, -362.540009F), new Vector2(536.719971F, -362.731995F), new Vector2(537.583984F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(538.880005F, -362.731995F), new Vector2(539.929993F, -362.312012F), new Vector2(540.734009F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(541.538025F, -360.631989F), new Vector2(541.940002F, -359.563995F), new Vector2(541.940002F, -358.268005F));
+ builder.AddLine(new Vector2(541.940002F, -348.29599F));
+ builder.AddLine(new Vector2(545.216003F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1411()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(522.283997F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(523.460022F, -349.196014F), new Vector2(524.468018F, -349.928009F), new Vector2(525.307983F, -350.888F));
+ builder.AddLine(new Vector2(523.219971F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(522.643982F, -352.339996F), new Vector2(521.953979F, -351.835999F), new Vector2(521.150024F, -351.5F));
+ builder.AddCubicBezier(new Vector2(520.346008F, -351.164001F), new Vector2(519.463989F, -350.996002F), new Vector2(518.504028F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(517.35199F, -350.996002F), new Vector2(516.33197F, -351.242004F), new Vector2(515.44397F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(514.55603F, -352.226013F), new Vector2(513.872009F, -352.921997F), new Vector2(513.392029F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(512.911987F, -354.721985F), new Vector2(512.671997F, -355.772003F), new Vector2(512.671997F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(512.671997F, -358.14801F), new Vector2(512.900024F, -359.167999F), new Vector2(513.356018F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(513.812012F, -360.895996F), new Vector2(514.460022F, -361.567993F), new Vector2(515.299988F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(516.140015F, -362.528015F), new Vector2(517.112F, -362.768005F), new Vector2(518.216003F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(519.271973F, -362.768005F), new Vector2(520.171997F, -362.54599F), new Vector2(520.916016F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(521.659973F, -361.65799F), new Vector2(522.236023F, -361.033997F), new Vector2(522.643982F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(523.052002F, -359.425995F), new Vector2(523.255981F, -358.447998F), new Vector2(523.255981F, -357.29599F));
+ builder.AddLine(new Vector2(524.44397F, -358.339996F));
+ builder.AddLine(new Vector2(511.735992F, -358.339996F));
+ builder.AddLine(new Vector2(511.735992F, -355.640015F));
+ builder.AddLine(new Vector2(526.171997F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(526.244019F, -355.976013F), new Vector2(526.291992F, -356.282013F), new Vector2(526.315979F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(526.340027F, -356.834015F), new Vector2(526.35199F, -357.09201F), new Vector2(526.35199F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(526.35199F, -358.963989F), new Vector2(526.01001F, -360.415985F), new Vector2(525.325989F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(524.642029F, -362.959991F), new Vector2(523.687988F, -363.955994F), new Vector2(522.463989F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(521.23999F, -365.395996F), new Vector2(519.848022F, -365.756012F), new Vector2(518.288025F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(516.632019F, -365.756012F), new Vector2(515.138F, -365.365997F), new Vector2(513.80603F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(512.473999F, -363.806F), new Vector2(511.417999F, -362.743988F), new Vector2(510.638F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(509.858002F, -360.056F), new Vector2(509.467987F, -358.544006F), new Vector2(509.467987F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(509.467987F, -355.160004F), new Vector2(509.864014F, -353.635986F), new Vector2(510.656006F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(511.447998F, -350.947998F), new Vector2(512.521973F, -349.885986F), new Vector2(513.877991F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(515.234009F, -348.325989F), new Vector2(516.776001F, -347.936005F), new Vector2(518.504028F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(519.848022F, -347.936005F), new Vector2(521.107971F, -348.187988F), new Vector2(522.283997F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1412()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(505.832001F, -348.29599F));
+ builder.AddLine(new Vector2(505.832001F, -374F));
+ builder.AddLine(new Vector2(502.59201F, -374F));
+ builder.AddLine(new Vector2(502.59201F, -348.29599F));
+ builder.AddLine(new Vector2(505.832001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1413()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(487.18399F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(486.343994F, -352.328003F), new Vector2(485.68399F, -353.018005F), new Vector2(485.20401F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(484.723999F, -354.769989F), new Vector2(484.484009F, -355.772003F), new Vector2(484.484009F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(484.484009F, -358.003998F), new Vector2(484.723999F, -358.988007F), new Vector2(485.20401F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(485.68399F, -360.716003F), new Vector2(486.343994F, -361.394012F), new Vector2(487.18399F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(488.023987F, -362.377991F), new Vector2(488.971985F, -362.623993F), new Vector2(490.028015F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(491.131989F, -362.623993F), new Vector2(492.097992F, -362.377991F), new Vector2(492.925995F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(493.753998F, -361.394012F), new Vector2(494.414001F, -360.716003F), new Vector2(494.906006F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(495.39801F, -358.988007F), new Vector2(495.644012F, -358.003998F), new Vector2(495.644012F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(495.644012F, -355.772003F), new Vector2(495.403992F, -354.769989F), new Vector2(494.924011F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(494.444F, -353.018005F), new Vector2(493.783997F, -352.328003F), new Vector2(492.944F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(492.104004F, -351.320007F), new Vector2(491.131989F, -351.067993F), new Vector2(490.028015F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(488.971985F, -351.067993F), new Vector2(488.023987F, -351.320007F), new Vector2(487.18399F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(494.582001F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(495.937988F, -349.915985F), new Vector2(497.011993F, -350.98999F), new Vector2(497.803986F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(498.596008F, -353.701996F), new Vector2(498.992004F, -355.220001F), new Vector2(498.992004F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(498.992004F, -358.556F), new Vector2(498.596008F, -360.056F), new Vector2(497.803986F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(497.011993F, -362.743988F), new Vector2(495.937988F, -363.806F), new Vector2(494.582001F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(493.226013F, -365.365997F), new Vector2(491.708008F, -365.756012F), new Vector2(490.028015F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(488.372009F, -365.756012F), new Vector2(486.872009F, -365.359985F), new Vector2(485.528015F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(484.18399F, -363.776001F), new Vector2(483.115997F, -362.713989F), new Vector2(482.324005F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(481.532013F, -360.049988F), new Vector2(481.135986F, -358.556F), new Vector2(481.135986F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(481.135986F, -355.220001F), new Vector2(481.532013F, -353.701996F), new Vector2(482.324005F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(483.115997F, -350.98999F), new Vector2(484.18399F, -349.915985F), new Vector2(485.528015F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(486.872009F, -348.332001F), new Vector2(488.372009F, -347.936005F), new Vector2(490.028015F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(491.708008F, -347.936005F), new Vector2(493.226013F, -348.332001F), new Vector2(494.582001F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1414()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(477.320007F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(477.70401F, -369.806F), new Vector2(477.895996F, -370.303986F), new Vector2(477.895996F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(477.895996F, -371.480011F), new Vector2(477.70401F, -371.966003F), new Vector2(477.320007F, -372.362F));
+ builder.AddCubicBezier(new Vector2(476.936005F, -372.757996F), new Vector2(476.444F, -372.955994F), new Vector2(475.843994F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(475.243988F, -372.955994F), new Vector2(474.752014F, -372.757996F), new Vector2(474.368011F, -372.362F));
+ builder.AddCubicBezier(new Vector2(473.984009F, -371.966003F), new Vector2(473.791992F, -371.480011F), new Vector2(473.791992F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(473.791992F, -370.303986F), new Vector2(473.984009F, -369.806F), new Vector2(474.368011F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(474.752014F, -369.014008F), new Vector2(475.243988F, -368.81601F), new Vector2(475.843994F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(476.444F, -368.81601F), new Vector2(476.936005F, -369.014008F), new Vector2(477.320007F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(477.463989F, -348.29599F));
+ builder.AddLine(new Vector2(477.463989F, -365.395996F));
+ builder.AddLine(new Vector2(474.187988F, -365.395996F));
+ builder.AddLine(new Vector2(474.187988F, -348.29599F));
+ builder.AddLine(new Vector2(477.463989F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1415()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(463.567993F, -348.29599F));
+ builder.AddLine(new Vector2(471.415985F, -365.395996F));
+ builder.AddLine(new Vector2(467.959991F, -365.395996F));
+ builder.AddLine(new Vector2(461.623993F, -350.959991F));
+ builder.AddLine(new Vector2(463.712006F, -350.959991F));
+ builder.AddLine(new Vector2(457.411987F, -365.395996F));
+ builder.AddLine(new Vector2(453.812012F, -365.395996F));
+ builder.AddLine(new Vector2(461.660004F, -348.29599F));
+ builder.AddLine(new Vector2(463.567993F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1416()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(431.85199F, -348.29599F));
+ builder.AddLine(new Vector2(431.85199F, -374F));
+ builder.AddLine(new Vector2(428.612F, -374F));
+ builder.AddLine(new Vector2(428.612F, -348.29599F));
+ builder.AddLine(new Vector2(431.85199F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(443.947998F, -348.29599F));
+ builder.AddLine(new Vector2(443.947998F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(443.947998F, -360.26001F), new Vector2(443.660004F, -361.447998F), new Vector2(443.084015F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(442.507996F, -363.511993F), new Vector2(441.721985F, -364.31601F), new Vector2(440.726013F, -364.891998F));
+ builder.AddCubicBezier(new Vector2(439.730011F, -365.467987F), new Vector2(438.584015F, -365.756012F), new Vector2(437.287994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(435.992004F, -365.756012F), new Vector2(434.828003F, -365.462006F), new Vector2(433.79599F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(432.764008F, -364.286011F), new Vector2(431.959991F, -363.488007F), new Vector2(431.384003F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(430.808014F, -361.471985F), new Vector2(430.519989F, -360.320007F), new Vector2(430.519989F, -359.023987F));
+ builder.AddLine(new Vector2(431.85199F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(431.85199F, -359.131989F), new Vector2(432.044006F, -359.899994F), new Vector2(432.428009F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(432.812012F, -361.243988F), new Vector2(433.339996F, -361.772003F), new Vector2(434.011993F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(434.68399F, -362.540009F), new Vector2(435.451996F, -362.731995F), new Vector2(436.31601F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(437.612F, -362.731995F), new Vector2(438.661987F, -362.312012F), new Vector2(439.466003F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(440.269989F, -360.631989F), new Vector2(440.671997F, -359.563995F), new Vector2(440.671997F, -358.268005F));
+ builder.AddLine(new Vector2(440.671997F, -348.29599F));
+ builder.AddLine(new Vector2(443.947998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1417()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(425.444F, -362.444F));
+ builder.AddLine(new Vector2(425.444F, -365.395996F));
+ builder.AddLine(new Vector2(413.779999F, -365.395996F));
+ builder.AddLine(new Vector2(413.779999F, -362.444F));
+ builder.AddLine(new Vector2(425.444F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(421.231995F, -348.29599F));
+ builder.AddLine(new Vector2(421.231995F, -372.559998F));
+ builder.AddLine(new Vector2(417.992004F, -372.559998F));
+ builder.AddLine(new Vector2(417.992004F, -348.29599F));
+ builder.AddLine(new Vector2(421.231995F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1418()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(410.432007F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(410.81601F, -369.806F), new Vector2(411.007996F, -370.303986F), new Vector2(411.007996F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(411.007996F, -371.480011F), new Vector2(410.81601F, -371.966003F), new Vector2(410.432007F, -372.362F));
+ builder.AddCubicBezier(new Vector2(410.048004F, -372.757996F), new Vector2(409.556F, -372.955994F), new Vector2(408.955994F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(408.355988F, -372.955994F), new Vector2(407.864014F, -372.757996F), new Vector2(407.480011F, -372.362F));
+ builder.AddCubicBezier(new Vector2(407.096008F, -371.966003F), new Vector2(406.903992F, -371.480011F), new Vector2(406.903992F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(406.903992F, -370.303986F), new Vector2(407.096008F, -369.806F), new Vector2(407.480011F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(407.864014F, -369.014008F), new Vector2(408.355988F, -368.81601F), new Vector2(408.955994F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(409.556F, -368.81601F), new Vector2(410.048004F, -369.014008F), new Vector2(410.432007F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(410.575989F, -348.29599F));
+ builder.AddLine(new Vector2(410.575989F, -365.395996F));
+ builder.AddLine(new Vector2(407.299988F, -365.395996F));
+ builder.AddLine(new Vector2(407.299988F, -348.29599F));
+ builder.AddLine(new Vector2(410.575989F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1419()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(387.355988F, -348.29599F));
+ builder.AddLine(new Vector2(392.324005F, -361.18399F));
+ builder.AddLine(new Vector2(391.135986F, -361.18399F));
+ builder.AddLine(new Vector2(396.067993F, -348.29599F));
+ builder.AddLine(new Vector2(397.976013F, -348.29599F));
+ builder.AddLine(new Vector2(404.708008F, -365.395996F));
+ builder.AddLine(new Vector2(401.324005F, -365.395996F));
+ builder.AddLine(new Vector2(396.428009F, -352.075989F));
+ builder.AddLine(new Vector2(397.507996F, -352.075989F));
+ builder.AddLine(new Vector2(392.64801F, -365.395996F));
+ builder.AddLine(new Vector2(390.776001F, -365.395996F));
+ builder.AddLine(new Vector2(385.915985F, -352.075989F));
+ builder.AddLine(new Vector2(386.996002F, -352.075989F));
+ builder.AddLine(new Vector2(382.100006F, -365.395996F));
+ builder.AddLine(new Vector2(378.716003F, -365.395996F));
+ builder.AddLine(new Vector2(385.447998F, -348.29599F));
+ builder.AddLine(new Vector2(387.355988F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1420()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(367.790009F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(368.929993F, -350.276001F), new Vector2(369.5F, -351.548004F), new Vector2(369.5F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(369.5F, -354.212006F), new Vector2(369.278015F, -355.063995F), new Vector2(368.834015F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(368.390015F, -356.359985F), new Vector2(367.820007F, -356.876007F), new Vector2(367.123993F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(366.428009F, -357.644012F), new Vector2(365.696014F, -357.950012F), new Vector2(364.928009F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(364.160004F, -358.406006F), new Vector2(363.421997F, -358.627991F), new Vector2(362.713989F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(362.006012F, -359.059998F), new Vector2(361.436005F, -359.324005F), new Vector2(361.003998F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(360.571991F, -359.947998F), new Vector2(360.355988F, -360.391998F), new Vector2(360.355988F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(360.355988F, -361.519989F), new Vector2(360.60199F, -361.963989F), new Vector2(361.093994F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(361.585999F, -362.635986F), new Vector2(362.299988F, -362.803986F), new Vector2(363.235992F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(364.123993F, -362.803986F), new Vector2(364.915985F, -362.635986F), new Vector2(365.612F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(366.308014F, -361.963989F), new Vector2(366.90799F, -361.484009F), new Vector2(367.411987F, -360.859985F));
+ builder.AddLine(new Vector2(369.5F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(368.828003F, -363.884003F), new Vector2(367.970001F, -364.585999F), new Vector2(366.925995F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(365.881989F, -365.522003F), new Vector2(364.687988F, -365.756012F), new Vector2(363.343994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(362.071991F, -365.756012F), new Vector2(360.980011F, -365.552002F), new Vector2(360.067993F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(359.156006F, -364.735992F), new Vector2(358.45401F, -364.153992F), new Vector2(357.962006F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(357.470001F, -362.641998F), new Vector2(357.223999F, -361.747986F), new Vector2(357.223999F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(357.223999F, -359.68399F), new Vector2(357.446014F, -358.850006F), new Vector2(357.890015F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(358.334015F, -357.578003F), new Vector2(358.903992F, -357.079987F), new Vector2(359.600006F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(360.29599F, -356.359985F), new Vector2(361.033997F, -356.071991F), new Vector2(361.813995F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(362.593994F, -355.640015F), new Vector2(363.332001F, -355.417999F), new Vector2(364.028015F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(364.723999F, -354.962006F), new Vector2(365.294006F, -354.674011F), new Vector2(365.738007F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(366.182007F, -353.977997F), new Vector2(366.403992F, -353.492004F), new Vector2(366.403992F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(366.403992F, -352.243988F), new Vector2(366.127991F, -351.757996F), new Vector2(365.575989F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(365.023987F, -351.062012F), new Vector2(364.243988F, -350.888F), new Vector2(363.235992F, -350.888F));
+ builder.AddCubicBezier(new Vector2(362.227997F, -350.888F), new Vector2(361.31601F, -351.074005F), new Vector2(360.5F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(359.68399F, -351.817993F), new Vector2(358.963989F, -352.388F), new Vector2(358.339996F, -353.156006F));
+ builder.AddLine(new Vector2(356.252014F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(356.779999F, -350.420013F), new Vector2(357.39801F, -349.862F), new Vector2(358.105988F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(358.813995F, -348.925995F), new Vector2(359.600006F, -348.56601F), new Vector2(360.463989F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(361.328003F, -348.062012F), new Vector2(362.23999F, -347.936005F), new Vector2(363.200012F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(365.119995F, -347.936005F), new Vector2(366.649994F, -348.403992F), new Vector2(367.790009F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1421()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(348.079987F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(348.847992F, -362.312012F), new Vector2(349.832001F, -362.696014F), new Vector2(351.032013F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(351.608002F, -362.696014F), new Vector2(352.112F, -362.612F), new Vector2(352.544006F, -362.444F));
+ builder.AddCubicBezier(new Vector2(352.976013F, -362.276001F), new Vector2(353.372009F, -362F), new Vector2(353.731995F, -361.615997F));
+ builder.AddLine(new Vector2(355.855988F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(355.256012F, -364.507996F), new Vector2(354.608002F, -365.006012F), new Vector2(353.911987F, -365.306F));
+ builder.AddCubicBezier(new Vector2(353.216003F, -365.605988F), new Vector2(352.436005F, -365.756012F), new Vector2(351.571991F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(349.675995F, -365.756012F), new Vector2(348.223999F, -365.108002F), new Vector2(347.216003F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(346.208008F, -362.515991F), new Vector2(345.70401F, -360.776001F), new Vector2(345.70401F, -358.59201F));
+ builder.AddLine(new Vector2(346.928009F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(346.928009F, -359.600006F), new Vector2(347.312012F, -360.776001F), new Vector2(348.079987F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(346.928009F, -348.29599F));
+ builder.AddLine(new Vector2(346.928009F, -365.395996F));
+ builder.AddLine(new Vector2(343.687988F, -365.395996F));
+ builder.AddLine(new Vector2(343.687988F, -348.29599F));
+ builder.AddLine(new Vector2(346.928009F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1422()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(336.09201F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(337.268005F, -349.196014F), new Vector2(338.276001F, -349.928009F), new Vector2(339.115997F, -350.888F));
+ builder.AddLine(new Vector2(337.028015F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(336.451996F, -352.339996F), new Vector2(335.761993F, -351.835999F), new Vector2(334.958008F, -351.5F));
+ builder.AddCubicBezier(new Vector2(334.153992F, -351.164001F), new Vector2(333.272003F, -350.996002F), new Vector2(332.312012F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(331.160004F, -350.996002F), new Vector2(330.140015F, -351.242004F), new Vector2(329.252014F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(328.364014F, -352.226013F), new Vector2(327.679993F, -352.921997F), new Vector2(327.200012F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(326.720001F, -354.721985F), new Vector2(326.480011F, -355.772003F), new Vector2(326.480011F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(326.480011F, -358.14801F), new Vector2(326.708008F, -359.167999F), new Vector2(327.164001F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(327.619995F, -360.895996F), new Vector2(328.268005F, -361.567993F), new Vector2(329.108002F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(329.947998F, -362.528015F), new Vector2(330.920013F, -362.768005F), new Vector2(332.023987F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(333.079987F, -362.768005F), new Vector2(333.980011F, -362.54599F), new Vector2(334.723999F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(335.467987F, -361.65799F), new Vector2(336.044006F, -361.033997F), new Vector2(336.451996F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(336.859985F, -359.425995F), new Vector2(337.063995F, -358.447998F), new Vector2(337.063995F, -357.29599F));
+ builder.AddLine(new Vector2(338.252014F, -358.339996F));
+ builder.AddLine(new Vector2(325.544006F, -358.339996F));
+ builder.AddLine(new Vector2(325.544006F, -355.640015F));
+ builder.AddLine(new Vector2(339.980011F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(340.052002F, -355.976013F), new Vector2(340.100006F, -356.282013F), new Vector2(340.123993F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(340.14801F, -356.834015F), new Vector2(340.160004F, -357.09201F), new Vector2(340.160004F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(340.160004F, -358.963989F), new Vector2(339.817993F, -360.415985F), new Vector2(339.134003F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(338.450012F, -362.959991F), new Vector2(337.496002F, -363.955994F), new Vector2(336.272003F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(335.048004F, -365.395996F), new Vector2(333.656006F, -365.756012F), new Vector2(332.096008F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(330.440002F, -365.756012F), new Vector2(328.946014F, -365.365997F), new Vector2(327.614014F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(326.282013F, -363.806F), new Vector2(325.226013F, -362.743988F), new Vector2(324.446014F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(323.665985F, -360.056F), new Vector2(323.276001F, -358.544006F), new Vector2(323.276001F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(323.276001F, -355.160004F), new Vector2(323.671997F, -353.635986F), new Vector2(324.463989F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(325.256012F, -350.947998F), new Vector2(326.329987F, -349.885986F), new Vector2(327.686005F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(329.041992F, -348.325989F), new Vector2(330.584015F, -347.936005F), new Vector2(332.312012F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(333.656006F, -347.936005F), new Vector2(334.915985F, -348.187988F), new Vector2(336.09201F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1423()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(321.764008F, -362.444F));
+ builder.AddLine(new Vector2(321.764008F, -365.395996F));
+ builder.AddLine(new Vector2(310.100006F, -365.395996F));
+ builder.AddLine(new Vector2(310.100006F, -362.444F));
+ builder.AddLine(new Vector2(321.764008F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(317.552002F, -348.29599F));
+ builder.AddLine(new Vector2(317.552002F, -372.559998F));
+ builder.AddLine(new Vector2(314.312012F, -372.559998F));
+ builder.AddLine(new Vector2(314.312012F, -348.29599F));
+ builder.AddLine(new Vector2(317.552002F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1424()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(306.338013F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(307.477997F, -350.276001F), new Vector2(308.048004F, -351.548004F), new Vector2(308.048004F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(308.048004F, -354.212006F), new Vector2(307.825989F, -355.063995F), new Vector2(307.381989F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(306.937988F, -356.359985F), new Vector2(306.368011F, -356.876007F), new Vector2(305.671997F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(304.976013F, -357.644012F), new Vector2(304.243988F, -357.950012F), new Vector2(303.476013F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(302.708008F, -358.406006F), new Vector2(301.970001F, -358.627991F), new Vector2(301.261993F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(300.553986F, -359.059998F), new Vector2(299.984009F, -359.324005F), new Vector2(299.552002F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(299.119995F, -359.947998F), new Vector2(298.903992F, -360.391998F), new Vector2(298.903992F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(298.903992F, -361.519989F), new Vector2(299.149994F, -361.963989F), new Vector2(299.641998F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(300.134003F, -362.635986F), new Vector2(300.847992F, -362.803986F), new Vector2(301.783997F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(302.671997F, -362.803986F), new Vector2(303.463989F, -362.635986F), new Vector2(304.160004F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(304.855988F, -361.963989F), new Vector2(305.455994F, -361.484009F), new Vector2(305.959991F, -360.859985F));
+ builder.AddLine(new Vector2(308.048004F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(307.376007F, -363.884003F), new Vector2(306.518005F, -364.585999F), new Vector2(305.473999F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(304.429993F, -365.522003F), new Vector2(303.235992F, -365.756012F), new Vector2(301.891998F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(300.619995F, -365.756012F), new Vector2(299.528015F, -365.552002F), new Vector2(298.615997F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(297.70401F, -364.735992F), new Vector2(297.002014F, -364.153992F), new Vector2(296.51001F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(296.018005F, -362.641998F), new Vector2(295.772003F, -361.747986F), new Vector2(295.772003F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(295.772003F, -359.68399F), new Vector2(295.993988F, -358.850006F), new Vector2(296.437988F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(296.881989F, -357.578003F), new Vector2(297.451996F, -357.079987F), new Vector2(298.14801F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(298.843994F, -356.359985F), new Vector2(299.582001F, -356.071991F), new Vector2(300.362F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(301.141998F, -355.640015F), new Vector2(301.880005F, -355.417999F), new Vector2(302.575989F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(303.272003F, -354.962006F), new Vector2(303.84201F, -354.674011F), new Vector2(304.286011F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(304.730011F, -353.977997F), new Vector2(304.951996F, -353.492004F), new Vector2(304.951996F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(304.951996F, -352.243988F), new Vector2(304.675995F, -351.757996F), new Vector2(304.123993F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(303.571991F, -351.062012F), new Vector2(302.791992F, -350.888F), new Vector2(301.783997F, -350.888F));
+ builder.AddCubicBezier(new Vector2(300.776001F, -350.888F), new Vector2(299.864014F, -351.074005F), new Vector2(299.048004F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(298.231995F, -351.817993F), new Vector2(297.511993F, -352.388F), new Vector2(296.888F, -353.156006F));
+ builder.AddLine(new Vector2(294.799988F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(295.328003F, -350.420013F), new Vector2(295.946014F, -349.862F), new Vector2(296.653992F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(297.362F, -348.925995F), new Vector2(298.14801F, -348.56601F), new Vector2(299.011993F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(299.876007F, -348.062012F), new Vector2(300.787994F, -347.936005F), new Vector2(301.747986F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(303.667999F, -347.936005F), new Vector2(305.197998F, -348.403992F), new Vector2(306.338013F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1425()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(288.716003F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(289.891998F, -349.196014F), new Vector2(290.899994F, -349.928009F), new Vector2(291.73999F, -350.888F));
+ builder.AddLine(new Vector2(289.652008F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(289.075989F, -352.339996F), new Vector2(288.385986F, -351.835999F), new Vector2(287.582001F, -351.5F));
+ builder.AddCubicBezier(new Vector2(286.778015F, -351.164001F), new Vector2(285.895996F, -350.996002F), new Vector2(284.936005F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(283.783997F, -350.996002F), new Vector2(282.764008F, -351.242004F), new Vector2(281.876007F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(280.988007F, -352.226013F), new Vector2(280.303986F, -352.921997F), new Vector2(279.824005F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(279.343994F, -354.721985F), new Vector2(279.104004F, -355.772003F), new Vector2(279.104004F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(279.104004F, -358.14801F), new Vector2(279.332001F, -359.167999F), new Vector2(279.787994F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(280.243988F, -360.895996F), new Vector2(280.891998F, -361.567993F), new Vector2(281.731995F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(282.571991F, -362.528015F), new Vector2(283.544006F, -362.768005F), new Vector2(284.64801F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(285.70401F, -362.768005F), new Vector2(286.604004F, -362.54599F), new Vector2(287.347992F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(288.09201F, -361.65799F), new Vector2(288.667999F, -361.033997F), new Vector2(289.075989F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(289.484009F, -359.425995F), new Vector2(289.687988F, -358.447998F), new Vector2(289.687988F, -357.29599F));
+ builder.AddLine(new Vector2(290.876007F, -358.339996F));
+ builder.AddLine(new Vector2(278.167999F, -358.339996F));
+ builder.AddLine(new Vector2(278.167999F, -355.640015F));
+ builder.AddLine(new Vector2(292.604004F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(292.675995F, -355.976013F), new Vector2(292.723999F, -356.282013F), new Vector2(292.747986F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(292.772003F, -356.834015F), new Vector2(292.783997F, -357.09201F), new Vector2(292.783997F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(292.783997F, -358.963989F), new Vector2(292.441986F, -360.415985F), new Vector2(291.757996F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(291.074005F, -362.959991F), new Vector2(290.119995F, -363.955994F), new Vector2(288.895996F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(287.671997F, -365.395996F), new Vector2(286.279999F, -365.756012F), new Vector2(284.720001F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(283.063995F, -365.756012F), new Vector2(281.570007F, -365.365997F), new Vector2(280.238007F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(278.906006F, -363.806F), new Vector2(277.850006F, -362.743988F), new Vector2(277.070007F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(276.290009F, -360.056F), new Vector2(275.899994F, -358.544006F), new Vector2(275.899994F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(275.899994F, -355.160004F), new Vector2(276.29599F, -353.635986F), new Vector2(277.088013F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(277.880005F, -350.947998F), new Vector2(278.95401F, -349.885986F), new Vector2(280.309998F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(281.665985F, -348.325989F), new Vector2(283.208008F, -347.936005F), new Vector2(284.936005F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(286.279999F, -347.936005F), new Vector2(287.540009F, -348.187988F), new Vector2(288.716003F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1426()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(274.388F, -362.444F));
+ builder.AddLine(new Vector2(274.388F, -365.395996F));
+ builder.AddLine(new Vector2(262.723999F, -365.395996F));
+ builder.AddLine(new Vector2(262.723999F, -362.444F));
+ builder.AddLine(new Vector2(274.388F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(270.175995F, -348.29599F));
+ builder.AddLine(new Vector2(270.175995F, -372.559998F));
+ builder.AddLine(new Vector2(266.936005F, -372.559998F));
+ builder.AddLine(new Vector2(266.936005F, -348.29599F));
+ builder.AddLine(new Vector2(270.175995F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1427()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(249.440002F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(248.600006F, -352.328003F), new Vector2(247.940002F, -353.018005F), new Vector2(247.460007F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(246.979996F, -354.769989F), new Vector2(246.740005F, -355.772003F), new Vector2(246.740005F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(246.740005F, -358.003998F), new Vector2(246.979996F, -358.988007F), new Vector2(247.460007F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(247.940002F, -360.716003F), new Vector2(248.600006F, -361.394012F), new Vector2(249.440002F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(250.279999F, -362.377991F), new Vector2(251.227997F, -362.623993F), new Vector2(252.283997F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(253.388F, -362.623993F), new Vector2(254.354004F, -362.377991F), new Vector2(255.182007F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(256.01001F, -361.394012F), new Vector2(256.670013F, -360.716003F), new Vector2(257.161987F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(257.653992F, -358.988007F), new Vector2(257.899994F, -358.003998F), new Vector2(257.899994F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(257.899994F, -355.772003F), new Vector2(257.660004F, -354.769989F), new Vector2(257.179993F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(256.700012F, -353.018005F), new Vector2(256.040009F, -352.328003F), new Vector2(255.199997F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(254.360001F, -351.320007F), new Vector2(253.388F, -351.067993F), new Vector2(252.283997F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(251.227997F, -351.067993F), new Vector2(250.279999F, -351.320007F), new Vector2(249.440002F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(256.838013F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(258.194F, -349.915985F), new Vector2(259.268005F, -350.98999F), new Vector2(260.059998F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(260.85199F, -353.701996F), new Vector2(261.247986F, -355.220001F), new Vector2(261.247986F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(261.247986F, -358.556F), new Vector2(260.85199F, -360.056F), new Vector2(260.059998F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(259.268005F, -362.743988F), new Vector2(258.194F, -363.806F), new Vector2(256.838013F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(255.481995F, -365.365997F), new Vector2(253.964005F, -365.756012F), new Vector2(252.283997F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(250.628006F, -365.756012F), new Vector2(249.128006F, -365.359985F), new Vector2(247.783997F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(246.440002F, -363.776001F), new Vector2(245.371994F, -362.713989F), new Vector2(244.580002F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(243.787994F, -360.049988F), new Vector2(243.391998F, -358.556F), new Vector2(243.391998F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(243.391998F, -355.220001F), new Vector2(243.787994F, -353.701996F), new Vector2(244.580002F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(245.371994F, -350.98999F), new Vector2(246.440002F, -349.915985F), new Vector2(247.783997F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(249.128006F, -348.332001F), new Vector2(250.628006F, -347.936005F), new Vector2(252.283997F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(253.964005F, -347.936005F), new Vector2(255.481995F, -348.332001F), new Vector2(256.838013F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1428()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(235.003998F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(235.772003F, -362.312012F), new Vector2(236.755997F, -362.696014F), new Vector2(237.955994F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(238.531998F, -362.696014F), new Vector2(239.035995F, -362.612F), new Vector2(239.468002F, -362.444F));
+ builder.AddCubicBezier(new Vector2(239.899994F, -362.276001F), new Vector2(240.296005F, -362F), new Vector2(240.656006F, -361.615997F));
+ builder.AddLine(new Vector2(242.779999F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(242.179993F, -364.507996F), new Vector2(241.531998F, -365.006012F), new Vector2(240.835999F, -365.306F));
+ builder.AddCubicBezier(new Vector2(240.139999F, -365.605988F), new Vector2(239.360001F, -365.756012F), new Vector2(238.496002F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(236.600006F, -365.756012F), new Vector2(235.147995F, -365.108002F), new Vector2(234.139999F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(233.132004F, -362.515991F), new Vector2(232.628006F, -360.776001F), new Vector2(232.628006F, -358.59201F));
+ builder.AddLine(new Vector2(233.852005F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(233.852005F, -359.600006F), new Vector2(234.235992F, -360.776001F), new Vector2(235.003998F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(233.852005F, -348.29599F));
+ builder.AddLine(new Vector2(233.852005F, -365.395996F));
+ builder.AddLine(new Vector2(230.612F, -365.395996F));
+ builder.AddLine(new Vector2(230.612F, -348.29599F));
+ builder.AddLine(new Vector2(233.852005F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1429()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(215.294006F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(214.466003F, -352.256012F), new Vector2(213.830002F, -352.946014F), new Vector2(213.386002F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(212.942001F, -354.697998F), new Vector2(212.720001F, -355.700012F), new Vector2(212.720001F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(212.720001F, -357.980011F), new Vector2(212.947998F, -358.993988F), new Vector2(213.404007F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(213.860001F, -360.746002F), new Vector2(214.496002F, -361.436005F), new Vector2(215.311996F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(216.128006F, -362.444F), new Vector2(217.063995F, -362.696014F), new Vector2(218.119995F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(219.199997F, -362.696014F), new Vector2(220.147995F, -362.444F), new Vector2(220.964005F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(221.779999F, -361.436005F), new Vector2(222.421997F, -360.746002F), new Vector2(222.889999F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(223.358002F, -358.993988F), new Vector2(223.591995F, -357.992004F), new Vector2(223.591995F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(223.591995F, -355.712006F), new Vector2(223.358002F, -354.697998F), new Vector2(222.889999F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(222.421997F, -352.946014F), new Vector2(221.779999F, -352.256012F), new Vector2(220.964005F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(220.147995F, -351.247986F), new Vector2(219.199997F, -350.996002F), new Vector2(218.119995F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(217.063995F, -350.996002F), new Vector2(216.121994F, -351.247986F), new Vector2(215.294006F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(212.899994F, -341.131989F));
+ builder.AddLine(new Vector2(212.899994F, -352.579987F));
+ builder.AddLine(new Vector2(212.287994F, -356.756012F));
+ builder.AddLine(new Vector2(212.899994F, -360.895996F));
+ builder.AddLine(new Vector2(212.899994F, -365.395996F));
+ builder.AddLine(new Vector2(209.660004F, -365.395996F));
+ builder.AddLine(new Vector2(209.660004F, -341.131989F));
+ builder.AddLine(new Vector2(212.899994F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(222.889999F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(224.149994F, -349.885986F), new Vector2(225.139999F, -350.947998F), new Vector2(225.860001F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(226.580002F, -353.635986F), new Vector2(226.940002F, -355.14801F), new Vector2(226.940002F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(226.940002F, -358.507996F), new Vector2(226.580002F, -360.019989F), new Vector2(225.860001F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(225.139999F, -362.708008F), new Vector2(224.149994F, -363.776001F), new Vector2(222.889999F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(221.630005F, -365.359985F), new Vector2(220.220001F, -365.756012F), new Vector2(218.660004F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(217.388F, -365.756012F), new Vector2(216.229996F, -365.485992F), new Vector2(215.186005F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(214.141998F, -364.406006F), new Vector2(213.302002F, -363.661987F), new Vector2(212.666F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(212.029999F, -361.765991F), new Vector2(211.675995F, -360.667999F), new Vector2(211.604004F, -359.420013F));
+ builder.AddLine(new Vector2(211.604004F, -354.272003F));
+ builder.AddCubicBezier(new Vector2(211.675995F, -353.048004F), new Vector2(212.024002F, -351.955994F), new Vector2(212.647995F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(213.272003F, -350.036011F), new Vector2(214.106003F, -349.286011F), new Vector2(215.149994F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(216.194F, -348.205994F), new Vector2(217.363998F, -347.936005F), new Vector2(218.660004F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(220.220001F, -347.936005F), new Vector2(221.630005F, -348.325989F), new Vector2(222.889999F, -349.105988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1430()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(194.612F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(195.787994F, -349.196014F), new Vector2(196.796005F, -349.928009F), new Vector2(197.636002F, -350.888F));
+ builder.AddLine(new Vector2(195.548004F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(194.972F, -352.339996F), new Vector2(194.281998F, -351.835999F), new Vector2(193.477997F, -351.5F));
+ builder.AddCubicBezier(new Vector2(192.673996F, -351.164001F), new Vector2(191.792007F, -350.996002F), new Vector2(190.832001F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(189.679993F, -350.996002F), new Vector2(188.660004F, -351.242004F), new Vector2(187.772003F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(186.884003F, -352.226013F), new Vector2(186.199997F, -352.921997F), new Vector2(185.720001F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(185.240005F, -354.721985F), new Vector2(185F, -355.772003F), new Vector2(185F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(185F, -358.14801F), new Vector2(185.227997F, -359.167999F), new Vector2(185.684006F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(186.139999F, -360.895996F), new Vector2(186.787994F, -361.567993F), new Vector2(187.628006F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(188.468002F, -362.528015F), new Vector2(189.440002F, -362.768005F), new Vector2(190.544006F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(191.600006F, -362.768005F), new Vector2(192.5F, -362.54599F), new Vector2(193.244003F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(193.988007F, -361.65799F), new Vector2(194.563995F, -361.033997F), new Vector2(194.972F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(195.380005F, -359.425995F), new Vector2(195.584F, -358.447998F), new Vector2(195.584F, -357.29599F));
+ builder.AddLine(new Vector2(196.772003F, -358.339996F));
+ builder.AddLine(new Vector2(184.063995F, -358.339996F));
+ builder.AddLine(new Vector2(184.063995F, -355.640015F));
+ builder.AddLine(new Vector2(198.5F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(198.572006F, -355.976013F), new Vector2(198.619995F, -356.282013F), new Vector2(198.643997F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(198.667999F, -356.834015F), new Vector2(198.679993F, -357.09201F), new Vector2(198.679993F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(198.679993F, -358.963989F), new Vector2(198.337997F, -360.415985F), new Vector2(197.654007F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(196.970001F, -362.959991F), new Vector2(196.016006F, -363.955994F), new Vector2(194.792007F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(193.567993F, -365.395996F), new Vector2(192.175995F, -365.756012F), new Vector2(190.615997F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(188.960007F, -365.756012F), new Vector2(187.466003F, -365.365997F), new Vector2(186.134003F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(184.802002F, -363.806F), new Vector2(183.746002F, -362.743988F), new Vector2(182.966003F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(182.186005F, -360.056F), new Vector2(181.796005F, -358.544006F), new Vector2(181.796005F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(181.796005F, -355.160004F), new Vector2(182.192001F, -353.635986F), new Vector2(182.983994F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(183.776001F, -350.947998F), new Vector2(184.850006F, -349.885986F), new Vector2(186.205994F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(187.561996F, -348.325989F), new Vector2(189.104004F, -347.936005F), new Vector2(190.832001F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(192.175995F, -347.936005F), new Vector2(193.436005F, -348.187988F), new Vector2(194.612F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1431()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(166.423996F, -348.29599F));
+ builder.AddLine(new Vector2(166.423996F, -374F));
+ builder.AddLine(new Vector2(163.184006F, -374F));
+ builder.AddLine(new Vector2(163.184006F, -348.29599F));
+ builder.AddLine(new Vector2(166.423996F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(178.520004F, -348.29599F));
+ builder.AddLine(new Vector2(178.520004F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(178.520004F, -360.26001F), new Vector2(178.231995F, -361.447998F), new Vector2(177.656006F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(177.080002F, -363.511993F), new Vector2(176.294006F, -364.31601F), new Vector2(175.298004F, -364.891998F));
+ builder.AddCubicBezier(new Vector2(174.302002F, -365.467987F), new Vector2(173.156006F, -365.756012F), new Vector2(171.860001F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(170.563995F, -365.756012F), new Vector2(169.399994F, -365.462006F), new Vector2(168.367996F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(167.335999F, -364.286011F), new Vector2(166.531998F, -363.488007F), new Vector2(165.955994F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(165.380005F, -361.471985F), new Vector2(165.091995F, -360.320007F), new Vector2(165.091995F, -359.023987F));
+ builder.AddLine(new Vector2(166.423996F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(166.423996F, -359.131989F), new Vector2(166.615997F, -359.899994F), new Vector2(167F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(167.384003F, -361.243988F), new Vector2(167.912003F, -361.772003F), new Vector2(168.584F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(169.255997F, -362.540009F), new Vector2(170.024002F, -362.731995F), new Vector2(170.888F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(172.184006F, -362.731995F), new Vector2(173.233994F, -362.312012F), new Vector2(174.037994F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(174.841995F, -360.631989F), new Vector2(175.244003F, -359.563995F), new Vector2(175.244003F, -358.268005F));
+ builder.AddLine(new Vector2(175.244003F, -348.29599F));
+ builder.AddLine(new Vector2(178.520004F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1432()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(160.016006F, -362.444F));
+ builder.AddLine(new Vector2(160.016006F, -365.395996F));
+ builder.AddLine(new Vector2(148.352005F, -365.395996F));
+ builder.AddLine(new Vector2(148.352005F, -362.444F));
+ builder.AddLine(new Vector2(160.016006F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(155.804001F, -348.29599F));
+ builder.AddLine(new Vector2(155.804001F, -372.559998F));
+ builder.AddLine(new Vector2(152.563995F, -372.559998F));
+ builder.AddLine(new Vector2(152.563995F, -348.29599F));
+ builder.AddLine(new Vector2(155.804001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1433()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(137.138F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(138.278F, -350.276001F), new Vector2(138.848007F, -351.548004F), new Vector2(138.848007F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(138.848007F, -354.212006F), new Vector2(138.626007F, -355.063995F), new Vector2(138.182007F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(137.738007F, -356.359985F), new Vector2(137.167999F, -356.876007F), new Vector2(136.472F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(135.776001F, -357.644012F), new Vector2(135.044006F, -357.950012F), new Vector2(134.276001F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(133.507996F, -358.406006F), new Vector2(132.770004F, -358.627991F), new Vector2(132.061996F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(131.354004F, -359.059998F), new Vector2(130.783997F, -359.324005F), new Vector2(130.352005F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(129.919998F, -359.947998F), new Vector2(129.703995F, -360.391998F), new Vector2(129.703995F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(129.703995F, -361.519989F), new Vector2(129.949997F, -361.963989F), new Vector2(130.442001F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(130.934006F, -362.635986F), new Vector2(131.647995F, -362.803986F), new Vector2(132.584F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(133.472F, -362.803986F), new Vector2(134.264008F, -362.635986F), new Vector2(134.960007F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(135.656006F, -361.963989F), new Vector2(136.255997F, -361.484009F), new Vector2(136.759995F, -360.859985F));
+ builder.AddLine(new Vector2(138.848007F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(138.175995F, -363.884003F), new Vector2(137.317993F, -364.585999F), new Vector2(136.274002F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(135.229996F, -365.522003F), new Vector2(134.035995F, -365.756012F), new Vector2(132.692001F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(131.419998F, -365.756012F), new Vector2(130.328003F, -365.552002F), new Vector2(129.416F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(128.503998F, -364.735992F), new Vector2(127.802002F, -364.153992F), new Vector2(127.309998F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(126.818001F, -362.641998F), new Vector2(126.571999F, -361.747986F), new Vector2(126.571999F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(126.571999F, -359.68399F), new Vector2(126.793999F, -358.850006F), new Vector2(127.237999F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(127.681999F, -357.578003F), new Vector2(128.251999F, -357.079987F), new Vector2(128.947998F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(129.643997F, -356.359985F), new Vector2(130.382004F, -356.071991F), new Vector2(131.162003F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(131.942001F, -355.640015F), new Vector2(132.679993F, -355.417999F), new Vector2(133.376007F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(134.072006F, -354.962006F), new Vector2(134.641998F, -354.674011F), new Vector2(135.085999F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(135.529999F, -353.977997F), new Vector2(135.751999F, -353.492004F), new Vector2(135.751999F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(135.751999F, -352.243988F), new Vector2(135.475998F, -351.757996F), new Vector2(134.923996F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(134.371994F, -351.062012F), new Vector2(133.591995F, -350.888F), new Vector2(132.584F, -350.888F));
+ builder.AddCubicBezier(new Vector2(131.576004F, -350.888F), new Vector2(130.664001F, -351.074005F), new Vector2(129.848007F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(129.031998F, -351.817993F), new Vector2(128.311996F, -352.388F), new Vector2(127.688004F, -353.156006F));
+ builder.AddLine(new Vector2(125.599998F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(126.127998F, -350.420013F), new Vector2(126.746002F, -349.862F), new Vector2(127.454002F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(128.162003F, -348.925995F), new Vector2(128.947998F, -348.56601F), new Vector2(129.811996F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(130.675995F, -348.062012F), new Vector2(131.587997F, -347.936005F), new Vector2(132.548004F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(134.468002F, -347.936005F), new Vector2(135.998001F, -348.403992F), new Vector2(137.138F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1434()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(121.765999F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(122.905998F, -350.276001F), new Vector2(123.475998F, -351.548004F), new Vector2(123.475998F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(123.475998F, -354.212006F), new Vector2(123.253998F, -355.063995F), new Vector2(122.809998F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(122.365997F, -356.359985F), new Vector2(121.795998F, -356.876007F), new Vector2(121.099998F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(120.403999F, -357.644012F), new Vector2(119.671997F, -357.950012F), new Vector2(118.903999F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(118.136002F, -358.406006F), new Vector2(117.398003F, -358.627991F), new Vector2(116.690002F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(115.982002F, -359.059998F), new Vector2(115.412003F, -359.324005F), new Vector2(114.980003F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(114.547997F, -359.947998F), new Vector2(114.332001F, -360.391998F), new Vector2(114.332001F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(114.332001F, -361.519989F), new Vector2(114.578003F, -361.963989F), new Vector2(115.07F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(115.561996F, -362.635986F), new Vector2(116.276001F, -362.803986F), new Vector2(117.211998F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(118.099998F, -362.803986F), new Vector2(118.891998F, -362.635986F), new Vector2(119.587997F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(120.283997F, -361.963989F), new Vector2(120.884003F, -361.484009F), new Vector2(121.388F, -360.859985F));
+ builder.AddLine(new Vector2(123.475998F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(122.804001F, -363.884003F), new Vector2(121.945999F, -364.585999F), new Vector2(120.902F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(119.858002F, -365.522003F), new Vector2(118.664001F, -365.756012F), new Vector2(117.32F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(116.047997F, -365.756012F), new Vector2(114.956001F, -365.552002F), new Vector2(114.043999F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(113.132004F, -364.735992F), new Vector2(112.43F, -364.153992F), new Vector2(111.938004F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(111.445999F, -362.641998F), new Vector2(111.199997F, -361.747986F), new Vector2(111.199997F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(111.199997F, -359.68399F), new Vector2(111.421997F, -358.850006F), new Vector2(111.865997F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(112.309998F, -357.578003F), new Vector2(112.879997F, -357.079987F), new Vector2(113.575996F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(114.272003F, -356.359985F), new Vector2(115.010002F, -356.071991F), new Vector2(115.790001F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(116.57F, -355.640015F), new Vector2(117.307999F, -355.417999F), new Vector2(118.003998F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(118.699997F, -354.962006F), new Vector2(119.269997F, -354.674011F), new Vector2(119.713997F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(120.157997F, -353.977997F), new Vector2(120.379997F, -353.492004F), new Vector2(120.379997F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(120.379997F, -352.243988F), new Vector2(120.103996F, -351.757996F), new Vector2(119.552002F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(119F, -351.062012F), new Vector2(118.220001F, -350.888F), new Vector2(117.211998F, -350.888F));
+ builder.AddCubicBezier(new Vector2(116.204002F, -350.888F), new Vector2(115.292F, -351.074005F), new Vector2(114.475998F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(113.660004F, -351.817993F), new Vector2(112.940002F, -352.388F), new Vector2(112.316002F, -353.156006F));
+ builder.AddLine(new Vector2(110.227997F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(110.755997F, -350.420013F), new Vector2(111.374001F, -349.862F), new Vector2(112.082001F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(112.790001F, -348.925995F), new Vector2(113.575996F, -348.56601F), new Vector2(114.440002F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(115.304001F, -348.062012F), new Vector2(116.216003F, -347.936005F), new Vector2(117.176003F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(119.096001F, -347.936005F), new Vector2(120.625999F, -348.403992F), new Vector2(121.765999F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1435()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(104.143997F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(105.32F, -349.196014F), new Vector2(106.328003F, -349.928009F), new Vector2(107.167999F, -350.888F));
+ builder.AddLine(new Vector2(105.080002F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(104.503998F, -352.339996F), new Vector2(103.814003F, -351.835999F), new Vector2(103.010002F, -351.5F));
+ builder.AddCubicBezier(new Vector2(102.206001F, -351.164001F), new Vector2(101.323997F, -350.996002F), new Vector2(100.363998F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(99.211998F, -350.996002F), new Vector2(98.1920013F, -351.242004F), new Vector2(97.3040009F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(96.4160004F, -352.226013F), new Vector2(95.7320023F, -352.921997F), new Vector2(95.2519989F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(94.7720032F, -354.721985F), new Vector2(94.5319977F, -355.772003F), new Vector2(94.5319977F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(94.5319977F, -358.14801F), new Vector2(94.7600021F, -359.167999F), new Vector2(95.2160034F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(95.6719971F, -360.895996F), new Vector2(96.3199997F, -361.567993F), new Vector2(97.1600037F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(98F, -362.528015F), new Vector2(98.9720001F, -362.768005F), new Vector2(100.075996F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(101.132004F, -362.768005F), new Vector2(102.031998F, -362.54599F), new Vector2(102.776001F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(103.519997F, -361.65799F), new Vector2(104.096001F, -361.033997F), new Vector2(104.503998F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(104.912003F, -359.425995F), new Vector2(105.115997F, -358.447998F), new Vector2(105.115997F, -357.29599F));
+ builder.AddLine(new Vector2(106.304001F, -358.339996F));
+ builder.AddLine(new Vector2(93.5960007F, -358.339996F));
+ builder.AddLine(new Vector2(93.5960007F, -355.640015F));
+ builder.AddLine(new Vector2(108.031998F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(108.103996F, -355.976013F), new Vector2(108.152F, -356.282013F), new Vector2(108.176003F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(108.199997F, -356.834015F), new Vector2(108.211998F, -357.09201F), new Vector2(108.211998F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(108.211998F, -358.963989F), new Vector2(107.870003F, -360.415985F), new Vector2(107.185997F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(106.501999F, -362.959991F), new Vector2(105.547997F, -363.955994F), new Vector2(104.323997F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(103.099998F, -365.395996F), new Vector2(101.708F, -365.756012F), new Vector2(100.148003F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(98.4919968F, -365.756012F), new Vector2(96.9980011F, -365.365997F), new Vector2(95.6660004F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(94.3339996F, -363.806F), new Vector2(93.2779999F, -362.743988F), new Vector2(92.4980011F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(91.7180023F, -360.056F), new Vector2(91.3280029F, -358.544006F), new Vector2(91.3280029F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(91.3280029F, -355.160004F), new Vector2(91.723999F, -353.635986F), new Vector2(92.5159988F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(93.3079987F, -350.947998F), new Vector2(94.3820038F, -349.885986F), new Vector2(95.737999F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(97.0940018F, -348.325989F), new Vector2(98.6360016F, -347.936005F), new Vector2(100.363998F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(101.708F, -347.936005F), new Vector2(102.968002F, -348.187988F), new Vector2(104.143997F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1436()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(82.9400024F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(83.7080002F, -362.312012F), new Vector2(84.6920013F, -362.696014F), new Vector2(85.8919983F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(86.4680023F, -362.696014F), new Vector2(86.9720001F, -362.612F), new Vector2(87.4039993F, -362.444F));
+ builder.AddCubicBezier(new Vector2(87.8359985F, -362.276001F), new Vector2(88.2320023F, -362F), new Vector2(88.5920029F, -361.615997F));
+ builder.AddLine(new Vector2(90.7160034F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(90.1159973F, -364.507996F), new Vector2(89.4680023F, -365.006012F), new Vector2(88.7720032F, -365.306F));
+ builder.AddCubicBezier(new Vector2(88.0759964F, -365.605988F), new Vector2(87.2959976F, -365.756012F), new Vector2(86.4319992F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(84.5360031F, -365.756012F), new Vector2(83.0839996F, -365.108002F), new Vector2(82.0759964F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(81.0680008F, -362.515991F), new Vector2(80.564003F, -360.776001F), new Vector2(80.564003F, -358.59201F));
+ builder.AddLine(new Vector2(81.788002F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(81.788002F, -359.600006F), new Vector2(82.1719971F, -360.776001F), new Vector2(82.9400024F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(81.788002F, -348.29599F));
+ builder.AddLine(new Vector2(81.788002F, -365.395996F));
+ builder.AddLine(new Vector2(78.5479965F, -365.395996F));
+ builder.AddLine(new Vector2(78.5479965F, -348.29599F));
+ builder.AddLine(new Vector2(81.788002F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1437()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(63.2299995F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(62.4020004F, -352.256012F), new Vector2(61.7659988F, -352.946014F), new Vector2(61.3219986F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(60.8779984F, -354.697998F), new Vector2(60.6559982F, -355.700012F), new Vector2(60.6559982F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(60.6559982F, -357.980011F), new Vector2(60.8839989F, -358.993988F), new Vector2(61.3400002F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(61.7960014F, -360.746002F), new Vector2(62.4319992F, -361.436005F), new Vector2(63.2480011F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(64.064003F, -362.444F), new Vector2(65F, -362.696014F), new Vector2(66.0559998F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(67.1360016F, -362.696014F), new Vector2(68.0839996F, -362.444F), new Vector2(68.9000015F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(69.7160034F, -361.436005F), new Vector2(70.3580017F, -360.746002F), new Vector2(70.8259964F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(71.2939987F, -358.993988F), new Vector2(71.5279999F, -357.992004F), new Vector2(71.5279999F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(71.5279999F, -355.712006F), new Vector2(71.2939987F, -354.697998F), new Vector2(70.8259964F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(70.3580017F, -352.946014F), new Vector2(69.7160034F, -352.256012F), new Vector2(68.9000015F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(68.0839996F, -351.247986F), new Vector2(67.1360016F, -350.996002F), new Vector2(66.0559998F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(65F, -350.996002F), new Vector2(64.0579987F, -351.247986F), new Vector2(63.2299995F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(60.8359985F, -341.131989F));
+ builder.AddLine(new Vector2(60.8359985F, -352.579987F));
+ builder.AddLine(new Vector2(60.223999F, -356.756012F));
+ builder.AddLine(new Vector2(60.8359985F, -360.895996F));
+ builder.AddLine(new Vector2(60.8359985F, -365.395996F));
+ builder.AddLine(new Vector2(57.5960007F, -365.395996F));
+ builder.AddLine(new Vector2(57.5960007F, -341.131989F));
+ builder.AddLine(new Vector2(60.8359985F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(70.8259964F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(72.0859985F, -349.885986F), new Vector2(73.0759964F, -350.947998F), new Vector2(73.7959976F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(74.5159988F, -353.635986F), new Vector2(74.8759995F, -355.14801F), new Vector2(74.8759995F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(74.8759995F, -358.507996F), new Vector2(74.5159988F, -360.019989F), new Vector2(73.7959976F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(73.0759964F, -362.708008F), new Vector2(72.0859985F, -363.776001F), new Vector2(70.8259964F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(69.5660019F, -365.359985F), new Vector2(68.1559982F, -365.756012F), new Vector2(66.5960007F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(65.3239975F, -365.756012F), new Vector2(64.1660004F, -365.485992F), new Vector2(63.1220016F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(62.0779991F, -364.406006F), new Vector2(61.237999F, -363.661987F), new Vector2(60.6020012F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(59.9659996F, -361.765991F), new Vector2(59.6119995F, -360.667999F), new Vector2(59.5400009F, -359.420013F));
+ builder.AddLine(new Vector2(59.5400009F, -354.272003F));
+ builder.AddCubicBezier(new Vector2(59.6119995F, -353.048004F), new Vector2(59.9599991F, -351.955994F), new Vector2(60.5839996F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(61.2080002F, -350.036011F), new Vector2(62.0419998F, -349.286011F), new Vector2(63.0859985F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(64.1299973F, -348.205994F), new Vector2(65.3000031F, -347.936005F), new Vector2(66.5960007F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(68.1559982F, -347.936005F), new Vector2(69.5660019F, -348.325989F), new Vector2(70.8259964F, -349.105988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1438()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(42.2779999F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(41.4500008F, -352.256012F), new Vector2(40.8139992F, -352.946014F), new Vector2(40.3699989F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(39.9259987F, -354.697998F), new Vector2(39.7039986F, -355.700012F), new Vector2(39.7039986F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(39.7039986F, -357.980011F), new Vector2(39.9319992F, -358.993988F), new Vector2(40.3880005F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(40.8440018F, -360.746002F), new Vector2(41.4799995F, -361.436005F), new Vector2(42.2960014F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(43.1119995F, -362.444F), new Vector2(44.0480003F, -362.696014F), new Vector2(45.1040001F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(46.1839981F, -362.696014F), new Vector2(47.132F, -362.444F), new Vector2(47.9480019F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(48.7639999F, -361.436005F), new Vector2(49.4059982F, -360.746002F), new Vector2(49.8740005F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(50.3419991F, -358.993988F), new Vector2(50.5760002F, -357.992004F), new Vector2(50.5760002F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(50.5760002F, -355.712006F), new Vector2(50.3419991F, -354.697998F), new Vector2(49.8740005F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(49.4059982F, -352.946014F), new Vector2(48.7639999F, -352.256012F), new Vector2(47.9480019F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(47.132F, -351.247986F), new Vector2(46.1839981F, -350.996002F), new Vector2(45.1040001F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(44.0480003F, -350.996002F), new Vector2(43.105999F, -351.247986F), new Vector2(42.2779999F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(39.8839989F, -341.131989F));
+ builder.AddLine(new Vector2(39.8839989F, -352.579987F));
+ builder.AddLine(new Vector2(39.2719994F, -356.756012F));
+ builder.AddLine(new Vector2(39.8839989F, -360.895996F));
+ builder.AddLine(new Vector2(39.8839989F, -365.395996F));
+ builder.AddLine(new Vector2(36.644001F, -365.395996F));
+ builder.AddLine(new Vector2(36.644001F, -341.131989F));
+ builder.AddLine(new Vector2(39.8839989F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(49.8740005F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(51.1339989F, -349.885986F), new Vector2(52.1240005F, -350.947998F), new Vector2(52.8440018F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(53.5639992F, -353.635986F), new Vector2(53.9239998F, -355.14801F), new Vector2(53.9239998F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(53.9239998F, -358.507996F), new Vector2(53.5639992F, -360.019989F), new Vector2(52.8440018F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(52.1240005F, -362.708008F), new Vector2(51.1339989F, -363.776001F), new Vector2(49.8740005F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(48.6139984F, -365.359985F), new Vector2(47.2039986F, -365.756012F), new Vector2(45.644001F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(44.3720016F, -365.756012F), new Vector2(43.2140007F, -365.485992F), new Vector2(42.1699982F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(41.1259995F, -364.406006F), new Vector2(40.2859993F, -363.661987F), new Vector2(39.6500015F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(39.0139999F, -361.765991F), new Vector2(38.6599998F, -360.667999F), new Vector2(38.5880013F, -359.420013F));
+ builder.AddLine(new Vector2(38.5880013F, -354.272003F));
+ builder.AddCubicBezier(new Vector2(38.6599998F, -353.048004F), new Vector2(39.0079994F, -351.955994F), new Vector2(39.632F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(40.2560005F, -350.036011F), new Vector2(41.0900002F, -349.286011F), new Vector2(42.1339989F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(43.1780014F, -348.205994F), new Vector2(44.3479996F, -347.936005F), new Vector2(45.644001F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(47.2039986F, -347.936005F), new Vector2(48.6139984F, -348.325989F), new Vector2(49.8740005F, -349.105988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1439()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(21.2360001F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(20.3959999F, -352.328003F), new Vector2(19.7360001F, -353.018005F), new Vector2(19.2560005F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(18.7759991F, -354.769989F), new Vector2(18.5359993F, -355.772003F), new Vector2(18.5359993F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(18.5359993F, -358.003998F), new Vector2(18.7759991F, -358.988007F), new Vector2(19.2560005F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(19.7360001F, -360.716003F), new Vector2(20.3959999F, -361.394012F), new Vector2(21.2360001F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(22.0760002F, -362.377991F), new Vector2(23.0240002F, -362.623993F), new Vector2(24.0799999F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(25.184F, -362.623993F), new Vector2(26.1499996F, -362.377991F), new Vector2(26.9780006F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(27.8059998F, -361.394012F), new Vector2(28.4659996F, -360.716003F), new Vector2(28.9580002F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(29.4500008F, -358.988007F), new Vector2(29.6959991F, -358.003998F), new Vector2(29.6959991F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(29.6959991F, -355.772003F), new Vector2(29.4559994F, -354.769989F), new Vector2(28.9759998F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(28.4960003F, -353.018005F), new Vector2(27.8360004F, -352.328003F), new Vector2(26.9960003F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(26.1560001F, -351.320007F), new Vector2(25.184F, -351.067993F), new Vector2(24.0799999F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(23.0240002F, -351.067993F), new Vector2(22.0760002F, -351.320007F), new Vector2(21.2360001F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(28.6340008F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(29.9899998F, -349.915985F), new Vector2(31.0639992F, -350.98999F), new Vector2(31.8560009F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(32.6479988F, -353.701996F), new Vector2(33.0439987F, -355.220001F), new Vector2(33.0439987F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(33.0439987F, -358.556F), new Vector2(32.6479988F, -360.056F), new Vector2(31.8560009F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(31.0639992F, -362.743988F), new Vector2(29.9899998F, -363.806F), new Vector2(28.6340008F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(27.2779999F, -365.365997F), new Vector2(25.7600002F, -365.756012F), new Vector2(24.0799999F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(22.4239998F, -365.756012F), new Vector2(20.9239998F, -365.359985F), new Vector2(19.5799999F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(18.2360001F, -363.776001F), new Vector2(17.1679993F, -362.713989F), new Vector2(16.3759995F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(15.5839996F, -360.049988F), new Vector2(15.1879997F, -358.556F), new Vector2(15.1879997F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(15.1879997F, -355.220001F), new Vector2(15.5839996F, -353.701996F), new Vector2(16.3759995F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(17.1679993F, -350.98999F), new Vector2(18.2360001F, -349.915985F), new Vector2(19.5799999F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(20.9239998F, -348.332001F), new Vector2(22.4239998F, -347.936005F), new Vector2(24.0799999F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(25.7600002F, -347.936005F), new Vector2(27.2779999F, -348.332001F), new Vector2(28.6340008F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1440()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-6.55600023F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-7.39599991F, -352.328003F), new Vector2(-8.05599976F, -353.018005F), new Vector2(-8.53600025F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-9.01599979F, -354.769989F), new Vector2(-9.25599957F, -355.772003F), new Vector2(-9.25599957F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-9.25599957F, -358.003998F), new Vector2(-9.01599979F, -358.988007F), new Vector2(-8.53600025F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-8.05599976F, -360.716003F), new Vector2(-7.39599991F, -361.394012F), new Vector2(-6.55600023F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-5.71600008F, -362.377991F), new Vector2(-4.76800013F, -362.623993F), new Vector2(-3.71199989F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-2.60800004F, -362.623993F), new Vector2(-1.64199996F, -362.377991F), new Vector2(-0.81400001F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(0.0140000004F, -361.394012F), new Vector2(0.674000025F, -360.716003F), new Vector2(1.16600001F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(1.65799999F, -358.988007F), new Vector2(1.90400004F, -358.003998F), new Vector2(1.90400004F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(1.90400004F, -355.772003F), new Vector2(1.66400003F, -354.769989F), new Vector2(1.18400002F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(0.703999996F, -353.018005F), new Vector2(0.0439999998F, -352.328003F), new Vector2(-0.796000004F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-1.63600004F, -351.320007F), new Vector2(-2.60800004F, -351.067993F), new Vector2(-3.71199989F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-4.76800013F, -351.067993F), new Vector2(-5.71600008F, -351.320007F), new Vector2(-6.55600023F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(0.842000008F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(2.19799995F, -349.915985F), new Vector2(3.27200007F, -350.98999F), new Vector2(4.06400013F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(4.85599995F, -353.701996F), new Vector2(5.25199986F, -355.220001F), new Vector2(5.25199986F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(5.25199986F, -358.556F), new Vector2(4.85599995F, -360.056F), new Vector2(4.06400013F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(3.27200007F, -362.743988F), new Vector2(2.19799995F, -363.806F), new Vector2(0.842000008F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-0.513999999F, -365.365997F), new Vector2(-2.03200006F, -365.756012F), new Vector2(-3.71199989F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-5.36800003F, -365.756012F), new Vector2(-6.86800003F, -365.359985F), new Vector2(-8.21199989F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-9.55599976F, -363.776001F), new Vector2(-10.6239996F, -362.713989F), new Vector2(-11.4160004F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-12.2080002F, -360.049988F), new Vector2(-12.6040001F, -358.556F), new Vector2(-12.6040001F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-12.6040001F, -355.220001F), new Vector2(-12.2080002F, -353.701996F), new Vector2(-11.4160004F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-10.6239996F, -350.98999F), new Vector2(-9.55599976F, -349.915985F), new Vector2(-8.21199989F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-6.86800003F, -348.332001F), new Vector2(-5.36800003F, -347.936005F), new Vector2(-3.71199989F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-2.03200006F, -347.936005F), new Vector2(-0.513999999F, -348.332001F), new Vector2(0.842000008F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1441()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-14.1160002F, -362.444F));
+ builder.AddLine(new Vector2(-14.1160002F, -365.395996F));
+ builder.AddLine(new Vector2(-25.7800007F, -365.395996F));
+ builder.AddLine(new Vector2(-25.7800007F, -362.444F));
+ builder.AddLine(new Vector2(-14.1160002F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-18.3279991F, -348.29599F));
+ builder.AddLine(new Vector2(-18.3279991F, -372.559998F));
+ builder.AddLine(new Vector2(-21.5680008F, -372.559998F));
+ builder.AddLine(new Vector2(-21.5680008F, -348.29599F));
+ builder.AddLine(new Vector2(-18.3279991F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1442()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-36.3639984F, -374F));
+ builder.AddLine(new Vector2(-39.6399994F, -374F));
+ builder.AddLine(new Vector2(-39.6399994F, -361.220001F));
+ builder.AddLine(new Vector2(-39.0279999F, -357.079987F));
+ builder.AddLine(new Vector2(-39.6399994F, -352.903992F));
+ builder.AddLine(new Vector2(-39.6399994F, -348.29599F));
+ builder.AddLine(new Vector2(-36.3639984F, -348.29599F));
+ builder.AddLine(new Vector2(-36.3639984F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-47.6860008F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-48.5139999F, -352.226013F), new Vector2(-49.1619987F, -352.915985F), new Vector2(-49.6300011F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(-50.0979996F, -354.691986F), new Vector2(-50.3320007F, -355.712006F), new Vector2(-50.3320007F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-50.3320007F, -358.015991F), new Vector2(-50.0979996F, -359.029999F), new Vector2(-49.6300011F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(-49.1619987F, -360.782013F), new Vector2(-48.5200005F, -361.466003F), new Vector2(-47.7039986F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-46.8880005F, -362.450012F), new Vector2(-45.9399986F, -362.696014F), new Vector2(-44.8600006F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-43.7799988F, -362.696014F), new Vector2(-42.8320007F, -362.444F), new Vector2(-42.0159988F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-41.2000008F, -361.436005F), new Vector2(-40.5639992F, -360.746002F), new Vector2(-40.1080017F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-39.6520004F, -358.993988F), new Vector2(-39.4239998F, -357.980011F), new Vector2(-39.4239998F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-39.4239998F, -355.700012F), new Vector2(-39.6520004F, -354.697998F), new Vector2(-40.1080017F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-40.5639992F, -352.946014F), new Vector2(-41.2000008F, -352.256012F), new Vector2(-42.0159988F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-42.8320007F, -351.247986F), new Vector2(-43.7799988F, -350.996002F), new Vector2(-44.8600006F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-45.9160004F, -350.996002F), new Vector2(-46.8580017F, -351.242004F), new Vector2(-47.6860008F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-41.8720016F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-40.8400002F, -349.286011F), new Vector2(-40.012001F, -350.036011F), new Vector2(-39.3880005F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-38.7639999F, -351.955994F), new Vector2(-38.4160004F, -353.048004F), new Vector2(-38.3440018F, -354.272003F));
+ builder.AddLine(new Vector2(-38.3440018F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-38.4160004F, -360.667999F), new Vector2(-38.7700005F, -361.765991F), new Vector2(-39.4059982F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-40.0419998F, -363.661987F), new Vector2(-40.8759995F, -364.406006F), new Vector2(-41.9080009F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-42.9399986F, -365.485992F), new Vector2(-44.1040001F, -365.756012F), new Vector2(-45.4000015F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-46.9599991F, -365.756012F), new Vector2(-48.3639984F, -365.359985F), new Vector2(-49.6119995F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-50.8600006F, -363.776001F), new Vector2(-51.8499985F, -362.708008F), new Vector2(-52.5820007F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-53.3139992F, -360.019989F), new Vector2(-53.6800003F, -358.507996F), new Vector2(-53.6800003F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-53.6800003F, -355.14801F), new Vector2(-53.3139992F, -353.635986F), new Vector2(-52.5820007F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-51.8499985F, -350.947998F), new Vector2(-50.8600006F, -349.885986F), new Vector2(-49.6119995F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-48.3639984F, -348.325989F), new Vector2(-46.9599991F, -347.936005F), new Vector2(-45.4000015F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-44.0800018F, -347.936005F), new Vector2(-42.9039993F, -348.205994F), new Vector2(-41.8720016F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1443()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-60.1959991F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-59.0200005F, -349.196014F), new Vector2(-58.012001F, -349.928009F), new Vector2(-57.1720009F, -350.888F));
+ builder.AddLine(new Vector2(-59.2599983F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-59.8359985F, -352.339996F), new Vector2(-60.526001F, -351.835999F), new Vector2(-61.3300018F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-62.1339989F, -351.164001F), new Vector2(-63.0159988F, -350.996002F), new Vector2(-63.9760017F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-65.1279984F, -350.996002F), new Vector2(-66.1480026F, -351.242004F), new Vector2(-67.0360031F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-67.9240036F, -352.226013F), new Vector2(-68.6080017F, -352.921997F), new Vector2(-69.0879974F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-69.5680008F, -354.721985F), new Vector2(-69.8079987F, -355.772003F), new Vector2(-69.8079987F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-69.8079987F, -358.14801F), new Vector2(-69.5800018F, -359.167999F), new Vector2(-69.1240005F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-68.6679993F, -360.895996F), new Vector2(-68.0199966F, -361.567993F), new Vector2(-67.1800003F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-66.3399963F, -362.528015F), new Vector2(-65.3679962F, -362.768005F), new Vector2(-64.2639999F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-63.2080002F, -362.768005F), new Vector2(-62.3079987F, -362.54599F), new Vector2(-61.5639992F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-60.8199997F, -361.65799F), new Vector2(-60.2439995F, -361.033997F), new Vector2(-59.8359985F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-59.4280014F, -359.425995F), new Vector2(-59.223999F, -358.447998F), new Vector2(-59.223999F, -357.29599F));
+ builder.AddLine(new Vector2(-58.0359993F, -358.339996F));
+ builder.AddLine(new Vector2(-70.7440033F, -358.339996F));
+ builder.AddLine(new Vector2(-70.7440033F, -355.640015F));
+ builder.AddLine(new Vector2(-56.3079987F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-56.2360001F, -355.976013F), new Vector2(-56.1879997F, -356.282013F), new Vector2(-56.1640015F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-56.1399994F, -356.834015F), new Vector2(-56.1279984F, -357.09201F), new Vector2(-56.1279984F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-56.1279984F, -358.963989F), new Vector2(-56.4700012F, -360.415985F), new Vector2(-57.1539993F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-57.8380013F, -362.959991F), new Vector2(-58.7919998F, -363.955994F), new Vector2(-60.0159988F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-61.2400017F, -365.395996F), new Vector2(-62.632F, -365.756012F), new Vector2(-64.1920013F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-65.8479996F, -365.756012F), new Vector2(-67.3420029F, -365.365997F), new Vector2(-68.6740036F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-70.0059967F, -363.806F), new Vector2(-71.0619965F, -362.743988F), new Vector2(-71.8420029F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-72.6220016F, -360.056F), new Vector2(-73.012001F, -358.544006F), new Vector2(-73.012001F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-73.012001F, -355.160004F), new Vector2(-72.6159973F, -353.635986F), new Vector2(-71.8239975F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-71.0319977F, -350.947998F), new Vector2(-69.9580002F, -349.885986F), new Vector2(-68.6019974F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-67.2460022F, -348.325989F), new Vector2(-65.7040024F, -347.936005F), new Vector2(-63.9760017F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-62.632F, -347.936005F), new Vector2(-61.3720016F, -348.187988F), new Vector2(-60.1959991F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1444()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-74.5240021F, -362.444F));
+ builder.AddLine(new Vector2(-74.5240021F, -365.395996F));
+ builder.AddLine(new Vector2(-86.1880035F, -365.395996F));
+ builder.AddLine(new Vector2(-86.1880035F, -362.444F));
+ builder.AddLine(new Vector2(-74.5240021F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-78.7360001F, -348.29599F));
+ builder.AddLine(new Vector2(-78.7360001F, -372.559998F));
+ builder.AddLine(new Vector2(-81.9759979F, -372.559998F));
+ builder.AddLine(new Vector2(-81.9759979F, -348.29599F));
+ builder.AddLine(new Vector2(-78.7360001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1445()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-94.6119995F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(-93.8440018F, -362.312012F), new Vector2(-92.8600006F, -362.696014F), new Vector2(-91.6600037F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-91.0839996F, -362.696014F), new Vector2(-90.5800018F, -362.612F), new Vector2(-90.1480026F, -362.444F));
+ builder.AddCubicBezier(new Vector2(-89.7160034F, -362.276001F), new Vector2(-89.3199997F, -362F), new Vector2(-88.9599991F, -361.615997F));
+ builder.AddLine(new Vector2(-86.8359985F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-87.435997F, -364.507996F), new Vector2(-88.0839996F, -365.006012F), new Vector2(-88.7799988F, -365.306F));
+ builder.AddCubicBezier(new Vector2(-89.4759979F, -365.605988F), new Vector2(-90.2559967F, -365.756012F), new Vector2(-91.1200027F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-93.0159988F, -365.756012F), new Vector2(-94.4680023F, -365.108002F), new Vector2(-95.4759979F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-96.4840012F, -362.515991F), new Vector2(-96.987999F, -360.776001F), new Vector2(-96.987999F, -358.59201F));
+ builder.AddLine(new Vector2(-95.7639999F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(-95.7639999F, -359.600006F), new Vector2(-95.3799973F, -360.776001F), new Vector2(-94.6119995F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-95.7639999F, -348.29599F));
+ builder.AddLine(new Vector2(-95.7639999F, -365.395996F));
+ builder.AddLine(new Vector2(-99.0039978F, -365.395996F));
+ builder.AddLine(new Vector2(-99.0039978F, -348.29599F));
+ builder.AddLine(new Vector2(-95.7639999F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1446()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-103.720001F, -348.29599F));
+ builder.AddLine(new Vector2(-103.720001F, -365.395996F));
+ builder.AddLine(new Vector2(-106.996002F, -365.395996F));
+ builder.AddLine(new Vector2(-106.996002F, -361.220001F));
+ builder.AddLine(new Vector2(-106.384003F, -357.079987F));
+ builder.AddLine(new Vector2(-106.996002F, -352.903992F));
+ builder.AddLine(new Vector2(-106.996002F, -348.29599F));
+ builder.AddLine(new Vector2(-103.720001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-115.024002F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-115.863998F, -352.256012F), new Vector2(-116.517998F, -352.946014F), new Vector2(-116.986F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-117.454002F, -354.697998F), new Vector2(-117.688004F, -355.712006F), new Vector2(-117.688004F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-117.688004F, -357.992004F), new Vector2(-117.454002F, -358.993988F), new Vector2(-116.986F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-116.517998F, -360.746002F), new Vector2(-115.870003F, -361.436005F), new Vector2(-115.042F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-114.213997F, -362.444F), new Vector2(-113.260002F, -362.696014F), new Vector2(-112.18F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-111.099998F, -362.696014F), new Vector2(-110.157997F, -362.450012F), new Vector2(-109.353996F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-108.550003F, -361.466003F), new Vector2(-107.919998F, -360.776001F), new Vector2(-107.463997F, -359.888F));
+ builder.AddCubicBezier(new Vector2(-107.008003F, -359F), new Vector2(-106.779999F, -357.980011F), new Vector2(-106.779999F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-106.779999F, -355.123993F), new Vector2(-107.272003F, -353.726013F), new Vector2(-108.255997F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(-109.239998F, -351.541992F), new Vector2(-110.536003F, -350.996002F), new Vector2(-112.143997F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-113.223999F, -350.996002F), new Vector2(-114.183998F, -351.247986F), new Vector2(-115.024002F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-109.192001F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-108.160004F, -349.286011F), new Vector2(-107.337997F, -350.036011F), new Vector2(-106.725998F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-106.113998F, -351.955994F), new Vector2(-105.772003F, -353.048004F), new Vector2(-105.699997F, -354.272003F));
+ builder.AddLine(new Vector2(-105.699997F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-105.772003F, -360.667999F), new Vector2(-106.120003F, -361.765991F), new Vector2(-106.744003F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-107.367996F, -363.661987F), new Vector2(-108.190002F, -364.406006F), new Vector2(-109.209999F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-110.230003F, -365.485992F), new Vector2(-111.388F, -365.756012F), new Vector2(-112.683998F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-114.267998F, -365.756012F), new Vector2(-115.690002F, -365.359985F), new Vector2(-116.949997F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-118.209999F, -363.776001F), new Vector2(-119.206001F, -362.708008F), new Vector2(-119.938004F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-120.669998F, -360.019989F), new Vector2(-121.036003F, -358.507996F), new Vector2(-121.036003F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-121.036003F, -355.14801F), new Vector2(-120.669998F, -353.635986F), new Vector2(-119.938004F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-119.206001F, -350.947998F), new Vector2(-118.209999F, -349.885986F), new Vector2(-116.949997F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-115.690002F, -348.325989F), new Vector2(-114.267998F, -347.936005F), new Vector2(-112.683998F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-111.388F, -347.936005F), new Vector2(-110.223999F, -348.205994F), new Vector2(-109.192001F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1447()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-122.584F, -362.444F));
+ builder.AddLine(new Vector2(-122.584F, -365.395996F));
+ builder.AddLine(new Vector2(-134.248001F, -365.395996F));
+ builder.AddLine(new Vector2(-134.248001F, -362.444F));
+ builder.AddLine(new Vector2(-122.584F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-126.795998F, -348.29599F));
+ builder.AddLine(new Vector2(-126.795998F, -372.559998F));
+ builder.AddLine(new Vector2(-130.035995F, -372.559998F));
+ builder.AddLine(new Vector2(-130.035995F, -348.29599F));
+ builder.AddLine(new Vector2(-126.795998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1448()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-138.009995F, -349.339996F));
+ builder.AddCubicBezier(new Vector2(-136.869995F, -350.276001F), new Vector2(-136.300003F, -351.548004F), new Vector2(-136.300003F, -353.156006F));
+ builder.AddCubicBezier(new Vector2(-136.300003F, -354.212006F), new Vector2(-136.522003F, -355.063995F), new Vector2(-136.966003F, -355.712006F));
+ builder.AddCubicBezier(new Vector2(-137.410004F, -356.359985F), new Vector2(-137.979996F, -356.876007F), new Vector2(-138.675995F, -357.26001F));
+ builder.AddCubicBezier(new Vector2(-139.371994F, -357.644012F), new Vector2(-140.104004F, -357.950012F), new Vector2(-140.871994F, -358.178009F));
+ builder.AddCubicBezier(new Vector2(-141.639999F, -358.406006F), new Vector2(-142.378006F, -358.627991F), new Vector2(-143.085999F, -358.843994F));
+ builder.AddCubicBezier(new Vector2(-143.794006F, -359.059998F), new Vector2(-144.363998F, -359.324005F), new Vector2(-144.796005F, -359.635986F));
+ builder.AddCubicBezier(new Vector2(-145.227997F, -359.947998F), new Vector2(-145.444F, -360.391998F), new Vector2(-145.444F, -360.967987F));
+ builder.AddCubicBezier(new Vector2(-145.444F, -361.519989F), new Vector2(-145.197998F, -361.963989F), new Vector2(-144.705994F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-144.214005F, -362.635986F), new Vector2(-143.5F, -362.803986F), new Vector2(-142.563995F, -362.803986F));
+ builder.AddCubicBezier(new Vector2(-141.675995F, -362.803986F), new Vector2(-140.884003F, -362.635986F), new Vector2(-140.188004F, -362.299988F));
+ builder.AddCubicBezier(new Vector2(-139.492004F, -361.963989F), new Vector2(-138.891998F, -361.484009F), new Vector2(-138.388F, -360.859985F));
+ builder.AddLine(new Vector2(-136.300003F, -362.947998F));
+ builder.AddCubicBezier(new Vector2(-136.972F, -363.884003F), new Vector2(-137.830002F, -364.585999F), new Vector2(-138.873993F, -365.053986F));
+ builder.AddCubicBezier(new Vector2(-139.917999F, -365.522003F), new Vector2(-141.112F, -365.756012F), new Vector2(-142.455994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-143.727997F, -365.756012F), new Vector2(-144.820007F, -365.552002F), new Vector2(-145.731995F, -365.144012F));
+ builder.AddCubicBezier(new Vector2(-146.643997F, -364.735992F), new Vector2(-147.345993F, -364.153992F), new Vector2(-147.837997F, -363.39801F));
+ builder.AddCubicBezier(new Vector2(-148.330002F, -362.641998F), new Vector2(-148.576004F, -361.747986F), new Vector2(-148.576004F, -360.716003F));
+ builder.AddCubicBezier(new Vector2(-148.576004F, -359.68399F), new Vector2(-148.354004F, -358.850006F), new Vector2(-147.910004F, -358.213989F));
+ builder.AddCubicBezier(new Vector2(-147.466003F, -357.578003F), new Vector2(-146.895996F, -357.079987F), new Vector2(-146.199997F, -356.720001F));
+ builder.AddCubicBezier(new Vector2(-145.503998F, -356.359985F), new Vector2(-144.766006F, -356.071991F), new Vector2(-143.985992F, -355.855988F));
+ builder.AddCubicBezier(new Vector2(-143.205994F, -355.640015F), new Vector2(-142.468002F, -355.417999F), new Vector2(-141.772003F, -355.190002F));
+ builder.AddCubicBezier(new Vector2(-141.076004F, -354.962006F), new Vector2(-140.505997F, -354.674011F), new Vector2(-140.061996F, -354.325989F));
+ builder.AddCubicBezier(new Vector2(-139.617996F, -353.977997F), new Vector2(-139.395996F, -353.492004F), new Vector2(-139.395996F, -352.868011F));
+ builder.AddCubicBezier(new Vector2(-139.395996F, -352.243988F), new Vector2(-139.671997F, -351.757996F), new Vector2(-140.223999F, -351.410004F));
+ builder.AddCubicBezier(new Vector2(-140.776001F, -351.062012F), new Vector2(-141.556F, -350.888F), new Vector2(-142.563995F, -350.888F));
+ builder.AddCubicBezier(new Vector2(-143.572006F, -350.888F), new Vector2(-144.483994F, -351.074005F), new Vector2(-145.300003F, -351.446014F));
+ builder.AddCubicBezier(new Vector2(-146.115997F, -351.817993F), new Vector2(-146.835999F, -352.388F), new Vector2(-147.460007F, -353.156006F));
+ builder.AddLine(new Vector2(-149.548004F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-149.020004F, -350.420013F), new Vector2(-148.401993F, -349.862F), new Vector2(-147.694F, -349.394012F));
+ builder.AddCubicBezier(new Vector2(-146.985992F, -348.925995F), new Vector2(-146.199997F, -348.56601F), new Vector2(-145.335999F, -348.313995F));
+ builder.AddCubicBezier(new Vector2(-144.472F, -348.062012F), new Vector2(-143.559998F, -347.936005F), new Vector2(-142.600006F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-140.679993F, -347.936005F), new Vector2(-139.149994F, -348.403992F), new Vector2(-138.009995F, -349.339996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1449()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-163.084F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-161.908005F, -349.196014F), new Vector2(-160.899994F, -349.928009F), new Vector2(-160.059998F, -350.888F));
+ builder.AddLine(new Vector2(-162.147995F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-162.723999F, -352.339996F), new Vector2(-163.414001F, -351.835999F), new Vector2(-164.218002F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-165.022003F, -351.164001F), new Vector2(-165.904007F, -350.996002F), new Vector2(-166.863998F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-168.016006F, -350.996002F), new Vector2(-169.035995F, -351.242004F), new Vector2(-169.923996F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-170.811996F, -352.226013F), new Vector2(-171.496002F, -352.921997F), new Vector2(-171.975998F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-172.455994F, -354.721985F), new Vector2(-172.695999F, -355.772003F), new Vector2(-172.695999F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-172.695999F, -358.14801F), new Vector2(-172.468002F, -359.167999F), new Vector2(-172.011993F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-171.556F, -360.895996F), new Vector2(-170.908005F, -361.567993F), new Vector2(-170.067993F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-169.227997F, -362.528015F), new Vector2(-168.255997F, -362.768005F), new Vector2(-167.151993F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-166.095993F, -362.768005F), new Vector2(-165.195999F, -362.54599F), new Vector2(-164.451996F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-163.707993F, -361.65799F), new Vector2(-163.132004F, -361.033997F), new Vector2(-162.723999F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-162.315994F, -359.425995F), new Vector2(-162.112F, -358.447998F), new Vector2(-162.112F, -357.29599F));
+ builder.AddLine(new Vector2(-160.923996F, -358.339996F));
+ builder.AddLine(new Vector2(-173.632004F, -358.339996F));
+ builder.AddLine(new Vector2(-173.632004F, -355.640015F));
+ builder.AddLine(new Vector2(-159.195999F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-159.123993F, -355.976013F), new Vector2(-159.076004F, -356.282013F), new Vector2(-159.052002F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-159.028F, -356.834015F), new Vector2(-159.016006F, -357.09201F), new Vector2(-159.016006F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-159.016006F, -358.963989F), new Vector2(-159.358002F, -360.415985F), new Vector2(-160.042007F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-160.725998F, -362.959991F), new Vector2(-161.679993F, -363.955994F), new Vector2(-162.904007F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-164.128006F, -365.395996F), new Vector2(-165.520004F, -365.756012F), new Vector2(-167.080002F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-168.735992F, -365.756012F), new Vector2(-170.229996F, -365.365997F), new Vector2(-171.561996F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-172.893997F, -363.806F), new Vector2(-173.949997F, -362.743988F), new Vector2(-174.729996F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-175.509995F, -360.056F), new Vector2(-175.899994F, -358.544006F), new Vector2(-175.899994F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-175.899994F, -355.160004F), new Vector2(-175.503998F, -353.635986F), new Vector2(-174.712006F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-173.919998F, -350.947998F), new Vector2(-172.845993F, -349.885986F), new Vector2(-171.490005F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-170.134003F, -348.325989F), new Vector2(-168.591995F, -347.936005F), new Vector2(-166.863998F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-165.520004F, -347.936005F), new Vector2(-164.259995F, -348.187988F), new Vector2(-163.084F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1450()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-180.561996F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-179.421997F, -349.196014F), new Vector2(-178.455994F, -349.903992F), new Vector2(-177.664001F, -350.81601F));
+ builder.AddLine(new Vector2(-179.787994F, -352.976013F));
+ builder.AddCubicBezier(new Vector2(-180.339996F, -352.35199F), new Vector2(-180.994003F, -351.877991F), new Vector2(-181.75F, -351.553986F));
+ builder.AddCubicBezier(new Vector2(-182.505997F, -351.230011F), new Vector2(-183.339996F, -351.067993F), new Vector2(-184.251999F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-185.332001F, -351.067993F), new Vector2(-186.292007F, -351.320007F), new Vector2(-187.132004F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-187.972F, -352.328003F), new Vector2(-188.632004F, -353.011993F), new Vector2(-189.112F, -353.876007F));
+ builder.AddCubicBezier(new Vector2(-189.591995F, -354.73999F), new Vector2(-189.832001F, -355.735992F), new Vector2(-189.832001F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-189.832001F, -357.992004F), new Vector2(-189.591995F, -358.988007F), new Vector2(-189.112F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-188.632004F, -360.716003F), new Vector2(-187.972F, -361.394012F), new Vector2(-187.132004F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-186.292007F, -362.377991F), new Vector2(-185.332001F, -362.623993F), new Vector2(-184.251999F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-183.363998F, -362.623993F), new Vector2(-182.535995F, -362.462006F), new Vector2(-181.768005F, -362.138F));
+ builder.AddCubicBezier(new Vector2(-181F, -361.813995F), new Vector2(-180.352005F, -361.339996F), new Vector2(-179.824005F, -360.716003F));
+ builder.AddLine(new Vector2(-177.664001F, -362.876007F));
+ builder.AddCubicBezier(new Vector2(-178.479996F, -363.812012F), new Vector2(-179.451996F, -364.526001F), new Vector2(-180.580002F, -365.018005F));
+ builder.AddCubicBezier(new Vector2(-181.707993F, -365.51001F), new Vector2(-182.932007F, -365.756012F), new Vector2(-184.251999F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-185.932007F, -365.756012F), new Vector2(-187.449997F, -365.365997F), new Vector2(-188.806F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-190.162003F, -363.806F), new Vector2(-191.229996F, -362.743988F), new Vector2(-192.009995F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-192.789993F, -360.056F), new Vector2(-193.179993F, -358.544006F), new Vector2(-193.179993F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-193.179993F, -355.208008F), new Vector2(-192.789993F, -353.701996F), new Vector2(-192.009995F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-191.229996F, -350.98999F), new Vector2(-190.162003F, -349.915985F), new Vector2(-188.806F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-187.449997F, -348.332001F), new Vector2(-185.932007F, -347.936005F), new Vector2(-184.251999F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-182.932007F, -347.936005F), new Vector2(-181.701996F, -348.187988F), new Vector2(-180.561996F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1451()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-196.996002F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-196.612F, -369.806F), new Vector2(-196.419998F, -370.303986F), new Vector2(-196.419998F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-196.419998F, -371.480011F), new Vector2(-196.612F, -371.966003F), new Vector2(-196.996002F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-197.380005F, -372.757996F), new Vector2(-197.871994F, -372.955994F), new Vector2(-198.472F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(-199.072006F, -372.955994F), new Vector2(-199.563995F, -372.757996F), new Vector2(-199.947998F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-200.332001F, -371.966003F), new Vector2(-200.524002F, -371.480011F), new Vector2(-200.524002F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-200.524002F, -370.303986F), new Vector2(-200.332001F, -369.806F), new Vector2(-199.947998F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-199.563995F, -369.014008F), new Vector2(-199.072006F, -368.81601F), new Vector2(-198.472F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(-197.871994F, -368.81601F), new Vector2(-197.380005F, -369.014008F), new Vector2(-196.996002F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-196.852005F, -348.29599F));
+ builder.AddLine(new Vector2(-196.852005F, -365.395996F));
+ builder.AddLine(new Vector2(-200.128006F, -365.395996F));
+ builder.AddLine(new Vector2(-200.128006F, -348.29599F));
+ builder.AddLine(new Vector2(-196.852005F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1452()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-204.880005F, -348.29599F));
+ builder.AddLine(new Vector2(-204.880005F, -374F));
+ builder.AddLine(new Vector2(-208.119995F, -374F));
+ builder.AddLine(new Vector2(-208.119995F, -348.29599F));
+ builder.AddLine(new Vector2(-204.880005F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1453()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-223.528F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-224.367996F, -352.328003F), new Vector2(-225.028F, -353.018005F), new Vector2(-225.507996F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-225.988007F, -354.769989F), new Vector2(-226.227997F, -355.772003F), new Vector2(-226.227997F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-226.227997F, -358.003998F), new Vector2(-225.988007F, -358.988007F), new Vector2(-225.507996F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-225.028F, -360.716003F), new Vector2(-224.367996F, -361.394012F), new Vector2(-223.528F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-222.688004F, -362.377991F), new Vector2(-221.740005F, -362.623993F), new Vector2(-220.684006F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-219.580002F, -362.623993F), new Vector2(-218.613998F, -362.377991F), new Vector2(-217.785995F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-216.957993F, -361.394012F), new Vector2(-216.298004F, -360.716003F), new Vector2(-215.806F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-215.313995F, -358.988007F), new Vector2(-215.067993F, -358.003998F), new Vector2(-215.067993F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-215.067993F, -355.772003F), new Vector2(-215.307999F, -354.769989F), new Vector2(-215.787994F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-216.268005F, -353.018005F), new Vector2(-216.927994F, -352.328003F), new Vector2(-217.768005F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-218.608002F, -351.320007F), new Vector2(-219.580002F, -351.067993F), new Vector2(-220.684006F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-221.740005F, -351.067993F), new Vector2(-222.688004F, -351.320007F), new Vector2(-223.528F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-216.130005F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-214.774002F, -349.915985F), new Vector2(-213.699997F, -350.98999F), new Vector2(-212.908005F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-212.115997F, -353.701996F), new Vector2(-211.720001F, -355.220001F), new Vector2(-211.720001F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-211.720001F, -358.556F), new Vector2(-212.115997F, -360.056F), new Vector2(-212.908005F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-213.699997F, -362.743988F), new Vector2(-214.774002F, -363.806F), new Vector2(-216.130005F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-217.485992F, -365.365997F), new Vector2(-219.003998F, -365.756012F), new Vector2(-220.684006F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-222.339996F, -365.756012F), new Vector2(-223.839996F, -365.359985F), new Vector2(-225.184006F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-226.528F, -363.776001F), new Vector2(-227.595993F, -362.713989F), new Vector2(-228.388F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-229.179993F, -360.049988F), new Vector2(-229.576004F, -358.556F), new Vector2(-229.576004F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-229.576004F, -355.220001F), new Vector2(-229.179993F, -353.701996F), new Vector2(-228.388F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-227.595993F, -350.98999F), new Vector2(-226.528F, -349.915985F), new Vector2(-225.184006F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-223.839996F, -348.332001F), new Vector2(-222.339996F, -347.936005F), new Vector2(-220.684006F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-219.003998F, -347.936005F), new Vector2(-217.485992F, -348.332001F), new Vector2(-216.130005F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1454()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-243.778F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-244.606003F, -352.256012F), new Vector2(-245.242004F, -352.946014F), new Vector2(-245.686005F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-246.130005F, -354.697998F), new Vector2(-246.352005F, -355.700012F), new Vector2(-246.352005F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-246.352005F, -357.980011F), new Vector2(-246.123993F, -358.993988F), new Vector2(-245.667999F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-245.212006F, -360.746002F), new Vector2(-244.576004F, -361.436005F), new Vector2(-243.759995F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-242.944F, -362.444F), new Vector2(-242.007996F, -362.696014F), new Vector2(-240.951996F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-239.871994F, -362.696014F), new Vector2(-238.923996F, -362.444F), new Vector2(-238.108002F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-237.292007F, -361.436005F), new Vector2(-236.649994F, -360.746002F), new Vector2(-236.182007F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-235.714005F, -358.993988F), new Vector2(-235.479996F, -357.992004F), new Vector2(-235.479996F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-235.479996F, -355.712006F), new Vector2(-235.714005F, -354.697998F), new Vector2(-236.182007F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-236.649994F, -352.946014F), new Vector2(-237.292007F, -352.256012F), new Vector2(-238.108002F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-238.923996F, -351.247986F), new Vector2(-239.871994F, -350.996002F), new Vector2(-240.951996F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-242.007996F, -350.996002F), new Vector2(-242.949997F, -351.247986F), new Vector2(-243.778F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-246.171997F, -341.131989F));
+ builder.AddLine(new Vector2(-246.171997F, -352.579987F));
+ builder.AddLine(new Vector2(-246.783997F, -356.756012F));
+ builder.AddLine(new Vector2(-246.171997F, -360.895996F));
+ builder.AddLine(new Vector2(-246.171997F, -365.395996F));
+ builder.AddLine(new Vector2(-249.412003F, -365.395996F));
+ builder.AddLine(new Vector2(-249.412003F, -341.131989F));
+ builder.AddLine(new Vector2(-246.171997F, -341.131989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-236.182007F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-234.921997F, -349.885986F), new Vector2(-233.932007F, -350.947998F), new Vector2(-233.212006F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-232.492004F, -353.635986F), new Vector2(-232.132004F, -355.14801F), new Vector2(-232.132004F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-232.132004F, -358.507996F), new Vector2(-232.492004F, -360.019989F), new Vector2(-233.212006F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-233.932007F, -362.708008F), new Vector2(-234.921997F, -363.776001F), new Vector2(-236.182007F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-237.442001F, -365.359985F), new Vector2(-238.852005F, -365.756012F), new Vector2(-240.412003F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-241.684006F, -365.756012F), new Vector2(-242.841995F, -365.485992F), new Vector2(-243.886002F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-244.929993F, -364.406006F), new Vector2(-245.770004F, -363.661987F), new Vector2(-246.406006F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-247.042007F, -361.765991F), new Vector2(-247.395996F, -360.667999F), new Vector2(-247.468002F, -359.420013F));
+ builder.AddLine(new Vector2(-247.468002F, -354.272003F));
+ builder.AddCubicBezier(new Vector2(-247.395996F, -353.048004F), new Vector2(-247.048004F, -351.955994F), new Vector2(-246.423996F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-245.800003F, -350.036011F), new Vector2(-244.966003F, -349.286011F), new Vector2(-243.921997F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-242.878006F, -348.205994F), new Vector2(-241.707993F, -347.936005F), new Vector2(-240.412003F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-238.852005F, -347.936005F), new Vector2(-237.442001F, -348.325989F), new Vector2(-236.182007F, -349.105988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1455()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-264.459991F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-263.283997F, -349.196014F), new Vector2(-262.276001F, -349.928009F), new Vector2(-261.436005F, -350.888F));
+ builder.AddLine(new Vector2(-263.523987F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-264.100006F, -352.339996F), new Vector2(-264.790009F, -351.835999F), new Vector2(-265.593994F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-266.39801F, -351.164001F), new Vector2(-267.279999F, -350.996002F), new Vector2(-268.23999F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-269.391998F, -350.996002F), new Vector2(-270.411987F, -351.242004F), new Vector2(-271.299988F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-272.187988F, -352.226013F), new Vector2(-272.872009F, -352.921997F), new Vector2(-273.35199F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-273.832001F, -354.721985F), new Vector2(-274.071991F, -355.772003F), new Vector2(-274.071991F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-274.071991F, -358.14801F), new Vector2(-273.843994F, -359.167999F), new Vector2(-273.388F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-272.932007F, -360.895996F), new Vector2(-272.283997F, -361.567993F), new Vector2(-271.444F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-270.604004F, -362.528015F), new Vector2(-269.631989F, -362.768005F), new Vector2(-268.528015F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-267.471985F, -362.768005F), new Vector2(-266.571991F, -362.54599F), new Vector2(-265.828003F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-265.084015F, -361.65799F), new Vector2(-264.507996F, -361.033997F), new Vector2(-264.100006F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-263.691986F, -359.425995F), new Vector2(-263.488007F, -358.447998F), new Vector2(-263.488007F, -357.29599F));
+ builder.AddLine(new Vector2(-262.299988F, -358.339996F));
+ builder.AddLine(new Vector2(-275.007996F, -358.339996F));
+ builder.AddLine(new Vector2(-275.007996F, -355.640015F));
+ builder.AddLine(new Vector2(-260.571991F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-260.5F, -355.976013F), new Vector2(-260.451996F, -356.282013F), new Vector2(-260.428009F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-260.403992F, -356.834015F), new Vector2(-260.391998F, -357.09201F), new Vector2(-260.391998F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-260.391998F, -358.963989F), new Vector2(-260.734009F, -360.415985F), new Vector2(-261.417999F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-262.10199F, -362.959991F), new Vector2(-263.056F, -363.955994F), new Vector2(-264.279999F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-265.503998F, -365.395996F), new Vector2(-266.895996F, -365.756012F), new Vector2(-268.455994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-270.112F, -365.756012F), new Vector2(-271.605988F, -365.365997F), new Vector2(-272.937988F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-274.269989F, -363.806F), new Vector2(-275.325989F, -362.743988F), new Vector2(-276.105988F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-276.885986F, -360.056F), new Vector2(-277.276001F, -358.544006F), new Vector2(-277.276001F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-277.276001F, -355.160004F), new Vector2(-276.880005F, -353.635986F), new Vector2(-276.088013F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-275.29599F, -350.947998F), new Vector2(-274.221985F, -349.885986F), new Vector2(-272.865997F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-271.51001F, -348.325989F), new Vector2(-269.967987F, -347.936005F), new Vector2(-268.23999F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-266.895996F, -347.936005F), new Vector2(-265.635986F, -348.187988F), new Vector2(-264.459991F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1456()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-292.64801F, -348.29599F));
+ builder.AddLine(new Vector2(-292.64801F, -374F));
+ builder.AddLine(new Vector2(-295.888F, -374F));
+ builder.AddLine(new Vector2(-295.888F, -348.29599F));
+ builder.AddLine(new Vector2(-292.64801F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-280.552002F, -348.29599F));
+ builder.AddLine(new Vector2(-280.552002F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-280.552002F, -360.26001F), new Vector2(-280.839996F, -361.447998F), new Vector2(-281.415985F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-281.992004F, -363.511993F), new Vector2(-282.778015F, -364.31601F), new Vector2(-283.773987F, -364.891998F));
+ builder.AddCubicBezier(new Vector2(-284.769989F, -365.467987F), new Vector2(-285.915985F, -365.756012F), new Vector2(-287.212006F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-288.507996F, -365.756012F), new Vector2(-289.671997F, -365.462006F), new Vector2(-290.70401F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-291.735992F, -364.286011F), new Vector2(-292.540009F, -363.488007F), new Vector2(-293.115997F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-293.691986F, -361.471985F), new Vector2(-293.980011F, -360.320007F), new Vector2(-293.980011F, -359.023987F));
+ builder.AddLine(new Vector2(-292.64801F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-292.64801F, -359.131989F), new Vector2(-292.455994F, -359.899994F), new Vector2(-292.071991F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-291.687988F, -361.243988F), new Vector2(-291.160004F, -361.772003F), new Vector2(-290.488007F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-289.81601F, -362.540009F), new Vector2(-289.048004F, -362.731995F), new Vector2(-288.18399F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-286.888F, -362.731995F), new Vector2(-285.838013F, -362.312012F), new Vector2(-285.033997F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-284.230011F, -360.631989F), new Vector2(-283.828003F, -359.563995F), new Vector2(-283.828003F, -358.268005F));
+ builder.AddLine(new Vector2(-283.828003F, -348.29599F));
+ builder.AddLine(new Vector2(-280.552002F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1457()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-299.056F, -362.444F));
+ builder.AddLine(new Vector2(-299.056F, -365.395996F));
+ builder.AddLine(new Vector2(-310.720001F, -365.395996F));
+ builder.AddLine(new Vector2(-310.720001F, -362.444F));
+ builder.AddLine(new Vector2(-299.056F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-303.268005F, -348.29599F));
+ builder.AddLine(new Vector2(-303.268005F, -372.559998F));
+ builder.AddLine(new Vector2(-306.507996F, -372.559998F));
+ builder.AddLine(new Vector2(-306.507996F, -348.29599F));
+ builder.AddLine(new Vector2(-303.268005F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1458()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-321.303986F, -374F));
+ builder.AddLine(new Vector2(-324.579987F, -374F));
+ builder.AddLine(new Vector2(-324.579987F, -361.220001F));
+ builder.AddLine(new Vector2(-323.967987F, -357.079987F));
+ builder.AddLine(new Vector2(-324.579987F, -352.903992F));
+ builder.AddLine(new Vector2(-324.579987F, -348.29599F));
+ builder.AddLine(new Vector2(-321.303986F, -348.29599F));
+ builder.AddLine(new Vector2(-321.303986F, -374F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-332.626007F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-333.45401F, -352.226013F), new Vector2(-334.10199F, -352.915985F), new Vector2(-334.570007F, -353.803986F));
+ builder.AddCubicBezier(new Vector2(-335.037994F, -354.691986F), new Vector2(-335.272003F, -355.712006F), new Vector2(-335.272003F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-335.272003F, -358.015991F), new Vector2(-335.037994F, -359.029999F), new Vector2(-334.570007F, -359.906006F));
+ builder.AddCubicBezier(new Vector2(-334.10199F, -360.782013F), new Vector2(-333.459991F, -361.466003F), new Vector2(-332.644012F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-331.828003F, -362.450012F), new Vector2(-330.880005F, -362.696014F), new Vector2(-329.799988F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-328.720001F, -362.696014F), new Vector2(-327.772003F, -362.444F), new Vector2(-326.955994F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-326.140015F, -361.436005F), new Vector2(-325.503998F, -360.746002F), new Vector2(-325.048004F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-324.59201F, -358.993988F), new Vector2(-324.364014F, -357.980011F), new Vector2(-324.364014F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-324.364014F, -355.700012F), new Vector2(-324.59201F, -354.697998F), new Vector2(-325.048004F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-325.503998F, -352.946014F), new Vector2(-326.140015F, -352.256012F), new Vector2(-326.955994F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-327.772003F, -351.247986F), new Vector2(-328.720001F, -350.996002F), new Vector2(-329.799988F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-330.855988F, -350.996002F), new Vector2(-331.798004F, -351.242004F), new Vector2(-332.626007F, -351.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-326.812012F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-325.779999F, -349.286011F), new Vector2(-324.951996F, -350.036011F), new Vector2(-324.328003F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-323.70401F, -351.955994F), new Vector2(-323.355988F, -353.048004F), new Vector2(-323.283997F, -354.272003F));
+ builder.AddLine(new Vector2(-323.283997F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-323.355988F, -360.667999F), new Vector2(-323.709991F, -361.765991F), new Vector2(-324.346008F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-324.981995F, -363.661987F), new Vector2(-325.81601F, -364.406006F), new Vector2(-326.847992F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-327.880005F, -365.485992F), new Vector2(-329.044006F, -365.756012F), new Vector2(-330.339996F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-331.899994F, -365.756012F), new Vector2(-333.303986F, -365.359985F), new Vector2(-334.552002F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-335.799988F, -363.776001F), new Vector2(-336.790009F, -362.708008F), new Vector2(-337.522003F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-338.253998F, -360.019989F), new Vector2(-338.619995F, -358.507996F), new Vector2(-338.619995F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-338.619995F, -355.14801F), new Vector2(-338.253998F, -353.635986F), new Vector2(-337.522003F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-336.790009F, -350.947998F), new Vector2(-335.799988F, -349.885986F), new Vector2(-334.552002F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-333.303986F, -348.325989F), new Vector2(-331.899994F, -347.936005F), new Vector2(-330.339996F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-329.019989F, -347.936005F), new Vector2(-327.843994F, -348.205994F), new Vector2(-326.812012F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1459()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-354.028015F, -348.29599F));
+ builder.AddLine(new Vector2(-354.028015F, -365.395996F));
+ builder.AddLine(new Vector2(-357.268005F, -365.395996F));
+ builder.AddLine(new Vector2(-357.268005F, -348.29599F));
+ builder.AddLine(new Vector2(-354.028015F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-341.932007F, -348.29599F));
+ builder.AddLine(new Vector2(-341.932007F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-341.932007F, -360.09201F), new Vector2(-342.220001F, -361.201996F), new Vector2(-342.79599F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-343.372009F, -363.290009F), new Vector2(-344.15799F, -364.135986F), new Vector2(-345.153992F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-346.149994F, -365.432007F), new Vector2(-347.29599F, -365.756012F), new Vector2(-348.59201F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-349.888F, -365.756012F), new Vector2(-351.052002F, -365.462006F), new Vector2(-352.084015F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-353.115997F, -364.286011F), new Vector2(-353.920013F, -363.488007F), new Vector2(-354.496002F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-355.071991F, -361.471985F), new Vector2(-355.359985F, -360.320007F), new Vector2(-355.359985F, -359.023987F));
+ builder.AddLine(new Vector2(-354.028015F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-354.028015F, -359.131989F), new Vector2(-353.835999F, -359.899994F), new Vector2(-353.451996F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-353.067993F, -361.243988F), new Vector2(-352.540009F, -361.772003F), new Vector2(-351.868011F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-351.196014F, -362.540009F), new Vector2(-350.428009F, -362.731995F), new Vector2(-349.563995F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-348.268005F, -362.731995F), new Vector2(-347.217987F, -362.312012F), new Vector2(-346.414001F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-345.609985F, -360.631989F), new Vector2(-345.208008F, -359.563995F), new Vector2(-345.208008F, -358.268005F));
+ builder.AddLine(new Vector2(-345.208008F, -348.29599F));
+ builder.AddLine(new Vector2(-341.932007F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1460()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-361.984009F, -348.29599F));
+ builder.AddLine(new Vector2(-361.984009F, -365.395996F));
+ builder.AddLine(new Vector2(-365.26001F, -365.395996F));
+ builder.AddLine(new Vector2(-365.26001F, -361.220001F));
+ builder.AddLine(new Vector2(-364.64801F, -357.079987F));
+ builder.AddLine(new Vector2(-365.26001F, -352.903992F));
+ builder.AddLine(new Vector2(-365.26001F, -348.29599F));
+ builder.AddLine(new Vector2(-361.984009F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-373.287994F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-374.127991F, -352.256012F), new Vector2(-374.782013F, -352.946014F), new Vector2(-375.25F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-375.717987F, -354.697998F), new Vector2(-375.951996F, -355.712006F), new Vector2(-375.951996F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-375.951996F, -357.992004F), new Vector2(-375.717987F, -358.993988F), new Vector2(-375.25F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-374.782013F, -360.746002F), new Vector2(-374.134003F, -361.436005F), new Vector2(-373.306F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-372.477997F, -362.444F), new Vector2(-371.523987F, -362.696014F), new Vector2(-370.444F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-369.364014F, -362.696014F), new Vector2(-368.421997F, -362.450012F), new Vector2(-367.618011F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-366.813995F, -361.466003F), new Vector2(-366.18399F, -360.776001F), new Vector2(-365.727997F, -359.888F));
+ builder.AddCubicBezier(new Vector2(-365.272003F, -359F), new Vector2(-365.044006F, -357.980011F), new Vector2(-365.044006F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-365.044006F, -355.123993F), new Vector2(-365.536011F, -353.726013F), new Vector2(-366.519989F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(-367.503998F, -351.541992F), new Vector2(-368.799988F, -350.996002F), new Vector2(-370.40799F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-371.488007F, -350.996002F), new Vector2(-372.447998F, -351.247986F), new Vector2(-373.287994F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-367.455994F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-366.424011F, -349.286011F), new Vector2(-365.60199F, -350.036011F), new Vector2(-364.98999F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-364.377991F, -351.955994F), new Vector2(-364.036011F, -353.048004F), new Vector2(-363.963989F, -354.272003F));
+ builder.AddLine(new Vector2(-363.963989F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-364.036011F, -360.667999F), new Vector2(-364.384003F, -361.765991F), new Vector2(-365.007996F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-365.631989F, -363.661987F), new Vector2(-366.45401F, -364.406006F), new Vector2(-367.473999F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-368.493988F, -365.485992F), new Vector2(-369.652008F, -365.756012F), new Vector2(-370.947998F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-372.532013F, -365.756012F), new Vector2(-373.95401F, -365.359985F), new Vector2(-375.213989F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-376.473999F, -363.776001F), new Vector2(-377.470001F, -362.708008F), new Vector2(-378.201996F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-378.93399F, -360.019989F), new Vector2(-379.299988F, -358.507996F), new Vector2(-379.299988F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-379.299988F, -355.14801F), new Vector2(-378.93399F, -353.635986F), new Vector2(-378.201996F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-377.470001F, -350.947998F), new Vector2(-376.473999F, -349.885986F), new Vector2(-375.213989F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-373.95401F, -348.325989F), new Vector2(-372.532013F, -347.936005F), new Vector2(-370.947998F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-369.652008F, -347.936005F), new Vector2(-368.488007F, -348.205994F), new Vector2(-367.455994F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1461()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-388.839996F, -362.444F));
+ builder.AddLine(new Vector2(-388.839996F, -365.395996F));
+ builder.AddLine(new Vector2(-400.503998F, -365.395996F));
+ builder.AddLine(new Vector2(-400.503998F, -362.444F));
+ builder.AddLine(new Vector2(-388.839996F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-393.052002F, -348.29599F));
+ builder.AddLine(new Vector2(-393.052002F, -372.559998F));
+ builder.AddLine(new Vector2(-396.291992F, -372.559998F));
+ builder.AddLine(new Vector2(-396.291992F, -348.29599F));
+ builder.AddLine(new Vector2(-393.052002F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1462()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-415.191986F, -348.29599F));
+ builder.AddLine(new Vector2(-415.191986F, -365.395996F));
+ builder.AddLine(new Vector2(-418.432007F, -365.395996F));
+ builder.AddLine(new Vector2(-418.432007F, -348.29599F));
+ builder.AddLine(new Vector2(-415.191986F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-403.096008F, -348.29599F));
+ builder.AddLine(new Vector2(-403.096008F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-403.096008F, -360.09201F), new Vector2(-403.384003F, -361.201996F), new Vector2(-403.959991F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-404.536011F, -363.290009F), new Vector2(-405.321991F, -364.135986F), new Vector2(-406.317993F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-407.313995F, -365.432007F), new Vector2(-408.459991F, -365.756012F), new Vector2(-409.756012F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-411.052002F, -365.756012F), new Vector2(-412.216003F, -365.462006F), new Vector2(-413.247986F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-414.279999F, -364.286011F), new Vector2(-415.084015F, -363.488007F), new Vector2(-415.660004F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-416.235992F, -361.471985F), new Vector2(-416.523987F, -360.320007F), new Vector2(-416.523987F, -359.023987F));
+ builder.AddLine(new Vector2(-415.191986F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-415.191986F, -359.131989F), new Vector2(-415F, -359.899994F), new Vector2(-414.615997F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-414.231995F, -361.243988F), new Vector2(-413.70401F, -361.772003F), new Vector2(-413.032013F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-412.359985F, -362.540009F), new Vector2(-411.59201F, -362.731995F), new Vector2(-410.727997F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-409.432007F, -362.731995F), new Vector2(-408.381989F, -362.312012F), new Vector2(-407.578003F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-406.773987F, -360.631989F), new Vector2(-406.372009F, -359.563995F), new Vector2(-406.372009F, -358.268005F));
+ builder.AddLine(new Vector2(-406.372009F, -348.29599F));
+ builder.AddLine(new Vector2(-403.096008F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1463()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-426.028015F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-424.85199F, -349.196014F), new Vector2(-423.843994F, -349.928009F), new Vector2(-423.003998F, -350.888F));
+ builder.AddLine(new Vector2(-425.09201F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-425.667999F, -352.339996F), new Vector2(-426.358002F, -351.835999F), new Vector2(-427.161987F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-427.966003F, -351.164001F), new Vector2(-428.847992F, -350.996002F), new Vector2(-429.808014F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-430.959991F, -350.996002F), new Vector2(-431.980011F, -351.242004F), new Vector2(-432.868011F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-433.756012F, -352.226013F), new Vector2(-434.440002F, -352.921997F), new Vector2(-434.920013F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-435.399994F, -354.721985F), new Vector2(-435.640015F, -355.772003F), new Vector2(-435.640015F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-435.640015F, -358.14801F), new Vector2(-435.411987F, -359.167999F), new Vector2(-434.955994F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-434.5F, -360.895996F), new Vector2(-433.85199F, -361.567993F), new Vector2(-433.011993F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-432.171997F, -362.528015F), new Vector2(-431.200012F, -362.768005F), new Vector2(-430.096008F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-429.040009F, -362.768005F), new Vector2(-428.140015F, -362.54599F), new Vector2(-427.395996F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-426.652008F, -361.65799F), new Vector2(-426.075989F, -361.033997F), new Vector2(-425.667999F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-425.26001F, -359.425995F), new Vector2(-425.056F, -358.447998F), new Vector2(-425.056F, -357.29599F));
+ builder.AddLine(new Vector2(-423.868011F, -358.339996F));
+ builder.AddLine(new Vector2(-436.575989F, -358.339996F));
+ builder.AddLine(new Vector2(-436.575989F, -355.640015F));
+ builder.AddLine(new Vector2(-422.140015F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-422.067993F, -355.976013F), new Vector2(-422.019989F, -356.282013F), new Vector2(-421.996002F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-421.971985F, -356.834015F), new Vector2(-421.959991F, -357.09201F), new Vector2(-421.959991F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-421.959991F, -358.963989F), new Vector2(-422.302002F, -360.415985F), new Vector2(-422.985992F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-423.670013F, -362.959991F), new Vector2(-424.623993F, -363.955994F), new Vector2(-425.847992F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-427.071991F, -365.395996F), new Vector2(-428.463989F, -365.756012F), new Vector2(-430.023987F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-431.679993F, -365.756012F), new Vector2(-433.174011F, -365.365997F), new Vector2(-434.506012F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-435.838013F, -363.806F), new Vector2(-436.894012F, -362.743988F), new Vector2(-437.674011F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-438.45401F, -360.056F), new Vector2(-438.843994F, -358.544006F), new Vector2(-438.843994F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-438.843994F, -355.160004F), new Vector2(-438.447998F, -353.635986F), new Vector2(-437.656006F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-436.864014F, -350.947998F), new Vector2(-435.790009F, -349.885986F), new Vector2(-434.43399F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-433.078003F, -348.325989F), new Vector2(-431.536011F, -347.936005F), new Vector2(-429.808014F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-428.463989F, -347.936005F), new Vector2(-427.20401F, -348.187988F), new Vector2(-426.028015F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1464()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-442.119995F, -348.29599F));
+ builder.AddLine(new Vector2(-442.119995F, -359.276001F));
+ builder.AddCubicBezier(new Vector2(-442.119995F, -360.619995F), new Vector2(-442.414001F, -361.772003F), new Vector2(-443.002014F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-443.589996F, -363.691986F), new Vector2(-444.376007F, -364.436005F), new Vector2(-445.359985F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(-446.343994F, -365.492004F), new Vector2(-447.459991F, -365.756012F), new Vector2(-448.708008F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-449.90799F, -365.756012F), new Vector2(-451.011993F, -365.485992F), new Vector2(-452.019989F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-453.028015F, -364.406006F), new Vector2(-453.850006F, -363.661987F), new Vector2(-454.485992F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-455.122009F, -361.765991F), new Vector2(-455.476013F, -360.631989F), new Vector2(-455.548004F, -359.312012F));
+ builder.AddLine(new Vector2(-453.712006F, -358.627991F));
+ builder.AddCubicBezier(new Vector2(-453.712006F, -359.492004F), new Vector2(-453.519989F, -360.223999F), new Vector2(-453.135986F, -360.824005F));
+ builder.AddCubicBezier(new Vector2(-452.752014F, -361.424011F), new Vector2(-452.242004F, -361.891998F), new Vector2(-451.605988F, -362.227997F));
+ builder.AddCubicBezier(new Vector2(-450.970001F, -362.563995F), new Vector2(-450.256012F, -362.731995F), new Vector2(-449.463989F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-448.312012F, -362.731995F), new Vector2(-447.346008F, -362.365997F), new Vector2(-446.56601F, -361.634003F));
+ builder.AddCubicBezier(new Vector2(-445.786011F, -360.902008F), new Vector2(-445.395996F, -359.899994F), new Vector2(-445.395996F, -358.627991F));
+ builder.AddLine(new Vector2(-445.395996F, -348.29599F));
+ builder.AddLine(new Vector2(-442.119995F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-453.712006F, -348.29599F));
+ builder.AddLine(new Vector2(-453.712006F, -359.312012F));
+ builder.AddCubicBezier(new Vector2(-453.712006F, -360.631989F), new Vector2(-453.993988F, -361.772003F), new Vector2(-454.558014F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-455.122009F, -363.691986F), new Vector2(-455.890015F, -364.436005F), new Vector2(-456.862F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(-457.834015F, -365.492004F), new Vector2(-458.920013F, -365.756012F), new Vector2(-460.119995F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-461.343994F, -365.756012F), new Vector2(-462.447998F, -365.485992F), new Vector2(-463.432007F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-464.415985F, -364.406006F), new Vector2(-465.190002F, -363.656006F), new Vector2(-465.753998F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-466.317993F, -361.735992F), new Vector2(-466.600006F, -360.608002F), new Vector2(-466.600006F, -359.312012F));
+ builder.AddLine(new Vector2(-465.268005F, -358.627991F));
+ builder.AddCubicBezier(new Vector2(-465.268005F, -359.492004F), new Vector2(-465.075989F, -360.223999F), new Vector2(-464.691986F, -360.824005F));
+ builder.AddCubicBezier(new Vector2(-464.308014F, -361.424011F), new Vector2(-463.803986F, -361.891998F), new Vector2(-463.179993F, -362.227997F));
+ builder.AddCubicBezier(new Vector2(-462.556F, -362.563995F), new Vector2(-461.847992F, -362.731995F), new Vector2(-461.056F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-459.880005F, -362.731995F), new Vector2(-458.902008F, -362.365997F), new Vector2(-458.122009F, -361.634003F));
+ builder.AddCubicBezier(new Vector2(-457.34201F, -360.902008F), new Vector2(-456.951996F, -359.899994F), new Vector2(-456.951996F, -358.627991F));
+ builder.AddLine(new Vector2(-456.951996F, -348.29599F));
+ builder.AddLine(new Vector2(-453.712006F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-465.268005F, -348.29599F));
+ builder.AddLine(new Vector2(-465.268005F, -365.395996F));
+ builder.AddLine(new Vector2(-468.507996F, -365.395996F));
+ builder.AddLine(new Vector2(-468.507996F, -348.29599F));
+ builder.AddLine(new Vector2(-465.268005F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1465()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-484.996002F, -348.29599F));
+ builder.AddLine(new Vector2(-484.996002F, -365.395996F));
+ builder.AddLine(new Vector2(-488.235992F, -365.395996F));
+ builder.AddLine(new Vector2(-488.235992F, -348.29599F));
+ builder.AddLine(new Vector2(-484.996002F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-472.899994F, -348.29599F));
+ builder.AddLine(new Vector2(-472.899994F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-472.899994F, -360.09201F), new Vector2(-473.187988F, -361.201996F), new Vector2(-473.764008F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-474.339996F, -363.290009F), new Vector2(-475.126007F, -364.135986F), new Vector2(-476.122009F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-477.118011F, -365.432007F), new Vector2(-478.264008F, -365.756012F), new Vector2(-479.559998F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-480.855988F, -365.756012F), new Vector2(-482.019989F, -365.462006F), new Vector2(-483.052002F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-484.084015F, -364.286011F), new Vector2(-484.888F, -363.488007F), new Vector2(-485.463989F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-486.040009F, -361.471985F), new Vector2(-486.328003F, -360.320007F), new Vector2(-486.328003F, -359.023987F));
+ builder.AddLine(new Vector2(-484.996002F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-484.996002F, -359.131989F), new Vector2(-484.803986F, -359.899994F), new Vector2(-484.420013F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-484.036011F, -361.243988F), new Vector2(-483.507996F, -361.772003F), new Vector2(-482.835999F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-482.164001F, -362.540009F), new Vector2(-481.395996F, -362.731995F), new Vector2(-480.532013F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-479.235992F, -362.731995F), new Vector2(-478.186005F, -362.312012F), new Vector2(-477.381989F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-476.578003F, -360.631989F), new Vector2(-476.175995F, -359.563995F), new Vector2(-476.175995F, -358.268005F));
+ builder.AddLine(new Vector2(-476.175995F, -348.29599F));
+ builder.AddLine(new Vector2(-472.899994F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1466()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-498.35199F, -361.544006F));
+ builder.AddCubicBezier(new Vector2(-497.584015F, -362.312012F), new Vector2(-496.600006F, -362.696014F), new Vector2(-495.399994F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-494.824005F, -362.696014F), new Vector2(-494.320007F, -362.612F), new Vector2(-493.888F, -362.444F));
+ builder.AddCubicBezier(new Vector2(-493.455994F, -362.276001F), new Vector2(-493.059998F, -362F), new Vector2(-492.700012F, -361.615997F));
+ builder.AddLine(new Vector2(-490.575989F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-491.175995F, -364.507996F), new Vector2(-491.824005F, -365.006012F), new Vector2(-492.519989F, -365.306F));
+ builder.AddCubicBezier(new Vector2(-493.216003F, -365.605988F), new Vector2(-493.996002F, -365.756012F), new Vector2(-494.859985F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-496.756012F, -365.756012F), new Vector2(-498.208008F, -365.108002F), new Vector2(-499.216003F, -363.812012F));
+ builder.AddCubicBezier(new Vector2(-500.223999F, -362.515991F), new Vector2(-500.727997F, -360.776001F), new Vector2(-500.727997F, -358.59201F));
+ builder.AddLine(new Vector2(-499.503998F, -358.015991F));
+ builder.AddCubicBezier(new Vector2(-499.503998F, -359.600006F), new Vector2(-499.119995F, -360.776001F), new Vector2(-498.35199F, -361.544006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-499.503998F, -348.29599F));
+ builder.AddLine(new Vector2(-499.503998F, -365.395996F));
+ builder.AddLine(new Vector2(-502.743988F, -365.395996F));
+ builder.AddLine(new Vector2(-502.743988F, -348.29599F));
+ builder.AddLine(new Vector2(-499.503998F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1467()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-510.339996F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-509.164001F, -349.196014F), new Vector2(-508.156006F, -349.928009F), new Vector2(-507.31601F, -350.888F));
+ builder.AddLine(new Vector2(-509.403992F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-509.980011F, -352.339996F), new Vector2(-510.670013F, -351.835999F), new Vector2(-511.473999F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-512.278015F, -351.164001F), new Vector2(-513.159973F, -350.996002F), new Vector2(-514.119995F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-515.271973F, -350.996002F), new Vector2(-516.291992F, -351.242004F), new Vector2(-517.179993F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-518.067993F, -352.226013F), new Vector2(-518.752014F, -352.921997F), new Vector2(-519.231995F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-519.711975F, -354.721985F), new Vector2(-519.952026F, -355.772003F), new Vector2(-519.952026F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-519.952026F, -358.14801F), new Vector2(-519.723999F, -359.167999F), new Vector2(-519.268005F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-518.812012F, -360.895996F), new Vector2(-518.164001F, -361.567993F), new Vector2(-517.323975F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-516.484009F, -362.528015F), new Vector2(-515.512024F, -362.768005F), new Vector2(-514.40802F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-513.35199F, -362.768005F), new Vector2(-512.452026F, -362.54599F), new Vector2(-511.708008F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-510.963989F, -361.65799F), new Vector2(-510.388F, -361.033997F), new Vector2(-509.980011F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-509.571991F, -359.425995F), new Vector2(-509.368011F, -358.447998F), new Vector2(-509.368011F, -357.29599F));
+ builder.AddLine(new Vector2(-508.179993F, -358.339996F));
+ builder.AddLine(new Vector2(-520.888F, -358.339996F));
+ builder.AddLine(new Vector2(-520.888F, -355.640015F));
+ builder.AddLine(new Vector2(-506.451996F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-506.380005F, -355.976013F), new Vector2(-506.332001F, -356.282013F), new Vector2(-506.308014F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-506.283997F, -356.834015F), new Vector2(-506.272003F, -357.09201F), new Vector2(-506.272003F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-506.272003F, -358.963989F), new Vector2(-506.614014F, -360.415985F), new Vector2(-507.298004F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-507.981995F, -362.959991F), new Vector2(-508.936005F, -363.955994F), new Vector2(-510.160004F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-511.384003F, -365.395996F), new Vector2(-512.776001F, -365.756012F), new Vector2(-514.335999F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-515.992004F, -365.756012F), new Vector2(-517.486023F, -365.365997F), new Vector2(-518.817993F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-520.150024F, -363.806F), new Vector2(-521.205994F, -362.743988F), new Vector2(-521.986023F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-522.765991F, -360.056F), new Vector2(-523.156006F, -358.544006F), new Vector2(-523.156006F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-523.156006F, -355.160004F), new Vector2(-522.76001F, -353.635986F), new Vector2(-521.968018F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-521.176025F, -350.947998F), new Vector2(-520.10199F, -349.885986F), new Vector2(-518.745972F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-517.390015F, -348.325989F), new Vector2(-515.848022F, -347.936005F), new Vector2(-514.119995F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-512.776001F, -347.936005F), new Vector2(-511.515991F, -348.187988F), new Vector2(-510.339996F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1468()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-532.012024F, -348.29599F));
+ builder.AddLine(new Vector2(-524.164001F, -365.395996F));
+ builder.AddLine(new Vector2(-527.619995F, -365.395996F));
+ builder.AddLine(new Vector2(-533.955994F, -350.959991F));
+ builder.AddLine(new Vector2(-531.867981F, -350.959991F));
+ builder.AddLine(new Vector2(-538.16803F, -365.395996F));
+ builder.AddLine(new Vector2(-541.768005F, -365.395996F));
+ builder.AddLine(new Vector2(-533.919983F, -348.29599F));
+ builder.AddLine(new Vector2(-532.012024F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1469()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-554.547974F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-555.388F, -352.328003F), new Vector2(-556.047974F, -353.018005F), new Vector2(-556.528015F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-557.007996F, -354.769989F), new Vector2(-557.247986F, -355.772003F), new Vector2(-557.247986F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-557.247986F, -358.003998F), new Vector2(-557.007996F, -358.988007F), new Vector2(-556.528015F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-556.047974F, -360.716003F), new Vector2(-555.388F, -361.394012F), new Vector2(-554.547974F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-553.708008F, -362.377991F), new Vector2(-552.76001F, -362.623993F), new Vector2(-551.703979F, -362.623993F));
+ builder.AddCubicBezier(new Vector2(-550.599976F, -362.623993F), new Vector2(-549.633972F, -362.377991F), new Vector2(-548.80603F, -361.885986F));
+ builder.AddCubicBezier(new Vector2(-547.978027F, -361.394012F), new Vector2(-547.317993F, -360.716003F), new Vector2(-546.825989F, -359.85199F));
+ builder.AddCubicBezier(new Vector2(-546.333984F, -358.988007F), new Vector2(-546.088013F, -358.003998F), new Vector2(-546.088013F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-546.088013F, -355.772003F), new Vector2(-546.328003F, -354.769989F), new Vector2(-546.807983F, -353.894012F));
+ builder.AddCubicBezier(new Vector2(-547.288025F, -353.018005F), new Vector2(-547.947998F, -352.328003F), new Vector2(-548.788025F, -351.824005F));
+ builder.AddCubicBezier(new Vector2(-549.627991F, -351.320007F), new Vector2(-550.599976F, -351.067993F), new Vector2(-551.703979F, -351.067993F));
+ builder.AddCubicBezier(new Vector2(-552.76001F, -351.067993F), new Vector2(-553.708008F, -351.320007F), new Vector2(-554.547974F, -351.824005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-547.150024F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-545.794006F, -349.915985F), new Vector2(-544.719971F, -350.98999F), new Vector2(-543.927979F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-543.135986F, -353.701996F), new Vector2(-542.73999F, -355.220001F), new Vector2(-542.73999F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-542.73999F, -358.556F), new Vector2(-543.135986F, -360.056F), new Vector2(-543.927979F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-544.719971F, -362.743988F), new Vector2(-545.794006F, -363.806F), new Vector2(-547.150024F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-548.505981F, -365.365997F), new Vector2(-550.023987F, -365.756012F), new Vector2(-551.703979F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-553.359985F, -365.756012F), new Vector2(-554.859985F, -365.359985F), new Vector2(-556.203979F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-557.547974F, -363.776001F), new Vector2(-558.616028F, -362.713989F), new Vector2(-559.40802F, -361.381989F));
+ builder.AddCubicBezier(new Vector2(-560.200012F, -360.049988F), new Vector2(-560.596008F, -358.556F), new Vector2(-560.596008F, -356.899994F));
+ builder.AddCubicBezier(new Vector2(-560.596008F, -355.220001F), new Vector2(-560.200012F, -353.701996F), new Vector2(-559.40802F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-558.616028F, -350.98999F), new Vector2(-557.547974F, -349.915985F), new Vector2(-556.203979F, -349.123993F));
+ builder.AddCubicBezier(new Vector2(-554.859985F, -348.332001F), new Vector2(-553.359985F, -347.936005F), new Vector2(-551.703979F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-550.023987F, -347.936005F), new Vector2(-548.505981F, -348.332001F), new Vector2(-547.150024F, -349.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1470()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-575.409973F, -352.346008F));
+ builder.AddCubicBezier(new Vector2(-576.237976F, -352.813995F), new Vector2(-576.885986F, -353.467987F), new Vector2(-577.354004F, -354.308014F));
+ builder.AddCubicBezier(new Vector2(-577.822021F, -355.14801F), new Vector2(-578.05603F, -356.108002F), new Vector2(-578.05603F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(-578.05603F, -358.268005F), new Vector2(-577.822021F, -359.221985F), new Vector2(-577.354004F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(-576.885986F, -360.877991F), new Vector2(-576.244019F, -361.526001F), new Vector2(-575.427979F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(-574.612F, -362.462006F), new Vector2(-573.664001F, -362.696014F), new Vector2(-572.583984F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-571.528015F, -362.696014F), new Vector2(-570.598022F, -362.462006F), new Vector2(-569.794006F, -361.993988F));
+ builder.AddCubicBezier(new Vector2(-568.98999F, -361.526001F), new Vector2(-568.366028F, -360.877991F), new Vector2(-567.921997F, -360.049988F));
+ builder.AddCubicBezier(new Vector2(-567.478027F, -359.221985F), new Vector2(-567.255981F, -358.256012F), new Vector2(-567.255981F, -357.152008F));
+ builder.AddCubicBezier(new Vector2(-567.255981F, -356.048004F), new Vector2(-567.478027F, -355.082001F), new Vector2(-567.921997F, -354.253998F));
+ builder.AddCubicBezier(new Vector2(-568.366028F, -353.425995F), new Vector2(-568.984009F, -352.783997F), new Vector2(-569.776001F, -352.328003F));
+ builder.AddCubicBezier(new Vector2(-570.567993F, -351.872009F), new Vector2(-571.504028F, -351.644012F), new Vector2(-572.583984F, -351.644012F));
+ builder.AddCubicBezier(new Vector2(-573.640015F, -351.644012F), new Vector2(-574.58197F, -351.877991F), new Vector2(-575.409973F, -352.346008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-569.66803F, -349.376007F));
+ builder.AddCubicBezier(new Vector2(-568.635986F, -349.903992F), new Vector2(-567.814026F, -350.641998F), new Vector2(-567.202026F, -351.589996F));
+ builder.AddCubicBezier(new Vector2(-566.590027F, -352.537994F), new Vector2(-566.247986F, -353.635986F), new Vector2(-566.176025F, -354.884003F));
+ builder.AddLine(new Vector2(-566.176025F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-566.247986F, -360.691986F), new Vector2(-566.583984F, -361.802002F), new Vector2(-567.184021F, -362.75F));
+ builder.AddCubicBezier(new Vector2(-567.783997F, -363.697998F), new Vector2(-568.606018F, -364.436005F), new Vector2(-569.650024F, -364.963989F));
+ builder.AddCubicBezier(new Vector2(-570.69397F, -365.492004F), new Vector2(-571.888F, -365.756012F), new Vector2(-573.231995F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-574.768005F, -365.756012F), new Vector2(-576.159973F, -365.377991F), new Vector2(-577.40802F, -364.622009F));
+ builder.AddCubicBezier(new Vector2(-578.656006F, -363.865997F), new Vector2(-579.633972F, -362.846008F), new Vector2(-580.34198F, -361.562012F));
+ builder.AddCubicBezier(new Vector2(-581.049988F, -360.278015F), new Vector2(-581.403992F, -358.820007F), new Vector2(-581.403992F, -357.187988F));
+ builder.AddCubicBezier(new Vector2(-581.403992F, -355.556F), new Vector2(-581.044006F, -354.085999F), new Vector2(-580.323975F, -352.778015F));
+ builder.AddCubicBezier(new Vector2(-579.604004F, -351.470001F), new Vector2(-578.625977F, -350.444F), new Vector2(-577.390015F, -349.700012F));
+ builder.AddCubicBezier(new Vector2(-576.153992F, -348.955994F), new Vector2(-574.755981F, -348.584015F), new Vector2(-573.195984F, -348.584015F));
+ builder.AddCubicBezier(new Vector2(-571.875977F, -348.584015F), new Vector2(-570.700012F, -348.847992F), new Vector2(-569.66803F, -349.376007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-568.497986F, -341.798004F));
+ builder.AddCubicBezier(new Vector2(-567.142029F, -342.481995F), new Vector2(-566.085999F, -343.441986F), new Vector2(-565.330017F, -344.678009F));
+ builder.AddCubicBezier(new Vector2(-564.573975F, -345.914001F), new Vector2(-564.195984F, -347.347992F), new Vector2(-564.195984F, -348.980011F));
+ builder.AddLine(new Vector2(-564.195984F, -365.395996F));
+ builder.AddLine(new Vector2(-567.435974F, -365.395996F));
+ builder.AddLine(new Vector2(-567.435974F, -360.895996F));
+ builder.AddLine(new Vector2(-566.859985F, -357.079987F));
+ builder.AddLine(new Vector2(-567.435974F, -353.227997F));
+ builder.AddLine(new Vector2(-567.435974F, -348.980011F));
+ builder.AddCubicBezier(new Vector2(-567.435974F, -347.420013F), new Vector2(-567.952026F, -346.178009F), new Vector2(-568.984009F, -345.253998F));
+ builder.AddCubicBezier(new Vector2(-570.015991F, -344.329987F), new Vector2(-571.395996F, -343.868011F), new Vector2(-573.124023F, -343.868011F));
+ builder.AddCubicBezier(new Vector2(-574.44397F, -343.868011F), new Vector2(-575.583984F, -344.10199F), new Vector2(-576.544006F, -344.570007F));
+ builder.AddCubicBezier(new Vector2(-577.504028F, -345.037994F), new Vector2(-578.33197F, -345.716003F), new Vector2(-579.028015F, -346.604004F));
+ builder.AddLine(new Vector2(-581.151978F, -344.480011F));
+ builder.AddCubicBezier(new Vector2(-580.312012F, -343.303986F), new Vector2(-579.219971F, -342.391998F), new Vector2(-577.875977F, -341.743988F));
+ builder.AddCubicBezier(new Vector2(-576.531982F, -341.096008F), new Vector2(-574.971985F, -340.772003F), new Vector2(-573.195984F, -340.772003F));
+ builder.AddCubicBezier(new Vector2(-571.419983F, -340.772003F), new Vector2(-569.854004F, -341.114014F), new Vector2(-568.497986F, -341.798004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1471()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-595.335999F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-594.159973F, -349.196014F), new Vector2(-593.151978F, -349.928009F), new Vector2(-592.312012F, -350.888F));
+ builder.AddLine(new Vector2(-594.400024F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-594.976013F, -352.339996F), new Vector2(-595.666016F, -351.835999F), new Vector2(-596.469971F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-597.273987F, -351.164001F), new Vector2(-598.156006F, -350.996002F), new Vector2(-599.116028F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-600.268005F, -350.996002F), new Vector2(-601.288025F, -351.242004F), new Vector2(-602.176025F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-603.064026F, -352.226013F), new Vector2(-603.747986F, -352.921997F), new Vector2(-604.228027F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-604.708008F, -354.721985F), new Vector2(-604.947998F, -355.772003F), new Vector2(-604.947998F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-604.947998F, -358.14801F), new Vector2(-604.719971F, -359.167999F), new Vector2(-604.263977F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-603.807983F, -360.895996F), new Vector2(-603.159973F, -361.567993F), new Vector2(-602.320007F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-601.47998F, -362.528015F), new Vector2(-600.507996F, -362.768005F), new Vector2(-599.403992F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-598.348022F, -362.768005F), new Vector2(-597.447998F, -362.54599F), new Vector2(-596.703979F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-595.960022F, -361.65799F), new Vector2(-595.383972F, -361.033997F), new Vector2(-594.976013F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-594.567993F, -359.425995F), new Vector2(-594.364014F, -358.447998F), new Vector2(-594.364014F, -357.29599F));
+ builder.AddLine(new Vector2(-593.176025F, -358.339996F));
+ builder.AddLine(new Vector2(-605.883972F, -358.339996F));
+ builder.AddLine(new Vector2(-605.883972F, -355.640015F));
+ builder.AddLine(new Vector2(-591.447998F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-591.375977F, -355.976013F), new Vector2(-591.328003F, -356.282013F), new Vector2(-591.304016F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-591.280029F, -356.834015F), new Vector2(-591.268005F, -357.09201F), new Vector2(-591.268005F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-591.268005F, -358.963989F), new Vector2(-591.609985F, -360.415985F), new Vector2(-592.294006F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-592.978027F, -362.959991F), new Vector2(-593.932007F, -363.955994F), new Vector2(-595.156006F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-596.380005F, -365.395996F), new Vector2(-597.771973F, -365.756012F), new Vector2(-599.33197F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-600.987976F, -365.756012F), new Vector2(-602.481995F, -365.365997F), new Vector2(-603.814026F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-605.145996F, -363.806F), new Vector2(-606.202026F, -362.743988F), new Vector2(-606.981995F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-607.762024F, -360.056F), new Vector2(-608.151978F, -358.544006F), new Vector2(-608.151978F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-608.151978F, -355.160004F), new Vector2(-607.755981F, -353.635986F), new Vector2(-606.963989F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-606.171997F, -350.947998F), new Vector2(-605.098022F, -349.885986F), new Vector2(-603.742004F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-602.385986F, -348.325989F), new Vector2(-600.843994F, -347.936005F), new Vector2(-599.116028F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-597.771973F, -347.936005F), new Vector2(-596.512024F, -348.187988F), new Vector2(-595.335999F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1472()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-623.523987F, -348.29599F));
+ builder.AddLine(new Vector2(-623.523987F, -374F));
+ builder.AddLine(new Vector2(-626.763977F, -374F));
+ builder.AddLine(new Vector2(-626.763977F, -348.29599F));
+ builder.AddLine(new Vector2(-623.523987F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-611.427979F, -348.29599F));
+ builder.AddLine(new Vector2(-611.427979F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-611.427979F, -360.26001F), new Vector2(-611.716003F, -361.447998F), new Vector2(-612.291992F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-612.867981F, -363.511993F), new Vector2(-613.653992F, -364.31601F), new Vector2(-614.650024F, -364.891998F));
+ builder.AddCubicBezier(new Vector2(-615.645996F, -365.467987F), new Vector2(-616.791992F, -365.756012F), new Vector2(-618.088013F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-619.383972F, -365.756012F), new Vector2(-620.547974F, -365.462006F), new Vector2(-621.580017F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-622.612F, -364.286011F), new Vector2(-623.416016F, -363.488007F), new Vector2(-623.992004F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-624.567993F, -361.471985F), new Vector2(-624.856018F, -360.320007F), new Vector2(-624.856018F, -359.023987F));
+ builder.AddLine(new Vector2(-623.523987F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-623.523987F, -359.131989F), new Vector2(-623.33197F, -359.899994F), new Vector2(-622.947998F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-622.564026F, -361.243988F), new Vector2(-622.036011F, -361.772003F), new Vector2(-621.364014F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-620.692017F, -362.540009F), new Vector2(-619.924011F, -362.731995F), new Vector2(-619.059998F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-617.763977F, -362.731995F), new Vector2(-616.713989F, -362.312012F), new Vector2(-615.909973F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-615.106018F, -360.631989F), new Vector2(-614.703979F, -359.563995F), new Vector2(-614.703979F, -358.268005F));
+ builder.AddLine(new Vector2(-614.703979F, -348.29599F));
+ builder.AddLine(new Vector2(-611.427979F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1473()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-629.932007F, -362.444F));
+ builder.AddLine(new Vector2(-629.932007F, -365.395996F));
+ builder.AddLine(new Vector2(-641.596008F, -365.395996F));
+ builder.AddLine(new Vector2(-641.596008F, -362.444F));
+ builder.AddLine(new Vector2(-629.932007F, -362.444F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-634.143982F, -348.29599F));
+ builder.AddLine(new Vector2(-634.143982F, -372.559998F));
+ builder.AddLine(new Vector2(-637.383972F, -372.559998F));
+ builder.AddLine(new Vector2(-637.383972F, -348.29599F));
+ builder.AddLine(new Vector2(-634.143982F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1474()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-655.348022F, -343.328003F));
+ builder.AddLine(new Vector2(-652.935974F, -347.791992F));
+ builder.AddCubicBezier(new Vector2(-652.624023F, -348.391998F), new Vector2(-652.414001F, -348.877991F), new Vector2(-652.30603F, -349.25F));
+ builder.AddCubicBezier(new Vector2(-652.197998F, -349.622009F), new Vector2(-652.143982F, -349.940002F), new Vector2(-652.143982F, -350.20401F));
+ builder.AddCubicBezier(new Vector2(-652.143982F, -350.899994F), new Vector2(-652.383972F, -351.481995F), new Vector2(-652.864014F, -351.950012F));
+ builder.AddCubicBezier(new Vector2(-653.343994F, -352.417999F), new Vector2(-653.895996F, -352.652008F), new Vector2(-654.52002F, -352.652008F));
+ builder.AddCubicBezier(new Vector2(-655.216003F, -352.652008F), new Vector2(-655.791992F, -352.417999F), new Vector2(-656.247986F, -351.950012F));
+ builder.AddCubicBezier(new Vector2(-656.703979F, -351.481995F), new Vector2(-656.932007F, -350.899994F), new Vector2(-656.932007F, -350.20401F));
+ builder.AddCubicBezier(new Vector2(-656.932007F, -349.579987F), new Vector2(-656.721985F, -349.058014F), new Vector2(-656.302002F, -348.638F));
+ builder.AddCubicBezier(new Vector2(-655.882019F, -348.217987F), new Vector2(-655.419983F, -348.007996F), new Vector2(-654.916016F, -348.007996F));
+ builder.AddCubicBezier(new Vector2(-654.676025F, -348.007996F), new Vector2(-654.460022F, -348.09201F), new Vector2(-654.268005F, -348.26001F));
+ builder.AddCubicBezier(new Vector2(-654.075989F, -348.428009F), new Vector2(-653.919983F, -348.644012F), new Vector2(-653.799988F, -348.90799F));
+ builder.AddLine(new Vector2(-654.952026F, -348.619995F));
+ builder.AddLine(new Vector2(-657.184021F, -344.335999F));
+ builder.AddLine(new Vector2(-655.348022F, -343.328003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1475()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-664.960022F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-663.783997F, -349.196014F), new Vector2(-662.776001F, -349.928009F), new Vector2(-661.935974F, -350.888F));
+ builder.AddLine(new Vector2(-664.023987F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-664.599976F, -352.339996F), new Vector2(-665.289978F, -351.835999F), new Vector2(-666.093994F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-666.89801F, -351.164001F), new Vector2(-667.780029F, -350.996002F), new Vector2(-668.73999F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-669.892029F, -350.996002F), new Vector2(-670.911987F, -351.242004F), new Vector2(-671.799988F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-672.687988F, -352.226013F), new Vector2(-673.372009F, -352.921997F), new Vector2(-673.85199F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-674.33197F, -354.721985F), new Vector2(-674.572021F, -355.772003F), new Vector2(-674.572021F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-674.572021F, -358.14801F), new Vector2(-674.343994F, -359.167999F), new Vector2(-673.888F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-673.432007F, -360.895996F), new Vector2(-672.783997F, -361.567993F), new Vector2(-671.94397F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-671.104004F, -362.528015F), new Vector2(-670.132019F, -362.768005F), new Vector2(-669.028015F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-667.971985F, -362.768005F), new Vector2(-667.072021F, -362.54599F), new Vector2(-666.328003F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-665.583984F, -361.65799F), new Vector2(-665.007996F, -361.033997F), new Vector2(-664.599976F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-664.192017F, -359.425995F), new Vector2(-663.987976F, -358.447998F), new Vector2(-663.987976F, -357.29599F));
+ builder.AddLine(new Vector2(-662.799988F, -358.339996F));
+ builder.AddLine(new Vector2(-675.507996F, -358.339996F));
+ builder.AddLine(new Vector2(-675.507996F, -355.640015F));
+ builder.AddLine(new Vector2(-661.072021F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-661F, -355.976013F), new Vector2(-660.952026F, -356.282013F), new Vector2(-660.927979F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-660.903992F, -356.834015F), new Vector2(-660.892029F, -357.09201F), new Vector2(-660.892029F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-660.892029F, -358.963989F), new Vector2(-661.234009F, -360.415985F), new Vector2(-661.91803F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-662.60199F, -362.959991F), new Vector2(-663.55603F, -363.955994F), new Vector2(-664.780029F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-666.004028F, -365.395996F), new Vector2(-667.395996F, -365.756012F), new Vector2(-668.955994F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-670.612F, -365.756012F), new Vector2(-672.106018F, -365.365997F), new Vector2(-673.437988F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-674.77002F, -363.806F), new Vector2(-675.825989F, -362.743988F), new Vector2(-676.606018F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-677.385986F, -360.056F), new Vector2(-677.776001F, -358.544006F), new Vector2(-677.776001F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-677.776001F, -355.160004F), new Vector2(-677.380005F, -353.635986F), new Vector2(-676.588013F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-675.796021F, -350.947998F), new Vector2(-674.721985F, -349.885986F), new Vector2(-673.366028F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-672.01001F, -348.325989F), new Vector2(-670.468018F, -347.936005F), new Vector2(-668.73999F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-667.395996F, -347.936005F), new Vector2(-666.135986F, -348.187988F), new Vector2(-664.960022F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1476()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-681.411987F, -348.29599F));
+ builder.AddLine(new Vector2(-681.411987F, -374F));
+ builder.AddLine(new Vector2(-684.651978F, -374F));
+ builder.AddLine(new Vector2(-684.651978F, -348.29599F));
+ builder.AddLine(new Vector2(-681.411987F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1477()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-689.583984F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-689.200012F, -369.806F), new Vector2(-689.007996F, -370.303986F), new Vector2(-689.007996F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-689.007996F, -371.480011F), new Vector2(-689.200012F, -371.966003F), new Vector2(-689.583984F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-689.968018F, -372.757996F), new Vector2(-690.460022F, -372.955994F), new Vector2(-691.059998F, -372.955994F));
+ builder.AddCubicBezier(new Vector2(-691.659973F, -372.955994F), new Vector2(-692.151978F, -372.757996F), new Vector2(-692.536011F, -372.362F));
+ builder.AddCubicBezier(new Vector2(-692.919983F, -371.966003F), new Vector2(-693.112F, -371.480011F), new Vector2(-693.112F, -370.903992F));
+ builder.AddCubicBezier(new Vector2(-693.112F, -370.303986F), new Vector2(-692.919983F, -369.806F), new Vector2(-692.536011F, -369.410004F));
+ builder.AddCubicBezier(new Vector2(-692.151978F, -369.014008F), new Vector2(-691.659973F, -368.81601F), new Vector2(-691.059998F, -368.81601F));
+ builder.AddCubicBezier(new Vector2(-690.460022F, -368.81601F), new Vector2(-689.968018F, -369.014008F), new Vector2(-689.583984F, -369.410004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-689.440002F, -348.29599F));
+ builder.AddLine(new Vector2(-689.440002F, -365.395996F));
+ builder.AddLine(new Vector2(-692.716003F, -365.395996F));
+ builder.AddLine(new Vector2(-692.716003F, -348.29599F));
+ builder.AddLine(new Vector2(-689.440002F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1478()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-709.203979F, -348.29599F));
+ builder.AddLine(new Vector2(-709.203979F, -374F));
+ builder.AddLine(new Vector2(-712.44397F, -374F));
+ builder.AddLine(new Vector2(-712.44397F, -348.29599F));
+ builder.AddLine(new Vector2(-709.203979F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-697.107971F, -348.29599F));
+ builder.AddLine(new Vector2(-697.107971F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-697.107971F, -360.26001F), new Vector2(-697.395996F, -361.447998F), new Vector2(-697.971985F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-698.547974F, -363.511993F), new Vector2(-699.333984F, -364.31601F), new Vector2(-700.330017F, -364.891998F));
+ builder.AddCubicBezier(new Vector2(-701.325989F, -365.467987F), new Vector2(-702.471985F, -365.756012F), new Vector2(-703.768005F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-705.064026F, -365.756012F), new Vector2(-706.228027F, -365.462006F), new Vector2(-707.26001F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-708.291992F, -364.286011F), new Vector2(-709.096008F, -363.488007F), new Vector2(-709.671997F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-710.247986F, -361.471985F), new Vector2(-710.536011F, -360.320007F), new Vector2(-710.536011F, -359.023987F));
+ builder.AddLine(new Vector2(-709.203979F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-709.203979F, -359.131989F), new Vector2(-709.012024F, -359.899994F), new Vector2(-708.627991F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-708.244019F, -361.243988F), new Vector2(-707.716003F, -361.772003F), new Vector2(-707.044006F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-706.372009F, -362.540009F), new Vector2(-705.604004F, -362.731995F), new Vector2(-704.73999F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-703.44397F, -362.731995F), new Vector2(-702.393982F, -362.312012F), new Vector2(-701.590027F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-700.786011F, -360.631989F), new Vector2(-700.383972F, -359.563995F), new Vector2(-700.383972F, -358.268005F));
+ builder.AddLine(new Vector2(-700.383972F, -348.29599F));
+ builder.AddLine(new Vector2(-697.107971F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1479()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-732.676025F, -348.29599F));
+ builder.AddLine(new Vector2(-727.708008F, -361.18399F));
+ builder.AddLine(new Vector2(-728.895996F, -361.18399F));
+ builder.AddLine(new Vector2(-723.963989F, -348.29599F));
+ builder.AddLine(new Vector2(-722.05603F, -348.29599F));
+ builder.AddLine(new Vector2(-715.323975F, -365.395996F));
+ builder.AddLine(new Vector2(-718.708008F, -365.395996F));
+ builder.AddLine(new Vector2(-723.604004F, -352.075989F));
+ builder.AddLine(new Vector2(-722.523987F, -352.075989F));
+ builder.AddLine(new Vector2(-727.383972F, -365.395996F));
+ builder.AddLine(new Vector2(-729.255981F, -365.395996F));
+ builder.AddLine(new Vector2(-734.116028F, -352.075989F));
+ builder.AddLine(new Vector2(-733.036011F, -352.075989F));
+ builder.AddLine(new Vector2(-737.932007F, -365.395996F));
+ builder.AddLine(new Vector2(-741.315979F, -365.395996F));
+ builder.AddLine(new Vector2(-734.583984F, -348.29599F));
+ builder.AddLine(new Vector2(-732.676025F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1480()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-755.932007F, -348.29599F));
+ builder.AddLine(new Vector2(-755.932007F, -365.395996F));
+ builder.AddLine(new Vector2(-759.171997F, -365.395996F));
+ builder.AddLine(new Vector2(-759.171997F, -348.29599F));
+ builder.AddLine(new Vector2(-755.932007F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-743.835999F, -348.29599F));
+ builder.AddLine(new Vector2(-743.835999F, -358.915985F));
+ builder.AddCubicBezier(new Vector2(-743.835999F, -360.09201F), new Vector2(-744.124023F, -361.201996F), new Vector2(-744.700012F, -362.246002F));
+ builder.AddCubicBezier(new Vector2(-745.276001F, -363.290009F), new Vector2(-746.062012F, -364.135986F), new Vector2(-747.057983F, -364.783997F));
+ builder.AddCubicBezier(new Vector2(-748.054016F, -365.432007F), new Vector2(-749.200012F, -365.756012F), new Vector2(-750.495972F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-751.791992F, -365.756012F), new Vector2(-752.955994F, -365.462006F), new Vector2(-753.987976F, -364.873993F));
+ builder.AddCubicBezier(new Vector2(-755.02002F, -364.286011F), new Vector2(-755.823975F, -363.488007F), new Vector2(-756.400024F, -362.480011F));
+ builder.AddCubicBezier(new Vector2(-756.976013F, -361.471985F), new Vector2(-757.263977F, -360.320007F), new Vector2(-757.263977F, -359.023987F));
+ builder.AddLine(new Vector2(-755.932007F, -358.268005F));
+ builder.AddCubicBezier(new Vector2(-755.932007F, -359.131989F), new Vector2(-755.73999F, -359.899994F), new Vector2(-755.356018F, -360.571991F));
+ builder.AddCubicBezier(new Vector2(-754.971985F, -361.243988F), new Vector2(-754.44397F, -361.772003F), new Vector2(-753.771973F, -362.156006F));
+ builder.AddCubicBezier(new Vector2(-753.099976F, -362.540009F), new Vector2(-752.33197F, -362.731995F), new Vector2(-751.468018F, -362.731995F));
+ builder.AddCubicBezier(new Vector2(-750.171997F, -362.731995F), new Vector2(-749.122009F, -362.312012F), new Vector2(-748.317993F, -361.471985F));
+ builder.AddCubicBezier(new Vector2(-747.513977F, -360.631989F), new Vector2(-747.112F, -359.563995F), new Vector2(-747.112F, -358.268005F));
+ builder.AddLine(new Vector2(-747.112F, -348.29599F));
+ builder.AddLine(new Vector2(-743.835999F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1481()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-763.888F, -348.29599F));
+ builder.AddLine(new Vector2(-763.888F, -365.395996F));
+ builder.AddLine(new Vector2(-767.164001F, -365.395996F));
+ builder.AddLine(new Vector2(-767.164001F, -361.220001F));
+ builder.AddLine(new Vector2(-766.552002F, -357.079987F));
+ builder.AddLine(new Vector2(-767.164001F, -352.903992F));
+ builder.AddLine(new Vector2(-767.164001F, -348.29599F));
+ builder.AddLine(new Vector2(-763.888F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-775.192017F, -351.752014F));
+ builder.AddCubicBezier(new Vector2(-776.031982F, -352.256012F), new Vector2(-776.685974F, -352.946014F), new Vector2(-777.153992F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-777.622009F, -354.697998F), new Vector2(-777.856018F, -355.712006F), new Vector2(-777.856018F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-777.856018F, -357.992004F), new Vector2(-777.622009F, -358.993988F), new Vector2(-777.153992F, -359.869995F));
+ builder.AddCubicBezier(new Vector2(-776.685974F, -360.746002F), new Vector2(-776.038025F, -361.436005F), new Vector2(-775.210022F, -361.940002F));
+ builder.AddCubicBezier(new Vector2(-774.382019F, -362.444F), new Vector2(-773.427979F, -362.696014F), new Vector2(-772.348022F, -362.696014F));
+ builder.AddCubicBezier(new Vector2(-771.268005F, -362.696014F), new Vector2(-770.325989F, -362.450012F), new Vector2(-769.521973F, -361.958008F));
+ builder.AddCubicBezier(new Vector2(-768.718018F, -361.466003F), new Vector2(-768.088013F, -360.776001F), new Vector2(-767.632019F, -359.888F));
+ builder.AddCubicBezier(new Vector2(-767.176025F, -359F), new Vector2(-766.947998F, -357.980011F), new Vector2(-766.947998F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-766.947998F, -355.123993F), new Vector2(-767.440002F, -353.726013F), new Vector2(-768.424011F, -352.634003F));
+ builder.AddCubicBezier(new Vector2(-769.40802F, -351.541992F), new Vector2(-770.703979F, -350.996002F), new Vector2(-772.312012F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-773.392029F, -350.996002F), new Vector2(-774.35199F, -351.247986F), new Vector2(-775.192017F, -351.752014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-769.359985F, -348.746002F));
+ builder.AddCubicBezier(new Vector2(-768.328003F, -349.286011F), new Vector2(-767.505981F, -350.036011F), new Vector2(-766.893982F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-766.281982F, -351.955994F), new Vector2(-765.940002F, -353.048004F), new Vector2(-765.867981F, -354.272003F));
+ builder.AddLine(new Vector2(-765.867981F, -359.420013F));
+ builder.AddCubicBezier(new Vector2(-765.940002F, -360.667999F), new Vector2(-766.288025F, -361.765991F), new Vector2(-766.911987F, -362.713989F));
+ builder.AddCubicBezier(new Vector2(-767.536011F, -363.661987F), new Vector2(-768.357971F, -364.406006F), new Vector2(-769.377991F, -364.946014F));
+ builder.AddCubicBezier(new Vector2(-770.39801F, -365.485992F), new Vector2(-771.55603F, -365.756012F), new Vector2(-772.85199F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-774.435974F, -365.756012F), new Vector2(-775.857971F, -365.359985F), new Vector2(-777.117981F, -364.567993F));
+ builder.AddCubicBezier(new Vector2(-778.377991F, -363.776001F), new Vector2(-779.374023F, -362.708008F), new Vector2(-780.106018F, -361.364014F));
+ builder.AddCubicBezier(new Vector2(-780.838013F, -360.019989F), new Vector2(-781.203979F, -358.507996F), new Vector2(-781.203979F, -356.828003F));
+ builder.AddCubicBezier(new Vector2(-781.203979F, -355.14801F), new Vector2(-780.838013F, -353.635986F), new Vector2(-780.106018F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-779.374023F, -350.947998F), new Vector2(-778.377991F, -349.885986F), new Vector2(-777.117981F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-775.857971F, -348.325989F), new Vector2(-774.435974F, -347.936005F), new Vector2(-772.85199F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-771.55603F, -347.936005F), new Vector2(-770.392029F, -348.205994F), new Vector2(-769.359985F, -348.746002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1482()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-787.719971F, -348.691986F));
+ builder.AddCubicBezier(new Vector2(-786.544006F, -349.196014F), new Vector2(-785.536011F, -349.928009F), new Vector2(-784.695984F, -350.888F));
+ builder.AddLine(new Vector2(-786.783997F, -353.011993F));
+ builder.AddCubicBezier(new Vector2(-787.359985F, -352.339996F), new Vector2(-788.049988F, -351.835999F), new Vector2(-788.854004F, -351.5F));
+ builder.AddCubicBezier(new Vector2(-789.65802F, -351.164001F), new Vector2(-790.539978F, -350.996002F), new Vector2(-791.5F, -350.996002F));
+ builder.AddCubicBezier(new Vector2(-792.651978F, -350.996002F), new Vector2(-793.671997F, -351.242004F), new Vector2(-794.559998F, -351.734009F));
+ builder.AddCubicBezier(new Vector2(-795.447998F, -352.226013F), new Vector2(-796.132019F, -352.921997F), new Vector2(-796.612F, -353.821991F));
+ builder.AddCubicBezier(new Vector2(-797.09198F, -354.721985F), new Vector2(-797.33197F, -355.772003F), new Vector2(-797.33197F, -356.971985F));
+ builder.AddCubicBezier(new Vector2(-797.33197F, -358.14801F), new Vector2(-797.104004F, -359.167999F), new Vector2(-796.64801F, -360.032013F));
+ builder.AddCubicBezier(new Vector2(-796.192017F, -360.895996F), new Vector2(-795.544006F, -361.567993F), new Vector2(-794.703979F, -362.048004F));
+ builder.AddCubicBezier(new Vector2(-793.864014F, -362.528015F), new Vector2(-792.892029F, -362.768005F), new Vector2(-791.788025F, -362.768005F));
+ builder.AddCubicBezier(new Vector2(-790.731995F, -362.768005F), new Vector2(-789.83197F, -362.54599F), new Vector2(-789.088013F, -362.10199F));
+ builder.AddCubicBezier(new Vector2(-788.343994F, -361.65799F), new Vector2(-787.768005F, -361.033997F), new Vector2(-787.359985F, -360.230011F));
+ builder.AddCubicBezier(new Vector2(-786.952026F, -359.425995F), new Vector2(-786.747986F, -358.447998F), new Vector2(-786.747986F, -357.29599F));
+ builder.AddLine(new Vector2(-785.559998F, -358.339996F));
+ builder.AddLine(new Vector2(-798.268005F, -358.339996F));
+ builder.AddLine(new Vector2(-798.268005F, -355.640015F));
+ builder.AddLine(new Vector2(-783.83197F, -355.640015F));
+ builder.AddCubicBezier(new Vector2(-783.76001F, -355.976013F), new Vector2(-783.711975F, -356.282013F), new Vector2(-783.687988F, -356.558014F));
+ builder.AddCubicBezier(new Vector2(-783.664001F, -356.834015F), new Vector2(-783.651978F, -357.09201F), new Vector2(-783.651978F, -357.332001F));
+ builder.AddCubicBezier(new Vector2(-783.651978F, -358.963989F), new Vector2(-783.994019F, -360.415985F), new Vector2(-784.677979F, -361.687988F));
+ builder.AddCubicBezier(new Vector2(-785.362F, -362.959991F), new Vector2(-786.315979F, -363.955994F), new Vector2(-787.539978F, -364.675995F));
+ builder.AddCubicBezier(new Vector2(-788.763977F, -365.395996F), new Vector2(-790.156006F, -365.756012F), new Vector2(-791.716003F, -365.756012F));
+ builder.AddCubicBezier(new Vector2(-793.372009F, -365.756012F), new Vector2(-794.866028F, -365.365997F), new Vector2(-796.197998F, -364.585999F));
+ builder.AddCubicBezier(new Vector2(-797.530029F, -363.806F), new Vector2(-798.585999F, -362.743988F), new Vector2(-799.366028F, -361.399994F));
+ builder.AddCubicBezier(new Vector2(-800.145996F, -360.056F), new Vector2(-800.536011F, -358.544006F), new Vector2(-800.536011F, -356.864014F));
+ builder.AddCubicBezier(new Vector2(-800.536011F, -355.160004F), new Vector2(-800.140015F, -353.635986F), new Vector2(-799.348022F, -352.291992F));
+ builder.AddCubicBezier(new Vector2(-798.55603F, -350.947998F), new Vector2(-797.481995F, -349.885986F), new Vector2(-796.125977F, -349.105988F));
+ builder.AddCubicBezier(new Vector2(-794.77002F, -348.325989F), new Vector2(-793.228027F, -347.936005F), new Vector2(-791.5F, -347.936005F));
+ builder.AddCubicBezier(new Vector2(-790.156006F, -347.936005F), new Vector2(-788.895996F, -348.187988F), new Vector2(-787.719971F, -348.691986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: Meanwhile, the government and the police started to oppress the
+ // protesters with violence and began to open fire to the protesters without any
+ // reason. They began to force censorship across social media platform, starting from
+ // TikTok, Instagram and X (formerly Twitter) and TV broadcasters are completely
+ // silenced. It reportedly that some military forces have been deployed in case of a
+ // next wave of demonstration and might potentialy lead the country under its martial
+ // law by making fabricated scenarios and slanders to divide the nation, which will
+ // cause more chaos and confusion to citizens (yes, I’m not kidding. This is how our
+ // government tries to gain control over their own people. How shameless) Outlines
+ // - - Offset:<964, 1018>
+ CanvasGeometry Geometry_1483()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-825.664001F, -348.29599F));
+ builder.AddLine(new Vector2(-825.664001F, -367.339996F));
+ builder.AddLine(new Vector2(-826.419983F, -367.123993F));
+ builder.AddLine(new Vector2(-818.104004F, -353.40799F));
+ builder.AddLine(new Vector2(-815.692017F, -353.40799F));
+ builder.AddLine(new Vector2(-807.375977F, -367.123993F));
+ builder.AddLine(new Vector2(-808.132019F, -367.339996F));
+ builder.AddLine(new Vector2(-808.132019F, -348.29599F));
+ builder.AddLine(new Vector2(-804.747986F, -348.29599F));
+ builder.AddLine(new Vector2(-804.747986F, -373.279999F));
+ builder.AddLine(new Vector2(-807.124023F, -373.279999F));
+ builder.AddLine(new Vector2(-817.708008F, -355.891998F));
+ builder.AddLine(new Vector2(-816.088013F, -355.891998F));
+ builder.AddLine(new Vector2(-826.671997F, -373.279999F));
+ builder.AddLine(new Vector2(-829.047974F, -373.279999F));
+ builder.AddLine(new Vector2(-829.047974F, -348.29599F));
+ builder.AddLine(new Vector2(-825.664001F, -348.29599F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1484()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(507.019989F, -167.567001F));
+ builder.AddCubicBezier(new Vector2(507.513F, -168.087006F), new Vector2(507.76001F, -168.707001F), new Vector2(507.76001F, -169.427002F));
+ builder.AddCubicBezier(new Vector2(507.76001F, -170.173004F), new Vector2(507.513F, -170.792999F), new Vector2(507.019989F, -171.287003F));
+ builder.AddCubicBezier(new Vector2(506.526001F, -171.779999F), new Vector2(505.906006F, -172.026993F), new Vector2(505.160004F, -172.026993F));
+ builder.AddCubicBezier(new Vector2(504.385986F, -172.026993F), new Vector2(503.76001F, -171.779999F), new Vector2(503.279999F, -171.287003F));
+ builder.AddCubicBezier(new Vector2(502.799988F, -170.792999F), new Vector2(502.559998F, -170.173004F), new Vector2(502.559998F, -169.427002F));
+ builder.AddCubicBezier(new Vector2(502.559998F, -168.707001F), new Vector2(502.799988F, -168.087006F), new Vector2(503.279999F, -167.567001F));
+ builder.AddCubicBezier(new Vector2(503.76001F, -167.046997F), new Vector2(504.385986F, -166.787003F), new Vector2(505.160004F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(505.906006F, -166.787003F), new Vector2(506.526001F, -167.046997F), new Vector2(507.019989F, -167.567001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1485()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(480.839996F, -167.186996F));
+ builder.AddLine(new Vector2(486.359985F, -181.507004F));
+ builder.AddLine(new Vector2(485.040009F, -181.507004F));
+ builder.AddLine(new Vector2(490.519989F, -167.186996F));
+ builder.AddLine(new Vector2(492.640015F, -167.186996F));
+ builder.AddLine(new Vector2(500.119995F, -186.186996F));
+ builder.AddLine(new Vector2(496.359985F, -186.186996F));
+ builder.AddLine(new Vector2(490.920013F, -171.386993F));
+ builder.AddLine(new Vector2(492.119995F, -171.386993F));
+ builder.AddLine(new Vector2(486.720001F, -186.186996F));
+ builder.AddLine(new Vector2(484.640015F, -186.186996F));
+ builder.AddLine(new Vector2(479.23999F, -171.386993F));
+ builder.AddLine(new Vector2(480.440002F, -171.386993F));
+ builder.AddLine(new Vector2(475F, -186.186996F));
+ builder.AddLine(new Vector2(471.23999F, -186.186996F));
+ builder.AddLine(new Vector2(478.720001F, -167.186996F));
+ builder.AddLine(new Vector2(480.839996F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1486()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(456.76001F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(455.825989F, -171.667007F), new Vector2(455.092987F, -172.432999F), new Vector2(454.559998F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(454.026001F, -174.380005F), new Vector2(453.76001F, -175.492996F), new Vector2(453.76001F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(453.76001F, -177.973007F), new Vector2(454.026001F, -179.067001F), new Vector2(454.559998F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(455.092987F, -180.987F), new Vector2(455.825989F, -181.740005F), new Vector2(456.76001F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(457.692993F, -182.832993F), new Vector2(458.746002F, -183.106995F), new Vector2(459.920013F, -183.106995F));
+ builder.AddCubicBezier(new Vector2(461.145996F, -183.106995F), new Vector2(462.220001F, -182.832993F), new Vector2(463.140015F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(464.059998F, -181.740005F), new Vector2(464.792999F, -180.987F), new Vector2(465.339996F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(465.885986F, -179.067001F), new Vector2(466.160004F, -177.973007F), new Vector2(466.160004F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(466.160004F, -175.492996F), new Vector2(465.893005F, -174.380005F), new Vector2(465.359985F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(464.825989F, -172.432999F), new Vector2(464.092987F, -171.667007F), new Vector2(463.160004F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(462.226013F, -170.546997F), new Vector2(461.145996F, -170.266998F), new Vector2(459.920013F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(458.746002F, -170.266998F), new Vector2(457.692993F, -170.546997F), new Vector2(456.76001F, -171.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(464.980011F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(466.485992F, -168.987F), new Vector2(467.679993F, -170.179993F), new Vector2(468.559998F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(469.440002F, -173.192993F), new Vector2(469.880005F, -174.880005F), new Vector2(469.880005F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(469.880005F, -178.587006F), new Vector2(469.440002F, -180.253006F), new Vector2(468.559998F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(467.679993F, -183.240005F), new Vector2(466.485992F, -184.419998F), new Vector2(464.980011F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(463.472992F, -186.153F), new Vector2(461.786011F, -186.587006F), new Vector2(459.920013F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(458.079987F, -186.587006F), new Vector2(456.412994F, -186.147003F), new Vector2(454.920013F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(453.425995F, -184.386993F), new Vector2(452.23999F, -183.207001F), new Vector2(451.359985F, -181.727005F));
+ builder.AddCubicBezier(new Vector2(450.480011F, -180.246994F), new Vector2(450.040009F, -178.587006F), new Vector2(450.040009F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(450.040009F, -174.880005F), new Vector2(450.480011F, -173.192993F), new Vector2(451.359985F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(452.23999F, -170.179993F), new Vector2(453.425995F, -168.987F), new Vector2(454.920013F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(456.412994F, -167.227005F), new Vector2(458.079987F, -166.787003F), new Vector2(459.920013F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(461.786011F, -166.787003F), new Vector2(463.472992F, -167.227005F), new Vector2(464.980011F, -168.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1487()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(446F, -167.186996F));
+ builder.AddLine(new Vector2(446F, -195.746994F));
+ builder.AddLine(new Vector2(442.399994F, -195.746994F));
+ builder.AddLine(new Vector2(442.399994F, -167.186996F));
+ builder.AddLine(new Vector2(446F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1488()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(433.959991F, -167.626999F));
+ builder.AddCubicBezier(new Vector2(435.265991F, -168.186996F), new Vector2(436.385986F, -169F), new Vector2(437.320007F, -170.067001F));
+ builder.AddLine(new Vector2(435F, -172.427002F));
+ builder.AddCubicBezier(new Vector2(434.359985F, -171.679993F), new Vector2(433.592987F, -171.119995F), new Vector2(432.700012F, -170.746994F));
+ builder.AddCubicBezier(new Vector2(431.806F, -170.373001F), new Vector2(430.825989F, -170.186996F), new Vector2(429.76001F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(428.480011F, -170.186996F), new Vector2(427.346008F, -170.460007F), new Vector2(426.359985F, -171.007004F));
+ builder.AddCubicBezier(new Vector2(425.372986F, -171.552994F), new Vector2(424.613007F, -172.326996F), new Vector2(424.079987F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(423.54599F, -174.326996F), new Vector2(423.279999F, -175.492996F), new Vector2(423.279999F, -176.826996F));
+ builder.AddCubicBezier(new Vector2(423.279999F, -178.132996F), new Vector2(423.53299F, -179.266998F), new Vector2(424.040009F, -180.227005F));
+ builder.AddCubicBezier(new Vector2(424.54599F, -181.186996F), new Vector2(425.265991F, -181.932999F), new Vector2(426.200012F, -182.466995F));
+ builder.AddCubicBezier(new Vector2(427.132996F, -183F), new Vector2(428.213013F, -183.266998F), new Vector2(429.440002F, -183.266998F));
+ builder.AddCubicBezier(new Vector2(430.613007F, -183.266998F), new Vector2(431.613007F, -183.020004F), new Vector2(432.440002F, -182.526993F));
+ builder.AddCubicBezier(new Vector2(433.265991F, -182.033005F), new Vector2(433.906006F, -181.339996F), new Vector2(434.359985F, -180.447006F));
+ builder.AddCubicBezier(new Vector2(434.812988F, -179.552994F), new Vector2(435.040009F, -178.466995F), new Vector2(435.040009F, -177.186996F));
+ builder.AddLine(new Vector2(436.359985F, -178.347F));
+ builder.AddLine(new Vector2(422.23999F, -178.347F));
+ builder.AddLine(new Vector2(422.23999F, -175.347F));
+ builder.AddLine(new Vector2(438.279999F, -175.347F));
+ builder.AddCubicBezier(new Vector2(438.359985F, -175.720001F), new Vector2(438.412994F, -176.059998F), new Vector2(438.440002F, -176.367004F));
+ builder.AddCubicBezier(new Vector2(438.466003F, -176.673004F), new Vector2(438.480011F, -176.960007F), new Vector2(438.480011F, -177.227005F));
+ builder.AddCubicBezier(new Vector2(438.480011F, -179.039993F), new Vector2(438.100006F, -180.653F), new Vector2(437.339996F, -182.067001F));
+ builder.AddCubicBezier(new Vector2(436.579987F, -183.479996F), new Vector2(435.519989F, -184.587006F), new Vector2(434.160004F, -185.386993F));
+ builder.AddCubicBezier(new Vector2(432.799988F, -186.186996F), new Vector2(431.252991F, -186.587006F), new Vector2(429.519989F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(427.679993F, -186.587006F), new Vector2(426.019989F, -186.153F), new Vector2(424.540009F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(423.059998F, -184.419998F), new Vector2(421.885986F, -183.240005F), new Vector2(421.019989F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(420.153015F, -180.253006F), new Vector2(419.720001F, -178.572998F), new Vector2(419.720001F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(419.720001F, -174.813004F), new Vector2(420.160004F, -173.119995F), new Vector2(421.040009F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(421.920013F, -170.132996F), new Vector2(423.113007F, -168.953003F), new Vector2(424.619995F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(426.126007F, -167.220001F), new Vector2(427.839996F, -166.787003F), new Vector2(429.76001F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(431.252991F, -166.787003F), new Vector2(432.653015F, -167.067001F), new Vector2(433.959991F, -167.626999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1489()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(403.940002F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(403.019989F, -171.587006F), new Vector2(402.312988F, -172.352997F), new Vector2(401.820007F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(401.325989F, -174.300003F), new Vector2(401.079987F, -175.412994F), new Vector2(401.079987F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(401.079987F, -177.947006F), new Vector2(401.333008F, -179.072998F), new Vector2(401.839996F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(402.346008F, -181.020004F), new Vector2(403.053009F, -181.787003F), new Vector2(403.959991F, -182.347F));
+ builder.AddCubicBezier(new Vector2(404.865997F, -182.906998F), new Vector2(405.906006F, -183.186996F), new Vector2(407.079987F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(408.279999F, -183.186996F), new Vector2(409.333008F, -182.906998F), new Vector2(410.23999F, -182.347F));
+ builder.AddCubicBezier(new Vector2(411.145996F, -181.787003F), new Vector2(411.859985F, -181.020004F), new Vector2(412.380005F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(412.899994F, -179.072998F), new Vector2(413.160004F, -177.960007F), new Vector2(413.160004F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(413.160004F, -175.427002F), new Vector2(412.899994F, -174.300003F), new Vector2(412.380005F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(411.859985F, -172.352997F), new Vector2(411.145996F, -171.587006F), new Vector2(410.23999F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(409.333008F, -170.466995F), new Vector2(408.279999F, -170.186996F), new Vector2(407.079987F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(405.906006F, -170.186996F), new Vector2(404.859985F, -170.466995F), new Vector2(403.940002F, -171.026993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(401.279999F, -167.186996F));
+ builder.AddLine(new Vector2(401.279999F, -172.307007F));
+ builder.AddLine(new Vector2(400.600006F, -176.947006F));
+ builder.AddLine(new Vector2(401.279999F, -181.546997F));
+ builder.AddLine(new Vector2(401.279999F, -195.746994F));
+ builder.AddLine(new Vector2(397.679993F, -195.746994F));
+ builder.AddLine(new Vector2(397.679993F, -167.186996F));
+ builder.AddLine(new Vector2(401.279999F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(412.380005F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(413.779999F, -168.953003F), new Vector2(414.880005F, -170.132996F), new Vector2(415.679993F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(416.480011F, -173.119995F), new Vector2(416.880005F, -174.800003F), new Vector2(416.880005F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(416.880005F, -178.533005F), new Vector2(416.480011F, -180.212997F), new Vector2(415.679993F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(414.880005F, -183.199997F), new Vector2(413.779999F, -184.386993F), new Vector2(412.380005F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(410.980011F, -186.147003F), new Vector2(409.412994F, -186.587006F), new Vector2(407.679993F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(406.265991F, -186.587006F), new Vector2(404.980011F, -186.287003F), new Vector2(403.820007F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(402.660004F, -185.087006F), new Vector2(401.726013F, -184.259995F), new Vector2(401.019989F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(400.312988F, -182.153F), new Vector2(399.920013F, -180.932999F), new Vector2(399.839996F, -179.546997F));
+ builder.AddLine(new Vector2(399.839996F, -173.826996F));
+ builder.AddCubicBezier(new Vector2(399.920013F, -172.466995F), new Vector2(400.306F, -171.253006F), new Vector2(401F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(401.692993F, -169.119995F), new Vector2(402.619995F, -168.287003F), new Vector2(403.779999F, -167.686996F));
+ builder.AddCubicBezier(new Vector2(404.940002F, -167.087006F), new Vector2(406.23999F, -166.787003F), new Vector2(407.679993F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(409.412994F, -166.787003F), new Vector2(410.980011F, -167.220001F), new Vector2(412.380005F, -168.087006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1490()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(371.079987F, -167.186996F));
+ builder.AddLine(new Vector2(371.079987F, -186.186996F));
+ builder.AddLine(new Vector2(367.480011F, -186.186996F));
+ builder.AddLine(new Vector2(367.480011F, -167.186996F));
+ builder.AddLine(new Vector2(371.079987F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(384.519989F, -167.186996F));
+ builder.AddLine(new Vector2(384.519989F, -178.987F));
+ builder.AddCubicBezier(new Vector2(384.519989F, -180.292999F), new Vector2(384.200012F, -181.526993F), new Vector2(383.559998F, -182.686996F));
+ builder.AddCubicBezier(new Vector2(382.920013F, -183.847F), new Vector2(382.04599F, -184.787003F), new Vector2(380.940002F, -185.507004F));
+ builder.AddCubicBezier(new Vector2(379.833008F, -186.227005F), new Vector2(378.559998F, -186.587006F), new Vector2(377.119995F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(375.679993F, -186.587006F), new Vector2(374.385986F, -186.259995F), new Vector2(373.23999F, -185.606995F));
+ builder.AddCubicBezier(new Vector2(372.092987F, -184.953003F), new Vector2(371.200012F, -184.067001F), new Vector2(370.559998F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(369.920013F, -181.826996F), new Vector2(369.600006F, -180.546997F), new Vector2(369.600006F, -179.106995F));
+ builder.AddLine(new Vector2(371.079987F, -178.266998F));
+ builder.AddCubicBezier(new Vector2(371.079987F, -179.227005F), new Vector2(371.292999F, -180.080002F), new Vector2(371.720001F, -180.826996F));
+ builder.AddCubicBezier(new Vector2(372.145996F, -181.572998F), new Vector2(372.733002F, -182.160004F), new Vector2(373.480011F, -182.587006F));
+ builder.AddCubicBezier(new Vector2(374.226013F, -183.013F), new Vector2(375.079987F, -183.227005F), new Vector2(376.040009F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(377.480011F, -183.227005F), new Vector2(378.645996F, -182.759995F), new Vector2(379.540009F, -181.826996F));
+ builder.AddCubicBezier(new Vector2(380.433014F, -180.893005F), new Vector2(380.880005F, -179.707001F), new Vector2(380.880005F, -178.266998F));
+ builder.AddLine(new Vector2(380.880005F, -167.186996F));
+ builder.AddLine(new Vector2(384.519989F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1491()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(350.359985F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(349.425995F, -171.667007F), new Vector2(348.692993F, -172.432999F), new Vector2(348.160004F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(347.626007F, -174.380005F), new Vector2(347.359985F, -175.492996F), new Vector2(347.359985F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(347.359985F, -177.973007F), new Vector2(347.626007F, -179.067001F), new Vector2(348.160004F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(348.692993F, -180.987F), new Vector2(349.425995F, -181.740005F), new Vector2(350.359985F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(351.292999F, -182.832993F), new Vector2(352.346008F, -183.106995F), new Vector2(353.519989F, -183.106995F));
+ builder.AddCubicBezier(new Vector2(354.746002F, -183.106995F), new Vector2(355.820007F, -182.832993F), new Vector2(356.73999F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(357.660004F, -181.740005F), new Vector2(358.393005F, -180.987F), new Vector2(358.940002F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(359.485992F, -179.067001F), new Vector2(359.76001F, -177.973007F), new Vector2(359.76001F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(359.76001F, -175.492996F), new Vector2(359.493011F, -174.380005F), new Vector2(358.959991F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(358.425995F, -172.432999F), new Vector2(357.692993F, -171.667007F), new Vector2(356.76001F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(355.825989F, -170.546997F), new Vector2(354.746002F, -170.266998F), new Vector2(353.519989F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(352.346008F, -170.266998F), new Vector2(351.292999F, -170.546997F), new Vector2(350.359985F, -171.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(358.579987F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(360.085999F, -168.987F), new Vector2(361.279999F, -170.179993F), new Vector2(362.160004F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(363.040009F, -173.192993F), new Vector2(363.480011F, -174.880005F), new Vector2(363.480011F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(363.480011F, -178.587006F), new Vector2(363.040009F, -180.253006F), new Vector2(362.160004F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(361.279999F, -183.240005F), new Vector2(360.085999F, -184.419998F), new Vector2(358.579987F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(357.072998F, -186.153F), new Vector2(355.385986F, -186.587006F), new Vector2(353.519989F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(351.679993F, -186.587006F), new Vector2(350.013F, -186.147003F), new Vector2(348.519989F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(347.026001F, -184.386993F), new Vector2(345.839996F, -183.207001F), new Vector2(344.959991F, -181.727005F));
+ builder.AddCubicBezier(new Vector2(344.079987F, -180.246994F), new Vector2(343.640015F, -178.587006F), new Vector2(343.640015F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(343.640015F, -174.880005F), new Vector2(344.079987F, -173.192993F), new Vector2(344.959991F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(345.839996F, -170.179993F), new Vector2(347.026001F, -168.987F), new Vector2(348.519989F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(350.013F, -167.227005F), new Vector2(351.679993F, -166.787003F), new Vector2(353.519989F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(355.385986F, -166.787003F), new Vector2(357.072998F, -167.227005F), new Vector2(358.579987F, -168.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1492()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(341.959991F, -182.906998F));
+ builder.AddLine(new Vector2(341.959991F, -186.186996F));
+ builder.AddLine(new Vector2(329F, -186.186996F));
+ builder.AddLine(new Vector2(329F, -182.906998F));
+ builder.AddLine(new Vector2(341.959991F, -182.906998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(337.279999F, -167.186996F));
+ builder.AddLine(new Vector2(337.279999F, -194.147003F));
+ builder.AddLine(new Vector2(333.679993F, -194.147003F));
+ builder.AddLine(new Vector2(333.679993F, -167.186996F));
+ builder.AddLine(new Vector2(337.279999F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1493()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(327.959991F, -182.906998F));
+ builder.AddLine(new Vector2(327.959991F, -186.186996F));
+ builder.AddLine(new Vector2(315F, -186.186996F));
+ builder.AddLine(new Vector2(315F, -182.906998F));
+ builder.AddLine(new Vector2(327.959991F, -182.906998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(323.279999F, -167.186996F));
+ builder.AddLine(new Vector2(323.279999F, -194.147003F));
+ builder.AddLine(new Vector2(319.679993F, -194.147003F));
+ builder.AddLine(new Vector2(319.679993F, -167.186996F));
+ builder.AddLine(new Vector2(323.279999F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1494()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(308F, -167.886993F));
+ builder.AddCubicBezier(new Vector2(309.226013F, -168.567001F), new Vector2(310.186005F, -169.533005F), new Vector2(310.880005F, -170.787003F));
+ builder.AddCubicBezier(new Vector2(311.572998F, -172.039993F), new Vector2(311.920013F, -173.492996F), new Vector2(311.920013F, -175.147003F));
+ builder.AddLine(new Vector2(311.920013F, -186.186996F));
+ builder.AddLine(new Vector2(308.320007F, -186.186996F));
+ builder.AddLine(new Vector2(308.320007F, -175.307007F));
+ builder.AddCubicBezier(new Vector2(308.320007F, -173.733002F), new Vector2(307.920013F, -172.5F), new Vector2(307.119995F, -171.606995F));
+ builder.AddCubicBezier(new Vector2(306.320007F, -170.712997F), new Vector2(305.213013F, -170.266998F), new Vector2(303.799988F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(302.865997F, -170.266998F), new Vector2(302.053009F, -170.466995F), new Vector2(301.359985F, -170.867004F));
+ builder.AddCubicBezier(new Vector2(300.665985F, -171.266998F), new Vector2(300.140015F, -171.847F), new Vector2(299.779999F, -172.606995F));
+ builder.AddCubicBezier(new Vector2(299.420013F, -173.367004F), new Vector2(299.23999F, -174.266998F), new Vector2(299.23999F, -175.307007F));
+ builder.AddLine(new Vector2(299.23999F, -186.186996F));
+ builder.AddLine(new Vector2(295.640015F, -186.186996F));
+ builder.AddLine(new Vector2(295.640015F, -175.147003F));
+ builder.AddCubicBezier(new Vector2(295.640015F, -173.492996F), new Vector2(295.985992F, -172.039993F), new Vector2(296.679993F, -170.787003F));
+ builder.AddCubicBezier(new Vector2(297.372986F, -169.533005F), new Vector2(298.339996F, -168.567001F), new Vector2(299.579987F, -167.886993F));
+ builder.AddCubicBezier(new Vector2(300.820007F, -167.207001F), new Vector2(302.226013F, -166.867004F), new Vector2(303.799988F, -166.867004F));
+ builder.AddCubicBezier(new Vector2(305.372986F, -166.867004F), new Vector2(306.77301F, -167.207001F), new Vector2(308F, -167.886993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1495()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(279.100006F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(278.179993F, -171.587006F), new Vector2(277.472992F, -172.352997F), new Vector2(276.980011F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(276.485992F, -174.300003F), new Vector2(276.23999F, -175.412994F), new Vector2(276.23999F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(276.23999F, -177.947006F), new Vector2(276.493011F, -179.072998F), new Vector2(277F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(277.506012F, -181.020004F), new Vector2(278.213013F, -181.787003F), new Vector2(279.119995F, -182.347F));
+ builder.AddCubicBezier(new Vector2(280.026001F, -182.906998F), new Vector2(281.06601F, -183.186996F), new Vector2(282.23999F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(283.440002F, -183.186996F), new Vector2(284.493011F, -182.906998F), new Vector2(285.399994F, -182.347F));
+ builder.AddCubicBezier(new Vector2(286.306F, -181.787003F), new Vector2(287.019989F, -181.020004F), new Vector2(287.540009F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(288.059998F, -179.072998F), new Vector2(288.320007F, -177.960007F), new Vector2(288.320007F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(288.320007F, -175.427002F), new Vector2(288.059998F, -174.300003F), new Vector2(287.540009F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(287.019989F, -172.352997F), new Vector2(286.306F, -171.587006F), new Vector2(285.399994F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(284.493011F, -170.466995F), new Vector2(283.440002F, -170.186996F), new Vector2(282.23999F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(281.06601F, -170.186996F), new Vector2(280.019989F, -170.466995F), new Vector2(279.100006F, -171.026993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(276.440002F, -167.186996F));
+ builder.AddLine(new Vector2(276.440002F, -172.307007F));
+ builder.AddLine(new Vector2(275.76001F, -176.947006F));
+ builder.AddLine(new Vector2(276.440002F, -181.546997F));
+ builder.AddLine(new Vector2(276.440002F, -195.746994F));
+ builder.AddLine(new Vector2(272.839996F, -195.746994F));
+ builder.AddLine(new Vector2(272.839996F, -167.186996F));
+ builder.AddLine(new Vector2(276.440002F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(287.540009F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(288.940002F, -168.953003F), new Vector2(290.040009F, -170.132996F), new Vector2(290.839996F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(291.640015F, -173.119995F), new Vector2(292.040009F, -174.800003F), new Vector2(292.040009F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(292.040009F, -178.533005F), new Vector2(291.640015F, -180.212997F), new Vector2(290.839996F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(290.040009F, -183.199997F), new Vector2(288.940002F, -184.386993F), new Vector2(287.540009F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(286.140015F, -186.147003F), new Vector2(284.572998F, -186.587006F), new Vector2(282.839996F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(281.425995F, -186.587006F), new Vector2(280.140015F, -186.287003F), new Vector2(278.980011F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(277.820007F, -185.087006F), new Vector2(276.885986F, -184.259995F), new Vector2(276.179993F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(275.472992F, -182.153F), new Vector2(275.079987F, -180.932999F), new Vector2(275F, -179.546997F));
+ builder.AddLine(new Vector2(275F, -173.826996F));
+ builder.AddCubicBezier(new Vector2(275.079987F, -172.466995F), new Vector2(275.466003F, -171.253006F), new Vector2(276.160004F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(276.852997F, -169.119995F), new Vector2(277.779999F, -168.287003F), new Vector2(278.940002F, -167.686996F));
+ builder.AddCubicBezier(new Vector2(280.100006F, -167.087006F), new Vector2(281.399994F, -166.787003F), new Vector2(282.839996F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(284.572998F, -166.787003F), new Vector2(286.140015F, -167.220001F), new Vector2(287.540009F, -168.087006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1496()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(249F, -184.987F));
+ builder.AddLine(new Vector2(251.639999F, -189.947006F));
+ builder.AddCubicBezier(new Vector2(251.985992F, -190.587006F), new Vector2(252.220001F, -191.113007F), new Vector2(252.339996F, -191.526993F));
+ builder.AddCubicBezier(new Vector2(252.460007F, -191.940002F), new Vector2(252.520004F, -192.307007F), new Vector2(252.520004F, -192.626999F));
+ builder.AddCubicBezier(new Vector2(252.520004F, -193.373001F), new Vector2(252.253006F, -194.013F), new Vector2(251.720001F, -194.546997F));
+ builder.AddCubicBezier(new Vector2(251.186005F, -195.080002F), new Vector2(250.572998F, -195.347F), new Vector2(249.880005F, -195.347F));
+ builder.AddCubicBezier(new Vector2(249.132996F, -195.347F), new Vector2(248.5F, -195.080002F), new Vector2(247.979996F, -194.546997F));
+ builder.AddCubicBezier(new Vector2(247.460007F, -194.013F), new Vector2(247.199997F, -193.373001F), new Vector2(247.199997F, -192.626999F));
+ builder.AddCubicBezier(new Vector2(247.199997F, -191.906998F), new Vector2(247.432999F, -191.320007F), new Vector2(247.899994F, -190.867004F));
+ builder.AddCubicBezier(new Vector2(248.365997F, -190.412994F), new Vector2(248.880005F, -190.186996F), new Vector2(249.440002F, -190.186996F));
+ builder.AddCubicBezier(new Vector2(249.733002F, -190.186996F), new Vector2(249.979996F, -190.279999F), new Vector2(250.179993F, -190.466995F));
+ builder.AddCubicBezier(new Vector2(250.380005F, -190.653F), new Vector2(250.546005F, -190.893005F), new Vector2(250.679993F, -191.186996F));
+ builder.AddLine(new Vector2(249.399994F, -190.867004F));
+ builder.AddLine(new Vector2(246.919998F, -186.106995F));
+ builder.AddLine(new Vector2(249F, -184.987F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(256.359985F, -184.987F));
+ builder.AddLine(new Vector2(259F, -189.947006F));
+ builder.AddCubicBezier(new Vector2(259.346008F, -190.587006F), new Vector2(259.579987F, -191.113007F), new Vector2(259.700012F, -191.526993F));
+ builder.AddCubicBezier(new Vector2(259.820007F, -191.940002F), new Vector2(259.880005F, -192.307007F), new Vector2(259.880005F, -192.626999F));
+ builder.AddCubicBezier(new Vector2(259.880005F, -193.373001F), new Vector2(259.613007F, -194.013F), new Vector2(259.079987F, -194.546997F));
+ builder.AddCubicBezier(new Vector2(258.54599F, -195.080002F), new Vector2(257.933014F, -195.347F), new Vector2(257.23999F, -195.347F));
+ builder.AddCubicBezier(new Vector2(256.493011F, -195.347F), new Vector2(255.860001F, -195.080002F), new Vector2(255.339996F, -194.546997F));
+ builder.AddCubicBezier(new Vector2(254.820007F, -194.013F), new Vector2(254.559998F, -193.373001F), new Vector2(254.559998F, -192.626999F));
+ builder.AddCubicBezier(new Vector2(254.559998F, -191.906998F), new Vector2(254.792999F, -191.320007F), new Vector2(255.259995F, -190.867004F));
+ builder.AddCubicBezier(new Vector2(255.725998F, -190.412994F), new Vector2(256.23999F, -190.186996F), new Vector2(256.799988F, -190.186996F));
+ builder.AddCubicBezier(new Vector2(257.092987F, -190.186996F), new Vector2(257.339996F, -190.279999F), new Vector2(257.540009F, -190.466995F));
+ builder.AddCubicBezier(new Vector2(257.73999F, -190.653F), new Vector2(257.906006F, -190.893005F), new Vector2(258.040009F, -191.186996F));
+ builder.AddLine(new Vector2(256.76001F, -190.867004F));
+ builder.AddLine(new Vector2(254.279999F, -186.106995F));
+ builder.AddLine(new Vector2(256.359985F, -184.987F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1497()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(238.919998F, -167.567001F));
+ builder.AddCubicBezier(new Vector2(240.279999F, -168.113007F), new Vector2(241.440002F, -168.960007F), new Vector2(242.399994F, -170.106995F));
+ builder.AddLine(new Vector2(239F, -173.466995F));
+ builder.AddCubicBezier(new Vector2(238.412994F, -172.800003F), new Vector2(237.733002F, -172.300003F), new Vector2(236.960007F, -171.966995F));
+ builder.AddCubicBezier(new Vector2(236.186005F, -171.632996F), new Vector2(235.332993F, -171.466995F), new Vector2(234.399994F, -171.466995F));
+ builder.AddCubicBezier(new Vector2(233.360001F, -171.466995F), new Vector2(232.460007F, -171.686996F), new Vector2(231.699997F, -172.126999F));
+ builder.AddCubicBezier(new Vector2(230.940002F, -172.567001F), new Vector2(230.352997F, -173.199997F), new Vector2(229.940002F, -174.026993F));
+ builder.AddCubicBezier(new Vector2(229.526001F, -174.852997F), new Vector2(229.320007F, -175.826996F), new Vector2(229.320007F, -176.947006F));
+ builder.AddCubicBezier(new Vector2(229.320007F, -178.067001F), new Vector2(229.513F, -179.026993F), new Vector2(229.899994F, -179.826996F));
+ builder.AddCubicBezier(new Vector2(230.285995F, -180.626999F), new Vector2(230.832993F, -181.253006F), new Vector2(231.539993F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(232.246002F, -182.160004F), new Vector2(233.080002F, -182.386993F), new Vector2(234.039993F, -182.386993F));
+ builder.AddCubicBezier(new Vector2(234.919998F, -182.386993F), new Vector2(235.673004F, -182.186996F), new Vector2(236.300003F, -181.787003F));
+ builder.AddCubicBezier(new Vector2(236.925995F, -181.386993F), new Vector2(237.399994F, -180.820007F), new Vector2(237.720001F, -180.087006F));
+ builder.AddCubicBezier(new Vector2(238.039993F, -179.352997F), new Vector2(238.212997F, -178.440002F), new Vector2(238.240005F, -177.347F));
+ builder.AddLine(new Vector2(240.880005F, -179.147003F));
+ builder.AddLine(new Vector2(226.800003F, -179.067001F));
+ builder.AddLine(new Vector2(226.800003F, -174.826996F));
+ builder.AddLine(new Vector2(243.520004F, -174.906998F));
+ builder.AddCubicBezier(new Vector2(243.653F, -175.386993F), new Vector2(243.740005F, -175.820007F), new Vector2(243.779999F, -176.207001F));
+ builder.AddCubicBezier(new Vector2(243.820007F, -176.593002F), new Vector2(243.839996F, -176.973007F), new Vector2(243.839996F, -177.347F));
+ builder.AddCubicBezier(new Vector2(243.839996F, -179.240005F), new Vector2(243.412994F, -180.919998F), new Vector2(242.559998F, -182.386993F));
+ builder.AddCubicBezier(new Vector2(241.705994F, -183.852997F), new Vector2(240.546005F, -185F), new Vector2(239.080002F, -185.826996F));
+ builder.AddCubicBezier(new Vector2(237.613007F, -186.653F), new Vector2(235.906006F, -187.067001F), new Vector2(233.960007F, -187.067001F));
+ builder.AddCubicBezier(new Vector2(231.985992F, -187.067001F), new Vector2(230.212997F, -186.626999F), new Vector2(228.639999F, -185.746994F));
+ builder.AddCubicBezier(new Vector2(227.065994F, -184.867004F), new Vector2(225.826004F, -183.660004F), new Vector2(224.919998F, -182.126999F));
+ builder.AddCubicBezier(new Vector2(224.013F, -180.593002F), new Vector2(223.559998F, -178.867004F), new Vector2(223.559998F, -176.947006F));
+ builder.AddCubicBezier(new Vector2(223.559998F, -174.973007F), new Vector2(224.026001F, -173.212997F), new Vector2(224.960007F, -171.667007F));
+ builder.AddCubicBezier(new Vector2(225.893005F, -170.119995F), new Vector2(227.173004F, -168.912994F), new Vector2(228.800003F, -168.046997F));
+ builder.AddCubicBezier(new Vector2(230.425995F, -167.181F), new Vector2(232.292999F, -166.746994F), new Vector2(234.399994F, -166.746994F));
+ builder.AddCubicBezier(new Vector2(236.052994F, -166.746994F), new Vector2(237.559998F, -167.020996F), new Vector2(238.919998F, -167.567001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1498()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(215.339996F, -180.647003F));
+ builder.AddCubicBezier(new Vector2(215.940002F, -181.272995F), new Vector2(216.759995F, -181.587006F), new Vector2(217.800003F, -181.587006F));
+ builder.AddCubicBezier(new Vector2(218.306F, -181.587006F), new Vector2(218.759995F, -181.507004F), new Vector2(219.160004F, -181.347F));
+ builder.AddCubicBezier(new Vector2(219.559998F, -181.186996F), new Vector2(219.880005F, -180.973007F), new Vector2(220.119995F, -180.707001F));
+ builder.AddLine(new Vector2(223.759995F, -185.347F));
+ builder.AddCubicBezier(new Vector2(223.225998F, -185.906998F), new Vector2(222.606003F, -186.326996F), new Vector2(221.899994F, -186.606995F));
+ builder.AddCubicBezier(new Vector2(221.192993F, -186.886993F), new Vector2(220.373001F, -187.026993F), new Vector2(219.440002F, -187.026993F));
+ builder.AddCubicBezier(new Vector2(217.332993F, -187.026993F), new Vector2(215.673004F, -186.399994F), new Vector2(214.460007F, -185.147003F));
+ builder.AddCubicBezier(new Vector2(213.246002F, -183.893005F), new Vector2(212.386002F, -182.119995F), new Vector2(211.880005F, -179.826996F));
+ builder.AddLine(new Vector2(214.440002F, -177.826996F));
+ builder.AddCubicBezier(new Vector2(214.440002F, -179.080002F), new Vector2(214.740005F, -180.020004F), new Vector2(215.339996F, -180.647003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(214.440002F, -167.186996F));
+ builder.AddLine(new Vector2(214.440002F, -186.626999F));
+ builder.AddLine(new Vector2(208.279999F, -186.626999F));
+ builder.AddLine(new Vector2(208.279999F, -167.186996F));
+ builder.AddLine(new Vector2(214.440002F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1499()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(192.360001F, -172.906998F));
+ builder.AddCubicBezier(new Vector2(191.692993F, -173.279999F), new Vector2(191.173004F, -173.820007F), new Vector2(190.800003F, -174.526993F));
+ builder.AddCubicBezier(new Vector2(190.425995F, -175.233002F), new Vector2(190.240005F, -176.039993F), new Vector2(190.240005F, -176.947006F));
+ builder.AddCubicBezier(new Vector2(190.240005F, -177.800003F), new Vector2(190.425995F, -178.572998F), new Vector2(190.800003F, -179.266998F));
+ builder.AddCubicBezier(new Vector2(191.173004F, -179.960007F), new Vector2(191.692993F, -180.5F), new Vector2(192.360001F, -180.886993F));
+ builder.AddCubicBezier(new Vector2(193.026001F, -181.272995F), new Vector2(193.785995F, -181.466995F), new Vector2(194.639999F, -181.466995F));
+ builder.AddCubicBezier(new Vector2(195.492996F, -181.466995F), new Vector2(196.246002F, -181.272995F), new Vector2(196.899994F, -180.886993F));
+ builder.AddCubicBezier(new Vector2(197.552994F, -180.5F), new Vector2(198.065994F, -179.966995F), new Vector2(198.440002F, -179.287003F));
+ builder.AddCubicBezier(new Vector2(198.813004F, -178.606995F), new Vector2(199F, -177.826996F), new Vector2(199F, -176.947006F));
+ builder.AddCubicBezier(new Vector2(199F, -176.039993F), new Vector2(198.820007F, -175.233002F), new Vector2(198.460007F, -174.526993F));
+ builder.AddCubicBezier(new Vector2(198.100006F, -173.820007F), new Vector2(197.585999F, -173.279999F), new Vector2(196.919998F, -172.906998F));
+ builder.AddCubicBezier(new Vector2(196.253006F, -172.533005F), new Vector2(195.492996F, -172.347F), new Vector2(194.639999F, -172.347F));
+ builder.AddCubicBezier(new Vector2(193.785995F, -172.347F), new Vector2(193.026001F, -172.533005F), new Vector2(192.360001F, -172.906998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(200.080002F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(201.679993F, -169.013F), new Vector2(202.945999F, -170.233002F), new Vector2(203.880005F, -171.766998F));
+ builder.AddCubicBezier(new Vector2(204.813004F, -173.300003F), new Vector2(205.279999F, -175.039993F), new Vector2(205.279999F, -176.987F));
+ builder.AddCubicBezier(new Vector2(205.279999F, -178.880005F), new Vector2(204.813004F, -180.593002F), new Vector2(203.880005F, -182.126999F));
+ builder.AddCubicBezier(new Vector2(202.945999F, -183.660004F), new Vector2(201.673004F, -184.867004F), new Vector2(200.059998F, -185.746994F));
+ builder.AddCubicBezier(new Vector2(198.445999F, -186.626999F), new Vector2(196.639999F, -187.067001F), new Vector2(194.639999F, -187.067001F));
+ builder.AddCubicBezier(new Vector2(192.585999F, -187.067001F), new Vector2(190.759995F, -186.619995F), new Vector2(189.160004F, -185.727005F));
+ builder.AddCubicBezier(new Vector2(187.559998F, -184.832993F), new Vector2(186.300003F, -183.626999F), new Vector2(185.380005F, -182.106995F));
+ builder.AddCubicBezier(new Vector2(184.460007F, -180.587006F), new Vector2(184F, -178.880005F), new Vector2(184F, -176.987F));
+ builder.AddCubicBezier(new Vector2(184F, -175.067001F), new Vector2(184.466003F, -173.332993F), new Vector2(185.399994F, -171.787003F));
+ builder.AddCubicBezier(new Vector2(186.332993F, -170.240005F), new Vector2(187.600006F, -169.013F), new Vector2(189.199997F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(190.800003F, -167.199997F), new Vector2(192.613007F, -166.746994F), new Vector2(194.639999F, -166.746994F));
+ builder.AddCubicBezier(new Vector2(196.666F, -166.746994F), new Vector2(198.479996F, -167.199997F), new Vector2(200.080002F, -168.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1500()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(157.759995F, -167.186996F));
+ builder.AddLine(new Vector2(157.759995F, -184.826996F));
+ builder.AddLine(new Vector2(156.679993F, -184.507004F));
+ builder.AddLine(new Vector2(163.880005F, -173.266998F));
+ builder.AddLine(new Vector2(168.039993F, -173.266998F));
+ builder.AddLine(new Vector2(175.240005F, -184.507004F));
+ builder.AddLine(new Vector2(174.160004F, -184.826996F));
+ builder.AddLine(new Vector2(174.160004F, -167.186996F));
+ builder.AddLine(new Vector2(180.440002F, -167.186996F));
+ builder.AddLine(new Vector2(180.440002F, -195.427002F));
+ builder.AddLine(new Vector2(175.880005F, -195.427002F));
+ builder.AddLine(new Vector2(164.800003F, -178.106995F));
+ builder.AddLine(new Vector2(167.160004F, -178.106995F));
+ builder.AddLine(new Vector2(156.039993F, -195.427002F));
+ builder.AddLine(new Vector2(151.479996F, -195.427002F));
+ builder.AddLine(new Vector2(151.479996F, -167.186996F));
+ builder.AddLine(new Vector2(157.759995F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1501()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(126.599998F, -167.186996F));
+ builder.AddLine(new Vector2(126.599998F, -186.626999F));
+ builder.AddLine(new Vector2(120.440002F, -186.626999F));
+ builder.AddLine(new Vector2(120.440002F, -167.186996F));
+ builder.AddLine(new Vector2(126.599998F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(139.479996F, -167.186996F));
+ builder.AddLine(new Vector2(139.479996F, -179.626999F));
+ builder.AddCubicBezier(new Vector2(139.479996F, -180.960007F), new Vector2(139.160004F, -182.192993F), new Vector2(138.520004F, -183.326996F));
+ builder.AddCubicBezier(new Vector2(137.880005F, -184.460007F), new Vector2(137F, -185.360001F), new Vector2(135.880005F, -186.026993F));
+ builder.AddCubicBezier(new Vector2(134.759995F, -186.692993F), new Vector2(133.492996F, -187.026993F), new Vector2(132.080002F, -187.026993F));
+ builder.AddCubicBezier(new Vector2(130.585999F, -187.026993F), new Vector2(129.246002F, -186.712997F), new Vector2(128.059998F, -186.087006F));
+ builder.AddCubicBezier(new Vector2(126.873001F, -185.460007F), new Vector2(125.940002F, -184.572998F), new Vector2(125.260002F, -183.427002F));
+ builder.AddCubicBezier(new Vector2(124.580002F, -182.279999F), new Vector2(124.239998F, -180.947006F), new Vector2(124.239998F, -179.427002F));
+ builder.AddLine(new Vector2(126.599998F, -178.266998F));
+ builder.AddCubicBezier(new Vector2(126.599998F, -178.932999F), new Vector2(126.746002F, -179.520004F), new Vector2(127.040001F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(127.333F, -180.533005F), new Vector2(127.733002F, -180.927002F), new Vector2(128.240005F, -181.207001F));
+ builder.AddCubicBezier(new Vector2(128.746002F, -181.487F), new Vector2(129.320007F, -181.626999F), new Vector2(129.960007F, -181.626999F));
+ builder.AddCubicBezier(new Vector2(130.919998F, -181.626999F), new Vector2(131.720001F, -181.313004F), new Vector2(132.360001F, -180.686996F));
+ builder.AddCubicBezier(new Vector2(133F, -180.059998F), new Vector2(133.320007F, -179.253006F), new Vector2(133.320007F, -178.266998F));
+ builder.AddLine(new Vector2(133.320007F, -167.186996F));
+ builder.AddLine(new Vector2(139.479996F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1502()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(110.580002F, -180.647003F));
+ builder.AddCubicBezier(new Vector2(111.18F, -181.272995F), new Vector2(112F, -181.587006F), new Vector2(113.040001F, -181.587006F));
+ builder.AddCubicBezier(new Vector2(113.545998F, -181.587006F), new Vector2(114F, -181.507004F), new Vector2(114.400002F, -181.347F));
+ builder.AddCubicBezier(new Vector2(114.800003F, -181.186996F), new Vector2(115.120003F, -180.973007F), new Vector2(115.360001F, -180.707001F));
+ builder.AddLine(new Vector2(119F, -185.347F));
+ builder.AddCubicBezier(new Vector2(118.466003F, -185.906998F), new Vector2(117.846001F, -186.326996F), new Vector2(117.139999F, -186.606995F));
+ builder.AddCubicBezier(new Vector2(116.432999F, -186.886993F), new Vector2(115.612999F, -187.026993F), new Vector2(114.68F, -187.026993F));
+ builder.AddCubicBezier(new Vector2(112.572998F, -187.026993F), new Vector2(110.913002F, -186.399994F), new Vector2(109.699997F, -185.147003F));
+ builder.AddCubicBezier(new Vector2(108.486F, -183.893005F), new Vector2(107.625999F, -182.119995F), new Vector2(107.120003F, -179.826996F));
+ builder.AddLine(new Vector2(109.68F, -177.826996F));
+ builder.AddCubicBezier(new Vector2(109.68F, -179.080002F), new Vector2(109.980003F, -180.020004F), new Vector2(110.580002F, -180.647003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(109.68F, -167.186996F));
+ builder.AddLine(new Vector2(109.68F, -186.626999F));
+ builder.AddLine(new Vector2(103.519997F, -186.626999F));
+ builder.AddLine(new Vector2(103.519997F, -167.186996F));
+ builder.AddLine(new Vector2(109.68F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1503()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(99.2399979F, -167.186996F));
+ builder.AddLine(new Vector2(99.2399979F, -186.626999F));
+ builder.AddLine(new Vector2(93.1999969F, -186.626999F));
+ builder.AddLine(new Vector2(93.1999969F, -181.867004F));
+ builder.AddLine(new Vector2(94.1200027F, -177.186996F));
+ builder.AddLine(new Vector2(93.1999969F, -172.427002F));
+ builder.AddLine(new Vector2(93.1999969F, -167.186996F));
+ builder.AddLine(new Vector2(99.2399979F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(86.9000015F, -172.927002F));
+ builder.AddCubicBezier(new Vector2(86.2460022F, -173.313004F), new Vector2(85.7259979F, -173.852997F), new Vector2(85.3399963F, -174.546997F));
+ builder.AddCubicBezier(new Vector2(84.9530029F, -175.240005F), new Vector2(84.7600021F, -176.026993F), new Vector2(84.7600021F, -176.906998F));
+ builder.AddCubicBezier(new Vector2(84.7600021F, -177.787003F), new Vector2(84.9530029F, -178.572998F), new Vector2(85.3399963F, -179.266998F));
+ builder.AddCubicBezier(new Vector2(85.7259979F, -179.960007F), new Vector2(86.2460022F, -180.5F), new Vector2(86.9000015F, -180.886993F));
+ builder.AddCubicBezier(new Vector2(87.5530014F, -181.272995F), new Vector2(88.2929993F, -181.466995F), new Vector2(89.1200027F, -181.466995F));
+ builder.AddCubicBezier(new Vector2(89.9729996F, -181.466995F), new Vector2(90.7330017F, -181.272995F), new Vector2(91.4000015F, -180.886993F));
+ builder.AddCubicBezier(new Vector2(92.0660019F, -180.5F), new Vector2(92.572998F, -179.966995F), new Vector2(92.9199982F, -179.287003F));
+ builder.AddCubicBezier(new Vector2(93.2659988F, -178.606995F), new Vector2(93.4400024F, -177.826996F), new Vector2(93.4400024F, -176.947006F));
+ builder.AddCubicBezier(new Vector2(93.4400024F, -175.587006F), new Vector2(93.0459976F, -174.479996F), new Vector2(92.2600021F, -173.626999F));
+ builder.AddCubicBezier(new Vector2(91.4729996F, -172.772995F), new Vector2(90.4260025F, -172.347F), new Vector2(89.1200027F, -172.347F));
+ builder.AddCubicBezier(new Vector2(88.2929993F, -172.347F), new Vector2(87.5530014F, -172.539993F), new Vector2(86.9000015F, -172.927002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(91.4199982F, -167.546997F));
+ builder.AddCubicBezier(new Vector2(92.4729996F, -168.052994F), new Vector2(93.3259964F, -168.753006F), new Vector2(93.9800034F, -169.647003F));
+ builder.AddCubicBezier(new Vector2(94.6330032F, -170.539993F), new Vector2(95F, -171.559998F), new Vector2(95.0800018F, -172.707001F));
+ builder.AddLine(new Vector2(95.0800018F, -181.106995F));
+ builder.AddCubicBezier(new Vector2(95F, -182.253006F), new Vector2(94.6259995F, -183.272995F), new Vector2(93.9599991F, -184.167007F));
+ builder.AddCubicBezier(new Vector2(93.2929993F, -185.059998F), new Vector2(92.4329987F, -185.759995F), new Vector2(91.3799973F, -186.266998F));
+ builder.AddCubicBezier(new Vector2(90.3259964F, -186.772995F), new Vector2(89.1460037F, -187.026993F), new Vector2(87.8399963F, -187.026993F));
+ builder.AddCubicBezier(new Vector2(86.0530014F, -187.026993F), new Vector2(84.4599991F, -186.593002F), new Vector2(83.0599976F, -185.727005F));
+ builder.AddCubicBezier(new Vector2(81.6600037F, -184.860001F), new Vector2(80.5530014F, -183.660004F), new Vector2(79.7399979F, -182.126999F));
+ builder.AddCubicBezier(new Vector2(78.9260025F, -180.593002F), new Vector2(78.5199966F, -178.852997F), new Vector2(78.5199966F, -176.906998F));
+ builder.AddCubicBezier(new Vector2(78.5199966F, -174.960007F), new Vector2(78.9260025F, -173.233002F), new Vector2(79.7399979F, -171.727005F));
+ builder.AddCubicBezier(new Vector2(80.5530014F, -170.220001F), new Vector2(81.6660004F, -169.020004F), new Vector2(83.0800018F, -168.126999F));
+ builder.AddCubicBezier(new Vector2(84.4929962F, -167.233002F), new Vector2(86.0800018F, -166.787003F), new Vector2(87.8399963F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(89.1729965F, -166.787003F), new Vector2(90.3659973F, -167.041F), new Vector2(91.4199982F, -167.546997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1504()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(71.9199982F, -167.567001F));
+ builder.AddCubicBezier(new Vector2(73.2799988F, -168.113007F), new Vector2(74.4400024F, -168.960007F), new Vector2(75.4000015F, -170.106995F));
+ builder.AddLine(new Vector2(72F, -173.466995F));
+ builder.AddCubicBezier(new Vector2(71.413002F, -172.800003F), new Vector2(70.7330017F, -172.300003F), new Vector2(69.9599991F, -171.966995F));
+ builder.AddCubicBezier(new Vector2(69.185997F, -171.632996F), new Vector2(68.3330002F, -171.466995F), new Vector2(67.4000015F, -171.466995F));
+ builder.AddCubicBezier(new Vector2(66.3600006F, -171.466995F), new Vector2(65.4599991F, -171.686996F), new Vector2(64.6999969F, -172.126999F));
+ builder.AddCubicBezier(new Vector2(63.9399986F, -172.567001F), new Vector2(63.3530006F, -173.199997F), new Vector2(62.9399986F, -174.026993F));
+ builder.AddCubicBezier(new Vector2(62.526001F, -174.852997F), new Vector2(62.3199997F, -175.826996F), new Vector2(62.3199997F, -176.947006F));
+ builder.AddCubicBezier(new Vector2(62.3199997F, -178.067001F), new Vector2(62.5130005F, -179.026993F), new Vector2(62.9000015F, -179.826996F));
+ builder.AddCubicBezier(new Vector2(63.2859993F, -180.626999F), new Vector2(63.8330002F, -181.253006F), new Vector2(64.5400009F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(65.2460022F, -182.160004F), new Vector2(66.0800018F, -182.386993F), new Vector2(67.0400009F, -182.386993F));
+ builder.AddCubicBezier(new Vector2(67.9199982F, -182.386993F), new Vector2(68.6729965F, -182.186996F), new Vector2(69.3000031F, -181.787003F));
+ builder.AddCubicBezier(new Vector2(69.9260025F, -181.386993F), new Vector2(70.4000015F, -180.820007F), new Vector2(70.7200012F, -180.087006F));
+ builder.AddCubicBezier(new Vector2(71.0400009F, -179.352997F), new Vector2(71.2129974F, -178.440002F), new Vector2(71.2399979F, -177.347F));
+ builder.AddLine(new Vector2(73.8799973F, -179.147003F));
+ builder.AddLine(new Vector2(59.7999992F, -179.067001F));
+ builder.AddLine(new Vector2(59.7999992F, -174.826996F));
+ builder.AddLine(new Vector2(76.5199966F, -174.906998F));
+ builder.AddCubicBezier(new Vector2(76.6529999F, -175.386993F), new Vector2(76.7399979F, -175.820007F), new Vector2(76.7799988F, -176.207001F));
+ builder.AddCubicBezier(new Vector2(76.8199997F, -176.593002F), new Vector2(76.8399963F, -176.973007F), new Vector2(76.8399963F, -177.347F));
+ builder.AddCubicBezier(new Vector2(76.8399963F, -179.240005F), new Vector2(76.413002F, -180.919998F), new Vector2(75.5599976F, -182.386993F));
+ builder.AddCubicBezier(new Vector2(74.7060013F, -183.852997F), new Vector2(73.5459976F, -185F), new Vector2(72.0800018F, -185.826996F));
+ builder.AddCubicBezier(new Vector2(70.612999F, -186.653F), new Vector2(68.9059982F, -187.067001F), new Vector2(66.9599991F, -187.067001F));
+ builder.AddCubicBezier(new Vector2(64.9860001F, -187.067001F), new Vector2(63.2130013F, -186.626999F), new Vector2(61.6399994F, -185.746994F));
+ builder.AddCubicBezier(new Vector2(60.0660019F, -184.867004F), new Vector2(58.8260002F, -183.660004F), new Vector2(57.9199982F, -182.126999F));
+ builder.AddCubicBezier(new Vector2(57.0130005F, -180.593002F), new Vector2(56.5600014F, -178.867004F), new Vector2(56.5600014F, -176.947006F));
+ builder.AddCubicBezier(new Vector2(56.5600014F, -174.973007F), new Vector2(57.026001F, -173.212997F), new Vector2(57.9599991F, -171.667007F));
+ builder.AddCubicBezier(new Vector2(58.8930016F, -170.119995F), new Vector2(60.1730003F, -168.912994F), new Vector2(61.7999992F, -168.046997F));
+ builder.AddCubicBezier(new Vector2(63.4259987F, -167.181F), new Vector2(65.2929993F, -166.746994F), new Vector2(67.4000015F, -166.746994F));
+ builder.AddCubicBezier(new Vector2(69.0530014F, -166.746994F), new Vector2(70.5599976F, -167.020996F), new Vector2(71.9199982F, -167.567001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1505()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(55.0800018F, -167.186996F));
+ builder.AddLine(new Vector2(55.0800018F, -172.707001F));
+ builder.AddLine(new Vector2(41.1199989F, -172.707001F));
+ builder.AddLine(new Vector2(41.1199989F, -167.186996F));
+ builder.AddLine(new Vector2(55.0800018F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(42.5600014F, -167.186996F));
+ builder.AddLine(new Vector2(42.5600014F, -195.427002F));
+ builder.AddLine(new Vector2(36.2400017F, -195.427002F));
+ builder.AddLine(new Vector2(36.2400017F, -167.186996F));
+ builder.AddLine(new Vector2(42.5600014F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1506()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(29.2399998F, -196.106995F));
+ builder.AddLine(new Vector2(26.5599995F, -191.147003F));
+ builder.AddCubicBezier(new Vector2(26.2399998F, -190.479996F), new Vector2(26.0130005F, -189.940002F), new Vector2(25.8799992F, -189.526993F));
+ builder.AddCubicBezier(new Vector2(25.7460003F, -189.113007F), new Vector2(25.6800003F, -188.759995F), new Vector2(25.6800003F, -188.466995F));
+ builder.AddCubicBezier(new Vector2(25.6800003F, -187.720001F), new Vector2(25.9459991F, -187.080002F), new Vector2(26.4799995F, -186.546997F));
+ builder.AddCubicBezier(new Vector2(27.0130005F, -186.013F), new Vector2(27.6399994F, -185.746994F), new Vector2(28.3600006F, -185.746994F));
+ builder.AddCubicBezier(new Vector2(29.0799999F, -185.746994F), new Vector2(29.7000008F, -186.013F), new Vector2(30.2199993F, -186.546997F));
+ builder.AddCubicBezier(new Vector2(30.7399998F, -187.080002F), new Vector2(31F, -187.720001F), new Vector2(31F, -188.466995F));
+ builder.AddCubicBezier(new Vector2(31F, -189.186996F), new Vector2(30.7660007F, -189.772995F), new Vector2(30.2999992F, -190.227005F));
+ builder.AddCubicBezier(new Vector2(29.8330002F, -190.679993F), new Vector2(29.3199997F, -190.906998F), new Vector2(28.7600002F, -190.906998F));
+ builder.AddCubicBezier(new Vector2(28.493F, -190.906998F), new Vector2(28.2600002F, -190.813004F), new Vector2(28.0599995F, -190.626999F));
+ builder.AddCubicBezier(new Vector2(27.8600006F, -190.440002F), new Vector2(27.6930008F, -190.199997F), new Vector2(27.5599995F, -189.906998F));
+ builder.AddLine(new Vector2(28.7999992F, -190.227005F));
+ builder.AddLine(new Vector2(31.2800007F, -194.987F));
+ builder.AddLine(new Vector2(29.2399998F, -196.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(21.8799992F, -196.106995F));
+ builder.AddLine(new Vector2(19.2000008F, -191.147003F));
+ builder.AddCubicBezier(new Vector2(18.8530006F, -190.479996F), new Vector2(18.6200008F, -189.940002F), new Vector2(18.5F, -189.526993F));
+ builder.AddCubicBezier(new Vector2(18.3799992F, -189.113007F), new Vector2(18.3199997F, -188.759995F), new Vector2(18.3199997F, -188.466995F));
+ builder.AddCubicBezier(new Vector2(18.3199997F, -187.720001F), new Vector2(18.5860004F, -187.080002F), new Vector2(19.1200008F, -186.546997F));
+ builder.AddCubicBezier(new Vector2(19.6529999F, -186.013F), new Vector2(20.2800007F, -185.746994F), new Vector2(21F, -185.746994F));
+ builder.AddCubicBezier(new Vector2(21.7199993F, -185.746994F), new Vector2(22.3400002F, -186.013F), new Vector2(22.8600006F, -186.546997F));
+ builder.AddCubicBezier(new Vector2(23.3799992F, -187.080002F), new Vector2(23.6399994F, -187.720001F), new Vector2(23.6399994F, -188.466995F));
+ builder.AddCubicBezier(new Vector2(23.6399994F, -189.186996F), new Vector2(23.4060001F, -189.772995F), new Vector2(22.9400005F, -190.227005F));
+ builder.AddCubicBezier(new Vector2(22.4729996F, -190.679993F), new Vector2(21.9599991F, -190.906998F), new Vector2(21.3999996F, -190.906998F));
+ builder.AddCubicBezier(new Vector2(21.1329994F, -190.906998F), new Vector2(20.8999996F, -190.813004F), new Vector2(20.7000008F, -190.626999F));
+ builder.AddCubicBezier(new Vector2(20.5F, -190.440002F), new Vector2(20.3330002F, -190.199997F), new Vector2(20.2000008F, -189.906998F));
+ builder.AddLine(new Vector2(21.4400005F, -190.227005F));
+ builder.AddLine(new Vector2(23.9200001F, -194.987F));
+ builder.AddLine(new Vector2(21.8799992F, -196.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1507()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(2.20000005F, -167.626999F));
+ builder.AddCubicBezier(new Vector2(3.50600004F, -168.186996F), new Vector2(4.62599993F, -169F), new Vector2(5.55999994F, -170.067001F));
+ builder.AddLine(new Vector2(3.24000001F, -172.427002F));
+ builder.AddCubicBezier(new Vector2(2.5999999F, -171.679993F), new Vector2(1.83299994F, -171.119995F), new Vector2(0.939999998F, -170.746994F));
+ builder.AddCubicBezier(new Vector2(0.0460000001F, -170.373001F), new Vector2(-0.934000015F, -170.186996F), new Vector2(-2F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-3.27999997F, -170.186996F), new Vector2(-4.41400003F, -170.460007F), new Vector2(-5.4000001F, -171.007004F));
+ builder.AddCubicBezier(new Vector2(-6.38700008F, -171.552994F), new Vector2(-7.14699984F, -172.326996F), new Vector2(-7.67999983F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-8.21399975F, -174.326996F), new Vector2(-8.47999954F, -175.492996F), new Vector2(-8.47999954F, -176.826996F));
+ builder.AddCubicBezier(new Vector2(-8.47999954F, -178.132996F), new Vector2(-8.22700024F, -179.266998F), new Vector2(-7.71999979F, -180.227005F));
+ builder.AddCubicBezier(new Vector2(-7.21400023F, -181.186996F), new Vector2(-6.49399996F, -181.932999F), new Vector2(-5.55999994F, -182.466995F));
+ builder.AddCubicBezier(new Vector2(-4.62699986F, -183F), new Vector2(-3.54699993F, -183.266998F), new Vector2(-2.31999993F, -183.266998F));
+ builder.AddCubicBezier(new Vector2(-1.14699996F, -183.266998F), new Vector2(-0.147F, -183.020004F), new Vector2(0.680000007F, -182.526993F));
+ builder.AddCubicBezier(new Vector2(1.50600004F, -182.033005F), new Vector2(2.14599991F, -181.339996F), new Vector2(2.5999999F, -180.447006F));
+ builder.AddCubicBezier(new Vector2(3.05299997F, -179.552994F), new Vector2(3.27999997F, -178.466995F), new Vector2(3.27999997F, -177.186996F));
+ builder.AddLine(new Vector2(4.5999999F, -178.347F));
+ builder.AddLine(new Vector2(-9.52000046F, -178.347F));
+ builder.AddLine(new Vector2(-9.52000046F, -175.347F));
+ builder.AddLine(new Vector2(6.51999998F, -175.347F));
+ builder.AddCubicBezier(new Vector2(6.5999999F, -175.720001F), new Vector2(6.65299988F, -176.059998F), new Vector2(6.67999983F, -176.367004F));
+ builder.AddCubicBezier(new Vector2(6.70599985F, -176.673004F), new Vector2(6.71999979F, -176.960007F), new Vector2(6.71999979F, -177.227005F));
+ builder.AddCubicBezier(new Vector2(6.71999979F, -179.039993F), new Vector2(6.34000015F, -180.653F), new Vector2(5.57999992F, -182.067001F));
+ builder.AddCubicBezier(new Vector2(4.82000017F, -183.479996F), new Vector2(3.75999999F, -184.587006F), new Vector2(2.4000001F, -185.386993F));
+ builder.AddCubicBezier(new Vector2(1.03999996F, -186.186996F), new Vector2(-0.507000029F, -186.587006F), new Vector2(-2.24000001F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-4.07999992F, -186.587006F), new Vector2(-5.73999977F, -186.153F), new Vector2(-7.21999979F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(-8.69999981F, -184.419998F), new Vector2(-9.8739996F, -183.240005F), new Vector2(-10.7399998F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(-11.6070004F, -180.253006F), new Vector2(-12.04F, -178.572998F), new Vector2(-12.04F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-12.04F, -174.813004F), new Vector2(-11.6000004F, -173.119995F), new Vector2(-10.7200003F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-9.84000015F, -170.132996F), new Vector2(-8.64700031F, -168.953003F), new Vector2(-7.13999987F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-5.63399982F, -167.220001F), new Vector2(-3.92000008F, -166.787003F), new Vector2(-2F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-0.507000029F, -166.787003F), new Vector2(0.893000007F, -167.067001F), new Vector2(2.20000005F, -167.626999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1508()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-29.1200008F, -167.186996F));
+ builder.AddLine(new Vector2(-29.1200008F, -195.746994F));
+ builder.AddLine(new Vector2(-32.7200012F, -195.746994F));
+ builder.AddLine(new Vector2(-32.7200012F, -167.186996F));
+ builder.AddLine(new Vector2(-29.1200008F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-15.6800003F, -167.186996F));
+ builder.AddLine(new Vector2(-15.6800003F, -178.987F));
+ builder.AddCubicBezier(new Vector2(-15.6800003F, -180.479996F), new Vector2(-16F, -181.800003F), new Vector2(-16.6399994F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(-17.2800007F, -184.093002F), new Vector2(-18.1539993F, -184.987F), new Vector2(-19.2600002F, -185.626999F));
+ builder.AddCubicBezier(new Vector2(-20.3670006F, -186.266998F), new Vector2(-21.6399994F, -186.587006F), new Vector2(-23.0799999F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-24.5200005F, -186.587006F), new Vector2(-25.8139992F, -186.259995F), new Vector2(-26.9599991F, -185.606995F));
+ builder.AddCubicBezier(new Vector2(-28.1070004F, -184.953003F), new Vector2(-29F, -184.067001F), new Vector2(-29.6399994F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(-30.2800007F, -181.826996F), new Vector2(-30.6000004F, -180.546997F), new Vector2(-30.6000004F, -179.106995F));
+ builder.AddLine(new Vector2(-29.1200008F, -178.266998F));
+ builder.AddCubicBezier(new Vector2(-29.1200008F, -179.227005F), new Vector2(-28.9069996F, -180.080002F), new Vector2(-28.4799995F, -180.826996F));
+ builder.AddCubicBezier(new Vector2(-28.0540009F, -181.572998F), new Vector2(-27.4669991F, -182.160004F), new Vector2(-26.7199993F, -182.587006F));
+ builder.AddCubicBezier(new Vector2(-25.9740009F, -183.013F), new Vector2(-25.1200008F, -183.227005F), new Vector2(-24.1599998F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-22.7199993F, -183.227005F), new Vector2(-21.5540009F, -182.759995F), new Vector2(-20.6599998F, -181.826996F));
+ builder.AddCubicBezier(new Vector2(-19.7670002F, -180.893005F), new Vector2(-19.3199997F, -179.707001F), new Vector2(-19.3199997F, -178.266998F));
+ builder.AddLine(new Vector2(-19.3199997F, -167.186996F));
+ builder.AddLine(new Vector2(-15.6800003F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1509()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-36.2400017F, -182.906998F));
+ builder.AddLine(new Vector2(-36.2400017F, -186.186996F));
+ builder.AddLine(new Vector2(-49.2000008F, -186.186996F));
+ builder.AddLine(new Vector2(-49.2000008F, -182.906998F));
+ builder.AddLine(new Vector2(-36.2400017F, -182.906998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-40.9199982F, -167.186996F));
+ builder.AddLine(new Vector2(-40.9199982F, -194.147003F));
+ builder.AddLine(new Vector2(-44.5200005F, -194.147003F));
+ builder.AddLine(new Vector2(-44.5200005F, -167.186996F));
+ builder.AddLine(new Vector2(-40.9199982F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1510()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-72.0400009F, -167.186996F));
+ builder.AddLine(new Vector2(-72.0400009F, -195.746994F));
+ builder.AddLine(new Vector2(-75.6399994F, -195.746994F));
+ builder.AddLine(new Vector2(-75.6399994F, -167.186996F));
+ builder.AddLine(new Vector2(-72.0400009F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-58.8400002F, -167.186996F));
+ builder.AddLine(new Vector2(-68.8399963F, -178.026993F));
+ builder.AddLine(new Vector2(-69F, -175.947006F));
+ builder.AddLine(new Vector2(-59.2000008F, -186.186996F));
+ builder.AddLine(new Vector2(-63.5999985F, -186.186996F));
+ builder.AddLine(new Vector2(-72.3600006F, -176.906998F));
+ builder.AddLine(new Vector2(-63.4799995F, -167.186996F));
+ builder.AddLine(new Vector2(-58.8400002F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1511()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-82.4199982F, -167.626999F));
+ builder.AddCubicBezier(new Vector2(-81.1539993F, -168.186996F), new Vector2(-80.0800018F, -168.973007F), new Vector2(-79.1999969F, -169.987F));
+ builder.AddLine(new Vector2(-81.5599976F, -172.386993F));
+ builder.AddCubicBezier(new Vector2(-82.1740036F, -171.692993F), new Vector2(-82.9000015F, -171.167007F), new Vector2(-83.7399979F, -170.807007F));
+ builder.AddCubicBezier(new Vector2(-84.5800018F, -170.447006F), new Vector2(-85.5070038F, -170.266998F), new Vector2(-86.5199966F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(-87.7200012F, -170.266998F), new Vector2(-88.7870026F, -170.546997F), new Vector2(-89.7200012F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(-90.6539993F, -171.667007F), new Vector2(-91.387001F, -172.427002F), new Vector2(-91.9199982F, -173.386993F));
+ builder.AddCubicBezier(new Vector2(-92.4540024F, -174.347F), new Vector2(-92.7200012F, -175.453003F), new Vector2(-92.7200012F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-92.7200012F, -177.960007F), new Vector2(-92.4540024F, -179.067001F), new Vector2(-91.9199982F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(-91.387001F, -180.987F), new Vector2(-90.6539993F, -181.740005F), new Vector2(-89.7200012F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(-88.7870026F, -182.832993F), new Vector2(-87.7200012F, -183.106995F), new Vector2(-86.5199966F, -183.106995F));
+ builder.AddCubicBezier(new Vector2(-85.5339966F, -183.106995F), new Vector2(-84.6139984F, -182.927002F), new Vector2(-83.7600021F, -182.567001F));
+ builder.AddCubicBezier(new Vector2(-82.9069977F, -182.207001F), new Vector2(-82.1869965F, -181.679993F), new Vector2(-81.5999985F, -180.987F));
+ builder.AddLine(new Vector2(-79.1999969F, -183.386993F));
+ builder.AddCubicBezier(new Vector2(-80.1070023F, -184.427002F), new Vector2(-81.1869965F, -185.220001F), new Vector2(-82.4400024F, -185.766998F));
+ builder.AddCubicBezier(new Vector2(-83.6940002F, -186.313004F), new Vector2(-85.0540009F, -186.587006F), new Vector2(-86.5199966F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-88.387001F, -186.587006F), new Vector2(-90.0739975F, -186.153F), new Vector2(-91.5800018F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(-93.086998F, -184.419998F), new Vector2(-94.2740021F, -183.240005F), new Vector2(-95.1399994F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(-96.0070038F, -180.253006F), new Vector2(-96.4400024F, -178.572998F), new Vector2(-96.4400024F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-96.4400024F, -174.867004F), new Vector2(-96.0070038F, -173.192993F), new Vector2(-95.1399994F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(-94.2740021F, -170.179993F), new Vector2(-93.086998F, -168.987F), new Vector2(-91.5800018F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(-90.0739975F, -167.227005F), new Vector2(-88.387001F, -166.787003F), new Vector2(-86.5199966F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-85.0540009F, -166.787003F), new Vector2(-83.6869965F, -167.067001F), new Vector2(-82.4199982F, -167.626999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1512()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-100.68F, -190.647003F));
+ builder.AddCubicBezier(new Vector2(-100.253998F, -191.087006F), new Vector2(-100.040001F, -191.639999F), new Vector2(-100.040001F, -192.307007F));
+ builder.AddCubicBezier(new Vector2(-100.040001F, -192.947006F), new Vector2(-100.253998F, -193.487F), new Vector2(-100.68F, -193.927002F));
+ builder.AddCubicBezier(new Vector2(-101.107002F, -194.367004F), new Vector2(-101.653999F, -194.587006F), new Vector2(-102.32F, -194.587006F));
+ builder.AddCubicBezier(new Vector2(-102.987F, -194.587006F), new Vector2(-103.533997F, -194.367004F), new Vector2(-103.959999F, -193.927002F));
+ builder.AddCubicBezier(new Vector2(-104.387001F, -193.487F), new Vector2(-104.599998F, -192.947006F), new Vector2(-104.599998F, -192.307007F));
+ builder.AddCubicBezier(new Vector2(-104.599998F, -191.639999F), new Vector2(-104.387001F, -191.087006F), new Vector2(-103.959999F, -190.647003F));
+ builder.AddCubicBezier(new Vector2(-103.533997F, -190.207001F), new Vector2(-102.987F, -189.987F), new Vector2(-102.32F, -189.987F));
+ builder.AddCubicBezier(new Vector2(-101.653999F, -189.987F), new Vector2(-101.107002F, -190.207001F), new Vector2(-100.68F, -190.647003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-100.519997F, -167.186996F));
+ builder.AddLine(new Vector2(-100.519997F, -186.186996F));
+ builder.AddLine(new Vector2(-104.160004F, -186.186996F));
+ builder.AddLine(new Vector2(-104.160004F, -167.186996F));
+ builder.AddLine(new Vector2(-100.519997F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1513()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-109.440002F, -167.186996F));
+ builder.AddLine(new Vector2(-109.440002F, -195.746994F));
+ builder.AddLine(new Vector2(-113.040001F, -195.746994F));
+ builder.AddLine(new Vector2(-113.040001F, -167.186996F));
+ builder.AddLine(new Vector2(-109.440002F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1514()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-119.82F, -167.626999F));
+ builder.AddCubicBezier(new Vector2(-118.554001F, -168.186996F), new Vector2(-117.480003F, -168.973007F), new Vector2(-116.599998F, -169.987F));
+ builder.AddLine(new Vector2(-118.959999F, -172.386993F));
+ builder.AddCubicBezier(new Vector2(-119.573997F, -171.692993F), new Vector2(-120.300003F, -171.167007F), new Vector2(-121.139999F, -170.807007F));
+ builder.AddCubicBezier(new Vector2(-121.980003F, -170.447006F), new Vector2(-122.906998F, -170.266998F), new Vector2(-123.919998F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(-125.120003F, -170.266998F), new Vector2(-126.186996F, -170.546997F), new Vector2(-127.120003F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(-128.054001F, -171.667007F), new Vector2(-128.787003F, -172.427002F), new Vector2(-129.320007F, -173.386993F));
+ builder.AddCubicBezier(new Vector2(-129.854004F, -174.347F), new Vector2(-130.119995F, -175.453003F), new Vector2(-130.119995F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-130.119995F, -177.960007F), new Vector2(-129.854004F, -179.067001F), new Vector2(-129.320007F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(-128.787003F, -180.987F), new Vector2(-128.054001F, -181.740005F), new Vector2(-127.120003F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(-126.186996F, -182.832993F), new Vector2(-125.120003F, -183.106995F), new Vector2(-123.919998F, -183.106995F));
+ builder.AddCubicBezier(new Vector2(-122.933998F, -183.106995F), new Vector2(-122.014F, -182.927002F), new Vector2(-121.160004F, -182.567001F));
+ builder.AddCubicBezier(new Vector2(-120.306999F, -182.207001F), new Vector2(-119.586998F, -181.679993F), new Vector2(-119F, -180.987F));
+ builder.AddLine(new Vector2(-116.599998F, -183.386993F));
+ builder.AddCubicBezier(new Vector2(-117.507004F, -184.427002F), new Vector2(-118.586998F, -185.220001F), new Vector2(-119.839996F, -185.766998F));
+ builder.AddCubicBezier(new Vector2(-121.094002F, -186.313004F), new Vector2(-122.454002F, -186.587006F), new Vector2(-123.919998F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-125.787003F, -186.587006F), new Vector2(-127.473999F, -186.153F), new Vector2(-128.979996F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(-130.487F, -184.419998F), new Vector2(-131.673996F, -183.240005F), new Vector2(-132.539993F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(-133.406998F, -180.253006F), new Vector2(-133.839996F, -178.572998F), new Vector2(-133.839996F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-133.839996F, -174.867004F), new Vector2(-133.406998F, -173.192993F), new Vector2(-132.539993F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(-131.673996F, -170.179993F), new Vector2(-130.487F, -168.987F), new Vector2(-128.979996F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(-127.473999F, -167.227005F), new Vector2(-125.787003F, -166.787003F), new Vector2(-123.919998F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-122.454002F, -166.787003F), new Vector2(-121.086998F, -167.067001F), new Vector2(-119.82F, -167.626999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1515()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-149.639999F, -161.667007F));
+ builder.AddLine(new Vector2(-146.960007F, -166.626999F));
+ builder.AddCubicBezier(new Vector2(-146.613998F, -167.292999F), new Vector2(-146.380005F, -167.832993F), new Vector2(-146.259995F, -168.246994F));
+ builder.AddCubicBezier(new Vector2(-146.139999F, -168.660004F), new Vector2(-146.080002F, -169.013F), new Vector2(-146.080002F, -169.307007F));
+ builder.AddCubicBezier(new Vector2(-146.080002F, -170.080002F), new Vector2(-146.347F, -170.727005F), new Vector2(-146.880005F, -171.246994F));
+ builder.AddCubicBezier(new Vector2(-147.414001F, -171.766998F), new Vector2(-148.026993F, -172.026993F), new Vector2(-148.720001F, -172.026993F));
+ builder.AddCubicBezier(new Vector2(-149.494003F, -172.026993F), new Vector2(-150.134003F, -171.766998F), new Vector2(-150.639999F, -171.246994F));
+ builder.AddCubicBezier(new Vector2(-151.147003F, -170.727005F), new Vector2(-151.399994F, -170.080002F), new Vector2(-151.399994F, -169.307007F));
+ builder.AddCubicBezier(new Vector2(-151.399994F, -168.613007F), new Vector2(-151.167007F, -168.033005F), new Vector2(-150.699997F, -167.567001F));
+ builder.AddCubicBezier(new Vector2(-150.233994F, -167.100998F), new Vector2(-149.720001F, -166.867004F), new Vector2(-149.160004F, -166.867004F));
+ builder.AddCubicBezier(new Vector2(-148.893997F, -166.867004F), new Vector2(-148.654007F, -166.960999F), new Vector2(-148.440002F, -167.147003F));
+ builder.AddCubicBezier(new Vector2(-148.227005F, -167.332993F), new Vector2(-148.054001F, -167.572998F), new Vector2(-147.919998F, -167.867004F));
+ builder.AddLine(new Vector2(-149.199997F, -167.546997F));
+ builder.AddLine(new Vector2(-151.679993F, -162.787003F));
+ builder.AddLine(new Vector2(-149.639999F, -161.667007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1516()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-169.580002F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(-170.5F, -172.207001F), new Vector2(-171.220001F, -172.932999F), new Vector2(-171.740005F, -173.867004F));
+ builder.AddCubicBezier(new Vector2(-172.259995F, -174.800003F), new Vector2(-172.520004F, -175.867004F), new Vector2(-172.520004F, -177.067001F));
+ builder.AddCubicBezier(new Vector2(-172.520004F, -178.266998F), new Vector2(-172.259995F, -179.326996F), new Vector2(-171.740005F, -180.246994F));
+ builder.AddCubicBezier(new Vector2(-171.220001F, -181.167007F), new Vector2(-170.507004F, -181.886993F), new Vector2(-169.600006F, -182.406998F));
+ builder.AddCubicBezier(new Vector2(-168.694F, -182.927002F), new Vector2(-167.639999F, -183.186996F), new Vector2(-166.440002F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-165.266998F, -183.186996F), new Vector2(-164.233994F, -182.927002F), new Vector2(-163.339996F, -182.406998F));
+ builder.AddCubicBezier(new Vector2(-162.447006F, -181.886993F), new Vector2(-161.753998F, -181.167007F), new Vector2(-161.259995F, -180.246994F));
+ builder.AddCubicBezier(new Vector2(-160.766998F, -179.326996F), new Vector2(-160.520004F, -178.253006F), new Vector2(-160.520004F, -177.026993F));
+ builder.AddCubicBezier(new Vector2(-160.520004F, -175.800003F), new Vector2(-160.766998F, -174.727005F), new Vector2(-161.259995F, -173.807007F));
+ builder.AddCubicBezier(new Vector2(-161.753998F, -172.886993F), new Vector2(-162.440002F, -172.173004F), new Vector2(-163.320007F, -171.667007F));
+ builder.AddCubicBezier(new Vector2(-164.199997F, -171.160004F), new Vector2(-165.240005F, -170.906998F), new Vector2(-166.440002F, -170.906998F));
+ builder.AddCubicBezier(new Vector2(-167.613998F, -170.906998F), new Vector2(-168.660004F, -171.167007F), new Vector2(-169.580002F, -171.686996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-163.199997F, -168.386993F));
+ builder.AddCubicBezier(new Vector2(-162.054001F, -168.973007F), new Vector2(-161.139999F, -169.792999F), new Vector2(-160.460007F, -170.847F));
+ builder.AddCubicBezier(new Vector2(-159.779999F, -171.899994F), new Vector2(-159.399994F, -173.119995F), new Vector2(-159.320007F, -174.507004F));
+ builder.AddLine(new Vector2(-159.320007F, -179.546997F));
+ builder.AddCubicBezier(new Vector2(-159.399994F, -180.960007F), new Vector2(-159.774002F, -182.192993F), new Vector2(-160.440002F, -183.246994F));
+ builder.AddCubicBezier(new Vector2(-161.106995F, -184.300003F), new Vector2(-162.020004F, -185.119995F), new Vector2(-163.179993F, -185.707001F));
+ builder.AddCubicBezier(new Vector2(-164.339996F, -186.292999F), new Vector2(-165.667007F, -186.587006F), new Vector2(-167.160004F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-168.867004F, -186.587006F), new Vector2(-170.414001F, -186.167007F), new Vector2(-171.800003F, -185.326996F));
+ builder.AddCubicBezier(new Vector2(-173.186996F, -184.487F), new Vector2(-174.274002F, -183.352997F), new Vector2(-175.059998F, -181.927002F));
+ builder.AddCubicBezier(new Vector2(-175.847F, -180.5F), new Vector2(-176.240005F, -178.880005F), new Vector2(-176.240005F, -177.067001F));
+ builder.AddCubicBezier(new Vector2(-176.240005F, -175.253006F), new Vector2(-175.839996F, -173.619995F), new Vector2(-175.039993F, -172.167007F));
+ builder.AddCubicBezier(new Vector2(-174.240005F, -170.712997F), new Vector2(-173.154007F, -169.572998F), new Vector2(-171.779999F, -168.746994F));
+ builder.AddCubicBezier(new Vector2(-170.406998F, -167.919998F), new Vector2(-168.854004F, -167.507004F), new Vector2(-167.119995F, -167.507004F));
+ builder.AddCubicBezier(new Vector2(-165.654007F, -167.507004F), new Vector2(-164.347F, -167.800003F), new Vector2(-163.199997F, -168.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-161.899994F, -159.966995F));
+ builder.AddCubicBezier(new Vector2(-160.393997F, -160.727005F), new Vector2(-159.220001F, -161.794006F), new Vector2(-158.380005F, -163.167007F));
+ builder.AddCubicBezier(new Vector2(-157.539993F, -164.541F), new Vector2(-157.119995F, -166.134003F), new Vector2(-157.119995F, -167.947006F));
+ builder.AddLine(new Vector2(-157.119995F, -186.186996F));
+ builder.AddLine(new Vector2(-160.720001F, -186.186996F));
+ builder.AddLine(new Vector2(-160.720001F, -181.186996F));
+ builder.AddLine(new Vector2(-160.080002F, -176.947006F));
+ builder.AddLine(new Vector2(-160.720001F, -172.667007F));
+ builder.AddLine(new Vector2(-160.720001F, -167.947006F));
+ builder.AddCubicBezier(new Vector2(-160.720001F, -166.214005F), new Vector2(-161.294006F, -164.834F), new Vector2(-162.440002F, -163.807007F));
+ builder.AddCubicBezier(new Vector2(-163.587006F, -162.781006F), new Vector2(-165.119995F, -162.266998F), new Vector2(-167.039993F, -162.266998F));
+ builder.AddCubicBezier(new Vector2(-168.507004F, -162.266998F), new Vector2(-169.774002F, -162.526993F), new Vector2(-170.839996F, -163.046997F));
+ builder.AddCubicBezier(new Vector2(-171.906998F, -163.567001F), new Vector2(-172.826996F, -164.320999F), new Vector2(-173.600006F, -165.307007F));
+ builder.AddLine(new Vector2(-175.960007F, -162.947006F));
+ builder.AddCubicBezier(new Vector2(-175.026993F, -161.641006F), new Vector2(-173.813995F, -160.626999F), new Vector2(-172.320007F, -159.906998F));
+ builder.AddCubicBezier(new Vector2(-170.826996F, -159.186996F), new Vector2(-169.093994F, -158.826996F), new Vector2(-167.119995F, -158.826996F));
+ builder.AddCubicBezier(new Vector2(-165.147003F, -158.826996F), new Vector2(-163.406998F, -159.207001F), new Vector2(-161.899994F, -159.966995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1517()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-193.320007F, -167.186996F));
+ builder.AddLine(new Vector2(-193.320007F, -186.186996F));
+ builder.AddLine(new Vector2(-196.919998F, -186.186996F));
+ builder.AddLine(new Vector2(-196.919998F, -167.186996F));
+ builder.AddLine(new Vector2(-193.320007F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-179.880005F, -167.186996F));
+ builder.AddLine(new Vector2(-179.880005F, -178.987F));
+ builder.AddCubicBezier(new Vector2(-179.880005F, -180.292999F), new Vector2(-180.199997F, -181.526993F), new Vector2(-180.839996F, -182.686996F));
+ builder.AddCubicBezier(new Vector2(-181.479996F, -183.847F), new Vector2(-182.354004F, -184.787003F), new Vector2(-183.460007F, -185.507004F));
+ builder.AddCubicBezier(new Vector2(-184.567001F, -186.227005F), new Vector2(-185.839996F, -186.587006F), new Vector2(-187.279999F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-188.720001F, -186.587006F), new Vector2(-190.014008F, -186.259995F), new Vector2(-191.160004F, -185.606995F));
+ builder.AddCubicBezier(new Vector2(-192.307007F, -184.953003F), new Vector2(-193.199997F, -184.067001F), new Vector2(-193.839996F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(-194.479996F, -181.826996F), new Vector2(-194.800003F, -180.546997F), new Vector2(-194.800003F, -179.106995F));
+ builder.AddLine(new Vector2(-193.320007F, -178.266998F));
+ builder.AddCubicBezier(new Vector2(-193.320007F, -179.227005F), new Vector2(-193.106995F, -180.080002F), new Vector2(-192.679993F, -180.826996F));
+ builder.AddCubicBezier(new Vector2(-192.253998F, -181.572998F), new Vector2(-191.667007F, -182.160004F), new Vector2(-190.919998F, -182.587006F));
+ builder.AddCubicBezier(new Vector2(-190.173996F, -183.013F), new Vector2(-189.320007F, -183.227005F), new Vector2(-188.360001F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-186.919998F, -183.227005F), new Vector2(-185.753998F, -182.759995F), new Vector2(-184.860001F, -181.826996F));
+ builder.AddCubicBezier(new Vector2(-183.966995F, -180.893005F), new Vector2(-183.520004F, -179.707001F), new Vector2(-183.520004F, -178.266998F));
+ builder.AddLine(new Vector2(-183.520004F, -167.186996F));
+ builder.AddLine(new Vector2(-179.880005F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1518()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-202.399994F, -190.647003F));
+ builder.AddCubicBezier(new Vector2(-201.973999F, -191.087006F), new Vector2(-201.759995F, -191.639999F), new Vector2(-201.759995F, -192.307007F));
+ builder.AddCubicBezier(new Vector2(-201.759995F, -192.947006F), new Vector2(-201.973999F, -193.487F), new Vector2(-202.399994F, -193.927002F));
+ builder.AddCubicBezier(new Vector2(-202.826996F, -194.367004F), new Vector2(-203.373993F, -194.587006F), new Vector2(-204.039993F, -194.587006F));
+ builder.AddCubicBezier(new Vector2(-204.707001F, -194.587006F), new Vector2(-205.253998F, -194.367004F), new Vector2(-205.679993F, -193.927002F));
+ builder.AddCubicBezier(new Vector2(-206.106995F, -193.487F), new Vector2(-206.320007F, -192.947006F), new Vector2(-206.320007F, -192.307007F));
+ builder.AddCubicBezier(new Vector2(-206.320007F, -191.639999F), new Vector2(-206.106995F, -191.087006F), new Vector2(-205.679993F, -190.647003F));
+ builder.AddCubicBezier(new Vector2(-205.253998F, -190.207001F), new Vector2(-204.707001F, -189.987F), new Vector2(-204.039993F, -189.987F));
+ builder.AddCubicBezier(new Vector2(-203.373993F, -189.987F), new Vector2(-202.826996F, -190.207001F), new Vector2(-202.399994F, -190.647003F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-202.240005F, -167.186996F));
+ builder.AddLine(new Vector2(-202.240005F, -186.186996F));
+ builder.AddLine(new Vector2(-205.880005F, -186.186996F));
+ builder.AddLine(new Vector2(-205.880005F, -167.186996F));
+ builder.AddLine(new Vector2(-202.240005F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1519()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-224.199997F, -167.186996F));
+ builder.AddLine(new Vector2(-224.199997F, -186.186996F));
+ builder.AddLine(new Vector2(-227.800003F, -186.186996F));
+ builder.AddLine(new Vector2(-227.800003F, -167.186996F));
+ builder.AddLine(new Vector2(-224.199997F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-210.759995F, -167.186996F));
+ builder.AddLine(new Vector2(-210.759995F, -178.987F));
+ builder.AddCubicBezier(new Vector2(-210.759995F, -180.292999F), new Vector2(-211.080002F, -181.526993F), new Vector2(-211.720001F, -182.686996F));
+ builder.AddCubicBezier(new Vector2(-212.360001F, -183.847F), new Vector2(-213.233994F, -184.787003F), new Vector2(-214.339996F, -185.507004F));
+ builder.AddCubicBezier(new Vector2(-215.447006F, -186.227005F), new Vector2(-216.720001F, -186.587006F), new Vector2(-218.160004F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-219.600006F, -186.587006F), new Vector2(-220.893997F, -186.259995F), new Vector2(-222.039993F, -185.606995F));
+ builder.AddCubicBezier(new Vector2(-223.186996F, -184.953003F), new Vector2(-224.080002F, -184.067001F), new Vector2(-224.720001F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(-225.360001F, -181.826996F), new Vector2(-225.679993F, -180.546997F), new Vector2(-225.679993F, -179.106995F));
+ builder.AddLine(new Vector2(-224.199997F, -178.266998F));
+ builder.AddCubicBezier(new Vector2(-224.199997F, -179.227005F), new Vector2(-223.987F, -180.080002F), new Vector2(-223.559998F, -180.826996F));
+ builder.AddCubicBezier(new Vector2(-223.134003F, -181.572998F), new Vector2(-222.546997F, -182.160004F), new Vector2(-221.800003F, -182.587006F));
+ builder.AddCubicBezier(new Vector2(-221.054001F, -183.013F), new Vector2(-220.199997F, -183.227005F), new Vector2(-219.240005F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-217.800003F, -183.227005F), new Vector2(-216.634003F, -182.759995F), new Vector2(-215.740005F, -181.826996F));
+ builder.AddCubicBezier(new Vector2(-214.847F, -180.893005F), new Vector2(-214.399994F, -179.707001F), new Vector2(-214.399994F, -178.266998F));
+ builder.AddLine(new Vector2(-214.399994F, -167.186996F));
+ builder.AddLine(new Vector2(-210.759995F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1520()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-236.240005F, -167.626999F));
+ builder.AddCubicBezier(new Vector2(-234.934006F, -168.186996F), new Vector2(-233.813995F, -169F), new Vector2(-232.880005F, -170.067001F));
+ builder.AddLine(new Vector2(-235.199997F, -172.427002F));
+ builder.AddCubicBezier(new Vector2(-235.839996F, -171.679993F), new Vector2(-236.606995F, -171.119995F), new Vector2(-237.5F, -170.746994F));
+ builder.AddCubicBezier(new Vector2(-238.393997F, -170.373001F), new Vector2(-239.373993F, -170.186996F), new Vector2(-240.440002F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-241.720001F, -170.186996F), new Vector2(-242.854004F, -170.460007F), new Vector2(-243.839996F, -171.007004F));
+ builder.AddCubicBezier(new Vector2(-244.826996F, -171.552994F), new Vector2(-245.587006F, -172.326996F), new Vector2(-246.119995F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-246.654007F, -174.326996F), new Vector2(-246.919998F, -175.492996F), new Vector2(-246.919998F, -176.826996F));
+ builder.AddCubicBezier(new Vector2(-246.919998F, -178.132996F), new Vector2(-246.667007F, -179.266998F), new Vector2(-246.160004F, -180.227005F));
+ builder.AddCubicBezier(new Vector2(-245.654007F, -181.186996F), new Vector2(-244.934006F, -181.932999F), new Vector2(-244F, -182.466995F));
+ builder.AddCubicBezier(new Vector2(-243.067001F, -183F), new Vector2(-241.987F, -183.266998F), new Vector2(-240.759995F, -183.266998F));
+ builder.AddCubicBezier(new Vector2(-239.587006F, -183.266998F), new Vector2(-238.587006F, -183.020004F), new Vector2(-237.759995F, -182.526993F));
+ builder.AddCubicBezier(new Vector2(-236.934006F, -182.033005F), new Vector2(-236.294006F, -181.339996F), new Vector2(-235.839996F, -180.447006F));
+ builder.AddCubicBezier(new Vector2(-235.386993F, -179.552994F), new Vector2(-235.160004F, -178.466995F), new Vector2(-235.160004F, -177.186996F));
+ builder.AddLine(new Vector2(-233.839996F, -178.347F));
+ builder.AddLine(new Vector2(-247.960007F, -178.347F));
+ builder.AddLine(new Vector2(-247.960007F, -175.347F));
+ builder.AddLine(new Vector2(-231.919998F, -175.347F));
+ builder.AddCubicBezier(new Vector2(-231.839996F, -175.720001F), new Vector2(-231.787003F, -176.059998F), new Vector2(-231.759995F, -176.367004F));
+ builder.AddCubicBezier(new Vector2(-231.733994F, -176.673004F), new Vector2(-231.720001F, -176.960007F), new Vector2(-231.720001F, -177.227005F));
+ builder.AddCubicBezier(new Vector2(-231.720001F, -179.039993F), new Vector2(-232.100006F, -180.653F), new Vector2(-232.860001F, -182.067001F));
+ builder.AddCubicBezier(new Vector2(-233.619995F, -183.479996F), new Vector2(-234.679993F, -184.587006F), new Vector2(-236.039993F, -185.386993F));
+ builder.AddCubicBezier(new Vector2(-237.399994F, -186.186996F), new Vector2(-238.947006F, -186.587006F), new Vector2(-240.679993F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-242.520004F, -186.587006F), new Vector2(-244.179993F, -186.153F), new Vector2(-245.660004F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(-247.139999F, -184.419998F), new Vector2(-248.313995F, -183.240005F), new Vector2(-249.179993F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(-250.046997F, -180.253006F), new Vector2(-250.479996F, -178.572998F), new Vector2(-250.479996F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-250.479996F, -174.813004F), new Vector2(-250.039993F, -173.119995F), new Vector2(-249.160004F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-248.279999F, -170.132996F), new Vector2(-247.087006F, -168.953003F), new Vector2(-245.580002F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-244.074005F, -167.220001F), new Vector2(-242.360001F, -166.787003F), new Vector2(-240.440002F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-238.947006F, -166.787003F), new Vector2(-237.546997F, -167.067001F), new Vector2(-236.240005F, -167.626999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1521()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-266.26001F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-267.179993F, -171.587006F), new Vector2(-267.886993F, -172.352997F), new Vector2(-268.380005F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-268.873993F, -174.300003F), new Vector2(-269.119995F, -175.412994F), new Vector2(-269.119995F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-269.119995F, -177.947006F), new Vector2(-268.867004F, -179.072998F), new Vector2(-268.359985F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-267.854004F, -181.020004F), new Vector2(-267.147003F, -181.787003F), new Vector2(-266.23999F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-265.334015F, -182.906998F), new Vector2(-264.294006F, -183.186996F), new Vector2(-263.119995F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-261.920013F, -183.186996F), new Vector2(-260.867004F, -182.906998F), new Vector2(-259.959991F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-259.053986F, -181.787003F), new Vector2(-258.339996F, -181.020004F), new Vector2(-257.820007F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-257.299988F, -179.072998F), new Vector2(-257.040009F, -177.960007F), new Vector2(-257.040009F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-257.040009F, -175.427002F), new Vector2(-257.299988F, -174.300003F), new Vector2(-257.820007F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-258.339996F, -172.352997F), new Vector2(-259.053986F, -171.587006F), new Vector2(-259.959991F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-260.867004F, -170.466995F), new Vector2(-261.920013F, -170.186996F), new Vector2(-263.119995F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-264.294006F, -170.186996F), new Vector2(-265.339996F, -170.466995F), new Vector2(-266.26001F, -171.026993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-268.920013F, -159.227005F));
+ builder.AddLine(new Vector2(-268.920013F, -171.947006F));
+ builder.AddLine(new Vector2(-269.600006F, -176.587006F));
+ builder.AddLine(new Vector2(-268.920013F, -181.186996F));
+ builder.AddLine(new Vector2(-268.920013F, -186.186996F));
+ builder.AddLine(new Vector2(-272.519989F, -186.186996F));
+ builder.AddLine(new Vector2(-272.519989F, -159.227005F));
+ builder.AddLine(new Vector2(-268.920013F, -159.227005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-257.820007F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-256.420013F, -168.953003F), new Vector2(-255.320007F, -170.132996F), new Vector2(-254.520004F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-253.720001F, -173.119995F), new Vector2(-253.320007F, -174.800003F), new Vector2(-253.320007F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-253.320007F, -178.533005F), new Vector2(-253.720001F, -180.212997F), new Vector2(-254.520004F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(-255.320007F, -183.199997F), new Vector2(-256.420013F, -184.386993F), new Vector2(-257.820007F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-259.220001F, -186.147003F), new Vector2(-260.786987F, -186.587006F), new Vector2(-262.519989F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-263.93399F, -186.587006F), new Vector2(-265.220001F, -186.287003F), new Vector2(-266.380005F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(-267.540009F, -185.087006F), new Vector2(-268.473999F, -184.259995F), new Vector2(-269.179993F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(-269.886993F, -182.153F), new Vector2(-270.279999F, -180.932999F), new Vector2(-270.359985F, -179.546997F));
+ builder.AddLine(new Vector2(-270.359985F, -173.826996F));
+ builder.AddCubicBezier(new Vector2(-270.279999F, -172.466995F), new Vector2(-269.894012F, -171.253006F), new Vector2(-269.200012F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-268.506989F, -169.119995F), new Vector2(-267.579987F, -168.287003F), new Vector2(-266.420013F, -167.686996F));
+ builder.AddCubicBezier(new Vector2(-265.26001F, -167.087006F), new Vector2(-263.959991F, -166.787003F), new Vector2(-262.519989F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-260.786987F, -166.787003F), new Vector2(-259.220001F, -167.220001F), new Vector2(-257.820007F, -168.087006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1522()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-289.540009F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-290.459991F, -171.587006F), new Vector2(-291.166992F, -172.352997F), new Vector2(-291.660004F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-292.153992F, -174.300003F), new Vector2(-292.399994F, -175.412994F), new Vector2(-292.399994F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-292.399994F, -177.947006F), new Vector2(-292.147003F, -179.072998F), new Vector2(-291.640015F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-291.134003F, -181.020004F), new Vector2(-290.427002F, -181.787003F), new Vector2(-289.519989F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-288.614014F, -182.906998F), new Vector2(-287.574005F, -183.186996F), new Vector2(-286.399994F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-285.200012F, -183.186996F), new Vector2(-284.147003F, -182.906998F), new Vector2(-283.23999F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-282.334015F, -181.787003F), new Vector2(-281.619995F, -181.020004F), new Vector2(-281.100006F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-280.579987F, -179.072998F), new Vector2(-280.320007F, -177.960007F), new Vector2(-280.320007F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-280.320007F, -175.427002F), new Vector2(-280.579987F, -174.300003F), new Vector2(-281.100006F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-281.619995F, -172.352997F), new Vector2(-282.334015F, -171.587006F), new Vector2(-283.23999F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-284.147003F, -170.466995F), new Vector2(-285.200012F, -170.186996F), new Vector2(-286.399994F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-287.574005F, -170.186996F), new Vector2(-288.619995F, -170.466995F), new Vector2(-289.540009F, -171.026993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-292.200012F, -159.227005F));
+ builder.AddLine(new Vector2(-292.200012F, -171.947006F));
+ builder.AddLine(new Vector2(-292.880005F, -176.587006F));
+ builder.AddLine(new Vector2(-292.200012F, -181.186996F));
+ builder.AddLine(new Vector2(-292.200012F, -186.186996F));
+ builder.AddLine(new Vector2(-295.799988F, -186.186996F));
+ builder.AddLine(new Vector2(-295.799988F, -159.227005F));
+ builder.AddLine(new Vector2(-292.200012F, -159.227005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-281.100006F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-279.700012F, -168.953003F), new Vector2(-278.600006F, -170.132996F), new Vector2(-277.799988F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-277F, -173.119995F), new Vector2(-276.600006F, -174.800003F), new Vector2(-276.600006F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-276.600006F, -178.533005F), new Vector2(-277F, -180.212997F), new Vector2(-277.799988F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(-278.600006F, -183.199997F), new Vector2(-279.700012F, -184.386993F), new Vector2(-281.100006F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-282.5F, -186.147003F), new Vector2(-284.066986F, -186.587006F), new Vector2(-285.799988F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-287.213989F, -186.587006F), new Vector2(-288.5F, -186.287003F), new Vector2(-289.660004F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(-290.820007F, -185.087006F), new Vector2(-291.753998F, -184.259995F), new Vector2(-292.459991F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(-293.166992F, -182.153F), new Vector2(-293.559998F, -180.932999F), new Vector2(-293.640015F, -179.546997F));
+ builder.AddLine(new Vector2(-293.640015F, -173.826996F));
+ builder.AddCubicBezier(new Vector2(-293.559998F, -172.466995F), new Vector2(-293.174011F, -171.253006F), new Vector2(-292.480011F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-291.786987F, -169.119995F), new Vector2(-290.859985F, -168.287003F), new Vector2(-289.700012F, -167.686996F));
+ builder.AddCubicBezier(new Vector2(-288.540009F, -167.087006F), new Vector2(-287.23999F, -166.787003F), new Vector2(-285.799988F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-284.066986F, -166.787003F), new Vector2(-282.5F, -167.220001F), new Vector2(-281.100006F, -168.087006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1523()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-301.040009F, -167.186996F));
+ builder.AddLine(new Vector2(-301.040009F, -186.186996F));
+ builder.AddLine(new Vector2(-304.679993F, -186.186996F));
+ builder.AddLine(new Vector2(-304.679993F, -181.546997F));
+ builder.AddLine(new Vector2(-304F, -176.947006F));
+ builder.AddLine(new Vector2(-304.679993F, -172.307007F));
+ builder.AddLine(new Vector2(-304.679993F, -167.186996F));
+ builder.AddLine(new Vector2(-301.040009F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-313.600006F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-314.533997F, -171.587006F), new Vector2(-315.26001F, -172.352997F), new Vector2(-315.779999F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-316.299988F, -174.300003F), new Vector2(-316.559998F, -175.427002F), new Vector2(-316.559998F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-316.559998F, -177.960007F), new Vector2(-316.299988F, -179.072998F), new Vector2(-315.779999F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-315.26001F, -181.020004F), new Vector2(-314.540009F, -181.787003F), new Vector2(-313.619995F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-312.700012F, -182.906998F), new Vector2(-311.640015F, -183.186996F), new Vector2(-310.440002F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-309.23999F, -183.186996F), new Vector2(-308.194F, -182.912994F), new Vector2(-307.299988F, -182.367004F));
+ builder.AddCubicBezier(new Vector2(-306.407013F, -181.820007F), new Vector2(-305.707001F, -181.052994F), new Vector2(-305.200012F, -180.067001F));
+ builder.AddCubicBezier(new Vector2(-304.694F, -179.080002F), new Vector2(-304.440002F, -177.947006F), new Vector2(-304.440002F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-304.440002F, -174.772995F), new Vector2(-304.987F, -173.220001F), new Vector2(-306.079987F, -172.007004F));
+ builder.AddCubicBezier(new Vector2(-307.174011F, -170.792999F), new Vector2(-308.614014F, -170.186996F), new Vector2(-310.399994F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-311.600006F, -170.186996F), new Vector2(-312.666992F, -170.466995F), new Vector2(-313.600006F, -171.026993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-307.119995F, -167.686996F));
+ builder.AddCubicBezier(new Vector2(-305.973999F, -168.287003F), new Vector2(-305.059998F, -169.119995F), new Vector2(-304.380005F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-303.700012F, -171.253006F), new Vector2(-303.320007F, -172.466995F), new Vector2(-303.23999F, -173.826996F));
+ builder.AddLine(new Vector2(-303.23999F, -179.546997F));
+ builder.AddCubicBezier(new Vector2(-303.320007F, -180.932999F), new Vector2(-303.707001F, -182.153F), new Vector2(-304.399994F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(-305.093994F, -184.259995F), new Vector2(-306.006989F, -185.087006F), new Vector2(-307.140015F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(-308.273987F, -186.287003F), new Vector2(-309.559998F, -186.587006F), new Vector2(-311F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-312.76001F, -186.587006F), new Vector2(-314.339996F, -186.147003F), new Vector2(-315.73999F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-317.140015F, -184.386993F), new Vector2(-318.247009F, -183.199997F), new Vector2(-319.059998F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(-319.873993F, -180.212997F), new Vector2(-320.279999F, -178.533005F), new Vector2(-320.279999F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-320.279999F, -174.800003F), new Vector2(-319.873993F, -173.119995F), new Vector2(-319.059998F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-318.247009F, -170.132996F), new Vector2(-317.140015F, -168.953003F), new Vector2(-315.73999F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-314.339996F, -167.220001F), new Vector2(-312.76001F, -166.787003F), new Vector2(-311F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-309.559998F, -166.787003F), new Vector2(-308.266998F, -167.087006F), new Vector2(-307.119995F, -167.686996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1524()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-337.399994F, -167.186996F));
+ builder.AddLine(new Vector2(-337.399994F, -195.746994F));
+ builder.AddLine(new Vector2(-341F, -195.746994F));
+ builder.AddLine(new Vector2(-341F, -167.186996F));
+ builder.AddLine(new Vector2(-337.399994F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-323.959991F, -167.186996F));
+ builder.AddLine(new Vector2(-323.959991F, -178.987F));
+ builder.AddCubicBezier(new Vector2(-323.959991F, -180.479996F), new Vector2(-324.279999F, -181.800003F), new Vector2(-324.920013F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(-325.559998F, -184.093002F), new Vector2(-326.43399F, -184.987F), new Vector2(-327.540009F, -185.626999F));
+ builder.AddCubicBezier(new Vector2(-328.647003F, -186.266998F), new Vector2(-329.920013F, -186.587006F), new Vector2(-331.359985F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-332.799988F, -186.587006F), new Vector2(-334.093994F, -186.259995F), new Vector2(-335.23999F, -185.606995F));
+ builder.AddCubicBezier(new Vector2(-336.386993F, -184.953003F), new Vector2(-337.279999F, -184.067001F), new Vector2(-337.920013F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(-338.559998F, -181.826996F), new Vector2(-338.880005F, -180.546997F), new Vector2(-338.880005F, -179.106995F));
+ builder.AddLine(new Vector2(-337.399994F, -178.266998F));
+ builder.AddCubicBezier(new Vector2(-337.399994F, -179.227005F), new Vector2(-337.187012F, -180.080002F), new Vector2(-336.76001F, -180.826996F));
+ builder.AddCubicBezier(new Vector2(-336.334015F, -181.572998F), new Vector2(-335.747009F, -182.160004F), new Vector2(-335F, -182.587006F));
+ builder.AddCubicBezier(new Vector2(-334.253998F, -183.013F), new Vector2(-333.399994F, -183.227005F), new Vector2(-332.440002F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-331F, -183.227005F), new Vector2(-329.834015F, -182.759995F), new Vector2(-328.940002F, -181.826996F));
+ builder.AddCubicBezier(new Vector2(-328.046997F, -180.893005F), new Vector2(-327.600006F, -179.707001F), new Vector2(-327.600006F, -178.266998F));
+ builder.AddLine(new Vector2(-327.600006F, -167.186996F));
+ builder.AddLine(new Vector2(-323.959991F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1525()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-355.220001F, -168.347F));
+ builder.AddCubicBezier(new Vector2(-353.95401F, -169.386993F), new Vector2(-353.320007F, -170.800003F), new Vector2(-353.320007F, -172.587006F));
+ builder.AddCubicBezier(new Vector2(-353.320007F, -173.759995F), new Vector2(-353.566986F, -174.707001F), new Vector2(-354.059998F, -175.427002F));
+ builder.AddCubicBezier(new Vector2(-354.553986F, -176.147003F), new Vector2(-355.187012F, -176.720001F), new Vector2(-355.959991F, -177.147003F));
+ builder.AddCubicBezier(new Vector2(-356.734009F, -177.572998F), new Vector2(-357.546997F, -177.912994F), new Vector2(-358.399994F, -178.167007F));
+ builder.AddCubicBezier(new Vector2(-359.253998F, -178.419998F), new Vector2(-360.074005F, -178.667007F), new Vector2(-360.859985F, -178.906998F));
+ builder.AddCubicBezier(new Vector2(-361.647003F, -179.147003F), new Vector2(-362.279999F, -179.440002F), new Vector2(-362.76001F, -179.787003F));
+ builder.AddCubicBezier(new Vector2(-363.23999F, -180.132996F), new Vector2(-363.480011F, -180.626999F), new Vector2(-363.480011F, -181.266998F));
+ builder.AddCubicBezier(new Vector2(-363.480011F, -181.880005F), new Vector2(-363.207001F, -182.373001F), new Vector2(-362.660004F, -182.746994F));
+ builder.AddCubicBezier(new Vector2(-362.114014F, -183.119995F), new Vector2(-361.320007F, -183.307007F), new Vector2(-360.279999F, -183.307007F));
+ builder.AddCubicBezier(new Vector2(-359.294006F, -183.307007F), new Vector2(-358.414001F, -183.119995F), new Vector2(-357.640015F, -182.746994F));
+ builder.AddCubicBezier(new Vector2(-356.867004F, -182.373001F), new Vector2(-356.200012F, -181.839996F), new Vector2(-355.640015F, -181.147003F));
+ builder.AddLine(new Vector2(-353.320007F, -183.466995F));
+ builder.AddCubicBezier(new Vector2(-354.066986F, -184.507004F), new Vector2(-355.019989F, -185.287003F), new Vector2(-356.179993F, -185.807007F));
+ builder.AddCubicBezier(new Vector2(-357.339996F, -186.326996F), new Vector2(-358.666992F, -186.587006F), new Vector2(-360.160004F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-361.574005F, -186.587006F), new Vector2(-362.786987F, -186.360001F), new Vector2(-363.799988F, -185.906998F));
+ builder.AddCubicBezier(new Vector2(-364.813995F, -185.453003F), new Vector2(-365.593994F, -184.807007F), new Vector2(-366.140015F, -183.966995F));
+ builder.AddCubicBezier(new Vector2(-366.687012F, -183.126999F), new Vector2(-366.959991F, -182.132996F), new Vector2(-366.959991F, -180.987F));
+ builder.AddCubicBezier(new Vector2(-366.959991F, -179.839996F), new Vector2(-366.713989F, -178.912994F), new Vector2(-366.220001F, -178.207001F));
+ builder.AddCubicBezier(new Vector2(-365.72699F, -177.5F), new Vector2(-365.093994F, -176.947006F), new Vector2(-364.320007F, -176.546997F));
+ builder.AddCubicBezier(new Vector2(-363.546997F, -176.147003F), new Vector2(-362.72699F, -175.826996F), new Vector2(-361.859985F, -175.587006F));
+ builder.AddCubicBezier(new Vector2(-360.993988F, -175.347F), new Vector2(-360.174011F, -175.100006F), new Vector2(-359.399994F, -174.847F));
+ builder.AddCubicBezier(new Vector2(-358.627014F, -174.593002F), new Vector2(-357.993988F, -174.272995F), new Vector2(-357.5F, -173.886993F));
+ builder.AddCubicBezier(new Vector2(-357.006989F, -173.5F), new Vector2(-356.76001F, -172.960007F), new Vector2(-356.76001F, -172.266998F));
+ builder.AddCubicBezier(new Vector2(-356.76001F, -171.572998F), new Vector2(-357.066986F, -171.033005F), new Vector2(-357.679993F, -170.647003F));
+ builder.AddCubicBezier(new Vector2(-358.294006F, -170.259995F), new Vector2(-359.160004F, -170.067001F), new Vector2(-360.279999F, -170.067001F));
+ builder.AddCubicBezier(new Vector2(-361.399994F, -170.067001F), new Vector2(-362.414001F, -170.272995F), new Vector2(-363.320007F, -170.686996F));
+ builder.AddCubicBezier(new Vector2(-364.22699F, -171.100006F), new Vector2(-365.027008F, -171.733002F), new Vector2(-365.720001F, -172.587006F));
+ builder.AddLine(new Vector2(-368.040009F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(-367.45401F, -169.546997F), new Vector2(-366.766998F, -168.927002F), new Vector2(-365.980011F, -168.406998F));
+ builder.AddCubicBezier(new Vector2(-365.194F, -167.886993F), new Vector2(-364.320007F, -167.487F), new Vector2(-363.359985F, -167.207001F));
+ builder.AddCubicBezier(new Vector2(-362.399994F, -166.927002F), new Vector2(-361.386993F, -166.787003F), new Vector2(-360.320007F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-358.187012F, -166.787003F), new Vector2(-356.487F, -167.307007F), new Vector2(-355.220001F, -168.347F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1526()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-371.720001F, -184.987F));
+ builder.AddLine(new Vector2(-369.079987F, -189.947006F));
+ builder.AddCubicBezier(new Vector2(-368.734009F, -190.587006F), new Vector2(-368.5F, -191.113007F), new Vector2(-368.380005F, -191.526993F));
+ builder.AddCubicBezier(new Vector2(-368.26001F, -191.940002F), new Vector2(-368.200012F, -192.307007F), new Vector2(-368.200012F, -192.626999F));
+ builder.AddCubicBezier(new Vector2(-368.200012F, -193.373001F), new Vector2(-368.46701F, -194.013F), new Vector2(-369F, -194.546997F));
+ builder.AddCubicBezier(new Vector2(-369.533997F, -195.080002F), new Vector2(-370.147003F, -195.347F), new Vector2(-370.839996F, -195.347F));
+ builder.AddCubicBezier(new Vector2(-371.587006F, -195.347F), new Vector2(-372.220001F, -195.080002F), new Vector2(-372.73999F, -194.546997F));
+ builder.AddCubicBezier(new Vector2(-373.26001F, -194.013F), new Vector2(-373.519989F, -193.373001F), new Vector2(-373.519989F, -192.626999F));
+ builder.AddCubicBezier(new Vector2(-373.519989F, -191.906998F), new Vector2(-373.286987F, -191.320007F), new Vector2(-372.820007F, -190.867004F));
+ builder.AddCubicBezier(new Vector2(-372.354004F, -190.412994F), new Vector2(-371.839996F, -190.186996F), new Vector2(-371.279999F, -190.186996F));
+ builder.AddCubicBezier(new Vector2(-370.987F, -190.186996F), new Vector2(-370.73999F, -190.279999F), new Vector2(-370.540009F, -190.466995F));
+ builder.AddCubicBezier(new Vector2(-370.339996F, -190.653F), new Vector2(-370.174011F, -190.893005F), new Vector2(-370.040009F, -191.186996F));
+ builder.AddLine(new Vector2(-371.320007F, -190.867004F));
+ builder.AddLine(new Vector2(-373.799988F, -186.106995F));
+ builder.AddLine(new Vector2(-371.720001F, -184.987F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1527()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-377.720001F, -182.906998F));
+ builder.AddLine(new Vector2(-377.720001F, -186.186996F));
+ builder.AddLine(new Vector2(-390.679993F, -186.186996F));
+ builder.AddLine(new Vector2(-390.679993F, -182.906998F));
+ builder.AddLine(new Vector2(-377.720001F, -182.906998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-382.399994F, -167.186996F));
+ builder.AddLine(new Vector2(-382.399994F, -194.147003F));
+ builder.AddLine(new Vector2(-386F, -194.147003F));
+ builder.AddLine(new Vector2(-386F, -167.186996F));
+ builder.AddLine(new Vector2(-382.399994F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1528()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-394.079987F, -167.186996F));
+ builder.AddLine(new Vector2(-394.079987F, -186.186996F));
+ builder.AddLine(new Vector2(-397.720001F, -186.186996F));
+ builder.AddLine(new Vector2(-397.720001F, -181.546997F));
+ builder.AddLine(new Vector2(-397.040009F, -176.947006F));
+ builder.AddLine(new Vector2(-397.720001F, -172.307007F));
+ builder.AddLine(new Vector2(-397.720001F, -167.186996F));
+ builder.AddLine(new Vector2(-394.079987F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-406.640015F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-407.574005F, -171.587006F), new Vector2(-408.299988F, -172.352997F), new Vector2(-408.820007F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-409.339996F, -174.300003F), new Vector2(-409.600006F, -175.427002F), new Vector2(-409.600006F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-409.600006F, -177.960007F), new Vector2(-409.339996F, -179.072998F), new Vector2(-408.820007F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-408.299988F, -181.020004F), new Vector2(-407.579987F, -181.787003F), new Vector2(-406.660004F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-405.73999F, -182.906998F), new Vector2(-404.679993F, -183.186996F), new Vector2(-403.480011F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-402.279999F, -183.186996F), new Vector2(-401.234009F, -182.912994F), new Vector2(-400.339996F, -182.367004F));
+ builder.AddCubicBezier(new Vector2(-399.446991F, -181.820007F), new Vector2(-398.747009F, -181.052994F), new Vector2(-398.23999F, -180.067001F));
+ builder.AddCubicBezier(new Vector2(-397.734009F, -179.080002F), new Vector2(-397.480011F, -177.947006F), new Vector2(-397.480011F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-397.480011F, -174.772995F), new Vector2(-398.027008F, -173.220001F), new Vector2(-399.119995F, -172.007004F));
+ builder.AddCubicBezier(new Vector2(-400.213989F, -170.792999F), new Vector2(-401.653992F, -170.186996F), new Vector2(-403.440002F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-404.640015F, -170.186996F), new Vector2(-405.707001F, -170.466995F), new Vector2(-406.640015F, -171.026993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-400.160004F, -167.686996F));
+ builder.AddCubicBezier(new Vector2(-399.014008F, -168.287003F), new Vector2(-398.100006F, -169.119995F), new Vector2(-397.420013F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-396.73999F, -171.253006F), new Vector2(-396.359985F, -172.466995F), new Vector2(-396.279999F, -173.826996F));
+ builder.AddLine(new Vector2(-396.279999F, -179.546997F));
+ builder.AddCubicBezier(new Vector2(-396.359985F, -180.932999F), new Vector2(-396.747009F, -182.153F), new Vector2(-397.440002F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(-398.134003F, -184.259995F), new Vector2(-399.046997F, -185.087006F), new Vector2(-400.179993F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(-401.313995F, -186.287003F), new Vector2(-402.600006F, -186.587006F), new Vector2(-404.040009F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-405.799988F, -186.587006F), new Vector2(-407.380005F, -186.147003F), new Vector2(-408.779999F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-410.179993F, -184.386993F), new Vector2(-411.286987F, -183.199997F), new Vector2(-412.100006F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(-412.914001F, -180.212997F), new Vector2(-413.320007F, -178.533005F), new Vector2(-413.320007F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-413.320007F, -174.800003F), new Vector2(-412.914001F, -173.119995F), new Vector2(-412.100006F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-411.286987F, -170.132996F), new Vector2(-410.179993F, -168.953003F), new Vector2(-408.779999F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-407.380005F, -167.220001F), new Vector2(-405.799988F, -166.787003F), new Vector2(-404.040009F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-402.600006F, -166.787003F), new Vector2(-401.307007F, -167.087006F), new Vector2(-400.160004F, -167.686996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1529()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-430.440002F, -167.186996F));
+ builder.AddLine(new Vector2(-430.440002F, -195.746994F));
+ builder.AddLine(new Vector2(-434.040009F, -195.746994F));
+ builder.AddLine(new Vector2(-434.040009F, -167.186996F));
+ builder.AddLine(new Vector2(-430.440002F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-417F, -167.186996F));
+ builder.AddLine(new Vector2(-417F, -178.987F));
+ builder.AddCubicBezier(new Vector2(-417F, -180.479996F), new Vector2(-417.320007F, -181.800003F), new Vector2(-417.959991F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(-418.600006F, -184.093002F), new Vector2(-419.473999F, -184.987F), new Vector2(-420.579987F, -185.626999F));
+ builder.AddCubicBezier(new Vector2(-421.687012F, -186.266998F), new Vector2(-422.959991F, -186.587006F), new Vector2(-424.399994F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-425.839996F, -186.587006F), new Vector2(-427.134003F, -186.259995F), new Vector2(-428.279999F, -185.606995F));
+ builder.AddCubicBezier(new Vector2(-429.427002F, -184.953003F), new Vector2(-430.320007F, -184.067001F), new Vector2(-430.959991F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(-431.600006F, -181.826996F), new Vector2(-431.920013F, -180.546997F), new Vector2(-431.920013F, -179.106995F));
+ builder.AddLine(new Vector2(-430.440002F, -178.266998F));
+ builder.AddCubicBezier(new Vector2(-430.440002F, -179.227005F), new Vector2(-430.22699F, -180.080002F), new Vector2(-429.799988F, -180.826996F));
+ builder.AddCubicBezier(new Vector2(-429.373993F, -181.572998F), new Vector2(-428.786987F, -182.160004F), new Vector2(-428.040009F, -182.587006F));
+ builder.AddCubicBezier(new Vector2(-427.294006F, -183.013F), new Vector2(-426.440002F, -183.227005F), new Vector2(-425.480011F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-424.040009F, -183.227005F), new Vector2(-422.873993F, -182.759995F), new Vector2(-421.980011F, -181.826996F));
+ builder.AddCubicBezier(new Vector2(-421.087006F, -180.893005F), new Vector2(-420.640015F, -179.707001F), new Vector2(-420.640015F, -178.266998F));
+ builder.AddLine(new Vector2(-420.640015F, -167.186996F));
+ builder.AddLine(new Vector2(-417F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1530()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-456.519989F, -167.186996F));
+ builder.AddLine(new Vector2(-451F, -181.507004F));
+ builder.AddLine(new Vector2(-452.320007F, -181.507004F));
+ builder.AddLine(new Vector2(-446.839996F, -167.186996F));
+ builder.AddLine(new Vector2(-444.720001F, -167.186996F));
+ builder.AddLine(new Vector2(-437.23999F, -186.186996F));
+ builder.AddLine(new Vector2(-441F, -186.186996F));
+ builder.AddLine(new Vector2(-446.440002F, -171.386993F));
+ builder.AddLine(new Vector2(-445.23999F, -171.386993F));
+ builder.AddLine(new Vector2(-450.640015F, -186.186996F));
+ builder.AddLine(new Vector2(-452.720001F, -186.186996F));
+ builder.AddLine(new Vector2(-458.119995F, -171.386993F));
+ builder.AddLine(new Vector2(-456.920013F, -171.386993F));
+ builder.AddLine(new Vector2(-462.359985F, -186.186996F));
+ builder.AddLine(new Vector2(-466.119995F, -186.186996F));
+ builder.AddLine(new Vector2(-458.640015F, -167.186996F));
+ builder.AddLine(new Vector2(-456.519989F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1531()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-475.839996F, -182.906998F));
+ builder.AddLine(new Vector2(-475.839996F, -186.186996F));
+ builder.AddLine(new Vector2(-488.799988F, -186.186996F));
+ builder.AddLine(new Vector2(-488.799988F, -182.906998F));
+ builder.AddLine(new Vector2(-475.839996F, -182.906998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-480.519989F, -167.186996F));
+ builder.AddLine(new Vector2(-480.519989F, -194.147003F));
+ builder.AddLine(new Vector2(-484.119995F, -194.147003F));
+ builder.AddLine(new Vector2(-484.119995F, -167.186996F));
+ builder.AddLine(new Vector2(-480.519989F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1532()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-495.799988F, -167.886993F));
+ builder.AddCubicBezier(new Vector2(-494.574005F, -168.567001F), new Vector2(-493.614014F, -169.533005F), new Vector2(-492.920013F, -170.787003F));
+ builder.AddCubicBezier(new Vector2(-492.22699F, -172.039993F), new Vector2(-491.880005F, -173.492996F), new Vector2(-491.880005F, -175.147003F));
+ builder.AddLine(new Vector2(-491.880005F, -186.186996F));
+ builder.AddLine(new Vector2(-495.480011F, -186.186996F));
+ builder.AddLine(new Vector2(-495.480011F, -175.307007F));
+ builder.AddCubicBezier(new Vector2(-495.480011F, -173.733002F), new Vector2(-495.880005F, -172.5F), new Vector2(-496.679993F, -171.606995F));
+ builder.AddCubicBezier(new Vector2(-497.480011F, -170.712997F), new Vector2(-498.587006F, -170.266998F), new Vector2(-500F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(-500.93399F, -170.266998F), new Vector2(-501.747009F, -170.466995F), new Vector2(-502.440002F, -170.867004F));
+ builder.AddCubicBezier(new Vector2(-503.134003F, -171.266998F), new Vector2(-503.660004F, -171.847F), new Vector2(-504.019989F, -172.606995F));
+ builder.AddCubicBezier(new Vector2(-504.380005F, -173.367004F), new Vector2(-504.559998F, -174.266998F), new Vector2(-504.559998F, -175.307007F));
+ builder.AddLine(new Vector2(-504.559998F, -186.186996F));
+ builder.AddLine(new Vector2(-508.160004F, -186.186996F));
+ builder.AddLine(new Vector2(-508.160004F, -175.147003F));
+ builder.AddCubicBezier(new Vector2(-508.160004F, -173.492996F), new Vector2(-507.813995F, -172.039993F), new Vector2(-507.119995F, -170.787003F));
+ builder.AddCubicBezier(new Vector2(-506.427002F, -169.533005F), new Vector2(-505.459991F, -168.567001F), new Vector2(-504.220001F, -167.886993F));
+ builder.AddCubicBezier(new Vector2(-502.980011F, -167.207001F), new Vector2(-501.574005F, -166.867004F), new Vector2(-500F, -166.867004F));
+ builder.AddCubicBezier(new Vector2(-498.427002F, -166.867004F), new Vector2(-497.027008F, -167.207001F), new Vector2(-495.799988F, -167.886993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1533()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-524.799988F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(-525.734009F, -171.667007F), new Vector2(-526.46698F, -172.432999F), new Vector2(-527F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(-527.533997F, -174.380005F), new Vector2(-527.799988F, -175.492996F), new Vector2(-527.799988F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-527.799988F, -177.973007F), new Vector2(-527.533997F, -179.067001F), new Vector2(-527F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(-526.46698F, -180.987F), new Vector2(-525.734009F, -181.740005F), new Vector2(-524.799988F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(-523.867004F, -182.832993F), new Vector2(-522.814026F, -183.106995F), new Vector2(-521.640015F, -183.106995F));
+ builder.AddCubicBezier(new Vector2(-520.414001F, -183.106995F), new Vector2(-519.340027F, -182.832993F), new Vector2(-518.419983F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(-517.5F, -181.740005F), new Vector2(-516.767029F, -180.987F), new Vector2(-516.219971F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(-515.674011F, -179.067001F), new Vector2(-515.400024F, -177.973007F), new Vector2(-515.400024F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-515.400024F, -175.492996F), new Vector2(-515.666992F, -174.380005F), new Vector2(-516.200012F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(-516.734009F, -172.432999F), new Vector2(-517.46698F, -171.667007F), new Vector2(-518.400024F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(-519.333984F, -170.546997F), new Vector2(-520.414001F, -170.266998F), new Vector2(-521.640015F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(-522.814026F, -170.266998F), new Vector2(-523.867004F, -170.546997F), new Vector2(-524.799988F, -171.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-516.580017F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(-515.073975F, -168.987F), new Vector2(-513.880005F, -170.179993F), new Vector2(-513F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(-512.119995F, -173.192993F), new Vector2(-511.679993F, -174.880005F), new Vector2(-511.679993F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-511.679993F, -178.587006F), new Vector2(-512.119995F, -180.253006F), new Vector2(-513F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(-513.880005F, -183.240005F), new Vector2(-515.073975F, -184.419998F), new Vector2(-516.580017F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(-518.086975F, -186.153F), new Vector2(-519.773987F, -186.587006F), new Vector2(-521.640015F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-523.47998F, -186.587006F), new Vector2(-525.146973F, -186.147003F), new Vector2(-526.640015F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-528.133972F, -184.386993F), new Vector2(-529.320007F, -183.207001F), new Vector2(-530.200012F, -181.727005F));
+ builder.AddCubicBezier(new Vector2(-531.080017F, -180.246994F), new Vector2(-531.52002F, -178.587006F), new Vector2(-531.52002F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-531.52002F, -174.880005F), new Vector2(-531.080017F, -173.192993F), new Vector2(-530.200012F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(-529.320007F, -170.179993F), new Vector2(-528.133972F, -168.987F), new Vector2(-526.640015F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(-525.146973F, -167.227005F), new Vector2(-523.47998F, -166.787003F), new Vector2(-521.640015F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-519.773987F, -166.787003F), new Vector2(-518.086975F, -167.227005F), new Vector2(-516.580017F, -168.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1534()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-547.299988F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-548.219971F, -171.587006F), new Vector2(-548.927002F, -172.352997F), new Vector2(-549.419983F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-549.914001F, -174.300003F), new Vector2(-550.159973F, -175.412994F), new Vector2(-550.159973F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-550.159973F, -177.947006F), new Vector2(-549.906982F, -179.072998F), new Vector2(-549.400024F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-548.893982F, -181.020004F), new Vector2(-548.187012F, -181.787003F), new Vector2(-547.280029F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-546.374023F, -182.906998F), new Vector2(-545.333984F, -183.186996F), new Vector2(-544.159973F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-542.960022F, -183.186996F), new Vector2(-541.906982F, -182.906998F), new Vector2(-541F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-540.093994F, -181.787003F), new Vector2(-539.380005F, -181.020004F), new Vector2(-538.859985F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-538.340027F, -179.072998F), new Vector2(-538.080017F, -177.960007F), new Vector2(-538.080017F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-538.080017F, -175.427002F), new Vector2(-538.340027F, -174.300003F), new Vector2(-538.859985F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-539.380005F, -172.352997F), new Vector2(-540.093994F, -171.587006F), new Vector2(-541F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-541.906982F, -170.466995F), new Vector2(-542.960022F, -170.186996F), new Vector2(-544.159973F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-545.333984F, -170.186996F), new Vector2(-546.380005F, -170.466995F), new Vector2(-547.299988F, -171.026993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-549.960022F, -167.186996F));
+ builder.AddLine(new Vector2(-549.960022F, -172.307007F));
+ builder.AddLine(new Vector2(-550.640015F, -176.947006F));
+ builder.AddLine(new Vector2(-549.960022F, -181.546997F));
+ builder.AddLine(new Vector2(-549.960022F, -195.746994F));
+ builder.AddLine(new Vector2(-553.559998F, -195.746994F));
+ builder.AddLine(new Vector2(-553.559998F, -167.186996F));
+ builder.AddLine(new Vector2(-549.960022F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-538.859985F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-537.460022F, -168.953003F), new Vector2(-536.359985F, -170.132996F), new Vector2(-535.559998F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-534.76001F, -173.119995F), new Vector2(-534.359985F, -174.800003F), new Vector2(-534.359985F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-534.359985F, -178.533005F), new Vector2(-534.76001F, -180.212997F), new Vector2(-535.559998F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(-536.359985F, -183.199997F), new Vector2(-537.460022F, -184.386993F), new Vector2(-538.859985F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-540.26001F, -186.147003F), new Vector2(-541.827026F, -186.587006F), new Vector2(-543.559998F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-544.973999F, -186.587006F), new Vector2(-546.26001F, -186.287003F), new Vector2(-547.419983F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(-548.580017F, -185.087006F), new Vector2(-549.513977F, -184.259995F), new Vector2(-550.219971F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(-550.927002F, -182.153F), new Vector2(-551.320007F, -180.932999F), new Vector2(-551.400024F, -179.546997F));
+ builder.AddLine(new Vector2(-551.400024F, -173.826996F));
+ builder.AddCubicBezier(new Vector2(-551.320007F, -172.466995F), new Vector2(-550.934021F, -171.253006F), new Vector2(-550.23999F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-549.546997F, -169.119995F), new Vector2(-548.619995F, -168.287003F), new Vector2(-547.460022F, -167.686996F));
+ builder.AddCubicBezier(new Vector2(-546.299988F, -167.087006F), new Vector2(-545F, -166.787003F), new Vector2(-543.559998F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-541.827026F, -166.787003F), new Vector2(-540.26001F, -167.220001F), new Vector2(-538.859985F, -168.087006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1535()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-558.799988F, -167.186996F));
+ builder.AddLine(new Vector2(-558.799988F, -186.186996F));
+ builder.AddLine(new Vector2(-562.440002F, -186.186996F));
+ builder.AddLine(new Vector2(-562.440002F, -181.546997F));
+ builder.AddLine(new Vector2(-561.76001F, -176.947006F));
+ builder.AddLine(new Vector2(-562.440002F, -172.307007F));
+ builder.AddLine(new Vector2(-562.440002F, -167.186996F));
+ builder.AddLine(new Vector2(-558.799988F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-571.359985F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-572.294006F, -171.587006F), new Vector2(-573.02002F, -172.352997F), new Vector2(-573.539978F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-574.059998F, -174.300003F), new Vector2(-574.320007F, -175.427002F), new Vector2(-574.320007F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-574.320007F, -177.960007F), new Vector2(-574.059998F, -179.072998F), new Vector2(-573.539978F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-573.02002F, -181.020004F), new Vector2(-572.299988F, -181.787003F), new Vector2(-571.380005F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-570.460022F, -182.906998F), new Vector2(-569.400024F, -183.186996F), new Vector2(-568.200012F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-567F, -183.186996F), new Vector2(-565.953979F, -182.912994F), new Vector2(-565.059998F, -182.367004F));
+ builder.AddCubicBezier(new Vector2(-564.166992F, -181.820007F), new Vector2(-563.46698F, -181.052994F), new Vector2(-562.960022F, -180.067001F));
+ builder.AddCubicBezier(new Vector2(-562.453979F, -179.080002F), new Vector2(-562.200012F, -177.947006F), new Vector2(-562.200012F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-562.200012F, -174.772995F), new Vector2(-562.747009F, -173.220001F), new Vector2(-563.840027F, -172.007004F));
+ builder.AddCubicBezier(new Vector2(-564.934021F, -170.792999F), new Vector2(-566.374023F, -170.186996F), new Vector2(-568.159973F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-569.359985F, -170.186996F), new Vector2(-570.427002F, -170.466995F), new Vector2(-571.359985F, -171.026993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-564.880005F, -167.686996F));
+ builder.AddCubicBezier(new Vector2(-563.734009F, -168.287003F), new Vector2(-562.820007F, -169.119995F), new Vector2(-562.140015F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-561.460022F, -171.253006F), new Vector2(-561.080017F, -172.466995F), new Vector2(-561F, -173.826996F));
+ builder.AddLine(new Vector2(-561F, -179.546997F));
+ builder.AddCubicBezier(new Vector2(-561.080017F, -180.932999F), new Vector2(-561.46698F, -182.153F), new Vector2(-562.159973F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(-562.854004F, -184.259995F), new Vector2(-563.767029F, -185.087006F), new Vector2(-564.900024F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(-566.033997F, -186.287003F), new Vector2(-567.320007F, -186.587006F), new Vector2(-568.76001F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-570.52002F, -186.587006F), new Vector2(-572.099976F, -186.147003F), new Vector2(-573.5F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-574.900024F, -184.386993F), new Vector2(-576.007019F, -183.199997F), new Vector2(-576.820007F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(-577.633972F, -180.212997F), new Vector2(-578.039978F, -178.533005F), new Vector2(-578.039978F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-578.039978F, -174.800003F), new Vector2(-577.633972F, -173.119995F), new Vector2(-576.820007F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-576.007019F, -170.132996F), new Vector2(-574.900024F, -168.953003F), new Vector2(-573.5F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-572.099976F, -167.220001F), new Vector2(-570.52002F, -166.787003F), new Vector2(-568.76001F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-567.320007F, -166.787003F), new Vector2(-566.026978F, -167.087006F), new Vector2(-564.880005F, -167.686996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1536()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-593.559998F, -167.626999F));
+ builder.AddCubicBezier(new Vector2(-592.254028F, -168.186996F), new Vector2(-591.133972F, -169F), new Vector2(-590.200012F, -170.067001F));
+ builder.AddLine(new Vector2(-592.52002F, -172.427002F));
+ builder.AddCubicBezier(new Vector2(-593.159973F, -171.679993F), new Vector2(-593.927002F, -171.119995F), new Vector2(-594.820007F, -170.746994F));
+ builder.AddCubicBezier(new Vector2(-595.713989F, -170.373001F), new Vector2(-596.69397F, -170.186996F), new Vector2(-597.76001F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-599.039978F, -170.186996F), new Vector2(-600.174011F, -170.460007F), new Vector2(-601.159973F, -171.007004F));
+ builder.AddCubicBezier(new Vector2(-602.146973F, -171.552994F), new Vector2(-602.906982F, -172.326996F), new Vector2(-603.440002F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-603.973999F, -174.326996F), new Vector2(-604.23999F, -175.492996F), new Vector2(-604.23999F, -176.826996F));
+ builder.AddCubicBezier(new Vector2(-604.23999F, -178.132996F), new Vector2(-603.987F, -179.266998F), new Vector2(-603.47998F, -180.227005F));
+ builder.AddCubicBezier(new Vector2(-602.973999F, -181.186996F), new Vector2(-602.254028F, -181.932999F), new Vector2(-601.320007F, -182.466995F));
+ builder.AddCubicBezier(new Vector2(-600.387024F, -183F), new Vector2(-599.307007F, -183.266998F), new Vector2(-598.080017F, -183.266998F));
+ builder.AddCubicBezier(new Vector2(-596.906982F, -183.266998F), new Vector2(-595.906982F, -183.020004F), new Vector2(-595.080017F, -182.526993F));
+ builder.AddCubicBezier(new Vector2(-594.254028F, -182.033005F), new Vector2(-593.614014F, -181.339996F), new Vector2(-593.159973F, -180.447006F));
+ builder.AddCubicBezier(new Vector2(-592.70697F, -179.552994F), new Vector2(-592.47998F, -178.466995F), new Vector2(-592.47998F, -177.186996F));
+ builder.AddLine(new Vector2(-591.159973F, -178.347F));
+ builder.AddLine(new Vector2(-605.280029F, -178.347F));
+ builder.AddLine(new Vector2(-605.280029F, -175.347F));
+ builder.AddLine(new Vector2(-589.23999F, -175.347F));
+ builder.AddCubicBezier(new Vector2(-589.159973F, -175.720001F), new Vector2(-589.106995F, -176.059998F), new Vector2(-589.080017F, -176.367004F));
+ builder.AddCubicBezier(new Vector2(-589.054016F, -176.673004F), new Vector2(-589.039978F, -176.960007F), new Vector2(-589.039978F, -177.227005F));
+ builder.AddCubicBezier(new Vector2(-589.039978F, -179.039993F), new Vector2(-589.419983F, -180.653F), new Vector2(-590.179993F, -182.067001F));
+ builder.AddCubicBezier(new Vector2(-590.940002F, -183.479996F), new Vector2(-592F, -184.587006F), new Vector2(-593.359985F, -185.386993F));
+ builder.AddCubicBezier(new Vector2(-594.719971F, -186.186996F), new Vector2(-596.267029F, -186.587006F), new Vector2(-598F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-599.840027F, -186.587006F), new Vector2(-601.5F, -186.153F), new Vector2(-602.97998F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(-604.460022F, -184.419998F), new Vector2(-605.633972F, -183.240005F), new Vector2(-606.5F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(-607.367004F, -180.253006F), new Vector2(-607.799988F, -178.572998F), new Vector2(-607.799988F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-607.799988F, -174.813004F), new Vector2(-607.359985F, -173.119995F), new Vector2(-606.47998F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-605.599976F, -170.132996F), new Vector2(-604.406982F, -168.953003F), new Vector2(-602.900024F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-601.393982F, -167.220001F), new Vector2(-599.679993F, -166.787003F), new Vector2(-597.76001F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-596.267029F, -166.787003F), new Vector2(-594.867004F, -167.067001F), new Vector2(-593.559998F, -167.626999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1537()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-617.119995F, -181.906998F));
+ builder.AddCubicBezier(new Vector2(-616.267029F, -182.759995F), new Vector2(-615.174011F, -183.186996F), new Vector2(-613.840027F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-613.200012F, -183.186996F), new Vector2(-612.640015F, -183.093002F), new Vector2(-612.159973F, -182.906998F));
+ builder.AddCubicBezier(new Vector2(-611.679993F, -182.720001F), new Vector2(-611.23999F, -182.412994F), new Vector2(-610.840027F, -181.987F));
+ builder.AddLine(new Vector2(-608.47998F, -184.427002F));
+ builder.AddCubicBezier(new Vector2(-609.146973F, -185.199997F), new Vector2(-609.867004F, -185.753006F), new Vector2(-610.640015F, -186.087006F));
+ builder.AddCubicBezier(new Vector2(-611.414001F, -186.419998F), new Vector2(-612.280029F, -186.587006F), new Vector2(-613.23999F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-615.346985F, -186.587006F), new Vector2(-616.960022F, -185.867004F), new Vector2(-618.080017F, -184.427002F));
+ builder.AddCubicBezier(new Vector2(-619.200012F, -182.987F), new Vector2(-619.76001F, -181.052994F), new Vector2(-619.76001F, -178.626999F));
+ builder.AddLine(new Vector2(-618.400024F, -177.987F));
+ builder.AddCubicBezier(new Vector2(-618.400024F, -179.746994F), new Vector2(-617.973999F, -181.052994F), new Vector2(-617.119995F, -181.906998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-618.400024F, -167.186996F));
+ builder.AddLine(new Vector2(-618.400024F, -186.186996F));
+ builder.AddLine(new Vector2(-622F, -186.186996F));
+ builder.AddLine(new Vector2(-622F, -167.186996F));
+ builder.AddLine(new Vector2(-618.400024F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1538()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-639.119995F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(-640.054016F, -171.667007F), new Vector2(-640.786987F, -172.432999F), new Vector2(-641.320007F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(-641.854004F, -174.380005F), new Vector2(-642.119995F, -175.492996F), new Vector2(-642.119995F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-642.119995F, -177.973007F), new Vector2(-641.854004F, -179.067001F), new Vector2(-641.320007F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(-640.786987F, -180.987F), new Vector2(-640.054016F, -181.740005F), new Vector2(-639.119995F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(-638.187012F, -182.832993F), new Vector2(-637.133972F, -183.106995F), new Vector2(-635.960022F, -183.106995F));
+ builder.AddCubicBezier(new Vector2(-634.734009F, -183.106995F), new Vector2(-633.659973F, -182.832993F), new Vector2(-632.73999F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(-631.820007F, -181.740005F), new Vector2(-631.086975F, -180.987F), new Vector2(-630.539978F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(-629.994019F, -179.067001F), new Vector2(-629.719971F, -177.973007F), new Vector2(-629.719971F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-629.719971F, -175.492996F), new Vector2(-629.987F, -174.380005F), new Vector2(-630.52002F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(-631.054016F, -172.432999F), new Vector2(-631.786987F, -171.667007F), new Vector2(-632.719971F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(-633.653992F, -170.546997F), new Vector2(-634.734009F, -170.266998F), new Vector2(-635.960022F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(-637.133972F, -170.266998F), new Vector2(-638.187012F, -170.546997F), new Vector2(-639.119995F, -171.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-630.900024F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(-629.393982F, -168.987F), new Vector2(-628.200012F, -170.179993F), new Vector2(-627.320007F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(-626.440002F, -173.192993F), new Vector2(-626F, -174.880005F), new Vector2(-626F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-626F, -178.587006F), new Vector2(-626.440002F, -180.253006F), new Vector2(-627.320007F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(-628.200012F, -183.240005F), new Vector2(-629.393982F, -184.419998F), new Vector2(-630.900024F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(-632.406982F, -186.153F), new Vector2(-634.093994F, -186.587006F), new Vector2(-635.960022F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-637.799988F, -186.587006F), new Vector2(-639.46698F, -186.147003F), new Vector2(-640.960022F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-642.453979F, -184.386993F), new Vector2(-643.640015F, -183.207001F), new Vector2(-644.52002F, -181.727005F));
+ builder.AddCubicBezier(new Vector2(-645.400024F, -180.246994F), new Vector2(-645.840027F, -178.587006F), new Vector2(-645.840027F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-645.840027F, -174.880005F), new Vector2(-645.400024F, -173.192993F), new Vector2(-644.52002F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(-643.640015F, -170.179993F), new Vector2(-642.453979F, -168.987F), new Vector2(-640.960022F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(-639.46698F, -167.227005F), new Vector2(-637.799988F, -166.787003F), new Vector2(-635.960022F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-634.093994F, -166.787003F), new Vector2(-632.406982F, -167.227005F), new Vector2(-630.900024F, -168.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1539()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-649.47998F, -167.186996F));
+ builder.AddLine(new Vector2(-649.47998F, -179.386993F));
+ builder.AddCubicBezier(new Vector2(-649.47998F, -180.880005F), new Vector2(-649.807007F, -182.160004F), new Vector2(-650.460022F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-651.114014F, -184.292999F), new Vector2(-651.987F, -185.119995F), new Vector2(-653.080017F, -185.707001F));
+ builder.AddCubicBezier(new Vector2(-654.174011F, -186.292999F), new Vector2(-655.414001F, -186.587006F), new Vector2(-656.799988F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-658.133972F, -186.587006F), new Vector2(-659.359985F, -186.287003F), new Vector2(-660.47998F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(-661.599976F, -185.087006F), new Vector2(-662.513977F, -184.259995F), new Vector2(-663.219971F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(-663.927002F, -182.153F), new Vector2(-664.320007F, -180.893005F), new Vector2(-664.400024F, -179.427002F));
+ builder.AddLine(new Vector2(-662.359985F, -178.667007F));
+ builder.AddCubicBezier(new Vector2(-662.359985F, -179.626999F), new Vector2(-662.146973F, -180.440002F), new Vector2(-661.719971F, -181.106995F));
+ builder.AddCubicBezier(new Vector2(-661.294006F, -181.772995F), new Vector2(-660.72699F, -182.292999F), new Vector2(-660.02002F, -182.667007F));
+ builder.AddCubicBezier(new Vector2(-659.314026F, -183.039993F), new Vector2(-658.52002F, -183.227005F), new Vector2(-657.640015F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-656.359985F, -183.227005F), new Vector2(-655.286987F, -182.820007F), new Vector2(-654.419983F, -182.007004F));
+ builder.AddCubicBezier(new Vector2(-653.554016F, -181.192993F), new Vector2(-653.119995F, -180.080002F), new Vector2(-653.119995F, -178.667007F));
+ builder.AddLine(new Vector2(-653.119995F, -167.186996F));
+ builder.AddLine(new Vector2(-649.47998F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-662.359985F, -167.186996F));
+ builder.AddLine(new Vector2(-662.359985F, -179.427002F));
+ builder.AddCubicBezier(new Vector2(-662.359985F, -180.893005F), new Vector2(-662.674011F, -182.160004F), new Vector2(-663.299988F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-663.927002F, -184.292999F), new Vector2(-664.780029F, -185.119995F), new Vector2(-665.859985F, -185.707001F));
+ builder.AddCubicBezier(new Vector2(-666.940002F, -186.292999F), new Vector2(-668.146973F, -186.587006F), new Vector2(-669.47998F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-670.840027F, -186.587006F), new Vector2(-672.067017F, -186.287003F), new Vector2(-673.159973F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(-674.254028F, -185.087006F), new Vector2(-675.114014F, -184.253006F), new Vector2(-675.73999F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-676.367004F, -182.119995F), new Vector2(-676.679993F, -180.867004F), new Vector2(-676.679993F, -179.427002F));
+ builder.AddLine(new Vector2(-675.200012F, -178.667007F));
+ builder.AddCubicBezier(new Vector2(-675.200012F, -179.626999F), new Vector2(-674.987F, -180.440002F), new Vector2(-674.559998F, -181.106995F));
+ builder.AddCubicBezier(new Vector2(-674.133972F, -181.772995F), new Vector2(-673.573975F, -182.292999F), new Vector2(-672.880005F, -182.667007F));
+ builder.AddCubicBezier(new Vector2(-672.187012F, -183.039993F), new Vector2(-671.400024F, -183.227005F), new Vector2(-670.52002F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-669.213989F, -183.227005F), new Vector2(-668.127014F, -182.820007F), new Vector2(-667.26001F, -182.007004F));
+ builder.AddCubicBezier(new Vector2(-666.393982F, -181.192993F), new Vector2(-665.960022F, -180.080002F), new Vector2(-665.960022F, -178.667007F));
+ builder.AddLine(new Vector2(-665.960022F, -167.186996F));
+ builder.AddLine(new Vector2(-662.359985F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-675.200012F, -167.186996F));
+ builder.AddLine(new Vector2(-675.200012F, -186.186996F));
+ builder.AddLine(new Vector2(-678.799988F, -186.186996F));
+ builder.AddLine(new Vector2(-678.799988F, -167.186996F));
+ builder.AddLine(new Vector2(-675.200012F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1540()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-705.400024F, -167.186996F));
+ builder.AddLine(new Vector2(-705.400024F, -186.186996F));
+ builder.AddLine(new Vector2(-709F, -186.186996F));
+ builder.AddLine(new Vector2(-709F, -167.186996F));
+ builder.AddLine(new Vector2(-705.400024F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-691.960022F, -167.186996F));
+ builder.AddLine(new Vector2(-691.960022F, -178.987F));
+ builder.AddCubicBezier(new Vector2(-691.960022F, -180.292999F), new Vector2(-692.280029F, -181.526993F), new Vector2(-692.919983F, -182.686996F));
+ builder.AddCubicBezier(new Vector2(-693.559998F, -183.847F), new Vector2(-694.434021F, -184.787003F), new Vector2(-695.539978F, -185.507004F));
+ builder.AddCubicBezier(new Vector2(-696.646973F, -186.227005F), new Vector2(-697.919983F, -186.587006F), new Vector2(-699.359985F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-700.799988F, -186.587006F), new Vector2(-702.093994F, -186.259995F), new Vector2(-703.23999F, -185.606995F));
+ builder.AddCubicBezier(new Vector2(-704.387024F, -184.953003F), new Vector2(-705.280029F, -184.067001F), new Vector2(-705.919983F, -182.947006F));
+ builder.AddCubicBezier(new Vector2(-706.559998F, -181.826996F), new Vector2(-706.880005F, -180.546997F), new Vector2(-706.880005F, -179.106995F));
+ builder.AddLine(new Vector2(-705.400024F, -178.266998F));
+ builder.AddCubicBezier(new Vector2(-705.400024F, -179.227005F), new Vector2(-705.187012F, -180.080002F), new Vector2(-704.76001F, -180.826996F));
+ builder.AddCubicBezier(new Vector2(-704.333984F, -181.572998F), new Vector2(-703.747009F, -182.160004F), new Vector2(-703F, -182.587006F));
+ builder.AddCubicBezier(new Vector2(-702.254028F, -183.013F), new Vector2(-701.400024F, -183.227005F), new Vector2(-700.440002F, -183.227005F));
+ builder.AddCubicBezier(new Vector2(-699F, -183.227005F), new Vector2(-697.833984F, -182.759995F), new Vector2(-696.940002F, -181.826996F));
+ builder.AddCubicBezier(new Vector2(-696.046997F, -180.893005F), new Vector2(-695.599976F, -179.707001F), new Vector2(-695.599976F, -178.266998F));
+ builder.AddLine(new Vector2(-695.599976F, -167.186996F));
+ builder.AddLine(new Vector2(-691.960022F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1541()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-720.23999F, -181.906998F));
+ builder.AddCubicBezier(new Vector2(-719.387024F, -182.759995F), new Vector2(-718.294006F, -183.186996F), new Vector2(-716.960022F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-716.320007F, -183.186996F), new Vector2(-715.76001F, -183.093002F), new Vector2(-715.280029F, -182.906998F));
+ builder.AddCubicBezier(new Vector2(-714.799988F, -182.720001F), new Vector2(-714.359985F, -182.412994F), new Vector2(-713.960022F, -181.987F));
+ builder.AddLine(new Vector2(-711.599976F, -184.427002F));
+ builder.AddCubicBezier(new Vector2(-712.267029F, -185.199997F), new Vector2(-712.987F, -185.753006F), new Vector2(-713.76001F, -186.087006F));
+ builder.AddCubicBezier(new Vector2(-714.533997F, -186.419998F), new Vector2(-715.400024F, -186.587006F), new Vector2(-716.359985F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-718.46698F, -186.587006F), new Vector2(-720.080017F, -185.867004F), new Vector2(-721.200012F, -184.427002F));
+ builder.AddCubicBezier(new Vector2(-722.320007F, -182.987F), new Vector2(-722.880005F, -181.052994F), new Vector2(-722.880005F, -178.626999F));
+ builder.AddLine(new Vector2(-721.52002F, -177.987F));
+ builder.AddCubicBezier(new Vector2(-721.52002F, -179.746994F), new Vector2(-721.093994F, -181.052994F), new Vector2(-720.23999F, -181.906998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-721.52002F, -167.186996F));
+ builder.AddLine(new Vector2(-721.52002F, -186.186996F));
+ builder.AddLine(new Vector2(-725.119995F, -186.186996F));
+ builder.AddLine(new Vector2(-725.119995F, -167.186996F));
+ builder.AddLine(new Vector2(-721.52002F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1542()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-730.359985F, -167.186996F));
+ builder.AddLine(new Vector2(-730.359985F, -186.186996F));
+ builder.AddLine(new Vector2(-734F, -186.186996F));
+ builder.AddLine(new Vector2(-734F, -181.546997F));
+ builder.AddLine(new Vector2(-733.320007F, -176.947006F));
+ builder.AddLine(new Vector2(-734F, -172.307007F));
+ builder.AddLine(new Vector2(-734F, -167.186996F));
+ builder.AddLine(new Vector2(-730.359985F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-742.919983F, -171.026993F));
+ builder.AddCubicBezier(new Vector2(-743.854004F, -171.587006F), new Vector2(-744.580017F, -172.352997F), new Vector2(-745.099976F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-745.619995F, -174.300003F), new Vector2(-745.880005F, -175.427002F), new Vector2(-745.880005F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-745.880005F, -177.960007F), new Vector2(-745.619995F, -179.072998F), new Vector2(-745.099976F, -180.046997F));
+ builder.AddCubicBezier(new Vector2(-744.580017F, -181.020004F), new Vector2(-743.859985F, -181.787003F), new Vector2(-742.940002F, -182.347F));
+ builder.AddCubicBezier(new Vector2(-742.02002F, -182.906998F), new Vector2(-740.960022F, -183.186996F), new Vector2(-739.76001F, -183.186996F));
+ builder.AddCubicBezier(new Vector2(-738.559998F, -183.186996F), new Vector2(-737.513977F, -182.912994F), new Vector2(-736.619995F, -182.367004F));
+ builder.AddCubicBezier(new Vector2(-735.72699F, -181.820007F), new Vector2(-735.026978F, -181.052994F), new Vector2(-734.52002F, -180.067001F));
+ builder.AddCubicBezier(new Vector2(-734.013977F, -179.080002F), new Vector2(-733.76001F, -177.947006F), new Vector2(-733.76001F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-733.76001F, -174.772995F), new Vector2(-734.307007F, -173.220001F), new Vector2(-735.400024F, -172.007004F));
+ builder.AddCubicBezier(new Vector2(-736.494019F, -170.792999F), new Vector2(-737.934021F, -170.186996F), new Vector2(-739.719971F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-740.919983F, -170.186996F), new Vector2(-741.987F, -170.466995F), new Vector2(-742.919983F, -171.026993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-736.440002F, -167.686996F));
+ builder.AddCubicBezier(new Vector2(-735.294006F, -168.287003F), new Vector2(-734.380005F, -169.119995F), new Vector2(-733.700012F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-733.02002F, -171.253006F), new Vector2(-732.640015F, -172.466995F), new Vector2(-732.559998F, -173.826996F));
+ builder.AddLine(new Vector2(-732.559998F, -179.546997F));
+ builder.AddCubicBezier(new Vector2(-732.640015F, -180.932999F), new Vector2(-733.026978F, -182.153F), new Vector2(-733.719971F, -183.207001F));
+ builder.AddCubicBezier(new Vector2(-734.414001F, -184.259995F), new Vector2(-735.327026F, -185.087006F), new Vector2(-736.460022F, -185.686996F));
+ builder.AddCubicBezier(new Vector2(-737.593994F, -186.287003F), new Vector2(-738.880005F, -186.587006F), new Vector2(-740.320007F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-742.080017F, -186.587006F), new Vector2(-743.659973F, -186.147003F), new Vector2(-745.059998F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-746.460022F, -184.386993F), new Vector2(-747.567017F, -183.199997F), new Vector2(-748.380005F, -181.707001F));
+ builder.AddCubicBezier(new Vector2(-749.19397F, -180.212997F), new Vector2(-749.599976F, -178.533005F), new Vector2(-749.599976F, -176.667007F));
+ builder.AddCubicBezier(new Vector2(-749.599976F, -174.800003F), new Vector2(-749.19397F, -173.119995F), new Vector2(-748.380005F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-747.567017F, -170.132996F), new Vector2(-746.460022F, -168.953003F), new Vector2(-745.059998F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-743.659973F, -167.220001F), new Vector2(-742.080017F, -166.787003F), new Vector2(-740.320007F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-738.880005F, -166.787003F), new Vector2(-737.586975F, -167.087006F), new Vector2(-736.440002F, -167.686996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1543()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-756.840027F, -167.626999F));
+ builder.AddCubicBezier(new Vector2(-755.533997F, -168.186996F), new Vector2(-754.414001F, -169F), new Vector2(-753.47998F, -170.067001F));
+ builder.AddLine(new Vector2(-755.799988F, -172.427002F));
+ builder.AddCubicBezier(new Vector2(-756.440002F, -171.679993F), new Vector2(-757.20697F, -171.119995F), new Vector2(-758.099976F, -170.746994F));
+ builder.AddCubicBezier(new Vector2(-758.994019F, -170.373001F), new Vector2(-759.973999F, -170.186996F), new Vector2(-761.039978F, -170.186996F));
+ builder.AddCubicBezier(new Vector2(-762.320007F, -170.186996F), new Vector2(-763.453979F, -170.460007F), new Vector2(-764.440002F, -171.007004F));
+ builder.AddCubicBezier(new Vector2(-765.427002F, -171.552994F), new Vector2(-766.187012F, -172.326996F), new Vector2(-766.719971F, -173.326996F));
+ builder.AddCubicBezier(new Vector2(-767.254028F, -174.326996F), new Vector2(-767.52002F, -175.492996F), new Vector2(-767.52002F, -176.826996F));
+ builder.AddCubicBezier(new Vector2(-767.52002F, -178.132996F), new Vector2(-767.267029F, -179.266998F), new Vector2(-766.76001F, -180.227005F));
+ builder.AddCubicBezier(new Vector2(-766.254028F, -181.186996F), new Vector2(-765.533997F, -181.932999F), new Vector2(-764.599976F, -182.466995F));
+ builder.AddCubicBezier(new Vector2(-763.666992F, -183F), new Vector2(-762.586975F, -183.266998F), new Vector2(-761.359985F, -183.266998F));
+ builder.AddCubicBezier(new Vector2(-760.187012F, -183.266998F), new Vector2(-759.187012F, -183.020004F), new Vector2(-758.359985F, -182.526993F));
+ builder.AddCubicBezier(new Vector2(-757.533997F, -182.033005F), new Vector2(-756.893982F, -181.339996F), new Vector2(-756.440002F, -180.447006F));
+ builder.AddCubicBezier(new Vector2(-755.987F, -179.552994F), new Vector2(-755.76001F, -178.466995F), new Vector2(-755.76001F, -177.186996F));
+ builder.AddLine(new Vector2(-754.440002F, -178.347F));
+ builder.AddLine(new Vector2(-768.559998F, -178.347F));
+ builder.AddLine(new Vector2(-768.559998F, -175.347F));
+ builder.AddLine(new Vector2(-752.52002F, -175.347F));
+ builder.AddCubicBezier(new Vector2(-752.440002F, -175.720001F), new Vector2(-752.387024F, -176.059998F), new Vector2(-752.359985F, -176.367004F));
+ builder.AddCubicBezier(new Vector2(-752.333984F, -176.673004F), new Vector2(-752.320007F, -176.960007F), new Vector2(-752.320007F, -177.227005F));
+ builder.AddCubicBezier(new Vector2(-752.320007F, -179.039993F), new Vector2(-752.700012F, -180.653F), new Vector2(-753.460022F, -182.067001F));
+ builder.AddCubicBezier(new Vector2(-754.219971F, -183.479996F), new Vector2(-755.280029F, -184.587006F), new Vector2(-756.640015F, -185.386993F));
+ builder.AddCubicBezier(new Vector2(-758F, -186.186996F), new Vector2(-759.546997F, -186.587006F), new Vector2(-761.280029F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-763.119995F, -186.587006F), new Vector2(-764.780029F, -186.153F), new Vector2(-766.26001F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(-767.73999F, -184.419998F), new Vector2(-768.914001F, -183.240005F), new Vector2(-769.780029F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(-770.646973F, -180.253006F), new Vector2(-771.080017F, -178.572998F), new Vector2(-771.080017F, -176.707001F));
+ builder.AddCubicBezier(new Vector2(-771.080017F, -174.813004F), new Vector2(-770.640015F, -173.119995F), new Vector2(-769.76001F, -171.626999F));
+ builder.AddCubicBezier(new Vector2(-768.880005F, -170.132996F), new Vector2(-767.687012F, -168.953003F), new Vector2(-766.179993F, -168.087006F));
+ builder.AddCubicBezier(new Vector2(-764.674011F, -167.220001F), new Vector2(-762.960022F, -166.787003F), new Vector2(-761.039978F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-759.546997F, -166.787003F), new Vector2(-758.146973F, -167.067001F), new Vector2(-756.840027F, -167.626999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1544()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-775.119995F, -167.186996F));
+ builder.AddLine(new Vector2(-775.119995F, -195.746994F));
+ builder.AddLine(new Vector2(-778.719971F, -195.746994F));
+ builder.AddLine(new Vector2(-778.719971F, -167.186996F));
+ builder.AddLine(new Vector2(-775.119995F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1545()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-804.119995F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(-805.054016F, -171.667007F), new Vector2(-805.786987F, -172.432999F), new Vector2(-806.320007F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(-806.854004F, -174.380005F), new Vector2(-807.119995F, -175.492996F), new Vector2(-807.119995F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-807.119995F, -177.973007F), new Vector2(-806.854004F, -179.067001F), new Vector2(-806.320007F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(-805.786987F, -180.987F), new Vector2(-805.054016F, -181.740005F), new Vector2(-804.119995F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(-803.187012F, -182.832993F), new Vector2(-802.133972F, -183.106995F), new Vector2(-800.960022F, -183.106995F));
+ builder.AddCubicBezier(new Vector2(-799.734009F, -183.106995F), new Vector2(-798.659973F, -182.832993F), new Vector2(-797.73999F, -182.287003F));
+ builder.AddCubicBezier(new Vector2(-796.820007F, -181.740005F), new Vector2(-796.086975F, -180.987F), new Vector2(-795.539978F, -180.026993F));
+ builder.AddCubicBezier(new Vector2(-794.994019F, -179.067001F), new Vector2(-794.719971F, -177.973007F), new Vector2(-794.719971F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-794.719971F, -175.492996F), new Vector2(-794.987F, -174.380005F), new Vector2(-795.52002F, -173.406998F));
+ builder.AddCubicBezier(new Vector2(-796.054016F, -172.432999F), new Vector2(-796.786987F, -171.667007F), new Vector2(-797.719971F, -171.106995F));
+ builder.AddCubicBezier(new Vector2(-798.653992F, -170.546997F), new Vector2(-799.734009F, -170.266998F), new Vector2(-800.960022F, -170.266998F));
+ builder.AddCubicBezier(new Vector2(-802.133972F, -170.266998F), new Vector2(-803.187012F, -170.546997F), new Vector2(-804.119995F, -171.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-795.900024F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(-794.393982F, -168.987F), new Vector2(-793.200012F, -170.179993F), new Vector2(-792.320007F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(-791.440002F, -173.192993F), new Vector2(-791F, -174.880005F), new Vector2(-791F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-791F, -178.587006F), new Vector2(-791.440002F, -180.253006F), new Vector2(-792.320007F, -181.746994F));
+ builder.AddCubicBezier(new Vector2(-793.200012F, -183.240005F), new Vector2(-794.393982F, -184.419998F), new Vector2(-795.900024F, -185.287003F));
+ builder.AddCubicBezier(new Vector2(-797.406982F, -186.153F), new Vector2(-799.093994F, -186.587006F), new Vector2(-800.960022F, -186.587006F));
+ builder.AddCubicBezier(new Vector2(-802.799988F, -186.587006F), new Vector2(-804.46698F, -186.147003F), new Vector2(-805.960022F, -185.266998F));
+ builder.AddCubicBezier(new Vector2(-807.453979F, -184.386993F), new Vector2(-808.640015F, -183.207001F), new Vector2(-809.52002F, -181.727005F));
+ builder.AddCubicBezier(new Vector2(-810.400024F, -180.246994F), new Vector2(-810.840027F, -178.587006F), new Vector2(-810.840027F, -176.746994F));
+ builder.AddCubicBezier(new Vector2(-810.840027F, -174.880005F), new Vector2(-810.400024F, -173.192993F), new Vector2(-809.52002F, -171.686996F));
+ builder.AddCubicBezier(new Vector2(-808.640015F, -170.179993F), new Vector2(-807.453979F, -168.987F), new Vector2(-805.960022F, -168.106995F));
+ builder.AddCubicBezier(new Vector2(-804.46698F, -167.227005F), new Vector2(-802.799988F, -166.787003F), new Vector2(-800.960022F, -166.787003F));
+ builder.AddCubicBezier(new Vector2(-799.093994F, -166.787003F), new Vector2(-797.406982F, -167.227005F), new Vector2(-795.900024F, -168.106995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1546()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-808.200012F, -191.507004F));
+ builder.AddLine(new Vector2(-808.200012F, -194.947006F));
+ builder.AddLine(new Vector2(-830.799988F, -194.947006F));
+ builder.AddLine(new Vector2(-830.799988F, -191.507004F));
+ builder.AddLine(new Vector2(-808.200012F, -191.507004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-817.599976F, -167.186996F));
+ builder.AddLine(new Vector2(-817.599976F, -194.147003F));
+ builder.AddLine(new Vector2(-821.400024F, -194.147003F));
+ builder.AddLine(new Vector2(-821.400024F, -167.186996F));
+ builder.AddLine(new Vector2(-817.599976F, -167.186996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1547()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(664.77301F, -276.871002F));
+ builder.AddCubicBezier(new Vector2(665.401978F, -277.533997F), new Vector2(665.71698F, -278.325012F), new Vector2(665.71698F, -279.243011F));
+ builder.AddCubicBezier(new Vector2(665.71698F, -280.194F), new Vector2(665.401978F, -280.984009F), new Vector2(664.77301F, -281.614014F));
+ builder.AddCubicBezier(new Vector2(664.143005F, -282.243011F), new Vector2(663.353027F, -282.558014F), new Vector2(662.401978F, -282.558014F));
+ builder.AddCubicBezier(new Vector2(661.414978F, -282.558014F), new Vector2(660.617004F, -282.243011F), new Vector2(660.005005F, -281.614014F));
+ builder.AddCubicBezier(new Vector2(659.393005F, -280.984009F), new Vector2(659.086975F, -280.194F), new Vector2(659.086975F, -279.243011F));
+ builder.AddCubicBezier(new Vector2(659.086975F, -278.325012F), new Vector2(659.393005F, -277.533997F), new Vector2(660.005005F, -276.871002F));
+ builder.AddCubicBezier(new Vector2(660.617004F, -276.208008F), new Vector2(661.414978F, -275.877014F), new Vector2(662.401978F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(663.353027F, -275.877014F), new Vector2(664.143005F, -276.208008F), new Vector2(664.77301F, -276.871002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1548()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(641.747009F, -266.238007F));
+ builder.AddLine(new Vector2(646.336975F, -276.183014F));
+ builder.AddLine(new Vector2(643.736023F, -280.875F));
+ builder.AddLine(new Vector2(636.646973F, -266.238007F));
+ builder.AddLine(new Vector2(641.747009F, -266.238007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(646.336975F, -276.183014F));
+ builder.AddLine(new Vector2(657.658997F, -300.612F));
+ builder.AddLine(new Vector2(652.559021F, -300.612F));
+ builder.AddLine(new Vector2(644.348022F, -281.487F));
+ builder.AddLine(new Vector2(645.97998F, -281.487F));
+ builder.AddLine(new Vector2(638.177002F, -300.612F));
+ builder.AddLine(new Vector2(633.077026F, -300.612F));
+ builder.AddLine(new Vector2(643.583008F, -276.183014F));
+ builder.AddLine(new Vector2(646.336975F, -276.183014F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1549()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(621.80603F, -295.154999F));
+ builder.AddCubicBezier(new Vector2(622.893982F, -296.243011F), new Vector2(624.286987F, -296.786987F), new Vector2(625.987976F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(626.804016F, -296.786987F), new Vector2(627.518005F, -296.666992F), new Vector2(628.130005F, -296.429993F));
+ builder.AddCubicBezier(new Vector2(628.742004F, -296.191986F), new Vector2(629.302979F, -295.799988F), new Vector2(629.812988F, -295.256989F));
+ builder.AddLine(new Vector2(632.822021F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(631.971985F, -299.354004F), new Vector2(631.054016F, -300.058014F), new Vector2(630.067993F, -300.484009F));
+ builder.AddCubicBezier(new Vector2(629.080994F, -300.908997F), new Vector2(627.97699F, -301.122009F), new Vector2(626.752991F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(624.067017F, -301.122009F), new Vector2(622.01001F, -300.20401F), new Vector2(620.58197F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(619.153992F, -296.532013F), new Vector2(618.440002F, -294.06601F), new Vector2(618.440002F, -290.972992F));
+ builder.AddLine(new Vector2(620.174011F, -290.157013F));
+ builder.AddCubicBezier(new Vector2(620.174011F, -292.401001F), new Vector2(620.71698F, -294.06601F), new Vector2(621.80603F, -295.154999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(620.174011F, -276.386993F));
+ builder.AddLine(new Vector2(620.174011F, -300.612F));
+ builder.AddLine(new Vector2(615.583984F, -300.612F));
+ builder.AddLine(new Vector2(615.583984F, -276.386993F));
+ builder.AddLine(new Vector2(620.174011F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1550()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(611.096008F, -296.429993F));
+ builder.AddLine(new Vector2(611.096008F, -300.612F));
+ builder.AddLine(new Vector2(594.572021F, -300.612F));
+ builder.AddLine(new Vector2(594.572021F, -296.429993F));
+ builder.AddLine(new Vector2(611.096008F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(605.129028F, -276.386993F));
+ builder.AddLine(new Vector2(605.129028F, -310.760986F));
+ builder.AddLine(new Vector2(600.539001F, -310.760986F));
+ builder.AddLine(new Vector2(600.539001F, -276.386993F));
+ builder.AddLine(new Vector2(605.129028F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1551()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(573.763977F, -276.386993F));
+ builder.AddLine(new Vector2(573.763977F, -300.612F));
+ builder.AddLine(new Vector2(569.174011F, -300.612F));
+ builder.AddLine(new Vector2(569.174011F, -276.386993F));
+ builder.AddLine(new Vector2(573.763977F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(590.900024F, -276.386993F));
+ builder.AddLine(new Vector2(590.900024F, -291.432007F));
+ builder.AddCubicBezier(new Vector2(590.900024F, -293.096985F), new Vector2(590.492004F, -294.670013F), new Vector2(589.676025F, -296.148987F));
+ builder.AddCubicBezier(new Vector2(588.859985F, -297.627991F), new Vector2(587.745972F, -298.826996F), new Vector2(586.335999F, -299.744995F));
+ builder.AddCubicBezier(new Vector2(584.924988F, -300.662994F), new Vector2(583.301025F, -301.122009F), new Vector2(581.465027F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(579.629028F, -301.122009F), new Vector2(577.979004F, -300.704987F), new Vector2(576.518005F, -299.872009F));
+ builder.AddCubicBezier(new Vector2(575.05603F, -299.037994F), new Vector2(573.916992F, -297.908997F), new Vector2(573.101013F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(572.284973F, -295.053009F), new Vector2(571.877014F, -293.42099F), new Vector2(571.877014F, -291.584991F));
+ builder.AddLine(new Vector2(573.763977F, -290.514008F));
+ builder.AddCubicBezier(new Vector2(573.763977F, -291.738007F), new Vector2(574.036011F, -292.825989F), new Vector2(574.580017F, -293.778015F));
+ builder.AddCubicBezier(new Vector2(575.124023F, -294.729004F), new Vector2(575.872009F, -295.477997F), new Vector2(576.823975F, -296.022003F));
+ builder.AddCubicBezier(new Vector2(577.775024F, -296.565002F), new Vector2(578.864014F, -296.838013F), new Vector2(580.088013F, -296.838013F));
+ builder.AddCubicBezier(new Vector2(581.924011F, -296.838013F), new Vector2(583.409973F, -296.243011F), new Vector2(584.549988F, -295.053009F));
+ builder.AddCubicBezier(new Vector2(585.689026F, -293.862F), new Vector2(586.258972F, -292.350006F), new Vector2(586.258972F, -290.514008F));
+ builder.AddLine(new Vector2(586.258972F, -276.386993F));
+ builder.AddLine(new Vector2(590.900024F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1552()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(558.005005F, -277.278992F));
+ builder.AddCubicBezier(new Vector2(559.567993F, -278.145996F), new Vector2(560.791992F, -279.377991F), new Vector2(561.677002F, -280.97699F));
+ builder.AddCubicBezier(new Vector2(562.560974F, -282.575012F), new Vector2(563.002991F, -284.427002F), new Vector2(563.002991F, -286.536011F));
+ builder.AddLine(new Vector2(563.002991F, -300.612F));
+ builder.AddLine(new Vector2(558.413025F, -300.612F));
+ builder.AddLine(new Vector2(558.413025F, -286.73999F));
+ builder.AddCubicBezier(new Vector2(558.413025F, -284.733002F), new Vector2(557.903015F, -283.161011F), new Vector2(556.882996F, -282.022003F));
+ builder.AddCubicBezier(new Vector2(555.862976F, -280.881989F), new Vector2(554.452026F, -280.313995F), new Vector2(552.650024F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(551.458984F, -280.313995F), new Vector2(550.422974F, -280.569F), new Vector2(549.539001F, -281.07901F));
+ builder.AddCubicBezier(new Vector2(548.653992F, -281.588989F), new Vector2(547.982971F, -282.328003F), new Vector2(547.523987F, -283.296997F));
+ builder.AddCubicBezier(new Vector2(547.065002F, -284.265991F), new Vector2(546.835999F, -285.414001F), new Vector2(546.835999F, -286.73999F));
+ builder.AddLine(new Vector2(546.835999F, -300.612F));
+ builder.AddLine(new Vector2(542.245972F, -300.612F));
+ builder.AddLine(new Vector2(542.245972F, -286.536011F));
+ builder.AddCubicBezier(new Vector2(542.245972F, -284.427002F), new Vector2(542.687012F, -282.575012F), new Vector2(543.572021F, -280.97699F));
+ builder.AddCubicBezier(new Vector2(544.455994F, -279.377991F), new Vector2(545.687988F, -278.145996F), new Vector2(547.268982F, -277.278992F));
+ builder.AddCubicBezier(new Vector2(548.849976F, -276.411987F), new Vector2(550.643005F, -275.979004F), new Vector2(552.650024F, -275.979004F));
+ builder.AddCubicBezier(new Vector2(554.656006F, -275.979004F), new Vector2(556.440979F, -276.411987F), new Vector2(558.005005F, -277.278992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1553()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(521.030029F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(519.838989F, -282.098999F), new Vector2(518.905029F, -283.075012F), new Vector2(518.224976F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(517.544983F, -285.558014F), new Vector2(517.205017F, -286.97699F), new Vector2(517.205017F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(517.205017F, -290.139008F), new Vector2(517.544983F, -291.533997F), new Vector2(518.224976F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(518.905029F, -293.981995F), new Vector2(519.838989F, -294.941986F), new Vector2(521.030029F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(522.219971F, -296.334991F), new Vector2(523.562012F, -296.684998F), new Vector2(525.059021F, -296.684998F));
+ builder.AddCubicBezier(new Vector2(526.622009F, -296.684998F), new Vector2(527.991028F, -296.334991F), new Vector2(529.164001F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(530.336975F, -294.941986F), new Vector2(531.271973F, -293.981995F), new Vector2(531.968994F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(532.664978F, -291.533997F), new Vector2(533.015015F, -290.139008F), new Vector2(533.015015F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(533.015015F, -286.97699F), new Vector2(532.674988F, -285.558014F), new Vector2(531.994995F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(531.314026F, -283.075012F), new Vector2(530.380005F, -282.098999F), new Vector2(529.190002F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(527.999023F, -280.67099F), new Vector2(526.622009F, -280.313995F), new Vector2(525.059021F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(523.562012F, -280.313995F), new Vector2(522.219971F, -280.67099F), new Vector2(521.030029F, -281.38501F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(531.51001F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(533.429993F, -278.682007F), new Vector2(534.953003F, -280.203003F), new Vector2(536.075012F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(537.197021F, -284.044006F), new Vector2(537.757996F, -286.196014F), new Vector2(537.757996F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(537.757996F, -290.921997F), new Vector2(537.197021F, -293.04599F), new Vector2(536.075012F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(534.953003F, -296.855011F), new Vector2(533.429993F, -298.359009F), new Vector2(531.51001F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(529.588989F, -300.567993F), new Vector2(527.437988F, -301.122009F), new Vector2(525.059021F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(522.713013F, -301.122009F), new Vector2(520.588013F, -300.561005F), new Vector2(518.684021F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(516.778992F, -298.316986F), new Vector2(515.267029F, -296.812012F), new Vector2(514.14502F, -294.924988F));
+ builder.AddCubicBezier(new Vector2(513.02301F, -293.037994F), new Vector2(512.461975F, -290.921997F), new Vector2(512.461975F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(512.461975F, -286.196014F), new Vector2(513.02301F, -284.044006F), new Vector2(514.14502F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(515.267029F, -280.203003F), new Vector2(516.778992F, -278.682007F), new Vector2(518.684021F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(520.588013F, -276.437988F), new Vector2(522.713013F, -275.877014F), new Vector2(525.059021F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(527.437988F, -275.877014F), new Vector2(529.588989F, -276.437988F), new Vector2(531.51001F, -277.559998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1554()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(505.858002F, -276.947998F));
+ builder.AddCubicBezier(new Vector2(507.471985F, -277.661987F), new Vector2(508.841003F, -278.664001F), new Vector2(509.963013F, -279.957001F));
+ builder.AddLine(new Vector2(506.95401F, -283.016998F));
+ builder.AddCubicBezier(new Vector2(506.17099F, -282.131989F), new Vector2(505.246002F, -281.460999F), new Vector2(504.174988F, -281.002014F));
+ builder.AddCubicBezier(new Vector2(503.104004F, -280.542999F), new Vector2(501.921997F, -280.313995F), new Vector2(500.630005F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(499.100006F, -280.313995F), new Vector2(497.73999F, -280.67099F), new Vector2(496.549988F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(495.359009F, -282.098999F), new Vector2(494.424988F, -283.067993F), new Vector2(493.744995F, -284.291992F));
+ builder.AddCubicBezier(new Vector2(493.063995F, -285.515991F), new Vector2(492.725006F, -286.925995F), new Vector2(492.725006F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(492.725006F, -290.122986F), new Vector2(493.063995F, -291.533997F), new Vector2(493.744995F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(494.424988F, -293.981995F), new Vector2(495.359009F, -294.941986F), new Vector2(496.549988F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(497.73999F, -296.334991F), new Vector2(499.100006F, -296.684998F), new Vector2(500.630005F, -296.684998F));
+ builder.AddCubicBezier(new Vector2(501.886993F, -296.684998F), new Vector2(503.059998F, -296.454987F), new Vector2(504.148987F, -295.996002F));
+ builder.AddCubicBezier(new Vector2(505.237F, -295.536987F), new Vector2(506.154999F, -294.865997F), new Vector2(506.903015F, -293.981995F));
+ builder.AddLine(new Vector2(509.963013F, -297.041992F));
+ builder.AddCubicBezier(new Vector2(508.807007F, -298.368011F), new Vector2(507.429993F, -299.378998F), new Vector2(505.832001F, -300.075989F));
+ builder.AddCubicBezier(new Vector2(504.233002F, -300.772003F), new Vector2(502.498993F, -301.122009F), new Vector2(500.630005F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(498.25F, -301.122009F), new Vector2(496.098999F, -300.567993F), new Vector2(494.178986F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(492.257996F, -298.359009F), new Vector2(490.743988F, -296.855011F), new Vector2(489.640015F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(488.535004F, -293.04599F), new Vector2(487.981995F, -290.903992F), new Vector2(487.981995F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(487.981995F, -286.178986F), new Vector2(488.535004F, -284.044006F), new Vector2(489.640015F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(490.743988F, -280.203003F), new Vector2(492.257996F, -278.682007F), new Vector2(494.178986F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(496.098999F, -276.437988F), new Vector2(498.25F, -275.877014F), new Vector2(500.630005F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(502.498993F, -275.877014F), new Vector2(504.243011F, -276.234009F), new Vector2(505.858002F, -276.947998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1555()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(471.433014F, -277.865997F));
+ builder.AddCubicBezier(new Vector2(473.046997F, -279.191986F), new Vector2(473.855011F, -280.993988F), new Vector2(473.855011F, -283.272003F));
+ builder.AddCubicBezier(new Vector2(473.855011F, -284.768005F), new Vector2(473.540985F, -285.975006F), new Vector2(472.911987F, -286.893005F));
+ builder.AddCubicBezier(new Vector2(472.282013F, -287.811005F), new Vector2(471.475006F, -288.541992F), new Vector2(470.489014F, -289.085999F));
+ builder.AddCubicBezier(new Vector2(469.502014F, -289.628998F), new Vector2(468.466003F, -290.062012F), new Vector2(467.377991F, -290.385986F));
+ builder.AddCubicBezier(new Vector2(466.289001F, -290.709015F), new Vector2(465.243988F, -291.023987F), new Vector2(464.242004F, -291.329987F));
+ builder.AddCubicBezier(new Vector2(463.239014F, -291.635986F), new Vector2(462.431F, -292.01001F), new Vector2(461.819F, -292.451996F));
+ builder.AddCubicBezier(new Vector2(461.207001F, -292.893005F), new Vector2(460.901001F, -293.52301F), new Vector2(460.901001F, -294.338989F));
+ builder.AddCubicBezier(new Vector2(460.901001F, -295.121002F), new Vector2(461.25F, -295.748993F), new Vector2(461.946991F, -296.226013F));
+ builder.AddCubicBezier(new Vector2(462.643005F, -296.701996F), new Vector2(463.654999F, -296.940002F), new Vector2(464.980988F, -296.940002F));
+ builder.AddCubicBezier(new Vector2(466.238007F, -296.940002F), new Vector2(467.359985F, -296.701996F), new Vector2(468.346985F, -296.226013F));
+ builder.AddCubicBezier(new Vector2(469.333008F, -295.748993F), new Vector2(470.183014F, -295.070007F), new Vector2(470.897003F, -294.186005F));
+ builder.AddLine(new Vector2(473.855011F, -297.144012F));
+ builder.AddCubicBezier(new Vector2(472.903015F, -298.470001F), new Vector2(471.687988F, -299.463989F), new Vector2(470.209015F, -300.127014F));
+ builder.AddCubicBezier(new Vector2(468.730011F, -300.790009F), new Vector2(467.037994F, -301.122009F), new Vector2(465.134003F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(463.330994F, -301.122009F), new Vector2(461.785004F, -300.833008F), new Vector2(460.493011F, -300.255005F));
+ builder.AddCubicBezier(new Vector2(459.200012F, -299.675995F), new Vector2(458.205994F, -298.85199F), new Vector2(457.51001F, -297.781006F));
+ builder.AddCubicBezier(new Vector2(456.812988F, -296.709991F), new Vector2(456.463989F, -295.442993F), new Vector2(456.463989F, -293.981995F));
+ builder.AddCubicBezier(new Vector2(456.463989F, -292.519989F), new Vector2(456.778015F, -291.337006F), new Vector2(457.40799F, -290.437012F));
+ builder.AddCubicBezier(new Vector2(458.036987F, -289.536011F), new Vector2(458.842987F, -288.830994F), new Vector2(459.829987F, -288.321014F));
+ builder.AddCubicBezier(new Vector2(460.81601F, -287.811005F), new Vector2(461.862F, -287.403015F), new Vector2(462.96701F, -287.096985F));
+ builder.AddCubicBezier(new Vector2(464.071014F, -286.790985F), new Vector2(465.115997F, -286.476013F), new Vector2(466.102997F, -286.153015F));
+ builder.AddCubicBezier(new Vector2(467.088989F, -285.82901F), new Vector2(467.895996F, -285.42099F), new Vector2(468.526001F, -284.928986F));
+ builder.AddCubicBezier(new Vector2(469.154999F, -284.436005F), new Vector2(469.468994F, -283.747986F), new Vector2(469.468994F, -282.864014F));
+ builder.AddCubicBezier(new Vector2(469.468994F, -281.979004F), new Vector2(469.078003F, -281.290009F), new Vector2(468.29599F, -280.798004F));
+ builder.AddCubicBezier(new Vector2(467.513F, -280.304993F), new Vector2(466.408997F, -280.05899F), new Vector2(464.980988F, -280.05899F));
+ builder.AddCubicBezier(new Vector2(463.553009F, -280.05899F), new Vector2(462.26001F, -280.321014F), new Vector2(461.105011F, -280.848999F));
+ builder.AddCubicBezier(new Vector2(459.949005F, -281.376007F), new Vector2(458.928986F, -282.183014F), new Vector2(458.045013F, -283.272003F));
+ builder.AddLine(new Vector2(455.087006F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(455.834015F, -279.395996F), new Vector2(456.710999F, -278.605011F), new Vector2(457.713989F, -277.941986F));
+ builder.AddCubicBezier(new Vector2(458.716003F, -277.278992F), new Vector2(459.829987F, -276.769012F), new Vector2(461.053986F, -276.411987F));
+ builder.AddCubicBezier(new Vector2(462.278015F, -276.054993F), new Vector2(463.570007F, -275.877014F), new Vector2(464.929993F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(467.649994F, -275.877014F), new Vector2(469.817993F, -276.540009F), new Vector2(471.433014F, -277.865997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1556()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(450.242004F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(450.785004F, -306.859009F), new Vector2(451.058014F, -307.565002F), new Vector2(451.058014F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(451.058014F, -309.230988F), new Vector2(450.785004F, -309.919006F), new Vector2(450.242004F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(449.697998F, -311.040985F), new Vector2(449F, -311.321991F), new Vector2(448.151001F, -311.321991F));
+ builder.AddCubicBezier(new Vector2(447.300995F, -311.321991F), new Vector2(446.602997F, -311.040985F), new Vector2(446.059998F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(445.515991F, -309.919006F), new Vector2(445.243988F, -309.230988F), new Vector2(445.243988F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(445.243988F, -307.565002F), new Vector2(445.515991F, -306.859009F), new Vector2(446.059998F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(446.602997F, -305.737F), new Vector2(447.300995F, -305.457001F), new Vector2(448.151001F, -305.457001F));
+ builder.AddCubicBezier(new Vector2(449F, -305.457001F), new Vector2(449.697998F, -305.737F), new Vector2(450.242004F, -306.298004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(450.446014F, -276.386993F));
+ builder.AddLine(new Vector2(450.446014F, -300.612F));
+ builder.AddLine(new Vector2(445.804993F, -300.612F));
+ builder.AddLine(new Vector2(445.804993F, -276.386993F));
+ builder.AddLine(new Vector2(450.446014F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1557()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(422.446991F, -276.386993F));
+ builder.AddLine(new Vector2(422.446991F, -312.800995F));
+ builder.AddLine(new Vector2(417.856995F, -312.800995F));
+ builder.AddLine(new Vector2(417.856995F, -276.386993F));
+ builder.AddLine(new Vector2(422.446991F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(439.583008F, -276.386993F));
+ builder.AddLine(new Vector2(439.583008F, -291.432007F));
+ builder.AddCubicBezier(new Vector2(439.583008F, -293.335999F), new Vector2(439.174988F, -295.019012F), new Vector2(438.359009F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(437.542999F, -297.941986F), new Vector2(436.428009F, -299.082001F), new Vector2(435.018005F, -299.89801F));
+ builder.AddCubicBezier(new Vector2(433.606995F, -300.713989F), new Vector2(431.984009F, -301.122009F), new Vector2(430.14801F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(428.312012F, -301.122009F), new Vector2(426.661987F, -300.704987F), new Vector2(425.200989F, -299.872009F));
+ builder.AddCubicBezier(new Vector2(423.739014F, -299.037994F), new Vector2(422.600006F, -297.908997F), new Vector2(421.783997F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(420.967987F, -295.053009F), new Vector2(420.559998F, -293.42099F), new Vector2(420.559998F, -291.584991F));
+ builder.AddLine(new Vector2(422.446991F, -290.514008F));
+ builder.AddCubicBezier(new Vector2(422.446991F, -291.738007F), new Vector2(422.718994F, -292.825989F), new Vector2(423.263F, -293.778015F));
+ builder.AddCubicBezier(new Vector2(423.806F, -294.729004F), new Vector2(424.554993F, -295.477997F), new Vector2(425.506989F, -296.022003F));
+ builder.AddCubicBezier(new Vector2(426.458008F, -296.565002F), new Vector2(427.546997F, -296.838013F), new Vector2(428.770996F, -296.838013F));
+ builder.AddCubicBezier(new Vector2(430.606995F, -296.838013F), new Vector2(432.092987F, -296.243011F), new Vector2(433.233002F, -295.053009F));
+ builder.AddCubicBezier(new Vector2(434.372009F, -293.862F), new Vector2(434.941986F, -292.350006F), new Vector2(434.941986F, -290.514008F));
+ builder.AddLine(new Vector2(434.941986F, -276.386993F));
+ builder.AddLine(new Vector2(439.583008F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1558()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(413.368988F, -296.429993F));
+ builder.AddLine(new Vector2(413.368988F, -300.612F));
+ builder.AddLine(new Vector2(396.845001F, -300.612F));
+ builder.AddLine(new Vector2(396.845001F, -296.429993F));
+ builder.AddLine(new Vector2(413.368988F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(407.402008F, -276.386993F));
+ builder.AddLine(new Vector2(407.402008F, -310.760986F));
+ builder.AddLine(new Vector2(402.812012F, -310.760986F));
+ builder.AddLine(new Vector2(402.812012F, -276.386993F));
+ builder.AddLine(new Vector2(407.402008F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1559()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(383.941986F, -296.429993F));
+ builder.AddLine(new Vector2(383.941986F, -300.612F));
+ builder.AddLine(new Vector2(365.68399F, -300.612F));
+ builder.AddLine(new Vector2(365.68399F, -296.429993F));
+ builder.AddLine(new Vector2(383.941986F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(376.240997F, -276.386993F));
+ builder.AddLine(new Vector2(376.240997F, -304.233002F));
+ builder.AddCubicBezier(new Vector2(376.240997F, -305.729004F), new Vector2(376.640991F, -306.891998F), new Vector2(377.440002F, -307.726013F));
+ builder.AddCubicBezier(new Vector2(378.238007F, -308.55899F), new Vector2(379.368988F, -308.976013F), new Vector2(380.830994F, -308.976013F));
+ builder.AddCubicBezier(new Vector2(381.613007F, -308.976013F), new Vector2(382.276001F, -308.855988F), new Vector2(382.820007F, -308.618988F));
+ builder.AddCubicBezier(new Vector2(383.363007F, -308.381012F), new Vector2(383.856995F, -308.023987F), new Vector2(384.299011F, -307.548004F));
+ builder.AddLine(new Vector2(387.308014F, -310.506012F));
+ builder.AddCubicBezier(new Vector2(386.458008F, -311.424011F), new Vector2(385.52301F, -312.119995F), new Vector2(384.502991F, -312.596985F));
+ builder.AddCubicBezier(new Vector2(383.483002F, -313.072998F), new Vector2(382.276001F, -313.311005F), new Vector2(380.881989F, -313.311005F));
+ builder.AddCubicBezier(new Vector2(379.04599F, -313.311005F), new Vector2(377.431F, -312.920013F), new Vector2(376.036987F, -312.138F));
+ builder.AddCubicBezier(new Vector2(374.641998F, -311.355011F), new Vector2(373.554993F, -310.283997F), new Vector2(372.77301F, -308.924988F));
+ builder.AddCubicBezier(new Vector2(371.98999F, -307.565002F), new Vector2(371.600006F, -306F), new Vector2(371.600006F, -304.233002F));
+ builder.AddLine(new Vector2(371.600006F, -276.386993F));
+ builder.AddLine(new Vector2(376.240997F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1560()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(347.119995F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(345.928986F, -282.098999F), new Vector2(344.994995F, -283.075012F), new Vector2(344.315002F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(343.634003F, -285.558014F), new Vector2(343.295013F, -286.97699F), new Vector2(343.295013F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(343.295013F, -290.139008F), new Vector2(343.634003F, -291.533997F), new Vector2(344.315002F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(344.994995F, -293.981995F), new Vector2(345.928986F, -294.941986F), new Vector2(347.119995F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(348.309998F, -296.334991F), new Vector2(349.652008F, -296.684998F), new Vector2(351.148987F, -296.684998F));
+ builder.AddCubicBezier(new Vector2(352.712006F, -296.684998F), new Vector2(354.080994F, -296.334991F), new Vector2(355.253998F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(356.427002F, -294.941986F), new Vector2(357.362F, -293.981995F), new Vector2(358.05899F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(358.755005F, -291.533997F), new Vector2(359.105011F, -290.139008F), new Vector2(359.105011F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(359.105011F, -286.97699F), new Vector2(358.765015F, -285.558014F), new Vector2(358.084991F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(357.403992F, -283.075012F), new Vector2(356.470001F, -282.098999F), new Vector2(355.279999F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(354.088989F, -280.67099F), new Vector2(352.712006F, -280.313995F), new Vector2(351.148987F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(349.652008F, -280.313995F), new Vector2(348.309998F, -280.67099F), new Vector2(347.119995F, -281.38501F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(357.600006F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(359.519989F, -278.682007F), new Vector2(361.042999F, -280.203003F), new Vector2(362.165009F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(363.286987F, -284.044006F), new Vector2(363.847992F, -286.196014F), new Vector2(363.847992F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(363.847992F, -290.921997F), new Vector2(363.286987F, -293.04599F), new Vector2(362.165009F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(361.042999F, -296.855011F), new Vector2(359.519989F, -298.359009F), new Vector2(357.600006F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(355.678986F, -300.567993F), new Vector2(353.528015F, -301.122009F), new Vector2(351.148987F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(348.803009F, -301.122009F), new Vector2(346.678009F, -300.561005F), new Vector2(344.773987F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(342.868988F, -298.316986F), new Vector2(341.356995F, -296.812012F), new Vector2(340.234985F, -294.924988F));
+ builder.AddCubicBezier(new Vector2(339.113007F, -293.037994F), new Vector2(338.552002F, -290.921997F), new Vector2(338.552002F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(338.552002F, -286.196014F), new Vector2(339.113007F, -284.044006F), new Vector2(340.234985F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(341.356995F, -280.203003F), new Vector2(342.868988F, -278.682007F), new Vector2(344.773987F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(346.678009F, -276.437988F), new Vector2(348.803009F, -275.877014F), new Vector2(351.148987F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(353.528015F, -275.877014F), new Vector2(355.678986F, -276.437988F), new Vector2(357.600006F, -277.559998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1561()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(306.217987F, -276.386993F));
+ builder.AddLine(new Vector2(306.217987F, -300.612F));
+ builder.AddLine(new Vector2(301.627991F, -300.612F));
+ builder.AddLine(new Vector2(301.627991F, -276.386993F));
+ builder.AddLine(new Vector2(306.217987F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(323.354004F, -276.386993F));
+ builder.AddLine(new Vector2(323.354004F, -291.432007F));
+ builder.AddCubicBezier(new Vector2(323.354004F, -293.096985F), new Vector2(322.946014F, -294.670013F), new Vector2(322.130005F, -296.148987F));
+ builder.AddCubicBezier(new Vector2(321.313995F, -297.627991F), new Vector2(320.199005F, -298.826996F), new Vector2(318.789001F, -299.744995F));
+ builder.AddCubicBezier(new Vector2(317.377991F, -300.662994F), new Vector2(315.755005F, -301.122009F), new Vector2(313.919006F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(312.083008F, -301.122009F), new Vector2(310.433014F, -300.704987F), new Vector2(308.971985F, -299.872009F));
+ builder.AddCubicBezier(new Vector2(307.51001F, -299.037994F), new Vector2(306.371002F, -297.908997F), new Vector2(305.554993F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(304.739014F, -295.053009F), new Vector2(304.330994F, -293.42099F), new Vector2(304.330994F, -291.584991F));
+ builder.AddLine(new Vector2(306.217987F, -290.514008F));
+ builder.AddCubicBezier(new Vector2(306.217987F, -291.738007F), new Vector2(306.48999F, -292.825989F), new Vector2(307.033997F, -293.778015F));
+ builder.AddCubicBezier(new Vector2(307.576996F, -294.729004F), new Vector2(308.325989F, -295.477997F), new Vector2(309.278015F, -296.022003F));
+ builder.AddCubicBezier(new Vector2(310.229004F, -296.565002F), new Vector2(311.317993F, -296.838013F), new Vector2(312.541992F, -296.838013F));
+ builder.AddCubicBezier(new Vector2(314.377991F, -296.838013F), new Vector2(315.864014F, -296.243011F), new Vector2(317.003998F, -295.053009F));
+ builder.AddCubicBezier(new Vector2(318.143005F, -293.862F), new Vector2(318.713013F, -292.350006F), new Vector2(318.713013F, -290.514008F));
+ builder.AddLine(new Vector2(318.713013F, -276.386993F));
+ builder.AddLine(new Vector2(323.354004F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1562()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(279.799988F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(278.609009F, -282.098999F), new Vector2(277.674988F, -283.075012F), new Vector2(276.994995F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(276.313995F, -285.558014F), new Vector2(275.975006F, -286.97699F), new Vector2(275.975006F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(275.975006F, -290.139008F), new Vector2(276.313995F, -291.533997F), new Vector2(276.994995F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(277.674988F, -293.981995F), new Vector2(278.609009F, -294.941986F), new Vector2(279.799988F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(280.98999F, -296.334991F), new Vector2(282.332001F, -296.684998F), new Vector2(283.82901F, -296.684998F));
+ builder.AddCubicBezier(new Vector2(285.391998F, -296.684998F), new Vector2(286.761993F, -296.334991F), new Vector2(287.934998F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(289.108002F, -294.941986F), new Vector2(290.042999F, -293.981995F), new Vector2(290.73999F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(291.436005F, -291.533997F), new Vector2(291.785004F, -290.139008F), new Vector2(291.785004F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(291.785004F, -286.97699F), new Vector2(291.445007F, -285.558014F), new Vector2(290.765015F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(290.084015F, -283.075012F), new Vector2(289.149994F, -282.098999F), new Vector2(287.959991F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(286.769012F, -280.67099F), new Vector2(285.391998F, -280.313995F), new Vector2(283.82901F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(282.332001F, -280.313995F), new Vector2(280.98999F, -280.67099F), new Vector2(279.799988F, -281.38501F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(290.281006F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(292.200989F, -278.682007F), new Vector2(293.722992F, -280.203003F), new Vector2(294.845001F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(295.96701F, -284.044006F), new Vector2(296.528015F, -286.196014F), new Vector2(296.528015F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(296.528015F, -290.921997F), new Vector2(295.96701F, -293.04599F), new Vector2(294.845001F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(293.722992F, -296.855011F), new Vector2(292.200989F, -298.359009F), new Vector2(290.281006F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(288.359985F, -300.567993F), new Vector2(286.208008F, -301.122009F), new Vector2(283.82901F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(281.483002F, -301.122009F), new Vector2(279.358002F, -300.561005F), new Vector2(277.45401F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(275.549011F, -298.316986F), new Vector2(274.036987F, -296.812012F), new Vector2(272.915009F, -294.924988F));
+ builder.AddCubicBezier(new Vector2(271.792999F, -293.037994F), new Vector2(271.231995F, -290.921997F), new Vector2(271.231995F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(271.231995F, -286.196014F), new Vector2(271.792999F, -284.044006F), new Vector2(272.915009F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(274.036987F, -280.203003F), new Vector2(275.549011F, -278.682007F), new Vector2(277.45401F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(279.358002F, -276.437988F), new Vector2(281.483002F, -275.877014F), new Vector2(283.82901F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(286.208008F, -275.877014F), new Vector2(288.359985F, -276.437988F), new Vector2(290.281006F, -277.559998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1563()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(265.825989F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(266.368988F, -306.859009F), new Vector2(266.641998F, -307.565002F), new Vector2(266.641998F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(266.641998F, -309.230988F), new Vector2(266.368988F, -309.919006F), new Vector2(265.825989F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(265.282013F, -311.040985F), new Vector2(264.584015F, -311.321991F), new Vector2(263.734985F, -311.321991F));
+ builder.AddCubicBezier(new Vector2(262.88501F, -311.321991F), new Vector2(262.187012F, -311.040985F), new Vector2(261.644012F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(261.100006F, -309.919006F), new Vector2(260.828003F, -309.230988F), new Vector2(260.828003F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(260.828003F, -307.565002F), new Vector2(261.100006F, -306.859009F), new Vector2(261.644012F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(262.187012F, -305.737F), new Vector2(262.88501F, -305.457001F), new Vector2(263.734985F, -305.457001F));
+ builder.AddCubicBezier(new Vector2(264.584015F, -305.457001F), new Vector2(265.282013F, -305.737F), new Vector2(265.825989F, -306.298004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(266.029999F, -276.386993F));
+ builder.AddLine(new Vector2(266.029999F, -300.612F));
+ builder.AddLine(new Vector2(261.389008F, -300.612F));
+ builder.AddLine(new Vector2(261.389008F, -276.386993F));
+ builder.AddLine(new Vector2(266.029999F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1564()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(256.901001F, -296.429993F));
+ builder.AddLine(new Vector2(256.901001F, -300.612F));
+ builder.AddLine(new Vector2(240.376999F, -300.612F));
+ builder.AddLine(new Vector2(240.376999F, -296.429993F));
+ builder.AddLine(new Vector2(256.901001F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(250.934006F, -276.386993F));
+ builder.AddLine(new Vector2(250.934006F, -310.760986F));
+ builder.AddLine(new Vector2(246.343994F, -310.760986F));
+ builder.AddLine(new Vector2(246.343994F, -276.386993F));
+ builder.AddLine(new Vector2(250.934006F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1565()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(236.042007F, -276.386993F));
+ builder.AddLine(new Vector2(236.042007F, -300.612F));
+ builder.AddLine(new Vector2(231.401001F, -300.612F));
+ builder.AddLine(new Vector2(231.401001F, -294.696014F));
+ builder.AddLine(new Vector2(232.268005F, -288.830994F));
+ builder.AddLine(new Vector2(231.401001F, -282.915009F));
+ builder.AddLine(new Vector2(231.401001F, -276.386993F));
+ builder.AddLine(new Vector2(236.042007F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(220.028F, -281.28299F));
+ builder.AddCubicBezier(new Vector2(218.837006F, -281.997009F), new Vector2(217.910995F, -282.972992F), new Vector2(217.248001F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(216.585007F, -285.455994F), new Vector2(216.253998F, -286.893005F), new Vector2(216.253998F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(216.253998F, -290.122986F), new Vector2(216.585007F, -291.540985F), new Vector2(217.248001F, -292.78299F));
+ builder.AddCubicBezier(new Vector2(217.910995F, -294.023987F), new Vector2(218.828995F, -295.002014F), new Vector2(220.001999F, -295.716003F));
+ builder.AddCubicBezier(new Vector2(221.175003F, -296.429993F), new Vector2(222.526993F, -296.786987F), new Vector2(224.057007F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(225.587006F, -296.786987F), new Vector2(226.919998F, -296.437012F), new Vector2(228.059998F, -295.740997F));
+ builder.AddCubicBezier(new Vector2(229.199005F, -295.044006F), new Vector2(230.091995F, -294.06601F), new Vector2(230.738007F, -292.80899F));
+ builder.AddCubicBezier(new Vector2(231.382996F, -291.550995F), new Vector2(231.707001F, -290.105988F), new Vector2(231.707001F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(231.707001F, -286.05899F), new Vector2(231.009995F, -284.07901F), new Vector2(229.615997F, -282.532013F));
+ builder.AddCubicBezier(new Vector2(228.220993F, -280.984009F), new Vector2(226.384995F, -280.212006F), new Vector2(224.108002F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(222.578003F, -280.212006F), new Vector2(221.218002F, -280.569F), new Vector2(220.028F, -281.28299F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(228.289993F, -277.023987F));
+ builder.AddCubicBezier(new Vector2(229.751007F, -277.789001F), new Vector2(230.916F, -278.85199F), new Vector2(231.783005F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(232.649994F, -281.571014F), new Vector2(233.134995F, -283.118988F), new Vector2(233.237F, -284.852997F));
+ builder.AddLine(new Vector2(233.237F, -292.145996F));
+ builder.AddCubicBezier(new Vector2(233.134995F, -293.912994F), new Vector2(232.641998F, -295.467987F), new Vector2(231.757996F, -296.812012F));
+ builder.AddCubicBezier(new Vector2(230.873001F, -298.154999F), new Vector2(229.709F, -299.209015F), new Vector2(228.264008F, -299.973999F));
+ builder.AddCubicBezier(new Vector2(226.817993F, -300.739014F), new Vector2(225.179001F, -301.122009F), new Vector2(223.343002F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(221.098999F, -301.122009F), new Vector2(219.084F, -300.561005F), new Vector2(217.298996F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(215.514008F, -298.316986F), new Vector2(214.102997F, -296.803986F), new Vector2(213.065994F, -294.899994F));
+ builder.AddCubicBezier(new Vector2(212.028F, -292.994995F), new Vector2(211.511002F, -290.852997F), new Vector2(211.511002F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(211.511002F, -286.093994F), new Vector2(212.028F, -283.951996F), new Vector2(213.065994F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(214.102997F, -280.143005F), new Vector2(215.514008F, -278.638F), new Vector2(217.298996F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(219.084F, -276.428986F), new Vector2(221.098999F, -275.877014F), new Vector2(223.343002F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(225.179001F, -275.877014F), new Vector2(226.828003F, -276.259003F), new Vector2(228.289993F, -277.023987F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1566()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(201.871994F, -277.278992F));
+ builder.AddCubicBezier(new Vector2(203.434998F, -278.145996F), new Vector2(204.658997F, -279.377991F), new Vector2(205.544006F, -280.97699F));
+ builder.AddCubicBezier(new Vector2(206.427994F, -282.575012F), new Vector2(206.869995F, -284.427002F), new Vector2(206.869995F, -286.536011F));
+ builder.AddLine(new Vector2(206.869995F, -300.612F));
+ builder.AddLine(new Vector2(202.279999F, -300.612F));
+ builder.AddLine(new Vector2(202.279999F, -286.73999F));
+ builder.AddCubicBezier(new Vector2(202.279999F, -284.733002F), new Vector2(201.770004F, -283.161011F), new Vector2(200.75F, -282.022003F));
+ builder.AddCubicBezier(new Vector2(199.729996F, -280.881989F), new Vector2(198.319F, -280.313995F), new Vector2(196.516998F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(195.326004F, -280.313995F), new Vector2(194.289993F, -280.569F), new Vector2(193.406006F, -281.07901F));
+ builder.AddCubicBezier(new Vector2(192.520996F, -281.588989F), new Vector2(191.850998F, -282.328003F), new Vector2(191.391998F, -283.296997F));
+ builder.AddCubicBezier(new Vector2(190.932999F, -284.265991F), new Vector2(190.703003F, -285.414001F), new Vector2(190.703003F, -286.73999F));
+ builder.AddLine(new Vector2(190.703003F, -300.612F));
+ builder.AddLine(new Vector2(186.113007F, -300.612F));
+ builder.AddLine(new Vector2(186.113007F, -286.536011F));
+ builder.AddCubicBezier(new Vector2(186.113007F, -284.427002F), new Vector2(186.554001F, -282.575012F), new Vector2(187.438995F, -280.97699F));
+ builder.AddCubicBezier(new Vector2(188.322998F, -279.377991F), new Vector2(189.556F, -278.145996F), new Vector2(191.136993F, -277.278992F));
+ builder.AddCubicBezier(new Vector2(192.718002F, -276.411987F), new Vector2(194.509995F, -275.979004F), new Vector2(196.516998F, -275.979004F));
+ builder.AddCubicBezier(new Vector2(198.522995F, -275.979004F), new Vector2(200.307999F, -276.411987F), new Vector2(201.871994F, -277.278992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1567()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(182.237F, -296.429993F));
+ builder.AddLine(new Vector2(182.237F, -300.612F));
+ builder.AddLine(new Vector2(165.712997F, -300.612F));
+ builder.AddLine(new Vector2(165.712997F, -296.429993F));
+ builder.AddLine(new Vector2(182.237F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(176.270004F, -276.386993F));
+ builder.AddLine(new Vector2(176.270004F, -310.760986F));
+ builder.AddLine(new Vector2(171.679993F, -310.760986F));
+ builder.AddLine(new Vector2(171.679993F, -276.386993F));
+ builder.AddLine(new Vector2(176.270004F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1568()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(160.970001F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(161.513F, -306.859009F), new Vector2(161.785995F, -307.565002F), new Vector2(161.785995F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(161.785995F, -309.230988F), new Vector2(161.513F, -309.919006F), new Vector2(160.970001F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(160.425995F, -311.040985F), new Vector2(159.727997F, -311.321991F), new Vector2(158.878998F, -311.321991F));
+ builder.AddCubicBezier(new Vector2(158.029007F, -311.321991F), new Vector2(157.330994F, -311.040985F), new Vector2(156.787994F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(156.244003F, -309.919006F), new Vector2(155.972F, -309.230988F), new Vector2(155.972F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(155.972F, -307.565002F), new Vector2(156.244003F, -306.859009F), new Vector2(156.787994F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(157.330994F, -305.737F), new Vector2(158.029007F, -305.457001F), new Vector2(158.878998F, -305.457001F));
+ builder.AddCubicBezier(new Vector2(159.727997F, -305.457001F), new Vector2(160.425995F, -305.737F), new Vector2(160.970001F, -306.298004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(161.173996F, -276.386993F));
+ builder.AddLine(new Vector2(161.173996F, -300.612F));
+ builder.AddLine(new Vector2(156.533005F, -300.612F));
+ builder.AddLine(new Vector2(156.533005F, -276.386993F));
+ builder.AddLine(new Vector2(161.173996F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1569()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(148.959F, -277.865997F));
+ builder.AddCubicBezier(new Vector2(150.572998F, -279.191986F), new Vector2(151.382004F, -280.993988F), new Vector2(151.382004F, -283.272003F));
+ builder.AddCubicBezier(new Vector2(151.382004F, -284.768005F), new Vector2(151.067001F, -285.975006F), new Vector2(150.438004F, -286.893005F));
+ builder.AddCubicBezier(new Vector2(149.807999F, -287.811005F), new Vector2(149.001999F, -288.541992F), new Vector2(148.016006F, -289.085999F));
+ builder.AddCubicBezier(new Vector2(147.029007F, -289.628998F), new Vector2(145.992996F, -290.062012F), new Vector2(144.904999F, -290.385986F));
+ builder.AddCubicBezier(new Vector2(143.815994F, -290.709015F), new Vector2(142.770004F, -291.023987F), new Vector2(141.768005F, -291.329987F));
+ builder.AddCubicBezier(new Vector2(140.764999F, -291.635986F), new Vector2(139.957993F, -292.01001F), new Vector2(139.345993F, -292.451996F));
+ builder.AddCubicBezier(new Vector2(138.733994F, -292.893005F), new Vector2(138.427994F, -293.52301F), new Vector2(138.427994F, -294.338989F));
+ builder.AddCubicBezier(new Vector2(138.427994F, -295.121002F), new Vector2(138.776001F, -295.748993F), new Vector2(139.473007F, -296.226013F));
+ builder.AddCubicBezier(new Vector2(140.169006F, -296.701996F), new Vector2(141.182007F, -296.940002F), new Vector2(142.507996F, -296.940002F));
+ builder.AddCubicBezier(new Vector2(143.764999F, -296.940002F), new Vector2(144.886993F, -296.701996F), new Vector2(145.873993F, -296.226013F));
+ builder.AddCubicBezier(new Vector2(146.860001F, -295.748993F), new Vector2(147.710007F, -295.070007F), new Vector2(148.423996F, -294.186005F));
+ builder.AddLine(new Vector2(151.382004F, -297.144012F));
+ builder.AddCubicBezier(new Vector2(150.429993F, -298.470001F), new Vector2(149.214005F, -299.463989F), new Vector2(147.735001F, -300.127014F));
+ builder.AddCubicBezier(new Vector2(146.255997F, -300.790009F), new Vector2(144.565002F, -301.122009F), new Vector2(142.660995F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(140.858002F, -301.122009F), new Vector2(139.311996F, -300.833008F), new Vector2(138.020004F, -300.255005F));
+ builder.AddCubicBezier(new Vector2(136.727005F, -299.675995F), new Vector2(135.731995F, -298.85199F), new Vector2(135.035995F, -297.781006F));
+ builder.AddCubicBezier(new Vector2(134.339005F, -296.709991F), new Vector2(133.990997F, -295.442993F), new Vector2(133.990997F, -293.981995F));
+ builder.AddCubicBezier(new Vector2(133.990997F, -292.519989F), new Vector2(134.304001F, -291.337006F), new Vector2(134.934006F, -290.437012F));
+ builder.AddCubicBezier(new Vector2(135.563004F, -289.536011F), new Vector2(136.369995F, -288.830994F), new Vector2(137.356995F, -288.321014F));
+ builder.AddCubicBezier(new Vector2(138.343002F, -287.811005F), new Vector2(139.388F, -287.403015F), new Vector2(140.492996F, -287.096985F));
+ builder.AddCubicBezier(new Vector2(141.597F, -286.790985F), new Vector2(142.643005F, -286.476013F), new Vector2(143.630005F, -286.153015F));
+ builder.AddCubicBezier(new Vector2(144.615997F, -285.82901F), new Vector2(145.421997F, -285.42099F), new Vector2(146.052002F, -284.928986F));
+ builder.AddCubicBezier(new Vector2(146.681F, -284.436005F), new Vector2(146.996002F, -283.747986F), new Vector2(146.996002F, -282.864014F));
+ builder.AddCubicBezier(new Vector2(146.996002F, -281.979004F), new Vector2(146.604996F, -281.290009F), new Vector2(145.822998F, -280.798004F));
+ builder.AddCubicBezier(new Vector2(145.039993F, -280.304993F), new Vector2(143.936005F, -280.05899F), new Vector2(142.507996F, -280.05899F));
+ builder.AddCubicBezier(new Vector2(141.080002F, -280.05899F), new Vector2(139.787003F, -280.321014F), new Vector2(138.632004F, -280.848999F));
+ builder.AddCubicBezier(new Vector2(137.475998F, -281.376007F), new Vector2(136.455994F, -282.183014F), new Vector2(135.572006F, -283.272003F));
+ builder.AddLine(new Vector2(132.613998F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(133.360992F, -279.395996F), new Vector2(134.237F, -278.605011F), new Vector2(135.240005F, -277.941986F));
+ builder.AddCubicBezier(new Vector2(136.242004F, -277.278992F), new Vector2(137.356995F, -276.769012F), new Vector2(138.580994F, -276.411987F));
+ builder.AddCubicBezier(new Vector2(139.804993F, -276.054993F), new Vector2(141.097F, -275.877014F), new Vector2(142.457001F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(145.177002F, -275.877014F), new Vector2(147.343994F, -276.540009F), new Vector2(148.959F, -277.865997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1570()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(119.710999F, -296.429993F));
+ builder.AddLine(new Vector2(119.710999F, -300.612F));
+ builder.AddLine(new Vector2(103.186996F, -300.612F));
+ builder.AddLine(new Vector2(103.186996F, -296.429993F));
+ builder.AddLine(new Vector2(119.710999F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(113.744003F, -276.386993F));
+ builder.AddLine(new Vector2(113.744003F, -310.760986F));
+ builder.AddLine(new Vector2(109.153999F, -310.760986F));
+ builder.AddLine(new Vector2(109.153999F, -276.386993F));
+ builder.AddLine(new Vector2(113.744003F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1571()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(82.3789978F, -276.386993F));
+ builder.AddLine(new Vector2(82.3789978F, -300.612F));
+ builder.AddLine(new Vector2(77.7890015F, -300.612F));
+ builder.AddLine(new Vector2(77.7890015F, -276.386993F));
+ builder.AddLine(new Vector2(82.3789978F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(99.5149994F, -276.386993F));
+ builder.AddLine(new Vector2(99.5149994F, -291.432007F));
+ builder.AddCubicBezier(new Vector2(99.5149994F, -293.096985F), new Vector2(99.1070023F, -294.670013F), new Vector2(98.2910004F, -296.148987F));
+ builder.AddCubicBezier(new Vector2(97.4749985F, -297.627991F), new Vector2(96.3600006F, -298.826996F), new Vector2(94.9499969F, -299.744995F));
+ builder.AddCubicBezier(new Vector2(93.5390015F, -300.662994F), new Vector2(91.9160004F, -301.122009F), new Vector2(90.0800018F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(88.2440033F, -301.122009F), new Vector2(86.5940018F, -300.704987F), new Vector2(85.1330032F, -299.872009F));
+ builder.AddCubicBezier(new Vector2(83.6709976F, -299.037994F), new Vector2(82.5319977F, -297.908997F), new Vector2(81.7160034F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(80.9000015F, -295.053009F), new Vector2(80.4919968F, -293.42099F), new Vector2(80.4919968F, -291.584991F));
+ builder.AddLine(new Vector2(82.3789978F, -290.514008F));
+ builder.AddCubicBezier(new Vector2(82.3789978F, -291.738007F), new Vector2(82.651001F, -292.825989F), new Vector2(83.1949997F, -293.778015F));
+ builder.AddCubicBezier(new Vector2(83.737999F, -294.729004F), new Vector2(84.4869995F, -295.477997F), new Vector2(85.439003F, -296.022003F));
+ builder.AddCubicBezier(new Vector2(86.3899994F, -296.565002F), new Vector2(87.4789963F, -296.838013F), new Vector2(88.7030029F, -296.838013F));
+ builder.AddCubicBezier(new Vector2(90.5390015F, -296.838013F), new Vector2(92.0250015F, -296.243011F), new Vector2(93.1650009F, -295.053009F));
+ builder.AddCubicBezier(new Vector2(94.3040009F, -293.862F), new Vector2(94.8740005F, -292.350006F), new Vector2(94.8740005F, -290.514008F));
+ builder.AddLine(new Vector2(94.8740005F, -276.386993F));
+ builder.AddLine(new Vector2(99.5149994F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1572()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(67.0279999F, -276.947998F));
+ builder.AddCubicBezier(new Vector2(68.6930008F, -277.661987F), new Vector2(70.1210022F, -278.699005F), new Vector2(71.3119965F, -280.05899F));
+ builder.AddLine(new Vector2(68.3539963F, -283.067993F));
+ builder.AddCubicBezier(new Vector2(67.538002F, -282.115997F), new Vector2(66.5599976F, -281.402008F), new Vector2(65.4209976F, -280.925995F));
+ builder.AddCubicBezier(new Vector2(64.2809982F, -280.449005F), new Vector2(63.0320015F, -280.212006F), new Vector2(61.6730003F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(60.0410004F, -280.212006F), new Vector2(58.5950012F, -280.559998F), new Vector2(57.3380013F, -281.256989F));
+ builder.AddCubicBezier(new Vector2(56.0800018F, -281.953003F), new Vector2(55.1110001F, -282.940002F), new Vector2(54.4309998F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(53.75F, -285.48999F), new Vector2(53.4109993F, -286.97699F), new Vector2(53.4109993F, -288.678009F));
+ builder.AddCubicBezier(new Vector2(53.4109993F, -290.342987F), new Vector2(53.7340012F, -291.789001F), new Vector2(54.3800011F, -293.013F));
+ builder.AddCubicBezier(new Vector2(55.0250015F, -294.237F), new Vector2(55.9430008F, -295.187988F), new Vector2(57.1339989F, -295.868988F));
+ builder.AddCubicBezier(new Vector2(58.3240013F, -296.549011F), new Vector2(59.7010002F, -296.889008F), new Vector2(61.2649994F, -296.889008F));
+ builder.AddCubicBezier(new Vector2(62.7610016F, -296.889008F), new Vector2(64.0360031F, -296.574005F), new Vector2(65.0899963F, -295.945007F));
+ builder.AddCubicBezier(new Vector2(66.1429977F, -295.315002F), new Vector2(66.9589996F, -294.432007F), new Vector2(67.538002F, -293.292999F));
+ builder.AddCubicBezier(new Vector2(68.1159973F, -292.153015F), new Vector2(68.4049988F, -290.769012F), new Vector2(68.4049988F, -289.136993F));
+ builder.AddLine(new Vector2(70.0879974F, -290.615997F));
+ builder.AddLine(new Vector2(52.0849991F, -290.615997F));
+ builder.AddLine(new Vector2(52.0849991F, -286.790985F));
+ builder.AddLine(new Vector2(72.5360031F, -286.790985F));
+ builder.AddCubicBezier(new Vector2(72.6380005F, -287.266998F), new Vector2(72.7060013F, -287.700012F), new Vector2(72.7399979F, -288.091003F));
+ builder.AddCubicBezier(new Vector2(72.7730026F, -288.480988F), new Vector2(72.7910004F, -288.847992F), new Vector2(72.7910004F, -289.187988F));
+ builder.AddCubicBezier(new Vector2(72.7910004F, -291.5F), new Vector2(72.3059998F, -293.556F), new Vector2(71.336998F, -295.359009F));
+ builder.AddCubicBezier(new Vector2(70.3679962F, -297.161011F), new Vector2(69.0169983F, -298.571991F), new Vector2(67.2829971F, -299.59201F));
+ builder.AddCubicBezier(new Vector2(65.5490036F, -300.612F), new Vector2(63.5769997F, -301.122009F), new Vector2(61.3670006F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(59.0209999F, -301.122009F), new Vector2(56.9039993F, -300.567993F), new Vector2(55.0169983F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(53.1300011F, -298.359009F), new Vector2(51.6329994F, -296.855011F), new Vector2(50.5289993F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(49.4239998F, -293.04599F), new Vector2(48.8720016F, -290.903992F), new Vector2(48.8720016F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(48.8720016F, -286.109985F), new Vector2(49.4329987F, -283.951996F), new Vector2(50.5550003F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(51.6769981F, -280.143005F), new Vector2(53.1980019F, -278.638F), new Vector2(55.1189995F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(57.0390015F, -276.428986F), new Vector2(59.2249985F, -275.877014F), new Vector2(61.6730003F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(63.5769997F, -275.877014F), new Vector2(65.3619995F, -276.234009F), new Vector2(67.0279999F, -276.947998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1573()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(36.9889984F, -295.154999F));
+ builder.AddCubicBezier(new Vector2(38.0769997F, -296.243011F), new Vector2(39.4700012F, -296.786987F), new Vector2(41.1710014F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(41.9869995F, -296.786987F), new Vector2(42.7010002F, -296.666992F), new Vector2(43.3129997F, -296.429993F));
+ builder.AddCubicBezier(new Vector2(43.9249992F, -296.191986F), new Vector2(44.4860001F, -295.799988F), new Vector2(44.9959984F, -295.256989F));
+ builder.AddLine(new Vector2(48.0050011F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(47.1549988F, -299.354004F), new Vector2(46.2369995F, -300.058014F), new Vector2(45.2509995F, -300.484009F));
+ builder.AddCubicBezier(new Vector2(44.2639999F, -300.908997F), new Vector2(43.1599998F, -301.122009F), new Vector2(41.9360008F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(39.25F, -301.122009F), new Vector2(37.1930008F, -300.20401F), new Vector2(35.7649994F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(34.3370018F, -296.532013F), new Vector2(33.6230011F, -294.06601F), new Vector2(33.6230011F, -290.972992F));
+ builder.AddLine(new Vector2(35.3569984F, -290.157013F));
+ builder.AddCubicBezier(new Vector2(35.3569984F, -292.401001F), new Vector2(35.9000015F, -294.06601F), new Vector2(36.9889984F, -295.154999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(35.3569984F, -276.386993F));
+ builder.AddLine(new Vector2(35.3569984F, -300.612F));
+ builder.AddLine(new Vector2(30.7670002F, -300.612F));
+ builder.AddLine(new Vector2(30.7670002F, -276.386993F));
+ builder.AddLine(new Vector2(35.3569984F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1574()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(16.4360008F, -295.154999F));
+ builder.AddCubicBezier(new Vector2(17.5240002F, -296.243011F), new Vector2(18.9169998F, -296.786987F), new Vector2(20.618F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(21.434F, -296.786987F), new Vector2(22.1480007F, -296.666992F), new Vector2(22.7600002F, -296.429993F));
+ builder.AddCubicBezier(new Vector2(23.3719997F, -296.191986F), new Vector2(23.9330006F, -295.799988F), new Vector2(24.4430008F, -295.256989F));
+ builder.AddLine(new Vector2(27.4519997F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(26.6019993F, -299.354004F), new Vector2(25.684F, -300.058014F), new Vector2(24.698F, -300.484009F));
+ builder.AddCubicBezier(new Vector2(23.7110004F, -300.908997F), new Vector2(22.6070004F, -301.122009F), new Vector2(21.3829994F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(18.6970005F, -301.122009F), new Vector2(16.6399994F, -300.20401F), new Vector2(15.2119999F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(13.7840004F, -296.532013F), new Vector2(13.0699997F, -294.06601F), new Vector2(13.0699997F, -290.972992F));
+ builder.AddLine(new Vector2(14.8039999F, -290.157013F));
+ builder.AddCubicBezier(new Vector2(14.8039999F, -292.401001F), new Vector2(15.3470001F, -294.06601F), new Vector2(16.4360008F, -295.154999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(14.8039999F, -276.386993F));
+ builder.AddLine(new Vector2(14.8039999F, -300.612F));
+ builder.AddLine(new Vector2(10.2139997F, -300.612F));
+ builder.AddLine(new Vector2(10.2139997F, -276.386993F));
+ builder.AddLine(new Vector2(14.8039999F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1575()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-0.954999983F, -277.278992F));
+ builder.AddCubicBezier(new Vector2(0.60799998F, -278.145996F), new Vector2(1.83200002F, -279.377991F), new Vector2(2.71700001F, -280.97699F));
+ builder.AddCubicBezier(new Vector2(3.60100007F, -282.575012F), new Vector2(4.04300022F, -284.427002F), new Vector2(4.04300022F, -286.536011F));
+ builder.AddLine(new Vector2(4.04300022F, -300.612F));
+ builder.AddLine(new Vector2(-0.546999991F, -300.612F));
+ builder.AddLine(new Vector2(-0.546999991F, -286.73999F));
+ builder.AddCubicBezier(new Vector2(-0.546999991F, -284.733002F), new Vector2(-1.05700004F, -283.161011F), new Vector2(-2.0769999F, -282.022003F));
+ builder.AddCubicBezier(new Vector2(-3.09699988F, -280.881989F), new Vector2(-4.5079999F, -280.313995F), new Vector2(-6.30999994F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(-7.50099993F, -280.313995F), new Vector2(-8.5369997F, -280.569F), new Vector2(-9.42099953F, -281.07901F));
+ builder.AddCubicBezier(new Vector2(-10.3059998F, -281.588989F), new Vector2(-10.9770002F, -282.328003F), new Vector2(-11.4359999F, -283.296997F));
+ builder.AddCubicBezier(new Vector2(-11.8950005F, -284.265991F), new Vector2(-12.1239996F, -285.414001F), new Vector2(-12.1239996F, -286.73999F));
+ builder.AddLine(new Vector2(-12.1239996F, -300.612F));
+ builder.AddLine(new Vector2(-16.7140007F, -300.612F));
+ builder.AddLine(new Vector2(-16.7140007F, -286.536011F));
+ builder.AddCubicBezier(new Vector2(-16.7140007F, -284.427002F), new Vector2(-16.2730007F, -282.575012F), new Vector2(-15.3879995F, -280.97699F));
+ builder.AddCubicBezier(new Vector2(-14.5039997F, -279.377991F), new Vector2(-13.2720003F, -278.145996F), new Vector2(-11.691F, -277.278992F));
+ builder.AddCubicBezier(new Vector2(-10.1099997F, -276.411987F), new Vector2(-8.31700039F, -275.979004F), new Vector2(-6.30999994F, -275.979004F));
+ builder.AddCubicBezier(new Vector2(-4.3039999F, -275.979004F), new Vector2(-2.51900005F, -276.411987F), new Vector2(-0.954999983F, -277.278992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1576()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-24.7469997F, -276.947998F));
+ builder.AddCubicBezier(new Vector2(-23.1329994F, -277.661987F), new Vector2(-21.7630005F, -278.664001F), new Vector2(-20.6410007F, -279.957001F));
+ builder.AddLine(new Vector2(-23.6499996F, -283.016998F));
+ builder.AddCubicBezier(new Vector2(-24.4330006F, -282.131989F), new Vector2(-25.3589993F, -281.460999F), new Vector2(-26.4300003F, -281.002014F));
+ builder.AddCubicBezier(new Vector2(-27.5009995F, -280.542999F), new Vector2(-28.6819992F, -280.313995F), new Vector2(-29.9740009F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(-31.5039997F, -280.313995F), new Vector2(-32.8639984F, -280.67099F), new Vector2(-34.0540009F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(-35.2449989F, -282.098999F), new Vector2(-36.1790009F, -283.067993F), new Vector2(-36.8590012F, -284.291992F));
+ builder.AddCubicBezier(new Vector2(-37.5400009F, -285.515991F), new Vector2(-37.8790016F, -286.925995F), new Vector2(-37.8790016F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-37.8790016F, -290.122986F), new Vector2(-37.5400009F, -291.533997F), new Vector2(-36.8590012F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(-36.1790009F, -293.981995F), new Vector2(-35.2449989F, -294.941986F), new Vector2(-34.0540009F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(-32.8639984F, -296.334991F), new Vector2(-31.5039997F, -296.684998F), new Vector2(-29.9740009F, -296.684998F));
+ builder.AddCubicBezier(new Vector2(-28.7169991F, -296.684998F), new Vector2(-27.5440006F, -296.454987F), new Vector2(-26.4549999F, -295.996002F));
+ builder.AddCubicBezier(new Vector2(-25.3670006F, -295.536987F), new Vector2(-24.4489994F, -294.865997F), new Vector2(-23.7010002F, -293.981995F));
+ builder.AddLine(new Vector2(-20.6410007F, -297.041992F));
+ builder.AddCubicBezier(new Vector2(-21.7970009F, -298.368011F), new Vector2(-23.1739998F, -299.378998F), new Vector2(-24.7719994F, -300.075989F));
+ builder.AddCubicBezier(new Vector2(-26.3710003F, -300.772003F), new Vector2(-28.1049995F, -301.122009F), new Vector2(-29.9740009F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-32.3540001F, -301.122009F), new Vector2(-34.5060005F, -300.567993F), new Vector2(-36.4259987F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(-38.3470001F, -298.359009F), new Vector2(-39.8610001F, -296.855011F), new Vector2(-40.9650002F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(-42.0699997F, -293.04599F), new Vector2(-42.6220016F, -290.903992F), new Vector2(-42.6220016F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-42.6220016F, -286.178986F), new Vector2(-42.0699997F, -284.044006F), new Vector2(-40.9650002F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(-39.8610001F, -280.203003F), new Vector2(-38.3470001F, -278.682007F), new Vector2(-36.4259987F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(-34.5060005F, -276.437988F), new Vector2(-32.3540001F, -275.877014F), new Vector2(-29.9740009F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-28.1049995F, -275.877014F), new Vector2(-26.3619995F, -276.234009F), new Vector2(-24.7469997F, -276.947998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1577()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-62.3590012F, -276.947998F));
+ builder.AddCubicBezier(new Vector2(-60.6940002F, -277.661987F), new Vector2(-59.2659988F, -278.699005F), new Vector2(-58.0750008F, -280.05899F));
+ builder.AddLine(new Vector2(-61.0330009F, -283.067993F));
+ builder.AddCubicBezier(new Vector2(-61.848999F, -282.115997F), new Vector2(-62.8260002F, -281.402008F), new Vector2(-63.9650002F, -280.925995F));
+ builder.AddCubicBezier(new Vector2(-65.1050034F, -280.449005F), new Vector2(-66.3550034F, -280.212006F), new Vector2(-67.7139969F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-69.3460007F, -280.212006F), new Vector2(-70.7919998F, -280.559998F), new Vector2(-72.0490036F, -281.256989F));
+ builder.AddCubicBezier(new Vector2(-73.3069992F, -281.953003F), new Vector2(-74.276001F, -282.940002F), new Vector2(-74.9560013F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(-75.637001F, -285.48999F), new Vector2(-75.9759979F, -286.97699F), new Vector2(-75.9759979F, -288.678009F));
+ builder.AddCubicBezier(new Vector2(-75.9759979F, -290.342987F), new Vector2(-75.6529999F, -291.789001F), new Vector2(-75.0070038F, -293.013F));
+ builder.AddCubicBezier(new Vector2(-74.3619995F, -294.237F), new Vector2(-73.4440002F, -295.187988F), new Vector2(-72.2529984F, -295.868988F));
+ builder.AddCubicBezier(new Vector2(-71.0630035F, -296.549011F), new Vector2(-69.685997F, -296.889008F), new Vector2(-68.1220016F, -296.889008F));
+ builder.AddCubicBezier(new Vector2(-66.6259995F, -296.889008F), new Vector2(-65.3509979F, -296.574005F), new Vector2(-64.2969971F, -295.945007F));
+ builder.AddCubicBezier(new Vector2(-63.2439995F, -295.315002F), new Vector2(-62.4280014F, -294.432007F), new Vector2(-61.848999F, -293.292999F));
+ builder.AddCubicBezier(new Vector2(-61.2709999F, -292.153015F), new Vector2(-60.9819984F, -290.769012F), new Vector2(-60.9819984F, -289.136993F));
+ builder.AddLine(new Vector2(-59.2989998F, -290.615997F));
+ builder.AddLine(new Vector2(-77.302002F, -290.615997F));
+ builder.AddLine(new Vector2(-77.302002F, -286.790985F));
+ builder.AddLine(new Vector2(-56.8510017F, -286.790985F));
+ builder.AddCubicBezier(new Vector2(-56.7490005F, -287.266998F), new Vector2(-56.6809998F, -287.700012F), new Vector2(-56.6469994F, -288.091003F));
+ builder.AddCubicBezier(new Vector2(-56.6139984F, -288.480988F), new Vector2(-56.5960007F, -288.847992F), new Vector2(-56.5960007F, -289.187988F));
+ builder.AddCubicBezier(new Vector2(-56.5960007F, -291.5F), new Vector2(-57.0800018F, -293.556F), new Vector2(-58.0489998F, -295.359009F));
+ builder.AddCubicBezier(new Vector2(-59.0180016F, -297.161011F), new Vector2(-60.3699989F, -298.571991F), new Vector2(-62.1040001F, -299.59201F));
+ builder.AddCubicBezier(new Vector2(-63.8380013F, -300.612F), new Vector2(-65.8099976F, -301.122009F), new Vector2(-68.0199966F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-70.3659973F, -301.122009F), new Vector2(-72.4820023F, -300.567993F), new Vector2(-74.3690033F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(-76.2559967F, -298.359009F), new Vector2(-77.7529984F, -296.855011F), new Vector2(-78.8570023F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(-79.961998F, -293.04599F), new Vector2(-80.5149994F, -290.903992F), new Vector2(-80.5149994F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-80.5149994F, -286.109985F), new Vector2(-79.9540024F, -283.951996F), new Vector2(-78.8320007F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(-77.7099991F, -280.143005F), new Vector2(-76.1880035F, -278.638F), new Vector2(-74.2669983F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(-72.3470001F, -276.428986F), new Vector2(-70.1620026F, -275.877014F), new Vector2(-67.7139969F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-65.8099976F, -275.877014F), new Vector2(-64.0250015F, -276.234009F), new Vector2(-62.3590012F, -276.947998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1578()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-102.292F, -276.386993F));
+ builder.AddLine(new Vector2(-102.292F, -312.800995F));
+ builder.AddLine(new Vector2(-106.882004F, -312.800995F));
+ builder.AddLine(new Vector2(-106.882004F, -276.386993F));
+ builder.AddLine(new Vector2(-102.292F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-85.1559982F, -276.386993F));
+ builder.AddLine(new Vector2(-85.1559982F, -291.432007F));
+ builder.AddCubicBezier(new Vector2(-85.1559982F, -293.335999F), new Vector2(-85.564003F, -295.019012F), new Vector2(-86.3799973F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(-87.1959991F, -297.941986F), new Vector2(-88.3099976F, -299.082001F), new Vector2(-89.7200012F, -299.89801F));
+ builder.AddCubicBezier(new Vector2(-91.1309967F, -300.713989F), new Vector2(-92.7549973F, -301.122009F), new Vector2(-94.5910034F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-96.427002F, -301.122009F), new Vector2(-98.0770035F, -300.704987F), new Vector2(-99.538002F, -299.872009F));
+ builder.AddCubicBezier(new Vector2(-101F, -299.037994F), new Vector2(-102.139F, -297.908997F), new Vector2(-102.955002F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(-103.771004F, -295.053009F), new Vector2(-104.179001F, -293.42099F), new Vector2(-104.179001F, -291.584991F));
+ builder.AddLine(new Vector2(-102.292F, -290.514008F));
+ builder.AddCubicBezier(new Vector2(-102.292F, -291.738007F), new Vector2(-102.019997F, -292.825989F), new Vector2(-101.475998F, -293.778015F));
+ builder.AddCubicBezier(new Vector2(-100.932999F, -294.729004F), new Vector2(-100.183998F, -295.477997F), new Vector2(-99.2320023F, -296.022003F));
+ builder.AddCubicBezier(new Vector2(-98.2809982F, -296.565002F), new Vector2(-97.1920013F, -296.838013F), new Vector2(-95.9680023F, -296.838013F));
+ builder.AddCubicBezier(new Vector2(-94.1320038F, -296.838013F), new Vector2(-92.6449966F, -296.243011F), new Vector2(-91.5049973F, -295.053009F));
+ builder.AddCubicBezier(new Vector2(-90.3659973F, -293.862F), new Vector2(-89.7969971F, -292.350006F), new Vector2(-89.7969971F, -290.514008F));
+ builder.AddLine(new Vector2(-89.7969971F, -276.386993F));
+ builder.AddLine(new Vector2(-85.1559982F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1579()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-111.370003F, -296.429993F));
+ builder.AddLine(new Vector2(-111.370003F, -300.612F));
+ builder.AddLine(new Vector2(-127.893997F, -300.612F));
+ builder.AddLine(new Vector2(-127.893997F, -296.429993F));
+ builder.AddLine(new Vector2(-111.370003F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-117.336998F, -276.386993F));
+ builder.AddLine(new Vector2(-117.336998F, -310.760986F));
+ builder.AddLine(new Vector2(-121.927002F, -310.760986F));
+ builder.AddLine(new Vector2(-121.927002F, -276.386993F));
+ builder.AddLine(new Vector2(-117.336998F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1580()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-158.774994F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(-159.947998F, -282.786987F), new Vector2(-160.865997F, -283.713013F), new Vector2(-161.529007F, -284.903992F));
+ builder.AddCubicBezier(new Vector2(-162.192001F, -286.093994F), new Vector2(-162.522995F, -287.45401F), new Vector2(-162.522995F, -288.984009F));
+ builder.AddCubicBezier(new Vector2(-162.522995F, -290.514008F), new Vector2(-162.192001F, -291.86499F), new Vector2(-161.529007F, -293.037994F));
+ builder.AddCubicBezier(new Vector2(-160.865997F, -294.210999F), new Vector2(-159.955994F, -295.128998F), new Vector2(-158.800003F, -295.791992F));
+ builder.AddCubicBezier(new Vector2(-157.645004F, -296.454987F), new Vector2(-156.300995F, -296.786987F), new Vector2(-154.770996F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(-153.274994F, -296.786987F), new Vector2(-151.959F, -296.454987F), new Vector2(-150.819F, -295.791992F));
+ builder.AddCubicBezier(new Vector2(-149.679993F, -295.128998F), new Vector2(-148.796997F, -294.210999F), new Vector2(-148.167007F, -293.037994F));
+ builder.AddCubicBezier(new Vector2(-147.537994F, -291.86499F), new Vector2(-147.223007F, -290.496002F), new Vector2(-147.223007F, -288.933014F));
+ builder.AddCubicBezier(new Vector2(-147.223007F, -287.368988F), new Vector2(-147.537994F, -286F), new Vector2(-148.167007F, -284.826996F));
+ builder.AddCubicBezier(new Vector2(-148.796997F, -283.653992F), new Vector2(-149.671005F, -282.743988F), new Vector2(-150.792999F, -282.098999F));
+ builder.AddCubicBezier(new Vector2(-151.914993F, -281.453003F), new Vector2(-153.240997F, -281.130005F), new Vector2(-154.770996F, -281.130005F));
+ builder.AddCubicBezier(new Vector2(-156.268005F, -281.130005F), new Vector2(-157.602005F, -281.460999F), new Vector2(-158.774994F, -282.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-150.639999F, -277.916992F));
+ builder.AddCubicBezier(new Vector2(-149.179001F, -278.664001F), new Vector2(-148.014008F, -279.709015F), new Vector2(-147.147003F, -281.053009F));
+ builder.AddCubicBezier(new Vector2(-146.279999F, -282.395996F), new Vector2(-145.794998F, -283.951996F), new Vector2(-145.692993F, -285.720001F));
+ builder.AddLine(new Vector2(-145.692993F, -292.145996F));
+ builder.AddCubicBezier(new Vector2(-145.794998F, -293.947998F), new Vector2(-146.272003F, -295.519012F), new Vector2(-147.121002F, -296.863007F));
+ builder.AddCubicBezier(new Vector2(-147.970993F, -298.205994F), new Vector2(-149.136002F, -299.252014F), new Vector2(-150.615005F, -300F));
+ builder.AddCubicBezier(new Vector2(-152.093994F, -300.747009F), new Vector2(-153.785004F, -301.122009F), new Vector2(-155.688995F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-157.865005F, -301.122009F), new Vector2(-159.837997F, -300.585999F), new Vector2(-161.604996F, -299.515015F));
+ builder.AddCubicBezier(new Vector2(-163.373001F, -298.444F), new Vector2(-164.759995F, -296.997986F), new Vector2(-165.761993F, -295.179993F));
+ builder.AddCubicBezier(new Vector2(-166.764999F, -293.360992F), new Vector2(-167.266006F, -291.29599F), new Vector2(-167.266006F, -288.984009F));
+ builder.AddCubicBezier(new Vector2(-167.266006F, -286.67099F), new Vector2(-166.755997F, -284.588989F), new Vector2(-165.735992F, -282.735992F));
+ builder.AddCubicBezier(new Vector2(-164.716003F, -280.881989F), new Vector2(-163.332001F, -279.428986F), new Vector2(-161.580002F, -278.376007F));
+ builder.AddCubicBezier(new Vector2(-159.828995F, -277.321991F), new Vector2(-157.848999F, -276.795013F), new Vector2(-155.638F, -276.795013F));
+ builder.AddCubicBezier(new Vector2(-153.768997F, -276.795013F), new Vector2(-152.102005F, -277.169006F), new Vector2(-150.639999F, -277.916992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-148.983002F, -267.181F));
+ builder.AddCubicBezier(new Vector2(-147.063004F, -268.149994F), new Vector2(-145.565994F, -269.51001F), new Vector2(-144.494995F, -271.260986F));
+ builder.AddCubicBezier(new Vector2(-143.423996F, -273.013F), new Vector2(-142.888F, -275.044006F), new Vector2(-142.888F, -277.355988F));
+ builder.AddLine(new Vector2(-142.888F, -300.612F));
+ builder.AddLine(new Vector2(-147.477997F, -300.612F));
+ builder.AddLine(new Vector2(-147.477997F, -294.237F));
+ builder.AddLine(new Vector2(-146.662003F, -288.830994F));
+ builder.AddLine(new Vector2(-147.477997F, -283.373993F));
+ builder.AddLine(new Vector2(-147.477997F, -277.355988F));
+ builder.AddCubicBezier(new Vector2(-147.477997F, -275.145996F), new Vector2(-148.210007F, -273.385986F), new Vector2(-149.671005F, -272.076996F));
+ builder.AddCubicBezier(new Vector2(-151.132996F, -270.769012F), new Vector2(-153.087997F, -270.114014F), new Vector2(-155.535995F, -270.114014F));
+ builder.AddCubicBezier(new Vector2(-157.406006F, -270.114014F), new Vector2(-159.022003F, -270.445007F), new Vector2(-160.380997F, -271.108002F));
+ builder.AddCubicBezier(new Vector2(-161.740997F, -271.770996F), new Vector2(-162.914001F, -272.733002F), new Vector2(-163.899994F, -273.98999F));
+ builder.AddLine(new Vector2(-166.908997F, -270.980988F));
+ builder.AddCubicBezier(new Vector2(-165.718994F, -269.31601F), new Vector2(-164.173004F, -268.02301F), new Vector2(-162.268005F, -267.105011F));
+ builder.AddCubicBezier(new Vector2(-160.363998F, -266.187012F), new Vector2(-158.154999F, -265.727997F), new Vector2(-155.638F, -265.727997F));
+ builder.AddCubicBezier(new Vector2(-153.121994F, -265.727997F), new Vector2(-150.904007F, -266.212006F), new Vector2(-148.983002F, -267.181F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1581()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-189.042999F, -276.386993F));
+ builder.AddLine(new Vector2(-189.042999F, -300.612F));
+ builder.AddLine(new Vector2(-193.632996F, -300.612F));
+ builder.AddLine(new Vector2(-193.632996F, -276.386993F));
+ builder.AddLine(new Vector2(-189.042999F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-171.906998F, -276.386993F));
+ builder.AddLine(new Vector2(-171.906998F, -291.432007F));
+ builder.AddCubicBezier(new Vector2(-171.906998F, -293.096985F), new Vector2(-172.315002F, -294.670013F), new Vector2(-173.130997F, -296.148987F));
+ builder.AddCubicBezier(new Vector2(-173.947006F, -297.627991F), new Vector2(-175.061996F, -298.826996F), new Vector2(-176.472F, -299.744995F));
+ builder.AddCubicBezier(new Vector2(-177.882996F, -300.662994F), new Vector2(-179.505997F, -301.122009F), new Vector2(-181.341995F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-183.177994F, -301.122009F), new Vector2(-184.828003F, -300.704987F), new Vector2(-186.289001F, -299.872009F));
+ builder.AddCubicBezier(new Vector2(-187.751007F, -299.037994F), new Vector2(-188.889999F, -297.908997F), new Vector2(-189.705994F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(-190.522003F, -295.053009F), new Vector2(-190.929993F, -293.42099F), new Vector2(-190.929993F, -291.584991F));
+ builder.AddLine(new Vector2(-189.042999F, -290.514008F));
+ builder.AddCubicBezier(new Vector2(-189.042999F, -291.738007F), new Vector2(-188.770996F, -292.825989F), new Vector2(-188.227005F, -293.778015F));
+ builder.AddCubicBezier(new Vector2(-187.684006F, -294.729004F), new Vector2(-186.934998F, -295.477997F), new Vector2(-185.983002F, -296.022003F));
+ builder.AddCubicBezier(new Vector2(-185.031998F, -296.565002F), new Vector2(-183.942993F, -296.838013F), new Vector2(-182.718994F, -296.838013F));
+ builder.AddCubicBezier(new Vector2(-180.882996F, -296.838013F), new Vector2(-179.397003F, -296.243011F), new Vector2(-178.257004F, -295.053009F));
+ builder.AddCubicBezier(new Vector2(-177.117996F, -293.862F), new Vector2(-176.548004F, -292.350006F), new Vector2(-176.548004F, -290.514008F));
+ builder.AddLine(new Vector2(-176.548004F, -276.386993F));
+ builder.AddLine(new Vector2(-171.906998F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1582()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-200.619995F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(-200.076996F, -306.859009F), new Vector2(-199.804001F, -307.565002F), new Vector2(-199.804001F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(-199.804001F, -309.230988F), new Vector2(-200.076996F, -309.919006F), new Vector2(-200.619995F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(-201.164001F, -311.040985F), new Vector2(-201.862F, -311.321991F), new Vector2(-202.710999F, -311.321991F));
+ builder.AddCubicBezier(new Vector2(-203.561005F, -311.321991F), new Vector2(-204.259003F, -311.040985F), new Vector2(-204.802002F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(-205.345993F, -309.919006F), new Vector2(-205.617996F, -309.230988F), new Vector2(-205.617996F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(-205.617996F, -307.565002F), new Vector2(-205.345993F, -306.859009F), new Vector2(-204.802002F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(-204.259003F, -305.737F), new Vector2(-203.561005F, -305.457001F), new Vector2(-202.710999F, -305.457001F));
+ builder.AddCubicBezier(new Vector2(-201.862F, -305.457001F), new Vector2(-201.164001F, -305.737F), new Vector2(-200.619995F, -306.298004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-200.416F, -276.386993F));
+ builder.AddLine(new Vector2(-200.416F, -300.612F));
+ builder.AddLine(new Vector2(-205.057007F, -300.612F));
+ builder.AddLine(new Vector2(-205.057007F, -276.386993F));
+ builder.AddLine(new Vector2(-200.416F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1583()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-211.738007F, -312.800995F));
+ builder.AddLine(new Vector2(-216.378998F, -312.800995F));
+ builder.AddLine(new Vector2(-216.378998F, -294.696014F));
+ builder.AddLine(new Vector2(-215.511993F, -288.830994F));
+ builder.AddLine(new Vector2(-216.378998F, -282.915009F));
+ builder.AddLine(new Vector2(-216.378998F, -276.386993F));
+ builder.AddLine(new Vector2(-211.738007F, -276.386993F));
+ builder.AddLine(new Vector2(-211.738007F, -312.800995F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-227.778F, -281.256989F));
+ builder.AddCubicBezier(new Vector2(-228.951004F, -281.953003F), new Vector2(-229.869003F, -282.932007F), new Vector2(-230.531998F, -284.190002F));
+ builder.AddCubicBezier(new Vector2(-231.195007F, -285.446991F), new Vector2(-231.526001F, -286.893005F), new Vector2(-231.526001F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-231.526001F, -290.157013F), new Vector2(-231.195007F, -291.59201F), new Vector2(-230.531998F, -292.834015F));
+ builder.AddCubicBezier(new Vector2(-229.869003F, -294.075012F), new Vector2(-228.959F, -295.044006F), new Vector2(-227.802994F, -295.740997F));
+ builder.AddCubicBezier(new Vector2(-226.647995F, -296.437012F), new Vector2(-225.304001F, -296.786987F), new Vector2(-223.774002F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(-222.244003F, -296.786987F), new Vector2(-220.901001F, -296.429993F), new Vector2(-219.744995F, -295.716003F));
+ builder.AddCubicBezier(new Vector2(-218.589996F, -295.002014F), new Vector2(-217.688004F, -294.023987F), new Vector2(-217.042007F, -292.78299F));
+ builder.AddCubicBezier(new Vector2(-216.397003F, -291.540985F), new Vector2(-216.072998F, -290.105988F), new Vector2(-216.072998F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(-216.072998F, -286.875F), new Vector2(-216.397003F, -285.455994F), new Vector2(-217.042007F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(-217.688004F, -282.972992F), new Vector2(-218.589996F, -281.997009F), new Vector2(-219.744995F, -281.28299F));
+ builder.AddCubicBezier(new Vector2(-220.901001F, -280.569F), new Vector2(-222.244003F, -280.212006F), new Vector2(-223.774002F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-225.270996F, -280.212006F), new Vector2(-226.604996F, -280.559998F), new Vector2(-227.778F, -281.256989F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-219.541F, -277.023987F));
+ builder.AddCubicBezier(new Vector2(-218.080002F, -277.789001F), new Vector2(-216.906998F, -278.85199F), new Vector2(-216.022003F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-215.138F, -281.571014F), new Vector2(-214.645004F, -283.118988F), new Vector2(-214.542999F, -284.852997F));
+ builder.AddLine(new Vector2(-214.542999F, -292.145996F));
+ builder.AddCubicBezier(new Vector2(-214.645004F, -293.912994F), new Vector2(-215.147995F, -295.467987F), new Vector2(-216.048004F, -296.812012F));
+ builder.AddCubicBezier(new Vector2(-216.949005F, -298.154999F), new Vector2(-218.130997F, -299.209015F), new Vector2(-219.591995F, -299.973999F));
+ builder.AddCubicBezier(new Vector2(-221.054001F, -300.739014F), new Vector2(-222.703003F, -301.122009F), new Vector2(-224.539001F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-226.75F, -301.122009F), new Vector2(-228.738998F, -300.561005F), new Vector2(-230.505997F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(-232.274002F, -298.316986F), new Vector2(-233.677002F, -296.803986F), new Vector2(-234.714005F, -294.899994F));
+ builder.AddCubicBezier(new Vector2(-235.751999F, -292.994995F), new Vector2(-236.268997F, -290.852997F), new Vector2(-236.268997F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(-236.268997F, -286.093994F), new Vector2(-235.751999F, -283.951996F), new Vector2(-234.714005F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(-233.677002F, -280.143005F), new Vector2(-232.274002F, -278.638F), new Vector2(-230.505997F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(-228.738998F, -276.428986F), new Vector2(-226.75F, -275.877014F), new Vector2(-224.539001F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-222.669998F, -275.877014F), new Vector2(-221.003006F, -276.259003F), new Vector2(-219.541F, -277.023987F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1584()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-248.203003F, -295.154999F));
+ builder.AddCubicBezier(new Vector2(-247.115005F, -296.243011F), new Vector2(-245.722F, -296.786987F), new Vector2(-244.020996F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(-243.205002F, -296.786987F), new Vector2(-242.490997F, -296.666992F), new Vector2(-241.878998F, -296.429993F));
+ builder.AddCubicBezier(new Vector2(-241.266998F, -296.191986F), new Vector2(-240.705994F, -295.799988F), new Vector2(-240.195999F, -295.256989F));
+ builder.AddLine(new Vector2(-237.186996F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(-238.037003F, -299.354004F), new Vector2(-238.955002F, -300.058014F), new Vector2(-239.940994F, -300.484009F));
+ builder.AddCubicBezier(new Vector2(-240.927994F, -300.908997F), new Vector2(-242.031998F, -301.122009F), new Vector2(-243.255997F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-245.942001F, -301.122009F), new Vector2(-247.998993F, -300.20401F), new Vector2(-249.427002F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(-250.854996F, -296.532013F), new Vector2(-251.569F, -294.06601F), new Vector2(-251.569F, -290.972992F));
+ builder.AddLine(new Vector2(-249.835007F, -290.157013F));
+ builder.AddCubicBezier(new Vector2(-249.835007F, -292.401001F), new Vector2(-249.292007F, -294.06601F), new Vector2(-248.203003F, -295.154999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-249.835007F, -276.386993F));
+ builder.AddLine(new Vector2(-249.835007F, -300.612F));
+ builder.AddLine(new Vector2(-254.425003F, -300.612F));
+ builder.AddLine(new Vector2(-254.425003F, -276.386993F));
+ builder.AddLine(new Vector2(-249.835007F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1585()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-261.105988F, -276.386993F));
+ builder.AddLine(new Vector2(-261.105988F, -300.612F));
+ builder.AddLine(new Vector2(-265.747009F, -300.612F));
+ builder.AddLine(new Vector2(-265.747009F, -294.696014F));
+ builder.AddLine(new Vector2(-264.880005F, -288.830994F));
+ builder.AddLine(new Vector2(-265.747009F, -282.915009F));
+ builder.AddLine(new Vector2(-265.747009F, -276.386993F));
+ builder.AddLine(new Vector2(-261.105988F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-277.119995F, -281.28299F));
+ builder.AddCubicBezier(new Vector2(-278.311005F, -281.997009F), new Vector2(-279.237F, -282.972992F), new Vector2(-279.899994F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(-280.562988F, -285.455994F), new Vector2(-280.894012F, -286.893005F), new Vector2(-280.894012F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-280.894012F, -290.122986F), new Vector2(-280.562988F, -291.540985F), new Vector2(-279.899994F, -292.78299F));
+ builder.AddCubicBezier(new Vector2(-279.237F, -294.023987F), new Vector2(-278.319F, -295.002014F), new Vector2(-277.145996F, -295.716003F));
+ builder.AddCubicBezier(new Vector2(-275.972992F, -296.429993F), new Vector2(-274.621002F, -296.786987F), new Vector2(-273.091003F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(-271.561005F, -296.786987F), new Vector2(-270.227997F, -296.437012F), new Vector2(-269.088013F, -295.740997F));
+ builder.AddCubicBezier(new Vector2(-267.949005F, -295.044006F), new Vector2(-267.056F, -294.06601F), new Vector2(-266.410004F, -292.80899F));
+ builder.AddCubicBezier(new Vector2(-265.765015F, -291.550995F), new Vector2(-265.44101F, -290.105988F), new Vector2(-265.44101F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(-265.44101F, -286.05899F), new Vector2(-266.138F, -284.07901F), new Vector2(-267.532013F, -282.532013F));
+ builder.AddCubicBezier(new Vector2(-268.927002F, -280.984009F), new Vector2(-270.763F, -280.212006F), new Vector2(-273.040009F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-274.570007F, -280.212006F), new Vector2(-275.929993F, -280.569F), new Vector2(-277.119995F, -281.28299F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-268.858002F, -277.023987F));
+ builder.AddCubicBezier(new Vector2(-267.397003F, -277.789001F), new Vector2(-266.231995F, -278.85199F), new Vector2(-265.36499F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-264.497986F, -281.571014F), new Vector2(-264.013F, -283.118988F), new Vector2(-263.911011F, -284.852997F));
+ builder.AddLine(new Vector2(-263.911011F, -292.145996F));
+ builder.AddCubicBezier(new Vector2(-264.013F, -293.912994F), new Vector2(-264.506012F, -295.467987F), new Vector2(-265.390015F, -296.812012F));
+ builder.AddCubicBezier(new Vector2(-266.274994F, -298.154999F), new Vector2(-267.438995F, -299.209015F), new Vector2(-268.884003F, -299.973999F));
+ builder.AddCubicBezier(new Vector2(-270.329987F, -300.739014F), new Vector2(-271.968994F, -301.122009F), new Vector2(-273.804993F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-276.049011F, -301.122009F), new Vector2(-278.063995F, -300.561005F), new Vector2(-279.848999F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(-281.634003F, -298.316986F), new Vector2(-283.045013F, -296.803986F), new Vector2(-284.082001F, -294.899994F));
+ builder.AddCubicBezier(new Vector2(-285.119995F, -292.994995F), new Vector2(-285.636993F, -290.852997F), new Vector2(-285.636993F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(-285.636993F, -286.093994F), new Vector2(-285.119995F, -283.951996F), new Vector2(-284.082001F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(-283.045013F, -280.143005F), new Vector2(-281.634003F, -278.638F), new Vector2(-279.848999F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(-278.063995F, -276.428986F), new Vector2(-276.049011F, -275.877014F), new Vector2(-273.804993F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-271.968994F, -275.877014F), new Vector2(-270.320007F, -276.259003F), new Vector2(-268.858002F, -277.023987F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1586()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-306.674011F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(-307.846985F, -282.786987F), new Vector2(-308.765015F, -283.713013F), new Vector2(-309.428009F, -284.903992F));
+ builder.AddCubicBezier(new Vector2(-310.091003F, -286.093994F), new Vector2(-310.423004F, -287.45401F), new Vector2(-310.423004F, -288.984009F));
+ builder.AddCubicBezier(new Vector2(-310.423004F, -290.514008F), new Vector2(-310.091003F, -291.86499F), new Vector2(-309.428009F, -293.037994F));
+ builder.AddCubicBezier(new Vector2(-308.765015F, -294.210999F), new Vector2(-307.855988F, -295.128998F), new Vector2(-306.700012F, -295.791992F));
+ builder.AddCubicBezier(new Vector2(-305.545013F, -296.454987F), new Vector2(-304.200989F, -296.786987F), new Vector2(-302.67099F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(-301.174988F, -296.786987F), new Vector2(-299.858002F, -296.454987F), new Vector2(-298.717987F, -295.791992F));
+ builder.AddCubicBezier(new Vector2(-297.57901F, -295.128998F), new Vector2(-296.696014F, -294.210999F), new Vector2(-296.06601F, -293.037994F));
+ builder.AddCubicBezier(new Vector2(-295.437012F, -291.86499F), new Vector2(-295.122986F, -290.496002F), new Vector2(-295.122986F, -288.933014F));
+ builder.AddCubicBezier(new Vector2(-295.122986F, -287.368988F), new Vector2(-295.437012F, -286F), new Vector2(-296.06601F, -284.826996F));
+ builder.AddCubicBezier(new Vector2(-296.696014F, -283.653992F), new Vector2(-297.571014F, -282.743988F), new Vector2(-298.692993F, -282.098999F));
+ builder.AddCubicBezier(new Vector2(-299.815002F, -281.453003F), new Vector2(-301.140991F, -281.130005F), new Vector2(-302.67099F, -281.130005F));
+ builder.AddCubicBezier(new Vector2(-304.167999F, -281.130005F), new Vector2(-305.501007F, -281.460999F), new Vector2(-306.674011F, -282.123993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-298.540009F, -277.916992F));
+ builder.AddCubicBezier(new Vector2(-297.07901F, -278.664001F), new Vector2(-295.912994F, -279.709015F), new Vector2(-295.04599F, -281.053009F));
+ builder.AddCubicBezier(new Vector2(-294.178986F, -282.395996F), new Vector2(-293.695007F, -283.951996F), new Vector2(-293.592987F, -285.720001F));
+ builder.AddLine(new Vector2(-293.592987F, -292.145996F));
+ builder.AddCubicBezier(new Vector2(-293.695007F, -293.947998F), new Vector2(-294.171997F, -295.519012F), new Vector2(-295.020996F, -296.863007F));
+ builder.AddCubicBezier(new Vector2(-295.871002F, -298.205994F), new Vector2(-297.035004F, -299.252014F), new Vector2(-298.514008F, -300F));
+ builder.AddCubicBezier(new Vector2(-299.993011F, -300.747009F), new Vector2(-301.684998F, -301.122009F), new Vector2(-303.588989F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-305.765015F, -301.122009F), new Vector2(-307.738007F, -300.585999F), new Vector2(-309.505005F, -299.515015F));
+ builder.AddCubicBezier(new Vector2(-311.27301F, -298.444F), new Vector2(-312.658997F, -296.997986F), new Vector2(-313.661011F, -295.179993F));
+ builder.AddCubicBezier(new Vector2(-314.664001F, -293.360992F), new Vector2(-315.165985F, -291.29599F), new Vector2(-315.165985F, -288.984009F));
+ builder.AddCubicBezier(new Vector2(-315.165985F, -286.67099F), new Vector2(-314.656006F, -284.588989F), new Vector2(-313.635986F, -282.735992F));
+ builder.AddCubicBezier(new Vector2(-312.615997F, -280.881989F), new Vector2(-311.230988F, -279.428986F), new Vector2(-309.479004F, -278.376007F));
+ builder.AddCubicBezier(new Vector2(-307.727997F, -277.321991F), new Vector2(-305.748993F, -276.795013F), new Vector2(-303.537994F, -276.795013F));
+ builder.AddCubicBezier(new Vector2(-301.669006F, -276.795013F), new Vector2(-300.002014F, -277.169006F), new Vector2(-298.540009F, -277.916992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-296.881989F, -267.181F));
+ builder.AddCubicBezier(new Vector2(-294.962006F, -268.149994F), new Vector2(-293.466003F, -269.51001F), new Vector2(-292.394989F, -271.260986F));
+ builder.AddCubicBezier(new Vector2(-291.324005F, -273.013F), new Vector2(-290.787994F, -275.044006F), new Vector2(-290.787994F, -277.355988F));
+ builder.AddLine(new Vector2(-290.787994F, -300.612F));
+ builder.AddLine(new Vector2(-295.377991F, -300.612F));
+ builder.AddLine(new Vector2(-295.377991F, -294.237F));
+ builder.AddLine(new Vector2(-294.562012F, -288.830994F));
+ builder.AddLine(new Vector2(-295.377991F, -283.373993F));
+ builder.AddLine(new Vector2(-295.377991F, -277.355988F));
+ builder.AddCubicBezier(new Vector2(-295.377991F, -275.145996F), new Vector2(-296.109985F, -273.385986F), new Vector2(-297.571014F, -272.076996F));
+ builder.AddCubicBezier(new Vector2(-299.03299F, -270.769012F), new Vector2(-300.988007F, -270.114014F), new Vector2(-303.436005F, -270.114014F));
+ builder.AddCubicBezier(new Vector2(-305.306F, -270.114014F), new Vector2(-306.921997F, -270.445007F), new Vector2(-308.281006F, -271.108002F));
+ builder.AddCubicBezier(new Vector2(-309.640991F, -271.770996F), new Vector2(-310.813995F, -272.733002F), new Vector2(-311.799988F, -273.98999F));
+ builder.AddLine(new Vector2(-314.80899F, -270.980988F));
+ builder.AddCubicBezier(new Vector2(-313.618988F, -269.31601F), new Vector2(-312.072998F, -268.02301F), new Vector2(-310.167999F, -267.105011F));
+ builder.AddCubicBezier(new Vector2(-308.264008F, -266.187012F), new Vector2(-306.054993F, -265.727997F), new Vector2(-303.537994F, -265.727997F));
+ builder.AddCubicBezier(new Vector2(-301.022003F, -265.727997F), new Vector2(-298.803009F, -266.212006F), new Vector2(-296.881989F, -267.181F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1587()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-324.346008F, -276.947998F));
+ builder.AddCubicBezier(new Vector2(-322.681F, -277.661987F), new Vector2(-321.252991F, -278.699005F), new Vector2(-320.062012F, -280.05899F));
+ builder.AddLine(new Vector2(-323.019989F, -283.067993F));
+ builder.AddCubicBezier(new Vector2(-323.835999F, -282.115997F), new Vector2(-324.813995F, -281.402008F), new Vector2(-325.953003F, -280.925995F));
+ builder.AddCubicBezier(new Vector2(-327.092987F, -280.449005F), new Vector2(-328.34201F, -280.212006F), new Vector2(-329.700989F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-331.333008F, -280.212006F), new Vector2(-332.778992F, -280.559998F), new Vector2(-334.036011F, -281.256989F));
+ builder.AddCubicBezier(new Vector2(-335.294006F, -281.953003F), new Vector2(-336.263F, -282.940002F), new Vector2(-336.942993F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(-337.623993F, -285.48999F), new Vector2(-337.963013F, -286.97699F), new Vector2(-337.963013F, -288.678009F));
+ builder.AddCubicBezier(new Vector2(-337.963013F, -290.342987F), new Vector2(-337.640015F, -291.789001F), new Vector2(-336.993988F, -293.013F));
+ builder.AddCubicBezier(new Vector2(-336.348999F, -294.237F), new Vector2(-335.431F, -295.187988F), new Vector2(-334.23999F, -295.868988F));
+ builder.AddCubicBezier(new Vector2(-333.049988F, -296.549011F), new Vector2(-331.673004F, -296.889008F), new Vector2(-330.109009F, -296.889008F));
+ builder.AddCubicBezier(new Vector2(-328.613007F, -296.889008F), new Vector2(-327.338013F, -296.574005F), new Vector2(-326.283997F, -295.945007F));
+ builder.AddCubicBezier(new Vector2(-325.230988F, -295.315002F), new Vector2(-324.415009F, -294.432007F), new Vector2(-323.835999F, -293.292999F));
+ builder.AddCubicBezier(new Vector2(-323.257996F, -292.153015F), new Vector2(-322.968994F, -290.769012F), new Vector2(-322.968994F, -289.136993F));
+ builder.AddLine(new Vector2(-321.286011F, -290.615997F));
+ builder.AddLine(new Vector2(-339.289001F, -290.615997F));
+ builder.AddLine(new Vector2(-339.289001F, -286.790985F));
+ builder.AddLine(new Vector2(-318.838013F, -286.790985F));
+ builder.AddCubicBezier(new Vector2(-318.735992F, -287.266998F), new Vector2(-318.667999F, -287.700012F), new Vector2(-318.634003F, -288.091003F));
+ builder.AddCubicBezier(new Vector2(-318.601013F, -288.480988F), new Vector2(-318.583008F, -288.847992F), new Vector2(-318.583008F, -289.187988F));
+ builder.AddCubicBezier(new Vector2(-318.583008F, -291.5F), new Vector2(-319.067993F, -293.556F), new Vector2(-320.036987F, -295.359009F));
+ builder.AddCubicBezier(new Vector2(-321.006012F, -297.161011F), new Vector2(-322.356995F, -298.571991F), new Vector2(-324.091003F, -299.59201F));
+ builder.AddCubicBezier(new Vector2(-325.825012F, -300.612F), new Vector2(-327.796997F, -301.122009F), new Vector2(-330.006989F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-332.352997F, -301.122009F), new Vector2(-334.470001F, -300.567993F), new Vector2(-336.356995F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(-338.243988F, -298.359009F), new Vector2(-339.740997F, -296.855011F), new Vector2(-340.845001F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(-341.950012F, -293.04599F), new Vector2(-342.502014F, -290.903992F), new Vector2(-342.502014F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-342.502014F, -286.109985F), new Vector2(-341.94101F, -283.951996F), new Vector2(-340.819F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(-339.696991F, -280.143005F), new Vector2(-338.175995F, -278.638F), new Vector2(-336.255005F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(-334.334991F, -276.428986F), new Vector2(-332.148987F, -275.877014F), new Vector2(-329.700989F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-327.796997F, -275.877014F), new Vector2(-326.011993F, -276.234009F), new Vector2(-324.346008F, -276.947998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1588()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-354.38501F, -295.154999F));
+ builder.AddCubicBezier(new Vector2(-353.296997F, -296.243011F), new Vector2(-351.903992F, -296.786987F), new Vector2(-350.203003F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(-349.386993F, -296.786987F), new Vector2(-348.673004F, -296.666992F), new Vector2(-348.061005F, -296.429993F));
+ builder.AddCubicBezier(new Vector2(-347.449005F, -296.191986F), new Vector2(-346.888F, -295.799988F), new Vector2(-346.377991F, -295.256989F));
+ builder.AddLine(new Vector2(-343.368988F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(-344.218994F, -299.354004F), new Vector2(-345.136993F, -300.058014F), new Vector2(-346.122986F, -300.484009F));
+ builder.AddCubicBezier(new Vector2(-347.109985F, -300.908997F), new Vector2(-348.213989F, -301.122009F), new Vector2(-349.437988F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-352.123993F, -301.122009F), new Vector2(-354.181F, -300.20401F), new Vector2(-355.609009F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(-357.036987F, -296.532013F), new Vector2(-357.751007F, -294.06601F), new Vector2(-357.751007F, -290.972992F));
+ builder.AddLine(new Vector2(-356.016998F, -290.157013F));
+ builder.AddCubicBezier(new Vector2(-356.016998F, -292.401001F), new Vector2(-355.473999F, -294.06601F), new Vector2(-354.38501F, -295.154999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-356.016998F, -276.386993F));
+ builder.AddLine(new Vector2(-356.016998F, -300.612F));
+ builder.AddLine(new Vector2(-360.606995F, -300.612F));
+ builder.AddLine(new Vector2(-360.606995F, -276.386993F));
+ builder.AddLine(new Vector2(-356.016998F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1589()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-378.738007F, -277.865997F));
+ builder.AddCubicBezier(new Vector2(-377.123993F, -279.191986F), new Vector2(-376.315002F, -280.993988F), new Vector2(-376.315002F, -283.272003F));
+ builder.AddCubicBezier(new Vector2(-376.315002F, -284.768005F), new Vector2(-376.630005F, -285.975006F), new Vector2(-377.259003F, -286.893005F));
+ builder.AddCubicBezier(new Vector2(-377.889008F, -287.811005F), new Vector2(-378.695007F, -288.541992F), new Vector2(-379.681F, -289.085999F));
+ builder.AddCubicBezier(new Vector2(-380.667999F, -289.628998F), new Vector2(-381.70401F, -290.062012F), new Vector2(-382.791992F, -290.385986F));
+ builder.AddCubicBezier(new Vector2(-383.881012F, -290.709015F), new Vector2(-384.925995F, -291.023987F), new Vector2(-385.928009F, -291.329987F));
+ builder.AddCubicBezier(new Vector2(-386.931F, -291.635986F), new Vector2(-387.739014F, -292.01001F), new Vector2(-388.351013F, -292.451996F));
+ builder.AddCubicBezier(new Vector2(-388.963013F, -292.893005F), new Vector2(-389.269012F, -293.52301F), new Vector2(-389.269012F, -294.338989F));
+ builder.AddCubicBezier(new Vector2(-389.269012F, -295.121002F), new Vector2(-388.92099F, -295.748993F), new Vector2(-388.223999F, -296.226013F));
+ builder.AddCubicBezier(new Vector2(-387.528015F, -296.701996F), new Vector2(-386.515015F, -296.940002F), new Vector2(-385.188995F, -296.940002F));
+ builder.AddCubicBezier(new Vector2(-383.932007F, -296.940002F), new Vector2(-382.809998F, -296.701996F), new Vector2(-381.822998F, -296.226013F));
+ builder.AddCubicBezier(new Vector2(-380.837006F, -295.748993F), new Vector2(-379.987F, -295.070007F), new Vector2(-379.27301F, -294.186005F));
+ builder.AddLine(new Vector2(-376.315002F, -297.144012F));
+ builder.AddCubicBezier(new Vector2(-377.266998F, -298.470001F), new Vector2(-378.483002F, -299.463989F), new Vector2(-379.962006F, -300.127014F));
+ builder.AddCubicBezier(new Vector2(-381.44101F, -300.790009F), new Vector2(-383.131989F, -301.122009F), new Vector2(-385.036011F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-386.838989F, -301.122009F), new Vector2(-388.38501F, -300.833008F), new Vector2(-389.677002F, -300.255005F));
+ builder.AddCubicBezier(new Vector2(-390.970001F, -299.675995F), new Vector2(-391.963989F, -298.85199F), new Vector2(-392.660004F, -297.781006F));
+ builder.AddCubicBezier(new Vector2(-393.356995F, -296.709991F), new Vector2(-393.705994F, -295.442993F), new Vector2(-393.705994F, -293.981995F));
+ builder.AddCubicBezier(new Vector2(-393.705994F, -292.519989F), new Vector2(-393.393005F, -291.337006F), new Vector2(-392.763F, -290.437012F));
+ builder.AddCubicBezier(new Vector2(-392.134003F, -289.536011F), new Vector2(-391.326996F, -288.830994F), new Vector2(-390.339996F, -288.321014F));
+ builder.AddCubicBezier(new Vector2(-389.354004F, -287.811005F), new Vector2(-388.308014F, -287.403015F), new Vector2(-387.203003F, -287.096985F));
+ builder.AddCubicBezier(new Vector2(-386.098999F, -286.790985F), new Vector2(-385.053986F, -286.476013F), new Vector2(-384.066986F, -286.153015F));
+ builder.AddCubicBezier(new Vector2(-383.080994F, -285.82901F), new Vector2(-382.274994F, -285.42099F), new Vector2(-381.644989F, -284.928986F));
+ builder.AddCubicBezier(new Vector2(-381.015991F, -284.436005F), new Vector2(-380.700989F, -283.747986F), new Vector2(-380.700989F, -282.864014F));
+ builder.AddCubicBezier(new Vector2(-380.700989F, -281.979004F), new Vector2(-381.09201F, -281.290009F), new Vector2(-381.873993F, -280.798004F));
+ builder.AddCubicBezier(new Vector2(-382.657013F, -280.304993F), new Vector2(-383.760986F, -280.05899F), new Vector2(-385.188995F, -280.05899F));
+ builder.AddCubicBezier(new Vector2(-386.617004F, -280.05899F), new Vector2(-387.910004F, -280.321014F), new Vector2(-389.065002F, -280.848999F));
+ builder.AddCubicBezier(new Vector2(-390.221008F, -281.376007F), new Vector2(-391.240997F, -282.183014F), new Vector2(-392.125F, -283.272003F));
+ builder.AddLine(new Vector2(-395.083008F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(-394.335999F, -279.395996F), new Vector2(-393.459991F, -278.605011F), new Vector2(-392.457001F, -277.941986F));
+ builder.AddCubicBezier(new Vector2(-391.454987F, -277.278992F), new Vector2(-390.339996F, -276.769012F), new Vector2(-389.115997F, -276.411987F));
+ builder.AddCubicBezier(new Vector2(-387.891998F, -276.054993F), new Vector2(-386.600006F, -275.877014F), new Vector2(-385.23999F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-382.519989F, -275.877014F), new Vector2(-380.352997F, -276.540009F), new Vector2(-378.738007F, -277.865997F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1590()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-420.990997F, -276.386993F));
+ builder.AddLine(new Vector2(-413.953003F, -294.644989F));
+ builder.AddLine(new Vector2(-415.635986F, -294.644989F));
+ builder.AddLine(new Vector2(-408.648987F, -276.386993F));
+ builder.AddLine(new Vector2(-405.946014F, -276.386993F));
+ builder.AddLine(new Vector2(-396.408997F, -300.612F));
+ builder.AddLine(new Vector2(-401.203003F, -300.612F));
+ builder.AddLine(new Vector2(-408.139008F, -281.742004F));
+ builder.AddLine(new Vector2(-406.609009F, -281.742004F));
+ builder.AddLine(new Vector2(-413.493988F, -300.612F));
+ builder.AddLine(new Vector2(-416.145996F, -300.612F));
+ builder.AddLine(new Vector2(-423.031006F, -281.742004F));
+ builder.AddLine(new Vector2(-421.501007F, -281.742004F));
+ builder.AddLine(new Vector2(-428.437012F, -300.612F));
+ builder.AddLine(new Vector2(-433.230988F, -300.612F));
+ builder.AddLine(new Vector2(-423.694F, -276.386993F));
+ builder.AddLine(new Vector2(-420.990997F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1591()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-451.692993F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(-452.884003F, -282.098999F), new Vector2(-453.817993F, -283.075012F), new Vector2(-454.497986F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(-455.178986F, -285.558014F), new Vector2(-455.518005F, -286.97699F), new Vector2(-455.518005F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(-455.518005F, -290.139008F), new Vector2(-455.178986F, -291.533997F), new Vector2(-454.497986F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(-453.817993F, -293.981995F), new Vector2(-452.884003F, -294.941986F), new Vector2(-451.692993F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(-450.502991F, -296.334991F), new Vector2(-449.161011F, -296.684998F), new Vector2(-447.664001F, -296.684998F));
+ builder.AddCubicBezier(new Vector2(-446.101013F, -296.684998F), new Vector2(-444.731995F, -296.334991F), new Vector2(-443.55899F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(-442.385986F, -294.941986F), new Vector2(-441.450989F, -293.981995F), new Vector2(-440.753998F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(-440.058014F, -291.533997F), new Vector2(-439.708008F, -290.139008F), new Vector2(-439.708008F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(-439.708008F, -286.97699F), new Vector2(-440.048004F, -285.558014F), new Vector2(-440.727997F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(-441.408997F, -283.075012F), new Vector2(-442.342987F, -282.098999F), new Vector2(-443.53299F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(-444.723999F, -280.67099F), new Vector2(-446.101013F, -280.313995F), new Vector2(-447.664001F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(-449.161011F, -280.313995F), new Vector2(-450.502991F, -280.67099F), new Vector2(-451.692993F, -281.38501F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-441.213013F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(-439.292999F, -278.682007F), new Vector2(-437.769989F, -280.203003F), new Vector2(-436.64801F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(-435.526001F, -284.044006F), new Vector2(-434.964996F, -286.196014F), new Vector2(-434.964996F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(-434.964996F, -290.921997F), new Vector2(-435.526001F, -293.04599F), new Vector2(-436.64801F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(-437.769989F, -296.855011F), new Vector2(-439.292999F, -298.359009F), new Vector2(-441.213013F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(-443.134003F, -300.567993F), new Vector2(-445.285004F, -301.122009F), new Vector2(-447.664001F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-450.01001F, -301.122009F), new Vector2(-452.13501F, -300.561005F), new Vector2(-454.039001F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(-455.944F, -298.316986F), new Vector2(-457.455994F, -296.812012F), new Vector2(-458.578003F, -294.924988F));
+ builder.AddCubicBezier(new Vector2(-459.700012F, -293.037994F), new Vector2(-460.260986F, -290.921997F), new Vector2(-460.260986F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(-460.260986F, -286.196014F), new Vector2(-459.700012F, -284.044006F), new Vector2(-458.578003F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(-457.455994F, -280.203003F), new Vector2(-455.944F, -278.682007F), new Vector2(-454.039001F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(-452.13501F, -276.437988F), new Vector2(-450.01001F, -275.877014F), new Vector2(-447.664001F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-445.285004F, -275.877014F), new Vector2(-443.134003F, -276.437988F), new Vector2(-441.213013F, -277.559998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1592()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-465.411987F, -276.386993F));
+ builder.AddLine(new Vector2(-465.411987F, -312.800995F));
+ builder.AddLine(new Vector2(-470.002014F, -312.800995F));
+ builder.AddLine(new Vector2(-470.002014F, -276.386993F));
+ builder.AddLine(new Vector2(-465.411987F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1593()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-476.734009F, -276.386993F));
+ builder.AddLine(new Vector2(-476.734009F, -312.800995F));
+ builder.AddLine(new Vector2(-481.324005F, -312.800995F));
+ builder.AddLine(new Vector2(-481.324005F, -276.386993F));
+ builder.AddLine(new Vector2(-476.734009F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1594()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-492.084991F, -276.947998F));
+ builder.AddCubicBezier(new Vector2(-490.420013F, -277.661987F), new Vector2(-488.992004F, -278.699005F), new Vector2(-487.800995F, -280.05899F));
+ builder.AddLine(new Vector2(-490.759003F, -283.067993F));
+ builder.AddCubicBezier(new Vector2(-491.575012F, -282.115997F), new Vector2(-492.552002F, -281.402008F), new Vector2(-493.69101F, -280.925995F));
+ builder.AddCubicBezier(new Vector2(-494.830994F, -280.449005F), new Vector2(-496.080994F, -280.212006F), new Vector2(-497.440002F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-499.071991F, -280.212006F), new Vector2(-500.518005F, -280.559998F), new Vector2(-501.774994F, -281.256989F));
+ builder.AddCubicBezier(new Vector2(-503.03299F, -281.953003F), new Vector2(-504.002014F, -282.940002F), new Vector2(-504.682007F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(-505.363007F, -285.48999F), new Vector2(-505.701996F, -286.97699F), new Vector2(-505.701996F, -288.678009F));
+ builder.AddCubicBezier(new Vector2(-505.701996F, -290.342987F), new Vector2(-505.378998F, -291.789001F), new Vector2(-504.733002F, -293.013F));
+ builder.AddCubicBezier(new Vector2(-504.088013F, -294.237F), new Vector2(-503.170013F, -295.187988F), new Vector2(-501.979004F, -295.868988F));
+ builder.AddCubicBezier(new Vector2(-500.789001F, -296.549011F), new Vector2(-499.411987F, -296.889008F), new Vector2(-497.847992F, -296.889008F));
+ builder.AddCubicBezier(new Vector2(-496.35199F, -296.889008F), new Vector2(-495.076996F, -296.574005F), new Vector2(-494.02301F, -295.945007F));
+ builder.AddCubicBezier(new Vector2(-492.970001F, -295.315002F), new Vector2(-492.153992F, -294.432007F), new Vector2(-491.575012F, -293.292999F));
+ builder.AddCubicBezier(new Vector2(-490.997009F, -292.153015F), new Vector2(-490.708008F, -290.769012F), new Vector2(-490.708008F, -289.136993F));
+ builder.AddLine(new Vector2(-489.024994F, -290.615997F));
+ builder.AddLine(new Vector2(-507.028015F, -290.615997F));
+ builder.AddLine(new Vector2(-507.028015F, -286.790985F));
+ builder.AddLine(new Vector2(-486.576996F, -286.790985F));
+ builder.AddCubicBezier(new Vector2(-486.475006F, -287.266998F), new Vector2(-486.407013F, -287.700012F), new Vector2(-486.372986F, -288.091003F));
+ builder.AddCubicBezier(new Vector2(-486.339996F, -288.480988F), new Vector2(-486.321991F, -288.847992F), new Vector2(-486.321991F, -289.187988F));
+ builder.AddCubicBezier(new Vector2(-486.321991F, -291.5F), new Vector2(-486.807007F, -293.556F), new Vector2(-487.776001F, -295.359009F));
+ builder.AddCubicBezier(new Vector2(-488.744995F, -297.161011F), new Vector2(-490.096008F, -298.571991F), new Vector2(-491.829987F, -299.59201F));
+ builder.AddCubicBezier(new Vector2(-493.563995F, -300.612F), new Vector2(-495.536011F, -301.122009F), new Vector2(-497.746002F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-500.09201F, -301.122009F), new Vector2(-502.208008F, -300.567993F), new Vector2(-504.095001F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(-505.981995F, -298.359009F), new Vector2(-507.479004F, -296.855011F), new Vector2(-508.583008F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(-509.687988F, -293.04599F), new Vector2(-510.240997F, -290.903992F), new Vector2(-510.240997F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-510.240997F, -286.109985F), new Vector2(-509.679993F, -283.951996F), new Vector2(-508.558014F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(-507.436005F, -280.143005F), new Vector2(-505.914001F, -278.638F), new Vector2(-503.993011F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(-502.072998F, -276.428986F), new Vector2(-499.888F, -275.877014F), new Vector2(-497.440002F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-495.536011F, -275.877014F), new Vector2(-493.751007F, -276.234009F), new Vector2(-492.084991F, -276.947998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1595()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-511.872986F, -296.429993F));
+ builder.AddLine(new Vector2(-511.872986F, -300.612F));
+ builder.AddLine(new Vector2(-530.130981F, -300.612F));
+ builder.AddLine(new Vector2(-530.130981F, -296.429993F));
+ builder.AddLine(new Vector2(-511.872986F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-519.573975F, -276.386993F));
+ builder.AddLine(new Vector2(-519.573975F, -304.233002F));
+ builder.AddCubicBezier(new Vector2(-519.573975F, -305.729004F), new Vector2(-519.174988F, -306.891998F), new Vector2(-518.375977F, -307.726013F));
+ builder.AddCubicBezier(new Vector2(-517.578003F, -308.55899F), new Vector2(-516.445984F, -308.976013F), new Vector2(-514.984009F, -308.976013F));
+ builder.AddCubicBezier(new Vector2(-514.202026F, -308.976013F), new Vector2(-513.539001F, -308.855988F), new Vector2(-512.994995F, -308.618988F));
+ builder.AddCubicBezier(new Vector2(-512.452026F, -308.381012F), new Vector2(-511.958008F, -308.023987F), new Vector2(-511.515991F, -307.548004F));
+ builder.AddLine(new Vector2(-508.506989F, -310.506012F));
+ builder.AddCubicBezier(new Vector2(-509.356995F, -311.424011F), new Vector2(-510.291992F, -312.119995F), new Vector2(-511.312012F, -312.596985F));
+ builder.AddCubicBezier(new Vector2(-512.33197F, -313.072998F), new Vector2(-513.539001F, -313.311005F), new Vector2(-514.932983F, -313.311005F));
+ builder.AddCubicBezier(new Vector2(-516.768982F, -313.311005F), new Vector2(-518.383972F, -312.920013F), new Vector2(-519.778015F, -312.138F));
+ builder.AddCubicBezier(new Vector2(-521.172974F, -311.355011F), new Vector2(-522.26001F, -310.283997F), new Vector2(-523.041992F, -308.924988F));
+ builder.AddCubicBezier(new Vector2(-523.825012F, -307.565002F), new Vector2(-524.215027F, -306F), new Vector2(-524.215027F, -304.233002F));
+ builder.AddLine(new Vector2(-524.215027F, -276.386993F));
+ builder.AddLine(new Vector2(-519.573975F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1596()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-544.921021F, -276.386993F));
+ builder.AddLine(new Vector2(-544.921021F, -312.800995F));
+ builder.AddLine(new Vector2(-549.510986F, -312.800995F));
+ builder.AddLine(new Vector2(-549.510986F, -276.386993F));
+ builder.AddLine(new Vector2(-544.921021F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1597()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-556.192017F, -276.386993F));
+ builder.AddLine(new Vector2(-556.192017F, -300.612F));
+ builder.AddLine(new Vector2(-560.833008F, -300.612F));
+ builder.AddLine(new Vector2(-560.833008F, -294.696014F));
+ builder.AddLine(new Vector2(-559.966003F, -288.830994F));
+ builder.AddLine(new Vector2(-560.833008F, -282.915009F));
+ builder.AddLine(new Vector2(-560.833008F, -276.386993F));
+ builder.AddLine(new Vector2(-556.192017F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-572.205994F, -281.28299F));
+ builder.AddCubicBezier(new Vector2(-573.396973F, -281.997009F), new Vector2(-574.322998F, -282.972992F), new Vector2(-574.986023F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(-575.648987F, -285.455994F), new Vector2(-575.97998F, -286.893005F), new Vector2(-575.97998F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-575.97998F, -290.122986F), new Vector2(-575.648987F, -291.540985F), new Vector2(-574.986023F, -292.78299F));
+ builder.AddCubicBezier(new Vector2(-574.322998F, -294.023987F), new Vector2(-573.405029F, -295.002014F), new Vector2(-572.231995F, -295.716003F));
+ builder.AddCubicBezier(new Vector2(-571.059021F, -296.429993F), new Vector2(-569.70697F, -296.786987F), new Vector2(-568.177002F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(-566.646973F, -296.786987F), new Vector2(-565.314026F, -296.437012F), new Vector2(-564.174011F, -295.740997F));
+ builder.AddCubicBezier(new Vector2(-563.034973F, -295.044006F), new Vector2(-562.142029F, -294.06601F), new Vector2(-561.495972F, -292.80899F));
+ builder.AddCubicBezier(new Vector2(-560.849976F, -291.550995F), new Vector2(-560.526978F, -290.105988F), new Vector2(-560.526978F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(-560.526978F, -286.05899F), new Vector2(-561.223999F, -284.07901F), new Vector2(-562.617981F, -282.532013F));
+ builder.AddCubicBezier(new Vector2(-564.013F, -280.984009F), new Vector2(-565.848999F, -280.212006F), new Vector2(-568.125977F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-569.656006F, -280.212006F), new Vector2(-571.015991F, -280.569F), new Vector2(-572.205994F, -281.28299F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-563.94397F, -277.023987F));
+ builder.AddCubicBezier(new Vector2(-562.482971F, -277.789001F), new Vector2(-561.317993F, -278.85199F), new Vector2(-560.450989F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-559.583984F, -281.571014F), new Vector2(-559.098999F, -283.118988F), new Vector2(-558.997009F, -284.852997F));
+ builder.AddLine(new Vector2(-558.997009F, -292.145996F));
+ builder.AddCubicBezier(new Vector2(-559.098999F, -293.912994F), new Vector2(-559.59198F, -295.467987F), new Vector2(-560.476013F, -296.812012F));
+ builder.AddCubicBezier(new Vector2(-561.361023F, -298.154999F), new Vector2(-562.525024F, -299.209015F), new Vector2(-563.969971F, -299.973999F));
+ builder.AddCubicBezier(new Vector2(-565.414978F, -300.739014F), new Vector2(-567.054993F, -301.122009F), new Vector2(-568.890991F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-571.13501F, -301.122009F), new Vector2(-573.150024F, -300.561005F), new Vector2(-574.934998F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(-576.719971F, -298.316986F), new Vector2(-578.130981F, -296.803986F), new Vector2(-579.16803F, -294.899994F));
+ builder.AddCubicBezier(new Vector2(-580.205994F, -292.994995F), new Vector2(-580.723022F, -290.852997F), new Vector2(-580.723022F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(-580.723022F, -286.093994F), new Vector2(-580.205994F, -283.951996F), new Vector2(-579.16803F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(-578.130981F, -280.143005F), new Vector2(-576.719971F, -278.638F), new Vector2(-574.934998F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(-573.150024F, -276.428986F), new Vector2(-571.13501F, -275.877014F), new Vector2(-568.890991F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-567.054993F, -275.877014F), new Vector2(-565.406006F, -276.259003F), new Vector2(-563.94397F, -277.023987F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1598()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-602.551025F, -276.386993F));
+ builder.AddLine(new Vector2(-602.551025F, -300.612F));
+ builder.AddLine(new Vector2(-607.140991F, -300.612F));
+ builder.AddLine(new Vector2(-607.140991F, -276.386993F));
+ builder.AddLine(new Vector2(-602.551025F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-585.414978F, -276.386993F));
+ builder.AddLine(new Vector2(-585.414978F, -291.432007F));
+ builder.AddCubicBezier(new Vector2(-585.414978F, -293.096985F), new Vector2(-585.822998F, -294.670013F), new Vector2(-586.638977F, -296.148987F));
+ builder.AddCubicBezier(new Vector2(-587.455017F, -297.627991F), new Vector2(-588.56897F, -298.826996F), new Vector2(-589.979004F, -299.744995F));
+ builder.AddCubicBezier(new Vector2(-591.390015F, -300.662994F), new Vector2(-593.013977F, -301.122009F), new Vector2(-594.849976F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-596.685974F, -301.122009F), new Vector2(-598.335999F, -300.704987F), new Vector2(-599.796997F, -299.872009F));
+ builder.AddCubicBezier(new Vector2(-601.258972F, -299.037994F), new Vector2(-602.39801F, -297.908997F), new Vector2(-603.213989F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(-604.030029F, -295.053009F), new Vector2(-604.437988F, -293.42099F), new Vector2(-604.437988F, -291.584991F));
+ builder.AddLine(new Vector2(-602.551025F, -290.514008F));
+ builder.AddCubicBezier(new Vector2(-602.551025F, -291.738007F), new Vector2(-602.278992F, -292.825989F), new Vector2(-601.734985F, -293.778015F));
+ builder.AddCubicBezier(new Vector2(-601.190979F, -294.729004F), new Vector2(-600.442993F, -295.477997F), new Vector2(-599.491028F, -296.022003F));
+ builder.AddCubicBezier(new Vector2(-598.539978F, -296.565002F), new Vector2(-597.450989F, -296.838013F), new Vector2(-596.22699F, -296.838013F));
+ builder.AddCubicBezier(new Vector2(-594.390991F, -296.838013F), new Vector2(-592.905029F, -296.243011F), new Vector2(-591.765015F, -295.053009F));
+ builder.AddCubicBezier(new Vector2(-590.625977F, -293.862F), new Vector2(-590.05603F, -292.350006F), new Vector2(-590.05603F, -290.514008F));
+ builder.AddLine(new Vector2(-590.05603F, -276.386993F));
+ builder.AddLine(new Vector2(-585.414978F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1599()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-628.968994F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(-630.159973F, -282.098999F), new Vector2(-631.093994F, -283.075012F), new Vector2(-631.773987F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(-632.453979F, -285.558014F), new Vector2(-632.794006F, -286.97699F), new Vector2(-632.794006F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(-632.794006F, -290.139008F), new Vector2(-632.453979F, -291.533997F), new Vector2(-631.773987F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(-631.093994F, -293.981995F), new Vector2(-630.159973F, -294.941986F), new Vector2(-628.968994F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(-627.778992F, -296.334991F), new Vector2(-626.437012F, -296.684998F), new Vector2(-624.940002F, -296.684998F));
+ builder.AddCubicBezier(new Vector2(-623.377014F, -296.684998F), new Vector2(-622.007996F, -296.334991F), new Vector2(-620.835022F, -295.639008F));
+ builder.AddCubicBezier(new Vector2(-619.661987F, -294.941986F), new Vector2(-618.72699F, -293.981995F), new Vector2(-618.030029F, -292.757996F));
+ builder.AddCubicBezier(new Vector2(-617.333984F, -291.533997F), new Vector2(-616.984009F, -290.139008F), new Vector2(-616.984009F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(-616.984009F, -286.97699F), new Vector2(-617.323975F, -285.558014F), new Vector2(-618.004028F, -284.316986F));
+ builder.AddCubicBezier(new Vector2(-618.684998F, -283.075012F), new Vector2(-619.619019F, -282.098999F), new Vector2(-620.809021F, -281.38501F));
+ builder.AddCubicBezier(new Vector2(-622F, -280.67099F), new Vector2(-623.377014F, -280.313995F), new Vector2(-624.940002F, -280.313995F));
+ builder.AddCubicBezier(new Vector2(-626.437012F, -280.313995F), new Vector2(-627.778992F, -280.67099F), new Vector2(-628.968994F, -281.38501F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-618.489014F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(-616.56897F, -278.682007F), new Vector2(-615.046021F, -280.203003F), new Vector2(-613.924011F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(-612.802002F, -284.044006F), new Vector2(-612.241028F, -286.196014F), new Vector2(-612.241028F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(-612.241028F, -290.921997F), new Vector2(-612.802002F, -293.04599F), new Vector2(-613.924011F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(-615.046021F, -296.855011F), new Vector2(-616.56897F, -298.359009F), new Vector2(-618.489014F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(-620.409973F, -300.567993F), new Vector2(-622.560974F, -301.122009F), new Vector2(-624.940002F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-627.286011F, -301.122009F), new Vector2(-629.411011F, -300.561005F), new Vector2(-631.315002F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(-633.219971F, -298.316986F), new Vector2(-634.731995F, -296.812012F), new Vector2(-635.854004F, -294.924988F));
+ builder.AddCubicBezier(new Vector2(-636.976013F, -293.037994F), new Vector2(-637.536987F, -290.921997F), new Vector2(-637.536987F, -288.575989F));
+ builder.AddCubicBezier(new Vector2(-637.536987F, -286.196014F), new Vector2(-636.976013F, -284.044006F), new Vector2(-635.854004F, -282.123993F));
+ builder.AddCubicBezier(new Vector2(-634.731995F, -280.203003F), new Vector2(-633.219971F, -278.682007F), new Vector2(-631.315002F, -277.559998F));
+ builder.AddCubicBezier(new Vector2(-629.411011F, -276.437988F), new Vector2(-627.286011F, -275.877014F), new Vector2(-624.940002F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-622.560974F, -275.877014F), new Vector2(-620.409973F, -276.437988F), new Vector2(-618.489014F, -277.559998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1600()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-642.942993F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(-642.398987F, -306.859009F), new Vector2(-642.127014F, -307.565002F), new Vector2(-642.127014F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(-642.127014F, -309.230988F), new Vector2(-642.398987F, -309.919006F), new Vector2(-642.942993F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(-643.487F, -311.040985F), new Vector2(-644.184998F, -311.321991F), new Vector2(-645.033997F, -311.321991F));
+ builder.AddCubicBezier(new Vector2(-645.883972F, -311.321991F), new Vector2(-646.580994F, -311.040985F), new Vector2(-647.125F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(-647.669006F, -309.919006F), new Vector2(-647.940979F, -309.230988F), new Vector2(-647.940979F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(-647.940979F, -307.565002F), new Vector2(-647.669006F, -306.859009F), new Vector2(-647.125F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(-646.580994F, -305.737F), new Vector2(-645.883972F, -305.457001F), new Vector2(-645.033997F, -305.457001F));
+ builder.AddCubicBezier(new Vector2(-644.184998F, -305.457001F), new Vector2(-643.487F, -305.737F), new Vector2(-642.942993F, -306.298004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-642.739014F, -276.386993F));
+ builder.AddLine(new Vector2(-642.739014F, -300.612F));
+ builder.AddLine(new Vector2(-647.380005F, -300.612F));
+ builder.AddLine(new Vector2(-647.380005F, -276.386993F));
+ builder.AddLine(new Vector2(-642.739014F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1601()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-651.867981F, -296.429993F));
+ builder.AddLine(new Vector2(-651.867981F, -300.612F));
+ builder.AddLine(new Vector2(-668.392029F, -300.612F));
+ builder.AddLine(new Vector2(-668.392029F, -296.429993F));
+ builder.AddLine(new Vector2(-651.867981F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-657.835022F, -276.386993F));
+ builder.AddLine(new Vector2(-657.835022F, -310.760986F));
+ builder.AddLine(new Vector2(-662.424988F, -310.760986F));
+ builder.AddLine(new Vector2(-662.424988F, -276.386993F));
+ builder.AddLine(new Vector2(-657.835022F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1602()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-672.72699F, -276.386993F));
+ builder.AddLine(new Vector2(-672.72699F, -300.612F));
+ builder.AddLine(new Vector2(-677.367981F, -300.612F));
+ builder.AddLine(new Vector2(-677.367981F, -294.696014F));
+ builder.AddLine(new Vector2(-676.500977F, -288.830994F));
+ builder.AddLine(new Vector2(-677.367981F, -282.915009F));
+ builder.AddLine(new Vector2(-677.367981F, -276.386993F));
+ builder.AddLine(new Vector2(-672.72699F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-688.741028F, -281.28299F));
+ builder.AddCubicBezier(new Vector2(-689.932007F, -281.997009F), new Vector2(-690.857971F, -282.972992F), new Vector2(-691.520996F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(-692.184021F, -285.455994F), new Vector2(-692.515015F, -286.893005F), new Vector2(-692.515015F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-692.515015F, -290.122986F), new Vector2(-692.184021F, -291.540985F), new Vector2(-691.520996F, -292.78299F));
+ builder.AddCubicBezier(new Vector2(-690.857971F, -294.023987F), new Vector2(-689.939026F, -295.002014F), new Vector2(-688.765991F, -295.716003F));
+ builder.AddCubicBezier(new Vector2(-687.593018F, -296.429993F), new Vector2(-686.242004F, -296.786987F), new Vector2(-684.711975F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(-683.182007F, -296.786987F), new Vector2(-681.848022F, -296.437012F), new Vector2(-680.708008F, -295.740997F));
+ builder.AddCubicBezier(new Vector2(-679.56897F, -295.044006F), new Vector2(-678.677002F, -294.06601F), new Vector2(-678.031006F, -292.80899F));
+ builder.AddCubicBezier(new Vector2(-677.38501F, -291.550995F), new Vector2(-677.062012F, -290.105988F), new Vector2(-677.062012F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(-677.062012F, -286.05899F), new Vector2(-677.758972F, -284.07901F), new Vector2(-679.153015F, -282.532013F));
+ builder.AddCubicBezier(new Vector2(-680.547974F, -280.984009F), new Vector2(-682.383972F, -280.212006F), new Vector2(-684.661011F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-686.190979F, -280.212006F), new Vector2(-687.551025F, -280.569F), new Vector2(-688.741028F, -281.28299F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-680.479004F, -277.023987F));
+ builder.AddCubicBezier(new Vector2(-679.018005F, -277.789001F), new Vector2(-677.85199F, -278.85199F), new Vector2(-676.984985F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-676.117981F, -281.571014F), new Vector2(-675.633972F, -283.118988F), new Vector2(-675.531982F, -284.852997F));
+ builder.AddLine(new Vector2(-675.531982F, -292.145996F));
+ builder.AddCubicBezier(new Vector2(-675.633972F, -293.912994F), new Vector2(-676.127014F, -295.467987F), new Vector2(-677.010986F, -296.812012F));
+ builder.AddCubicBezier(new Vector2(-677.895996F, -298.154999F), new Vector2(-679.059998F, -299.209015F), new Vector2(-680.505005F, -299.973999F));
+ builder.AddCubicBezier(new Vector2(-681.950012F, -300.739014F), new Vector2(-683.590027F, -301.122009F), new Vector2(-685.426025F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-687.669983F, -301.122009F), new Vector2(-689.684021F, -300.561005F), new Vector2(-691.468994F, -299.438995F));
+ builder.AddCubicBezier(new Vector2(-693.254028F, -298.316986F), new Vector2(-694.666016F, -296.803986F), new Vector2(-695.703003F, -294.899994F));
+ builder.AddCubicBezier(new Vector2(-696.741028F, -292.994995F), new Vector2(-697.257996F, -290.852997F), new Vector2(-697.257996F, -288.473999F));
+ builder.AddCubicBezier(new Vector2(-697.257996F, -286.093994F), new Vector2(-696.741028F, -283.951996F), new Vector2(-695.703003F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(-694.666016F, -280.143005F), new Vector2(-693.254028F, -278.638F), new Vector2(-691.468994F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(-689.684021F, -276.428986F), new Vector2(-687.669983F, -275.877014F), new Vector2(-685.426025F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-683.590027F, -275.877014F), new Vector2(-681.940979F, -276.259003F), new Vector2(-680.479004F, -277.023987F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1603()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-719.085999F, -276.386993F));
+ builder.AddLine(new Vector2(-719.085999F, -300.612F));
+ builder.AddLine(new Vector2(-723.676025F, -300.612F));
+ builder.AddLine(new Vector2(-723.676025F, -276.386993F));
+ builder.AddLine(new Vector2(-719.085999F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-701.950012F, -276.386993F));
+ builder.AddLine(new Vector2(-701.950012F, -291.432007F));
+ builder.AddCubicBezier(new Vector2(-701.950012F, -293.096985F), new Vector2(-702.357971F, -294.670013F), new Vector2(-703.174011F, -296.148987F));
+ builder.AddCubicBezier(new Vector2(-703.98999F, -297.627991F), new Vector2(-705.104004F, -298.826996F), new Vector2(-706.513977F, -299.744995F));
+ builder.AddCubicBezier(new Vector2(-707.924988F, -300.662994F), new Vector2(-709.549011F, -301.122009F), new Vector2(-711.38501F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-713.221008F, -301.122009F), new Vector2(-714.870972F, -300.704987F), new Vector2(-716.33197F, -299.872009F));
+ builder.AddCubicBezier(new Vector2(-717.794006F, -299.037994F), new Vector2(-718.932983F, -297.908997F), new Vector2(-719.749023F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(-720.565002F, -295.053009F), new Vector2(-720.973022F, -293.42099F), new Vector2(-720.973022F, -291.584991F));
+ builder.AddLine(new Vector2(-719.085999F, -290.514008F));
+ builder.AddCubicBezier(new Vector2(-719.085999F, -291.738007F), new Vector2(-718.814026F, -292.825989F), new Vector2(-718.27002F, -293.778015F));
+ builder.AddCubicBezier(new Vector2(-717.726013F, -294.729004F), new Vector2(-716.978027F, -295.477997F), new Vector2(-716.026001F, -296.022003F));
+ builder.AddCubicBezier(new Vector2(-715.075012F, -296.565002F), new Vector2(-713.986023F, -296.838013F), new Vector2(-712.762024F, -296.838013F));
+ builder.AddCubicBezier(new Vector2(-710.926025F, -296.838013F), new Vector2(-709.439026F, -296.243011F), new Vector2(-708.299011F, -295.053009F));
+ builder.AddCubicBezier(new Vector2(-707.159973F, -293.862F), new Vector2(-706.591003F, -292.350006F), new Vector2(-706.591003F, -290.514008F));
+ builder.AddLine(new Vector2(-706.591003F, -276.386993F));
+ builder.AddLine(new Vector2(-701.950012F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1604()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-738.007019F, -295.154999F));
+ builder.AddCubicBezier(new Vector2(-736.919006F, -296.243011F), new Vector2(-735.526001F, -296.786987F), new Vector2(-733.825012F, -296.786987F));
+ builder.AddCubicBezier(new Vector2(-733.008972F, -296.786987F), new Vector2(-732.294983F, -296.666992F), new Vector2(-731.682983F, -296.429993F));
+ builder.AddCubicBezier(new Vector2(-731.070984F, -296.191986F), new Vector2(-730.51001F, -295.799988F), new Vector2(-730F, -295.256989F));
+ builder.AddLine(new Vector2(-726.991028F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(-727.841003F, -299.354004F), new Vector2(-728.758972F, -300.058014F), new Vector2(-729.744995F, -300.484009F));
+ builder.AddCubicBezier(new Vector2(-730.731995F, -300.908997F), new Vector2(-731.835999F, -301.122009F), new Vector2(-733.059998F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-735.745972F, -301.122009F), new Vector2(-737.802979F, -300.20401F), new Vector2(-739.231018F, -298.368011F));
+ builder.AddCubicBezier(new Vector2(-740.658997F, -296.532013F), new Vector2(-741.372986F, -294.06601F), new Vector2(-741.372986F, -290.972992F));
+ builder.AddLine(new Vector2(-739.638977F, -290.157013F));
+ builder.AddCubicBezier(new Vector2(-739.638977F, -292.401001F), new Vector2(-739.096008F, -294.06601F), new Vector2(-738.007019F, -295.154999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-739.638977F, -276.386993F));
+ builder.AddLine(new Vector2(-739.638977F, -300.612F));
+ builder.AddLine(new Vector2(-744.229004F, -300.612F));
+ builder.AddLine(new Vector2(-744.229004F, -276.386993F));
+ builder.AddLine(new Vector2(-739.638977F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1605()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-754.98999F, -276.947998F));
+ builder.AddCubicBezier(new Vector2(-753.325012F, -277.661987F), new Vector2(-751.895996F, -278.699005F), new Vector2(-750.705994F, -280.05899F));
+ builder.AddLine(new Vector2(-753.664001F, -283.067993F));
+ builder.AddCubicBezier(new Vector2(-754.47998F, -282.115997F), new Vector2(-755.458008F, -281.402008F), new Vector2(-756.596985F, -280.925995F));
+ builder.AddCubicBezier(new Vector2(-757.737F, -280.449005F), new Vector2(-758.986023F, -280.212006F), new Vector2(-760.344971F, -280.212006F));
+ builder.AddCubicBezier(new Vector2(-761.97699F, -280.212006F), new Vector2(-763.421997F, -280.559998F), new Vector2(-764.679993F, -281.256989F));
+ builder.AddCubicBezier(new Vector2(-765.937988F, -281.953003F), new Vector2(-766.906982F, -282.940002F), new Vector2(-767.586975F, -284.214996F));
+ builder.AddCubicBezier(new Vector2(-768.268005F, -285.48999F), new Vector2(-768.606995F, -286.97699F), new Vector2(-768.606995F, -288.678009F));
+ builder.AddCubicBezier(new Vector2(-768.606995F, -290.342987F), new Vector2(-768.283997F, -291.789001F), new Vector2(-767.638F, -293.013F));
+ builder.AddCubicBezier(new Vector2(-766.992981F, -294.237F), new Vector2(-766.075012F, -295.187988F), new Vector2(-764.883972F, -295.868988F));
+ builder.AddCubicBezier(new Vector2(-763.69397F, -296.549011F), new Vector2(-762.317017F, -296.889008F), new Vector2(-760.752991F, -296.889008F));
+ builder.AddCubicBezier(new Vector2(-759.257019F, -296.889008F), new Vector2(-757.981995F, -296.574005F), new Vector2(-756.927979F, -295.945007F));
+ builder.AddCubicBezier(new Vector2(-755.875F, -295.315002F), new Vector2(-755.057983F, -294.432007F), new Vector2(-754.47998F, -293.292999F));
+ builder.AddCubicBezier(new Vector2(-753.901978F, -292.153015F), new Vector2(-753.612976F, -290.769012F), new Vector2(-753.612976F, -289.136993F));
+ builder.AddLine(new Vector2(-751.929993F, -290.615997F));
+ builder.AddLine(new Vector2(-769.932983F, -290.615997F));
+ builder.AddLine(new Vector2(-769.932983F, -286.790985F));
+ builder.AddLine(new Vector2(-749.481995F, -286.790985F));
+ builder.AddCubicBezier(new Vector2(-749.380005F, -287.266998F), new Vector2(-749.312012F, -287.700012F), new Vector2(-749.278015F, -288.091003F));
+ builder.AddCubicBezier(new Vector2(-749.244995F, -288.480988F), new Vector2(-749.22699F, -288.847992F), new Vector2(-749.22699F, -289.187988F));
+ builder.AddCubicBezier(new Vector2(-749.22699F, -291.5F), new Vector2(-749.711975F, -293.556F), new Vector2(-750.68103F, -295.359009F));
+ builder.AddCubicBezier(new Vector2(-751.650024F, -297.161011F), new Vector2(-753.000977F, -298.571991F), new Vector2(-754.734985F, -299.59201F));
+ builder.AddCubicBezier(new Vector2(-756.468994F, -300.612F), new Vector2(-758.440979F, -301.122009F), new Vector2(-760.651001F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-762.997009F, -301.122009F), new Vector2(-765.114014F, -300.567993F), new Vector2(-767.000977F, -299.463989F));
+ builder.AddCubicBezier(new Vector2(-768.888F, -298.359009F), new Vector2(-770.38501F, -296.855011F), new Vector2(-771.489014F, -294.950989F));
+ builder.AddCubicBezier(new Vector2(-772.593994F, -293.04599F), new Vector2(-773.145996F, -290.903992F), new Vector2(-773.145996F, -288.524994F));
+ builder.AddCubicBezier(new Vector2(-773.145996F, -286.109985F), new Vector2(-772.585022F, -283.951996F), new Vector2(-771.463013F, -282.048004F));
+ builder.AddCubicBezier(new Vector2(-770.341003F, -280.143005F), new Vector2(-768.820007F, -278.638F), new Vector2(-766.898987F, -277.533997F));
+ builder.AddCubicBezier(new Vector2(-764.979004F, -276.428986F), new Vector2(-762.79303F, -275.877014F), new Vector2(-760.344971F, -275.877014F));
+ builder.AddCubicBezier(new Vector2(-758.440979F, -275.877014F), new Vector2(-756.656006F, -276.234009F), new Vector2(-754.98999F, -276.947998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1606()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-775.288025F, -296.429993F));
+ builder.AddLine(new Vector2(-775.288025F, -300.612F));
+ builder.AddLine(new Vector2(-791.812012F, -300.612F));
+ builder.AddLine(new Vector2(-791.812012F, -296.429993F));
+ builder.AddLine(new Vector2(-775.288025F, -296.429993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-781.255005F, -276.386993F));
+ builder.AddLine(new Vector2(-781.255005F, -310.760986F));
+ builder.AddLine(new Vector2(-785.844971F, -310.760986F));
+ builder.AddLine(new Vector2(-785.844971F, -276.386993F));
+ builder.AddLine(new Vector2(-781.255005F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1607()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-812.619995F, -276.386993F));
+ builder.AddLine(new Vector2(-812.619995F, -300.612F));
+ builder.AddLine(new Vector2(-817.210022F, -300.612F));
+ builder.AddLine(new Vector2(-817.210022F, -276.386993F));
+ builder.AddLine(new Vector2(-812.619995F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-795.484009F, -276.386993F));
+ builder.AddLine(new Vector2(-795.484009F, -291.432007F));
+ builder.AddCubicBezier(new Vector2(-795.484009F, -293.096985F), new Vector2(-795.892029F, -294.670013F), new Vector2(-796.708008F, -296.148987F));
+ builder.AddCubicBezier(new Vector2(-797.523987F, -297.627991F), new Vector2(-798.638F, -298.826996F), new Vector2(-800.047974F, -299.744995F));
+ builder.AddCubicBezier(new Vector2(-801.458984F, -300.662994F), new Vector2(-803.083008F, -301.122009F), new Vector2(-804.919006F, -301.122009F));
+ builder.AddCubicBezier(new Vector2(-806.755005F, -301.122009F), new Vector2(-808.405029F, -300.704987F), new Vector2(-809.866028F, -299.872009F));
+ builder.AddCubicBezier(new Vector2(-811.328003F, -299.037994F), new Vector2(-812.46698F, -297.908997F), new Vector2(-813.28302F, -296.480988F));
+ builder.AddCubicBezier(new Vector2(-814.098999F, -295.053009F), new Vector2(-814.507019F, -293.42099F), new Vector2(-814.507019F, -291.584991F));
+ builder.AddLine(new Vector2(-812.619995F, -290.514008F));
+ builder.AddCubicBezier(new Vector2(-812.619995F, -291.738007F), new Vector2(-812.348022F, -292.825989F), new Vector2(-811.804016F, -293.778015F));
+ builder.AddCubicBezier(new Vector2(-811.26001F, -294.729004F), new Vector2(-810.512024F, -295.477997F), new Vector2(-809.559998F, -296.022003F));
+ builder.AddCubicBezier(new Vector2(-808.609009F, -296.565002F), new Vector2(-807.52002F, -296.838013F), new Vector2(-806.296021F, -296.838013F));
+ builder.AddCubicBezier(new Vector2(-804.460022F, -296.838013F), new Vector2(-802.973022F, -296.243011F), new Vector2(-801.833008F, -295.053009F));
+ builder.AddCubicBezier(new Vector2(-800.69397F, -293.862F), new Vector2(-800.125F, -292.350006F), new Vector2(-800.125F, -290.514008F));
+ builder.AddLine(new Vector2(-800.125F, -276.386993F));
+ builder.AddLine(new Vector2(-795.484009F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1608()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-824.197021F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(-823.653015F, -306.859009F), new Vector2(-823.380981F, -307.565002F), new Vector2(-823.380981F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(-823.380981F, -309.230988F), new Vector2(-823.653015F, -309.919006F), new Vector2(-824.197021F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(-824.741028F, -311.040985F), new Vector2(-825.439026F, -311.321991F), new Vector2(-826.288025F, -311.321991F));
+ builder.AddCubicBezier(new Vector2(-827.138F, -311.321991F), new Vector2(-827.835022F, -311.040985F), new Vector2(-828.379028F, -310.480011F));
+ builder.AddCubicBezier(new Vector2(-828.922974F, -309.919006F), new Vector2(-829.195007F, -309.230988F), new Vector2(-829.195007F, -308.415009F));
+ builder.AddCubicBezier(new Vector2(-829.195007F, -307.565002F), new Vector2(-828.922974F, -306.859009F), new Vector2(-828.379028F, -306.298004F));
+ builder.AddCubicBezier(new Vector2(-827.835022F, -305.737F), new Vector2(-827.138F, -305.457001F), new Vector2(-826.288025F, -305.457001F));
+ builder.AddCubicBezier(new Vector2(-825.439026F, -305.457001F), new Vector2(-824.741028F, -305.737F), new Vector2(-824.197021F, -306.298004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-823.992981F, -276.386993F));
+ builder.AddLine(new Vector2(-823.992981F, -300.612F));
+ builder.AddLine(new Vector2(-828.633972F, -300.612F));
+ builder.AddLine(new Vector2(-828.633972F, -276.386993F));
+ builder.AddLine(new Vector2(-823.992981F, -276.386993F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1609()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(634.76001F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(633.56897F, -343.299011F), new Vector2(632.63501F, -344.274994F), new Vector2(631.955017F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(631.275024F, -346.757996F), new Vector2(630.934998F, -348.177002F), new Vector2(630.934998F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(630.934998F, -351.338989F), new Vector2(631.275024F, -352.734009F), new Vector2(631.955017F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(632.63501F, -355.182007F), new Vector2(633.56897F, -356.141998F), new Vector2(634.76001F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(635.950012F, -357.535004F), new Vector2(637.291992F, -357.88501F), new Vector2(638.789001F, -357.88501F));
+ builder.AddCubicBezier(new Vector2(640.35199F, -357.88501F), new Vector2(641.721008F, -357.535004F), new Vector2(642.893982F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(644.067017F, -356.141998F), new Vector2(645.002014F, -355.182007F), new Vector2(645.698975F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(646.39502F, -352.734009F), new Vector2(646.744995F, -351.338989F), new Vector2(646.744995F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(646.744995F, -348.177002F), new Vector2(646.405029F, -346.757996F), new Vector2(645.724976F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(645.044006F, -344.274994F), new Vector2(644.109985F, -343.299011F), new Vector2(642.919983F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(641.729004F, -341.871002F), new Vector2(640.35199F, -341.514008F), new Vector2(638.789001F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(637.291992F, -341.514008F), new Vector2(635.950012F, -341.871002F), new Vector2(634.76001F, -342.584991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(645.23999F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(647.159973F, -339.881989F), new Vector2(648.682983F, -341.403015F), new Vector2(649.804993F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(650.927002F, -345.243988F), new Vector2(651.487976F, -347.395996F), new Vector2(651.487976F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(651.487976F, -352.122009F), new Vector2(650.927002F, -354.246002F), new Vector2(649.804993F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(648.682983F, -358.054993F), new Vector2(647.159973F, -359.55899F), new Vector2(645.23999F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(643.31897F, -361.768005F), new Vector2(641.16803F, -362.321991F), new Vector2(638.789001F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(636.442993F, -362.321991F), new Vector2(634.317993F, -361.760986F), new Vector2(632.414001F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(630.508972F, -359.516998F), new Vector2(628.997009F, -358.011993F), new Vector2(627.875F, -356.125F));
+ builder.AddCubicBezier(new Vector2(626.752991F, -354.238007F), new Vector2(626.192017F, -352.122009F), new Vector2(626.192017F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(626.192017F, -347.395996F), new Vector2(626.752991F, -345.243988F), new Vector2(627.875F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(628.997009F, -341.403015F), new Vector2(630.508972F, -339.881989F), new Vector2(632.414001F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(634.317993F, -337.638F), new Vector2(636.442993F, -337.076996F), new Vector2(638.789001F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(641.16803F, -337.076996F), new Vector2(643.31897F, -337.638F), new Vector2(645.23999F, -338.76001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1610()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(624.049988F, -357.630005F));
+ builder.AddLine(new Vector2(624.049988F, -361.812012F));
+ builder.AddLine(new Vector2(607.526001F, -361.812012F));
+ builder.AddLine(new Vector2(607.526001F, -357.630005F));
+ builder.AddLine(new Vector2(624.049988F, -357.630005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(618.083008F, -337.587006F));
+ builder.AddLine(new Vector2(618.083008F, -371.960999F));
+ builder.AddLine(new Vector2(613.492981F, -371.960999F));
+ builder.AddLine(new Vector2(613.492981F, -337.587006F));
+ builder.AddLine(new Vector2(618.083008F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1611()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(591.638977F, -339.06601F));
+ builder.AddCubicBezier(new Vector2(593.252991F, -340.391998F), new Vector2(594.062012F, -342.194F), new Vector2(594.062012F, -344.471985F));
+ builder.AddCubicBezier(new Vector2(594.062012F, -345.967987F), new Vector2(593.747009F, -347.174988F), new Vector2(593.117981F, -348.092987F));
+ builder.AddCubicBezier(new Vector2(592.487976F, -349.010986F), new Vector2(591.682007F, -349.742004F), new Vector2(590.695984F, -350.286011F));
+ builder.AddCubicBezier(new Vector2(589.708984F, -350.82901F), new Vector2(588.672974F, -351.261993F), new Vector2(587.585022F, -351.585999F));
+ builder.AddCubicBezier(new Vector2(586.495972F, -351.908997F), new Vector2(585.450989F, -352.223999F), new Vector2(584.447998F, -352.529999F));
+ builder.AddCubicBezier(new Vector2(583.445007F, -352.835999F), new Vector2(582.638F, -353.209991F), new Vector2(582.026001F, -353.652008F));
+ builder.AddCubicBezier(new Vector2(581.414001F, -354.092987F), new Vector2(581.107971F, -354.722992F), new Vector2(581.107971F, -355.539001F));
+ builder.AddCubicBezier(new Vector2(581.107971F, -356.321014F), new Vector2(581.455994F, -356.949005F), new Vector2(582.153015F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(582.848999F, -357.902008F), new Vector2(583.862F, -358.140015F), new Vector2(585.187988F, -358.140015F));
+ builder.AddCubicBezier(new Vector2(586.445984F, -358.140015F), new Vector2(587.567017F, -357.902008F), new Vector2(588.554016F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(589.539978F, -356.949005F), new Vector2(590.390015F, -356.269989F), new Vector2(591.104004F, -355.385986F));
+ builder.AddLine(new Vector2(594.062012F, -358.343994F));
+ builder.AddCubicBezier(new Vector2(593.109985F, -359.670013F), new Vector2(591.893982F, -360.664001F), new Vector2(590.414978F, -361.326996F));
+ builder.AddCubicBezier(new Vector2(588.935974F, -361.98999F), new Vector2(587.244995F, -362.321991F), new Vector2(585.341003F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(583.538025F, -362.321991F), new Vector2(581.992004F, -362.03299F), new Vector2(580.700012F, -361.454987F));
+ builder.AddCubicBezier(new Vector2(579.406982F, -360.876007F), new Vector2(578.411987F, -360.052002F), new Vector2(577.716003F, -358.980988F));
+ builder.AddCubicBezier(new Vector2(577.018982F, -357.910004F), new Vector2(576.671021F, -356.643005F), new Vector2(576.671021F, -355.182007F));
+ builder.AddCubicBezier(new Vector2(576.671021F, -353.720001F), new Vector2(576.984009F, -352.536987F), new Vector2(577.614014F, -351.636993F));
+ builder.AddCubicBezier(new Vector2(578.242981F, -350.735992F), new Vector2(579.049988F, -350.031006F), new Vector2(580.036987F, -349.520996F));
+ builder.AddCubicBezier(new Vector2(581.02301F, -349.010986F), new Vector2(582.067993F, -348.602997F), new Vector2(583.172974F, -348.296997F));
+ builder.AddCubicBezier(new Vector2(584.276978F, -347.990997F), new Vector2(585.322998F, -347.675995F), new Vector2(586.309998F, -347.352997F));
+ builder.AddCubicBezier(new Vector2(587.296021F, -347.028992F), new Vector2(588.10199F, -346.621002F), new Vector2(588.731995F, -346.128998F));
+ builder.AddCubicBezier(new Vector2(589.361023F, -345.635986F), new Vector2(589.676025F, -344.947998F), new Vector2(589.676025F, -344.063995F));
+ builder.AddCubicBezier(new Vector2(589.676025F, -343.178986F), new Vector2(589.284973F, -342.48999F), new Vector2(588.502991F, -341.997986F));
+ builder.AddCubicBezier(new Vector2(587.719971F, -341.505005F), new Vector2(586.616028F, -341.259003F), new Vector2(585.187988F, -341.259003F));
+ builder.AddCubicBezier(new Vector2(583.76001F, -341.259003F), new Vector2(582.46698F, -341.520996F), new Vector2(581.312012F, -342.049011F));
+ builder.AddCubicBezier(new Vector2(580.156006F, -342.575989F), new Vector2(579.135986F, -343.382996F), new Vector2(578.252014F, -344.471985F));
+ builder.AddLine(new Vector2(575.294006F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(576.041016F, -340.596008F), new Vector2(576.916992F, -339.804993F), new Vector2(577.919983F, -339.141998F));
+ builder.AddCubicBezier(new Vector2(578.921997F, -338.479004F), new Vector2(580.036987F, -337.968994F), new Vector2(581.260986F, -337.612F));
+ builder.AddCubicBezier(new Vector2(582.484985F, -337.255005F), new Vector2(583.776978F, -337.076996F), new Vector2(585.137024F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(587.856995F, -337.076996F), new Vector2(590.023987F, -337.73999F), new Vector2(591.638977F, -339.06601F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1612()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(569.862F, -339.06601F));
+ builder.AddCubicBezier(new Vector2(571.476013F, -340.391998F), new Vector2(572.284973F, -342.194F), new Vector2(572.284973F, -344.471985F));
+ builder.AddCubicBezier(new Vector2(572.284973F, -345.967987F), new Vector2(571.969971F, -347.174988F), new Vector2(571.341003F, -348.092987F));
+ builder.AddCubicBezier(new Vector2(570.710999F, -349.010986F), new Vector2(569.905029F, -349.742004F), new Vector2(568.919006F, -350.286011F));
+ builder.AddCubicBezier(new Vector2(567.932007F, -350.82901F), new Vector2(566.895996F, -351.261993F), new Vector2(565.807983F, -351.585999F));
+ builder.AddCubicBezier(new Vector2(564.718994F, -351.908997F), new Vector2(563.674011F, -352.223999F), new Vector2(562.671021F, -352.529999F));
+ builder.AddCubicBezier(new Vector2(561.66803F, -352.835999F), new Vector2(560.861023F, -353.209991F), new Vector2(560.249023F, -353.652008F));
+ builder.AddCubicBezier(new Vector2(559.637024F, -354.092987F), new Vector2(559.330994F, -354.722992F), new Vector2(559.330994F, -355.539001F));
+ builder.AddCubicBezier(new Vector2(559.330994F, -356.321014F), new Vector2(559.679016F, -356.949005F), new Vector2(560.375977F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(561.072021F, -357.902008F), new Vector2(562.085022F, -358.140015F), new Vector2(563.411011F, -358.140015F));
+ builder.AddCubicBezier(new Vector2(564.669006F, -358.140015F), new Vector2(565.789978F, -357.902008F), new Vector2(566.776978F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(567.763F, -356.949005F), new Vector2(568.612976F, -356.269989F), new Vector2(569.327026F, -355.385986F));
+ builder.AddLine(new Vector2(572.284973F, -358.343994F));
+ builder.AddCubicBezier(new Vector2(571.333008F, -359.670013F), new Vector2(570.117004F, -360.664001F), new Vector2(568.638F, -361.326996F));
+ builder.AddCubicBezier(new Vector2(567.158997F, -361.98999F), new Vector2(565.468018F, -362.321991F), new Vector2(563.564026F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(561.760986F, -362.321991F), new Vector2(560.215027F, -362.03299F), new Vector2(558.922974F, -361.454987F));
+ builder.AddCubicBezier(new Vector2(557.630005F, -360.876007F), new Vector2(556.63501F, -360.052002F), new Vector2(555.939026F, -358.980988F));
+ builder.AddCubicBezier(new Vector2(555.242004F, -357.910004F), new Vector2(554.893982F, -356.643005F), new Vector2(554.893982F, -355.182007F));
+ builder.AddCubicBezier(new Vector2(554.893982F, -353.720001F), new Vector2(555.20697F, -352.536987F), new Vector2(555.836975F, -351.636993F));
+ builder.AddCubicBezier(new Vector2(556.466003F, -350.735992F), new Vector2(557.27301F, -350.031006F), new Vector2(558.26001F, -349.520996F));
+ builder.AddCubicBezier(new Vector2(559.245972F, -349.010986F), new Vector2(560.291016F, -348.602997F), new Vector2(561.395996F, -348.296997F));
+ builder.AddCubicBezier(new Vector2(562.5F, -347.990997F), new Vector2(563.546021F, -347.675995F), new Vector2(564.53302F, -347.352997F));
+ builder.AddCubicBezier(new Vector2(565.518982F, -347.028992F), new Vector2(566.325012F, -346.621002F), new Vector2(566.955017F, -346.128998F));
+ builder.AddCubicBezier(new Vector2(567.583984F, -345.635986F), new Vector2(567.898987F, -344.947998F), new Vector2(567.898987F, -344.063995F));
+ builder.AddCubicBezier(new Vector2(567.898987F, -343.178986F), new Vector2(567.507996F, -342.48999F), new Vector2(566.726013F, -341.997986F));
+ builder.AddCubicBezier(new Vector2(565.942993F, -341.505005F), new Vector2(564.838989F, -341.259003F), new Vector2(563.411011F, -341.259003F));
+ builder.AddCubicBezier(new Vector2(561.982971F, -341.259003F), new Vector2(560.690002F, -341.520996F), new Vector2(559.534973F, -342.049011F));
+ builder.AddCubicBezier(new Vector2(558.379028F, -342.575989F), new Vector2(557.359009F, -343.382996F), new Vector2(556.474976F, -344.471985F));
+ builder.AddLine(new Vector2(553.517029F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(554.263977F, -340.596008F), new Vector2(555.140015F, -339.804993F), new Vector2(556.143005F, -339.141998F));
+ builder.AddCubicBezier(new Vector2(557.14502F, -338.479004F), new Vector2(558.26001F, -337.968994F), new Vector2(559.484009F, -337.612F));
+ builder.AddCubicBezier(new Vector2(560.708008F, -337.255005F), new Vector2(562F, -337.076996F), new Vector2(563.359985F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(566.080017F, -337.076996F), new Vector2(568.247009F, -337.73999F), new Vector2(569.862F, -339.06601F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1613()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(544.89801F, -338.14801F));
+ builder.AddCubicBezier(new Vector2(546.562988F, -338.862F), new Vector2(547.992004F, -339.898987F), new Vector2(549.182007F, -341.259003F));
+ builder.AddLine(new Vector2(546.223999F, -344.268005F));
+ builder.AddCubicBezier(new Vector2(545.40802F, -343.31601F), new Vector2(544.43103F, -342.60199F), new Vector2(543.291992F, -342.126007F));
+ builder.AddCubicBezier(new Vector2(542.151978F, -341.648987F), new Vector2(540.901978F, -341.411987F), new Vector2(539.54303F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(537.911011F, -341.411987F), new Vector2(536.466003F, -341.76001F), new Vector2(535.208008F, -342.457001F));
+ builder.AddCubicBezier(new Vector2(533.950012F, -343.153015F), new Vector2(532.981018F, -344.140015F), new Vector2(532.301025F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(531.619995F, -346.690002F), new Vector2(531.281006F, -348.177002F), new Vector2(531.281006F, -349.877991F));
+ builder.AddCubicBezier(new Vector2(531.281006F, -351.542999F), new Vector2(531.604004F, -352.989014F), new Vector2(532.25F, -354.213013F));
+ builder.AddCubicBezier(new Vector2(532.89502F, -355.437012F), new Vector2(533.812988F, -356.388F), new Vector2(535.004028F, -357.069F));
+ builder.AddCubicBezier(new Vector2(536.19397F, -357.748993F), new Vector2(537.570984F, -358.088989F), new Vector2(539.13501F, -358.088989F));
+ builder.AddCubicBezier(new Vector2(540.630981F, -358.088989F), new Vector2(541.906006F, -357.773987F), new Vector2(542.960022F, -357.144989F));
+ builder.AddCubicBezier(new Vector2(544.013F, -356.515015F), new Vector2(544.830017F, -355.631989F), new Vector2(545.40802F, -354.493011F));
+ builder.AddCubicBezier(new Vector2(545.986023F, -353.352997F), new Vector2(546.275024F, -351.968994F), new Vector2(546.275024F, -350.337006F));
+ builder.AddLine(new Vector2(547.958008F, -351.81601F));
+ builder.AddLine(new Vector2(529.955017F, -351.81601F));
+ builder.AddLine(new Vector2(529.955017F, -347.990997F));
+ builder.AddLine(new Vector2(550.406006F, -347.990997F));
+ builder.AddCubicBezier(new Vector2(550.507996F, -348.46701F), new Vector2(550.575989F, -348.899994F), new Vector2(550.609985F, -349.290985F));
+ builder.AddCubicBezier(new Vector2(550.643005F, -349.681F), new Vector2(550.661011F, -350.048004F), new Vector2(550.661011F, -350.388F));
+ builder.AddCubicBezier(new Vector2(550.661011F, -352.700012F), new Vector2(550.177002F, -354.756012F), new Vector2(549.208008F, -356.55899F));
+ builder.AddCubicBezier(new Vector2(548.239014F, -358.360992F), new Vector2(546.887024F, -359.772003F), new Vector2(545.153015F, -360.791992F));
+ builder.AddCubicBezier(new Vector2(543.419006F, -361.812012F), new Vector2(541.447021F, -362.321991F), new Vector2(539.237F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(536.890991F, -362.321991F), new Vector2(534.775024F, -361.768005F), new Vector2(532.888F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(531.000977F, -359.55899F), new Vector2(529.504028F, -358.054993F), new Vector2(528.400024F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(527.294983F, -354.246002F), new Vector2(526.742004F, -352.104004F), new Vector2(526.742004F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(526.742004F, -347.309998F), new Vector2(527.302979F, -345.152008F), new Vector2(528.424988F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(529.546997F, -341.342987F), new Vector2(531.06897F, -339.838013F), new Vector2(532.98999F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(534.909973F, -337.628998F), new Vector2(537.094971F, -337.076996F), new Vector2(539.54303F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(541.447021F, -337.076996F), new Vector2(543.231995F, -337.43399F), new Vector2(544.89801F, -338.14801F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1614()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(504.964996F, -337.587006F));
+ builder.AddLine(new Vector2(504.964996F, -361.812012F));
+ builder.AddLine(new Vector2(500.375F, -361.812012F));
+ builder.AddLine(new Vector2(500.375F, -337.587006F));
+ builder.AddLine(new Vector2(504.964996F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(522.101013F, -337.587006F));
+ builder.AddLine(new Vector2(522.101013F, -352.631989F));
+ builder.AddCubicBezier(new Vector2(522.101013F, -354.296997F), new Vector2(521.692993F, -355.869995F), new Vector2(520.877014F, -357.348999F));
+ builder.AddCubicBezier(new Vector2(520.060974F, -358.828003F), new Vector2(518.947021F, -360.027008F), new Vector2(517.536987F, -360.945007F));
+ builder.AddCubicBezier(new Vector2(516.125977F, -361.863007F), new Vector2(514.502014F, -362.321991F), new Vector2(512.666016F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(510.829987F, -362.321991F), new Vector2(509.179993F, -361.904999F), new Vector2(507.718994F, -361.071991F));
+ builder.AddCubicBezier(new Vector2(506.256989F, -360.238007F), new Vector2(505.118011F, -359.109009F), new Vector2(504.302002F, -357.681F));
+ builder.AddCubicBezier(new Vector2(503.485992F, -356.252991F), new Vector2(503.078003F, -354.621002F), new Vector2(503.078003F, -352.785004F));
+ builder.AddLine(new Vector2(504.964996F, -351.713989F));
+ builder.AddCubicBezier(new Vector2(504.964996F, -352.937988F), new Vector2(505.237F, -354.026001F), new Vector2(505.781006F, -354.977997F));
+ builder.AddCubicBezier(new Vector2(506.324005F, -355.928986F), new Vector2(507.072998F, -356.678009F), new Vector2(508.024994F, -357.221985F));
+ builder.AddCubicBezier(new Vector2(508.976013F, -357.765015F), new Vector2(510.065002F, -358.037994F), new Vector2(511.289001F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(513.125F, -358.037994F), new Vector2(514.612F, -357.442993F), new Vector2(515.752014F, -356.252991F));
+ builder.AddCubicBezier(new Vector2(516.890991F, -355.062012F), new Vector2(517.460022F, -353.549988F), new Vector2(517.460022F, -351.713989F));
+ builder.AddLine(new Vector2(517.460022F, -337.587006F));
+ builder.AddLine(new Vector2(522.101013F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1615()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(489.614014F, -338.14801F));
+ builder.AddCubicBezier(new Vector2(491.278992F, -338.862F), new Vector2(492.707001F, -339.898987F), new Vector2(493.89801F, -341.259003F));
+ builder.AddLine(new Vector2(490.940002F, -344.268005F));
+ builder.AddCubicBezier(new Vector2(490.123993F, -343.31601F), new Vector2(489.145996F, -342.60199F), new Vector2(488.006989F, -342.126007F));
+ builder.AddCubicBezier(new Vector2(486.867004F, -341.648987F), new Vector2(485.618011F, -341.411987F), new Vector2(484.259003F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(482.627014F, -341.411987F), new Vector2(481.181F, -341.76001F), new Vector2(479.924011F, -342.457001F));
+ builder.AddCubicBezier(new Vector2(478.665985F, -343.153015F), new Vector2(477.696991F, -344.140015F), new Vector2(477.016998F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(476.335999F, -346.690002F), new Vector2(475.997009F, -348.177002F), new Vector2(475.997009F, -349.877991F));
+ builder.AddCubicBezier(new Vector2(475.997009F, -351.542999F), new Vector2(476.320007F, -352.989014F), new Vector2(476.966003F, -354.213013F));
+ builder.AddCubicBezier(new Vector2(477.610992F, -355.437012F), new Vector2(478.528992F, -356.388F), new Vector2(479.720001F, -357.069F));
+ builder.AddCubicBezier(new Vector2(480.910004F, -357.748993F), new Vector2(482.286987F, -358.088989F), new Vector2(483.851013F, -358.088989F));
+ builder.AddCubicBezier(new Vector2(485.346985F, -358.088989F), new Vector2(486.622009F, -357.773987F), new Vector2(487.675995F, -357.144989F));
+ builder.AddCubicBezier(new Vector2(488.729004F, -356.515015F), new Vector2(489.545013F, -355.631989F), new Vector2(490.123993F, -354.493011F));
+ builder.AddCubicBezier(new Vector2(490.701996F, -353.352997F), new Vector2(490.990997F, -351.968994F), new Vector2(490.990997F, -350.337006F));
+ builder.AddLine(new Vector2(492.674011F, -351.81601F));
+ builder.AddLine(new Vector2(474.67099F, -351.81601F));
+ builder.AddLine(new Vector2(474.67099F, -347.990997F));
+ builder.AddLine(new Vector2(495.122009F, -347.990997F));
+ builder.AddCubicBezier(new Vector2(495.223999F, -348.46701F), new Vector2(495.291992F, -348.899994F), new Vector2(495.325989F, -349.290985F));
+ builder.AddCubicBezier(new Vector2(495.359009F, -349.681F), new Vector2(495.377014F, -350.048004F), new Vector2(495.377014F, -350.388F));
+ builder.AddCubicBezier(new Vector2(495.377014F, -352.700012F), new Vector2(494.891998F, -354.756012F), new Vector2(493.923004F, -356.55899F));
+ builder.AddCubicBezier(new Vector2(492.95401F, -358.360992F), new Vector2(491.602997F, -359.772003F), new Vector2(489.868988F, -360.791992F));
+ builder.AddCubicBezier(new Vector2(488.13501F, -361.812012F), new Vector2(486.162994F, -362.321991F), new Vector2(483.953003F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(481.606995F, -362.321991F), new Vector2(479.48999F, -361.768005F), new Vector2(477.602997F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(475.716003F, -359.55899F), new Vector2(474.218994F, -358.054993F), new Vector2(473.11499F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(472.01001F, -354.246002F), new Vector2(471.458008F, -352.104004F), new Vector2(471.458008F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(471.458008F, -347.309998F), new Vector2(472.019012F, -345.152008F), new Vector2(473.140991F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(474.263F, -341.342987F), new Vector2(475.783997F, -339.838013F), new Vector2(477.704987F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(479.625F, -337.628998F), new Vector2(481.811005F, -337.076996F), new Vector2(484.259003F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(486.162994F, -337.076996F), new Vector2(487.947998F, -337.43399F), new Vector2(489.614014F, -338.14801F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1616()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(459.575012F, -356.355011F));
+ builder.AddCubicBezier(new Vector2(460.662994F, -357.442993F), new Vector2(462.056F, -357.987F), new Vector2(463.756989F, -357.987F));
+ builder.AddCubicBezier(new Vector2(464.572998F, -357.987F), new Vector2(465.286987F, -357.867004F), new Vector2(465.898987F, -357.630005F));
+ builder.AddCubicBezier(new Vector2(466.510986F, -357.391998F), new Vector2(467.071991F, -357F), new Vector2(467.582001F, -356.457001F));
+ builder.AddLine(new Vector2(470.591003F, -359.567993F));
+ builder.AddCubicBezier(new Vector2(469.740997F, -360.553986F), new Vector2(468.822998F, -361.257996F), new Vector2(467.837006F, -361.68399F));
+ builder.AddCubicBezier(new Vector2(466.850006F, -362.109009F), new Vector2(465.746002F, -362.321991F), new Vector2(464.522003F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(461.835999F, -362.321991F), new Vector2(459.778992F, -361.403992F), new Vector2(458.351013F, -359.567993F));
+ builder.AddCubicBezier(new Vector2(456.923004F, -357.731995F), new Vector2(456.209015F, -355.265991F), new Vector2(456.209015F, -352.173004F));
+ builder.AddLine(new Vector2(457.942993F, -351.356995F));
+ builder.AddCubicBezier(new Vector2(457.942993F, -353.601013F), new Vector2(458.485992F, -355.265991F), new Vector2(459.575012F, -356.355011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(457.942993F, -337.587006F));
+ builder.AddLine(new Vector2(457.942993F, -361.812012F));
+ builder.AddLine(new Vector2(453.352997F, -361.812012F));
+ builder.AddLine(new Vector2(453.352997F, -337.587006F));
+ builder.AddLine(new Vector2(457.942993F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1617()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(446.671997F, -337.587006F));
+ builder.AddLine(new Vector2(446.671997F, -361.812012F));
+ builder.AddLine(new Vector2(442.031006F, -361.812012F));
+ builder.AddLine(new Vector2(442.031006F, -355.895996F));
+ builder.AddLine(new Vector2(442.89801F, -350.031006F));
+ builder.AddLine(new Vector2(442.031006F, -344.11499F));
+ builder.AddLine(new Vector2(442.031006F, -337.587006F));
+ builder.AddLine(new Vector2(446.671997F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(430.65799F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(429.46701F, -343.196991F), new Vector2(428.540985F, -344.173004F), new Vector2(427.877991F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(427.214996F, -346.656006F), new Vector2(426.884003F, -348.092987F), new Vector2(426.884003F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(426.884003F, -351.322998F), new Vector2(427.214996F, -352.740997F), new Vector2(427.877991F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(428.540985F, -355.223999F), new Vector2(429.459015F, -356.201996F), new Vector2(430.631989F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(431.804993F, -357.630005F), new Vector2(433.157013F, -357.987F), new Vector2(434.687012F, -357.987F));
+ builder.AddCubicBezier(new Vector2(436.21701F, -357.987F), new Vector2(437.549988F, -357.636993F), new Vector2(438.690002F, -356.94101F));
+ builder.AddCubicBezier(new Vector2(439.82901F, -356.243988F), new Vector2(440.721985F, -355.265991F), new Vector2(441.368011F, -354.009003F));
+ builder.AddCubicBezier(new Vector2(442.013F, -352.751007F), new Vector2(442.337006F, -351.306F), new Vector2(442.337006F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(442.337006F, -347.259003F), new Vector2(441.640015F, -345.278992F), new Vector2(440.246002F, -343.731995F));
+ builder.AddCubicBezier(new Vector2(438.851013F, -342.18399F), new Vector2(437.015015F, -341.411987F), new Vector2(434.738007F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(433.208008F, -341.411987F), new Vector2(431.847992F, -341.769012F), new Vector2(430.65799F, -342.483002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(438.920013F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(440.381012F, -338.989014F), new Vector2(441.54599F, -340.052002F), new Vector2(442.412994F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(443.279999F, -342.770996F), new Vector2(443.765015F, -344.319F), new Vector2(443.867004F, -346.053009F));
+ builder.AddLine(new Vector2(443.867004F, -353.346008F));
+ builder.AddCubicBezier(new Vector2(443.765015F, -355.113007F), new Vector2(443.272003F, -356.667999F), new Vector2(442.388F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(441.502991F, -359.355011F), new Vector2(440.338989F, -360.408997F), new Vector2(438.894012F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(437.447998F, -361.938995F), new Vector2(435.80899F, -362.321991F), new Vector2(433.972992F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(431.729004F, -362.321991F), new Vector2(429.713989F, -361.760986F), new Vector2(427.928986F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(426.144012F, -359.516998F), new Vector2(424.733002F, -358.003998F), new Vector2(423.696014F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(422.65799F, -354.195007F), new Vector2(422.140991F, -352.053009F), new Vector2(422.140991F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(422.140991F, -347.294006F), new Vector2(422.65799F, -345.152008F), new Vector2(423.696014F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(424.733002F, -341.342987F), new Vector2(426.144012F, -339.838013F), new Vector2(427.928986F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(429.713989F, -337.628998F), new Vector2(431.729004F, -337.076996F), new Vector2(433.972992F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(435.80899F, -337.076996F), new Vector2(437.458008F, -337.459015F), new Vector2(438.920013F, -338.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1618()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(395.722992F, -337.587006F));
+ builder.AddLine(new Vector2(402.760986F, -355.845001F));
+ builder.AddLine(new Vector2(401.078003F, -355.845001F));
+ builder.AddLine(new Vector2(408.065002F, -337.587006F));
+ builder.AddLine(new Vector2(410.768005F, -337.587006F));
+ builder.AddLine(new Vector2(420.304993F, -361.812012F));
+ builder.AddLine(new Vector2(415.510986F, -361.812012F));
+ builder.AddLine(new Vector2(408.575012F, -342.941986F));
+ builder.AddLine(new Vector2(410.105011F, -342.941986F));
+ builder.AddLine(new Vector2(403.220001F, -361.812012F));
+ builder.AddLine(new Vector2(400.567993F, -361.812012F));
+ builder.AddLine(new Vector2(393.683014F, -342.941986F));
+ builder.AddLine(new Vector2(395.213013F, -342.941986F));
+ builder.AddLine(new Vector2(388.277008F, -361.812012F));
+ builder.AddLine(new Vector2(383.483002F, -361.812012F));
+ builder.AddLine(new Vector2(393.019989F, -337.587006F));
+ builder.AddLine(new Vector2(395.722992F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1619()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(379.556F, -337.587006F));
+ builder.AddLine(new Vector2(379.556F, -361.812012F));
+ builder.AddLine(new Vector2(374.915009F, -361.812012F));
+ builder.AddLine(new Vector2(374.915009F, -355.895996F));
+ builder.AddLine(new Vector2(375.782013F, -350.031006F));
+ builder.AddLine(new Vector2(374.915009F, -344.11499F));
+ builder.AddLine(new Vector2(374.915009F, -337.587006F));
+ builder.AddLine(new Vector2(379.556F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(363.541992F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(362.351013F, -343.196991F), new Vector2(361.424988F, -344.173004F), new Vector2(360.761993F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(360.098999F, -346.656006F), new Vector2(359.768005F, -348.092987F), new Vector2(359.768005F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(359.768005F, -351.322998F), new Vector2(360.098999F, -352.740997F), new Vector2(360.761993F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(361.424988F, -355.223999F), new Vector2(362.342987F, -356.201996F), new Vector2(363.515991F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(364.688995F, -357.630005F), new Vector2(366.040985F, -357.987F), new Vector2(367.571014F, -357.987F));
+ builder.AddCubicBezier(new Vector2(369.101013F, -357.987F), new Vector2(370.43399F, -357.636993F), new Vector2(371.574005F, -356.94101F));
+ builder.AddCubicBezier(new Vector2(372.713013F, -356.243988F), new Vector2(373.605988F, -355.265991F), new Vector2(374.252014F, -354.009003F));
+ builder.AddCubicBezier(new Vector2(374.897003F, -352.751007F), new Vector2(375.221008F, -351.306F), new Vector2(375.221008F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(375.221008F, -347.259003F), new Vector2(374.523987F, -345.278992F), new Vector2(373.130005F, -343.731995F));
+ builder.AddCubicBezier(new Vector2(371.734985F, -342.18399F), new Vector2(369.898987F, -341.411987F), new Vector2(367.622009F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(366.09201F, -341.411987F), new Vector2(364.731995F, -341.769012F), new Vector2(363.541992F, -342.483002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(371.803986F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(373.265015F, -338.989014F), new Vector2(374.429993F, -340.052002F), new Vector2(375.296997F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(376.164001F, -342.770996F), new Vector2(376.648987F, -344.319F), new Vector2(376.751007F, -346.053009F));
+ builder.AddLine(new Vector2(376.751007F, -353.346008F));
+ builder.AddCubicBezier(new Vector2(376.648987F, -355.113007F), new Vector2(376.156006F, -356.667999F), new Vector2(375.272003F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(374.386993F, -359.355011F), new Vector2(373.222992F, -360.408997F), new Vector2(371.778015F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(370.332001F, -361.938995F), new Vector2(368.692993F, -362.321991F), new Vector2(366.856995F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(364.613007F, -362.321991F), new Vector2(362.597992F, -361.760986F), new Vector2(360.812988F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(359.028015F, -359.516998F), new Vector2(357.617004F, -358.003998F), new Vector2(356.579987F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(355.541992F, -354.195007F), new Vector2(355.024994F, -352.053009F), new Vector2(355.024994F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(355.024994F, -347.294006F), new Vector2(355.541992F, -345.152008F), new Vector2(356.579987F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(357.617004F, -341.342987F), new Vector2(359.028015F, -339.838013F), new Vector2(360.812988F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(362.597992F, -337.628998F), new Vector2(364.613007F, -337.076996F), new Vector2(366.856995F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(368.692993F, -337.076996F), new Vector2(370.34201F, -337.459015F), new Vector2(371.803986F, -338.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1620()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(323.429993F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(322.256989F, -343.987F), new Vector2(321.338989F, -344.912994F), new Vector2(320.675995F, -346.104004F));
+ builder.AddCubicBezier(new Vector2(320.013F, -347.294006F), new Vector2(319.682007F, -348.653992F), new Vector2(319.682007F, -350.18399F));
+ builder.AddCubicBezier(new Vector2(319.682007F, -351.713989F), new Vector2(320.013F, -353.065002F), new Vector2(320.675995F, -354.238007F));
+ builder.AddCubicBezier(new Vector2(321.338989F, -355.411011F), new Vector2(322.248993F, -356.32901F), new Vector2(323.404999F, -356.992004F));
+ builder.AddCubicBezier(new Vector2(324.559998F, -357.654999F), new Vector2(325.903992F, -357.987F), new Vector2(327.43399F, -357.987F));
+ builder.AddCubicBezier(new Vector2(328.929993F, -357.987F), new Vector2(330.246002F, -357.654999F), new Vector2(331.385986F, -356.992004F));
+ builder.AddCubicBezier(new Vector2(332.524994F, -356.32901F), new Vector2(333.40799F, -355.411011F), new Vector2(334.037994F, -354.238007F));
+ builder.AddCubicBezier(new Vector2(334.666992F, -353.065002F), new Vector2(334.981995F, -351.696014F), new Vector2(334.981995F, -350.132996F));
+ builder.AddCubicBezier(new Vector2(334.981995F, -348.569F), new Vector2(334.666992F, -347.200012F), new Vector2(334.037994F, -346.027008F));
+ builder.AddCubicBezier(new Vector2(333.40799F, -344.854004F), new Vector2(332.533997F, -343.944F), new Vector2(331.411987F, -343.299011F));
+ builder.AddCubicBezier(new Vector2(330.290009F, -342.653015F), new Vector2(328.963989F, -342.329987F), new Vector2(327.43399F, -342.329987F));
+ builder.AddCubicBezier(new Vector2(325.937012F, -342.329987F), new Vector2(324.602997F, -342.661011F), new Vector2(323.429993F, -343.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(331.565002F, -339.117004F));
+ builder.AddCubicBezier(new Vector2(333.026001F, -339.864014F), new Vector2(334.19101F, -340.908997F), new Vector2(335.058014F, -342.252991F));
+ builder.AddCubicBezier(new Vector2(335.924988F, -343.596008F), new Vector2(336.410004F, -345.152008F), new Vector2(336.511993F, -346.920013F));
+ builder.AddLine(new Vector2(336.511993F, -353.346008F));
+ builder.AddCubicBezier(new Vector2(336.410004F, -355.14801F), new Vector2(335.933014F, -356.718994F), new Vector2(335.084015F, -358.062988F));
+ builder.AddCubicBezier(new Vector2(334.234009F, -359.406006F), new Vector2(333.069F, -360.451996F), new Vector2(331.589996F, -361.200012F));
+ builder.AddCubicBezier(new Vector2(330.110992F, -361.946991F), new Vector2(328.420013F, -362.321991F), new Vector2(326.515991F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(324.339996F, -362.321991F), new Vector2(322.367004F, -361.786011F), new Vector2(320.600006F, -360.714996F));
+ builder.AddCubicBezier(new Vector2(318.832001F, -359.644012F), new Vector2(317.445007F, -358.197998F), new Vector2(316.442993F, -356.380005F));
+ builder.AddCubicBezier(new Vector2(315.440002F, -354.561005F), new Vector2(314.938995F, -352.496002F), new Vector2(314.938995F, -350.18399F));
+ builder.AddCubicBezier(new Vector2(314.938995F, -347.871002F), new Vector2(315.449005F, -345.789001F), new Vector2(316.468994F, -343.936005F));
+ builder.AddCubicBezier(new Vector2(317.489014F, -342.082001F), new Vector2(318.872986F, -340.628998F), new Vector2(320.625F, -339.575989F));
+ builder.AddCubicBezier(new Vector2(322.376007F, -338.522003F), new Vector2(324.355988F, -337.994995F), new Vector2(326.566986F, -337.994995F));
+ builder.AddCubicBezier(new Vector2(328.436005F, -337.994995F), new Vector2(330.102997F, -338.368988F), new Vector2(331.565002F, -339.117004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(333.221985F, -328.381012F));
+ builder.AddCubicBezier(new Vector2(335.141998F, -329.350006F), new Vector2(336.639008F, -330.709991F), new Vector2(337.709991F, -332.460999F));
+ builder.AddCubicBezier(new Vector2(338.781006F, -334.213013F), new Vector2(339.316986F, -336.243988F), new Vector2(339.316986F, -338.556F));
+ builder.AddLine(new Vector2(339.316986F, -361.812012F));
+ builder.AddLine(new Vector2(334.72699F, -361.812012F));
+ builder.AddLine(new Vector2(334.72699F, -355.437012F));
+ builder.AddLine(new Vector2(335.542999F, -350.031006F));
+ builder.AddLine(new Vector2(334.72699F, -344.574005F));
+ builder.AddLine(new Vector2(334.72699F, -338.556F));
+ builder.AddCubicBezier(new Vector2(334.72699F, -336.346008F), new Vector2(333.994995F, -334.585999F), new Vector2(332.533997F, -333.277008F));
+ builder.AddCubicBezier(new Vector2(331.071991F, -331.968994F), new Vector2(329.117004F, -331.313995F), new Vector2(326.669006F, -331.313995F));
+ builder.AddCubicBezier(new Vector2(324.799011F, -331.313995F), new Vector2(323.183014F, -331.644989F), new Vector2(321.824005F, -332.308014F));
+ builder.AddCubicBezier(new Vector2(320.463989F, -332.971008F), new Vector2(319.290985F, -333.933014F), new Vector2(318.304993F, -335.190002F));
+ builder.AddLine(new Vector2(315.29599F, -332.181F));
+ builder.AddCubicBezier(new Vector2(316.485992F, -330.515991F), new Vector2(318.032013F, -329.222992F), new Vector2(319.937012F, -328.304993F));
+ builder.AddCubicBezier(new Vector2(321.841003F, -327.386993F), new Vector2(324.049988F, -326.928009F), new Vector2(326.566986F, -326.928009F));
+ builder.AddCubicBezier(new Vector2(329.083008F, -326.928009F), new Vector2(331.300995F, -327.411987F), new Vector2(333.221985F, -328.381012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1621()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(293.161987F, -337.587006F));
+ builder.AddLine(new Vector2(293.161987F, -361.812012F));
+ builder.AddLine(new Vector2(288.571991F, -361.812012F));
+ builder.AddLine(new Vector2(288.571991F, -337.587006F));
+ builder.AddLine(new Vector2(293.161987F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(310.298004F, -337.587006F));
+ builder.AddLine(new Vector2(310.298004F, -352.631989F));
+ builder.AddCubicBezier(new Vector2(310.298004F, -354.296997F), new Vector2(309.890015F, -355.869995F), new Vector2(309.074005F, -357.348999F));
+ builder.AddCubicBezier(new Vector2(308.257996F, -358.828003F), new Vector2(307.143005F, -360.027008F), new Vector2(305.733002F, -360.945007F));
+ builder.AddCubicBezier(new Vector2(304.321991F, -361.863007F), new Vector2(302.699005F, -362.321991F), new Vector2(300.863007F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(299.027008F, -362.321991F), new Vector2(297.377014F, -361.904999F), new Vector2(295.915985F, -361.071991F));
+ builder.AddCubicBezier(new Vector2(294.45401F, -360.238007F), new Vector2(293.315002F, -359.109009F), new Vector2(292.498993F, -357.681F));
+ builder.AddCubicBezier(new Vector2(291.683014F, -356.252991F), new Vector2(291.274994F, -354.621002F), new Vector2(291.274994F, -352.785004F));
+ builder.AddLine(new Vector2(293.161987F, -351.713989F));
+ builder.AddCubicBezier(new Vector2(293.161987F, -352.937988F), new Vector2(293.43399F, -354.026001F), new Vector2(293.977997F, -354.977997F));
+ builder.AddCubicBezier(new Vector2(294.520996F, -355.928986F), new Vector2(295.269989F, -356.678009F), new Vector2(296.221985F, -357.221985F));
+ builder.AddCubicBezier(new Vector2(297.173004F, -357.765015F), new Vector2(298.261993F, -358.037994F), new Vector2(299.485992F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(301.321991F, -358.037994F), new Vector2(302.808014F, -357.442993F), new Vector2(303.947998F, -356.252991F));
+ builder.AddCubicBezier(new Vector2(305.087006F, -355.062012F), new Vector2(305.657013F, -353.549988F), new Vector2(305.657013F, -351.713989F));
+ builder.AddLine(new Vector2(305.657013F, -337.587006F));
+ builder.AddLine(new Vector2(310.298004F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1622()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(281.584991F, -367.497986F));
+ builder.AddCubicBezier(new Vector2(282.127991F, -368.05899F), new Vector2(282.401001F, -368.765015F), new Vector2(282.401001F, -369.61499F));
+ builder.AddCubicBezier(new Vector2(282.401001F, -370.431F), new Vector2(282.127991F, -371.118988F), new Vector2(281.584991F, -371.679993F));
+ builder.AddCubicBezier(new Vector2(281.040985F, -372.240997F), new Vector2(280.342987F, -372.522003F), new Vector2(279.493988F, -372.522003F));
+ builder.AddCubicBezier(new Vector2(278.644012F, -372.522003F), new Vector2(277.946014F, -372.240997F), new Vector2(277.403015F, -371.679993F));
+ builder.AddCubicBezier(new Vector2(276.859009F, -371.118988F), new Vector2(276.587006F, -370.431F), new Vector2(276.587006F, -369.61499F));
+ builder.AddCubicBezier(new Vector2(276.587006F, -368.765015F), new Vector2(276.859009F, -368.05899F), new Vector2(277.403015F, -367.497986F));
+ builder.AddCubicBezier(new Vector2(277.946014F, -366.937012F), new Vector2(278.644012F, -366.657013F), new Vector2(279.493988F, -366.657013F));
+ builder.AddCubicBezier(new Vector2(280.342987F, -366.657013F), new Vector2(281.040985F, -366.937012F), new Vector2(281.584991F, -367.497986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(281.789001F, -337.587006F));
+ builder.AddLine(new Vector2(281.789001F, -361.812012F));
+ builder.AddLine(new Vector2(277.14801F, -361.812012F));
+ builder.AddLine(new Vector2(277.14801F, -337.587006F));
+ builder.AddLine(new Vector2(281.789001F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1623()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(262.919006F, -356.355011F));
+ builder.AddCubicBezier(new Vector2(264.006989F, -357.442993F), new Vector2(265.399994F, -357.987F), new Vector2(267.101013F, -357.987F));
+ builder.AddCubicBezier(new Vector2(267.916992F, -357.987F), new Vector2(268.631012F, -357.867004F), new Vector2(269.243011F, -357.630005F));
+ builder.AddCubicBezier(new Vector2(269.855011F, -357.391998F), new Vector2(270.415985F, -357F), new Vector2(270.925995F, -356.457001F));
+ builder.AddLine(new Vector2(273.934998F, -359.567993F));
+ builder.AddCubicBezier(new Vector2(273.084991F, -360.553986F), new Vector2(272.166992F, -361.257996F), new Vector2(271.181F, -361.68399F));
+ builder.AddCubicBezier(new Vector2(270.194F, -362.109009F), new Vector2(269.089996F, -362.321991F), new Vector2(267.865997F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(265.179993F, -362.321991F), new Vector2(263.122986F, -361.403992F), new Vector2(261.695007F, -359.567993F));
+ builder.AddCubicBezier(new Vector2(260.266998F, -357.731995F), new Vector2(259.553009F, -355.265991F), new Vector2(259.553009F, -352.173004F));
+ builder.AddLine(new Vector2(261.286987F, -351.356995F));
+ builder.AddCubicBezier(new Vector2(261.286987F, -353.601013F), new Vector2(261.829987F, -355.265991F), new Vector2(262.919006F, -356.355011F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(261.286987F, -337.587006F));
+ builder.AddLine(new Vector2(261.286987F, -361.812012F));
+ builder.AddLine(new Vector2(256.696991F, -361.812012F));
+ builder.AddLine(new Vector2(256.696991F, -337.587006F));
+ builder.AddLine(new Vector2(261.286987F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1624()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(234.996002F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(233.822998F, -343.196991F), new Vector2(232.921997F, -344.173004F), new Vector2(232.292999F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(231.662994F, -346.656006F), new Vector2(231.350006F, -348.075012F), new Vector2(231.350006F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(231.350006F, -351.306F), new Vector2(231.673004F, -352.740997F), new Vector2(232.319F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(232.964005F, -355.223999F), new Vector2(233.865997F, -356.201996F), new Vector2(235.022003F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(236.177002F, -357.630005F), new Vector2(237.503006F, -357.987F), new Vector2(239F, -357.987F));
+ builder.AddCubicBezier(new Vector2(240.529999F, -357.987F), new Vector2(241.873001F, -357.630005F), new Vector2(243.029007F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(244.184006F, -356.201996F), new Vector2(245.093994F, -355.223999F), new Vector2(245.757004F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(246.419998F, -352.740997F), new Vector2(246.751999F, -351.322998F), new Vector2(246.751999F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(246.751999F, -348.092987F), new Vector2(246.419998F, -346.656006F), new Vector2(245.757004F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(245.093994F, -344.173004F), new Vector2(244.184006F, -343.196991F), new Vector2(243.029007F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(241.873001F, -341.769012F), new Vector2(240.529999F, -341.411987F), new Vector2(239F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(237.503006F, -341.411987F), new Vector2(236.169006F, -341.769012F), new Vector2(234.996002F, -342.483002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(231.604996F, -337.587006F));
+ builder.AddLine(new Vector2(231.604996F, -344.11499F));
+ builder.AddLine(new Vector2(230.738007F, -350.031006F));
+ builder.AddLine(new Vector2(231.604996F, -355.895996F));
+ builder.AddLine(new Vector2(231.604996F, -374.001007F));
+ builder.AddLine(new Vector2(227.014999F, -374.001007F));
+ builder.AddLine(new Vector2(227.014999F, -337.587006F));
+ builder.AddLine(new Vector2(231.604996F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(245.757004F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(247.542007F, -339.838013F), new Vector2(248.945007F, -341.342987F), new Vector2(249.964996F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(250.985001F, -345.152008F), new Vector2(251.494995F, -347.294006F), new Vector2(251.494995F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(251.494995F, -352.053009F), new Vector2(250.985001F, -354.195007F), new Vector2(249.964996F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(248.945007F, -358.003998F), new Vector2(247.542007F, -359.516998F), new Vector2(245.757004F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(243.972F, -361.760986F), new Vector2(241.975006F, -362.321991F), new Vector2(239.764999F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(237.962006F, -362.321991F), new Vector2(236.322006F, -361.938995F), new Vector2(234.843002F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(233.363998F, -360.408997F), new Vector2(232.173004F, -359.355011F), new Vector2(231.272995F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(230.371994F, -356.667999F), new Vector2(229.871002F, -355.113007F), new Vector2(229.768997F, -353.346008F));
+ builder.AddLine(new Vector2(229.768997F, -346.053009F));
+ builder.AddCubicBezier(new Vector2(229.871002F, -344.319F), new Vector2(230.363007F, -342.770996F), new Vector2(231.248001F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(232.132004F, -340.052002F), new Vector2(233.313004F, -338.989014F), new Vector2(234.792007F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(236.270996F, -337.459015F), new Vector2(237.929001F, -337.076996F), new Vector2(239.764999F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(241.975006F, -337.076996F), new Vector2(243.972F, -337.628998F), new Vector2(245.757004F, -338.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1625()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(194.630005F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(193.438995F, -343.299011F), new Vector2(192.505005F, -344.274994F), new Vector2(191.824997F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(191.143997F, -346.757996F), new Vector2(190.804993F, -348.177002F), new Vector2(190.804993F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(190.804993F, -351.338989F), new Vector2(191.143997F, -352.734009F), new Vector2(191.824997F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(192.505005F, -355.182007F), new Vector2(193.438995F, -356.141998F), new Vector2(194.630005F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(195.820007F, -357.535004F), new Vector2(197.162003F, -357.88501F), new Vector2(198.658997F, -357.88501F));
+ builder.AddCubicBezier(new Vector2(200.222F, -357.88501F), new Vector2(201.591003F, -357.535004F), new Vector2(202.764008F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(203.936996F, -356.141998F), new Vector2(204.871994F, -355.182007F), new Vector2(205.569F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(206.264999F, -352.734009F), new Vector2(206.615005F, -351.338989F), new Vector2(206.615005F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(206.615005F, -348.177002F), new Vector2(206.274994F, -346.757996F), new Vector2(205.595001F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(204.914001F, -344.274994F), new Vector2(203.979996F, -343.299011F), new Vector2(202.789993F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(201.598999F, -341.871002F), new Vector2(200.222F, -341.514008F), new Vector2(198.658997F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(197.162003F, -341.514008F), new Vector2(195.820007F, -341.871002F), new Vector2(194.630005F, -342.584991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(205.110001F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(207.029999F, -339.881989F), new Vector2(208.552994F, -341.403015F), new Vector2(209.675003F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(210.796997F, -345.243988F), new Vector2(211.358002F, -347.395996F), new Vector2(211.358002F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(211.358002F, -352.122009F), new Vector2(210.796997F, -354.246002F), new Vector2(209.675003F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(208.552994F, -358.054993F), new Vector2(207.029999F, -359.55899F), new Vector2(205.110001F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(203.188995F, -361.768005F), new Vector2(201.037994F, -362.321991F), new Vector2(198.658997F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(196.313004F, -362.321991F), new Vector2(194.188004F, -361.760986F), new Vector2(192.283997F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(190.378998F, -359.516998F), new Vector2(188.867004F, -358.011993F), new Vector2(187.744995F, -356.125F));
+ builder.AddCubicBezier(new Vector2(186.623001F, -354.238007F), new Vector2(186.061996F, -352.122009F), new Vector2(186.061996F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(186.061996F, -347.395996F), new Vector2(186.623001F, -345.243988F), new Vector2(187.744995F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(188.867004F, -341.403015F), new Vector2(190.378998F, -339.881989F), new Vector2(192.283997F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(194.188004F, -337.638F), new Vector2(196.313004F, -337.076996F), new Vector2(198.658997F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(201.037994F, -337.076996F), new Vector2(203.188995F, -337.638F), new Vector2(205.110001F, -338.76001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1626()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(183.919998F, -357.630005F));
+ builder.AddLine(new Vector2(183.919998F, -361.812012F));
+ builder.AddLine(new Vector2(167.395996F, -361.812012F));
+ builder.AddLine(new Vector2(167.395996F, -357.630005F));
+ builder.AddLine(new Vector2(183.919998F, -357.630005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(177.953003F, -337.587006F));
+ builder.AddLine(new Vector2(177.953003F, -371.960999F));
+ builder.AddLine(new Vector2(173.363007F, -371.960999F));
+ builder.AddLine(new Vector2(173.363007F, -337.587006F));
+ builder.AddLine(new Vector2(177.953003F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1627()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(137.382004F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(136.209F, -343.196991F), new Vector2(135.307999F, -344.173004F), new Vector2(134.679001F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(134.048996F, -346.656006F), new Vector2(133.735992F, -348.075012F), new Vector2(133.735992F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(133.735992F, -351.306F), new Vector2(134.059006F, -352.740997F), new Vector2(134.705002F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(135.350006F, -355.223999F), new Vector2(136.251999F, -356.201996F), new Vector2(137.408005F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(138.563004F, -357.630005F), new Vector2(139.889008F, -357.987F), new Vector2(141.386002F, -357.987F));
+ builder.AddCubicBezier(new Vector2(142.916F, -357.987F), new Vector2(144.259003F, -357.630005F), new Vector2(145.414993F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(146.570007F, -356.201996F), new Vector2(147.479996F, -355.223999F), new Vector2(148.143005F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(148.806F, -352.740997F), new Vector2(149.138F, -351.322998F), new Vector2(149.138F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(149.138F, -348.092987F), new Vector2(148.806F, -346.656006F), new Vector2(148.143005F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(147.479996F, -344.173004F), new Vector2(146.570007F, -343.196991F), new Vector2(145.414993F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(144.259003F, -341.769012F), new Vector2(142.916F, -341.411987F), new Vector2(141.386002F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(139.889008F, -341.411987F), new Vector2(138.554993F, -341.769012F), new Vector2(137.382004F, -342.483002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(133.990997F, -327.437988F));
+ builder.AddLine(new Vector2(133.990997F, -343.656006F));
+ builder.AddLine(new Vector2(133.123993F, -349.571991F));
+ builder.AddLine(new Vector2(133.990997F, -355.437012F));
+ builder.AddLine(new Vector2(133.990997F, -361.812012F));
+ builder.AddLine(new Vector2(129.401001F, -361.812012F));
+ builder.AddLine(new Vector2(129.401001F, -327.437988F));
+ builder.AddLine(new Vector2(133.990997F, -327.437988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(148.143005F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(149.927994F, -339.838013F), new Vector2(151.330994F, -341.342987F), new Vector2(152.350998F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(153.371002F, -345.152008F), new Vector2(153.880997F, -347.294006F), new Vector2(153.880997F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(153.880997F, -352.053009F), new Vector2(153.371002F, -354.195007F), new Vector2(152.350998F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(151.330994F, -358.003998F), new Vector2(149.927994F, -359.516998F), new Vector2(148.143005F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(146.358002F, -361.760986F), new Vector2(144.360992F, -362.321991F), new Vector2(142.151001F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(140.348007F, -362.321991F), new Vector2(138.707993F, -361.938995F), new Vector2(137.229004F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(135.75F, -360.408997F), new Vector2(134.559006F, -359.355011F), new Vector2(133.658997F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(132.757996F, -356.667999F), new Vector2(132.257004F, -355.113007F), new Vector2(132.154999F, -353.346008F));
+ builder.AddLine(new Vector2(132.154999F, -346.053009F));
+ builder.AddCubicBezier(new Vector2(132.257004F, -344.319F), new Vector2(132.748993F, -342.770996F), new Vector2(133.634003F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(134.518005F, -340.052002F), new Vector2(135.699005F, -338.989014F), new Vector2(137.177994F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(138.656998F, -337.459015F), new Vector2(140.315002F, -337.076996F), new Vector2(142.151001F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(144.360992F, -337.076996F), new Vector2(146.358002F, -337.628998F), new Vector2(148.143005F, -338.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1628()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(122.668999F, -337.587006F));
+ builder.AddLine(new Vector2(122.668999F, -374.001007F));
+ builder.AddLine(new Vector2(118.079002F, -374.001007F));
+ builder.AddLine(new Vector2(118.079002F, -337.587006F));
+ builder.AddLine(new Vector2(122.668999F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1629()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(107.318001F, -338.14801F));
+ builder.AddCubicBezier(new Vector2(108.983002F, -338.862F), new Vector2(110.411003F, -339.898987F), new Vector2(111.601997F, -341.259003F));
+ builder.AddLine(new Vector2(108.643997F, -344.268005F));
+ builder.AddCubicBezier(new Vector2(107.828003F, -343.31601F), new Vector2(106.850998F, -342.60199F), new Vector2(105.711998F, -342.126007F));
+ builder.AddCubicBezier(new Vector2(104.571999F, -341.648987F), new Vector2(103.321999F, -341.411987F), new Vector2(101.962997F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(100.331001F, -341.411987F), new Vector2(98.8850021F, -341.76001F), new Vector2(97.6279984F, -342.457001F));
+ builder.AddCubicBezier(new Vector2(96.3700027F, -343.153015F), new Vector2(95.401001F, -344.140015F), new Vector2(94.7210007F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(94.0400009F, -346.690002F), new Vector2(93.7009964F, -348.177002F), new Vector2(93.7009964F, -349.877991F));
+ builder.AddCubicBezier(new Vector2(93.7009964F, -351.542999F), new Vector2(94.0240021F, -352.989014F), new Vector2(94.6699982F, -354.213013F));
+ builder.AddCubicBezier(new Vector2(95.3150024F, -355.437012F), new Vector2(96.2330017F, -356.388F), new Vector2(97.4240036F, -357.069F));
+ builder.AddCubicBezier(new Vector2(98.6139984F, -357.748993F), new Vector2(99.9909973F, -358.088989F), new Vector2(101.555F, -358.088989F));
+ builder.AddCubicBezier(new Vector2(103.051003F, -358.088989F), new Vector2(104.325996F, -357.773987F), new Vector2(105.379997F, -357.144989F));
+ builder.AddCubicBezier(new Vector2(106.432999F, -356.515015F), new Vector2(107.249001F, -355.631989F), new Vector2(107.828003F, -354.493011F));
+ builder.AddCubicBezier(new Vector2(108.405998F, -353.352997F), new Vector2(108.695F, -351.968994F), new Vector2(108.695F, -350.337006F));
+ builder.AddLine(new Vector2(110.377998F, -351.81601F));
+ builder.AddLine(new Vector2(92.375F, -351.81601F));
+ builder.AddLine(new Vector2(92.375F, -347.990997F));
+ builder.AddLine(new Vector2(112.825996F, -347.990997F));
+ builder.AddCubicBezier(new Vector2(112.928001F, -348.46701F), new Vector2(112.996002F, -348.899994F), new Vector2(113.029999F, -349.290985F));
+ builder.AddCubicBezier(new Vector2(113.063004F, -349.681F), new Vector2(113.081001F, -350.048004F), new Vector2(113.081001F, -350.388F));
+ builder.AddCubicBezier(new Vector2(113.081001F, -352.700012F), new Vector2(112.597F, -354.756012F), new Vector2(111.627998F, -356.55899F));
+ builder.AddCubicBezier(new Vector2(110.658997F, -358.360992F), new Vector2(109.306999F, -359.772003F), new Vector2(107.572998F, -360.791992F));
+ builder.AddCubicBezier(new Vector2(105.838997F, -361.812012F), new Vector2(103.866997F, -362.321991F), new Vector2(101.656998F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(99.310997F, -362.321991F), new Vector2(97.1949997F, -361.768005F), new Vector2(95.3079987F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(93.4209976F, -359.55899F), new Vector2(91.9240036F, -358.054993F), new Vector2(90.8199997F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(89.7149963F, -354.246002F), new Vector2(89.1620026F, -352.104004F), new Vector2(89.1620026F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(89.1620026F, -347.309998F), new Vector2(89.7229996F, -345.152008F), new Vector2(90.8450012F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(91.9670029F, -341.342987F), new Vector2(93.4889984F, -339.838013F), new Vector2(95.4100037F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(97.3300018F, -337.628998F), new Vector2(99.5149994F, -337.076996F), new Vector2(101.962997F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(103.866997F, -337.076996F), new Vector2(105.652F, -337.43399F), new Vector2(107.318001F, -338.14801F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1630()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(67.3850021F, -337.587006F));
+ builder.AddLine(new Vector2(67.3850021F, -374.001007F));
+ builder.AddLine(new Vector2(62.7949982F, -374.001007F));
+ builder.AddLine(new Vector2(62.7949982F, -337.587006F));
+ builder.AddLine(new Vector2(67.3850021F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(84.5210037F, -337.587006F));
+ builder.AddLine(new Vector2(84.5210037F, -352.631989F));
+ builder.AddCubicBezier(new Vector2(84.5210037F, -354.536011F), new Vector2(84.112999F, -356.218994F), new Vector2(83.2969971F, -357.681F));
+ builder.AddCubicBezier(new Vector2(82.4810028F, -359.141998F), new Vector2(81.3659973F, -360.282013F), new Vector2(79.9560013F, -361.097992F));
+ builder.AddCubicBezier(new Vector2(78.5449982F, -361.914001F), new Vector2(76.9219971F, -362.321991F), new Vector2(75.0859985F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(73.25F, -362.321991F), new Vector2(71.5999985F, -361.904999F), new Vector2(70.1389999F, -361.071991F));
+ builder.AddCubicBezier(new Vector2(68.677002F, -360.238007F), new Vector2(67.538002F, -359.109009F), new Vector2(66.7220001F, -357.681F));
+ builder.AddCubicBezier(new Vector2(65.9059982F, -356.252991F), new Vector2(65.4980011F, -354.621002F), new Vector2(65.4980011F, -352.785004F));
+ builder.AddLine(new Vector2(67.3850021F, -351.713989F));
+ builder.AddCubicBezier(new Vector2(67.3850021F, -352.937988F), new Vector2(67.6569977F, -354.026001F), new Vector2(68.2009964F, -354.977997F));
+ builder.AddCubicBezier(new Vector2(68.7440033F, -355.928986F), new Vector2(69.4929962F, -356.678009F), new Vector2(70.4449997F, -357.221985F));
+ builder.AddCubicBezier(new Vector2(71.3960037F, -357.765015F), new Vector2(72.4850006F, -358.037994F), new Vector2(73.7089996F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(75.5449982F, -358.037994F), new Vector2(77.0309982F, -357.442993F), new Vector2(78.1709976F, -356.252991F));
+ builder.AddCubicBezier(new Vector2(79.3099976F, -355.062012F), new Vector2(79.8799973F, -353.549988F), new Vector2(79.8799973F, -351.713989F));
+ builder.AddLine(new Vector2(79.8799973F, -337.587006F));
+ builder.AddLine(new Vector2(84.5210037F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1631()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(45.5569992F, -374.001007F));
+ builder.AddLine(new Vector2(40.9160004F, -374.001007F));
+ builder.AddLine(new Vector2(40.9160004F, -355.895996F));
+ builder.AddLine(new Vector2(41.7830009F, -350.031006F));
+ builder.AddLine(new Vector2(40.9160004F, -344.11499F));
+ builder.AddLine(new Vector2(40.9160004F, -337.587006F));
+ builder.AddLine(new Vector2(45.5569992F, -337.587006F));
+ builder.AddLine(new Vector2(45.5569992F, -374.001007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(29.5179996F, -342.457001F));
+ builder.AddCubicBezier(new Vector2(28.3449993F, -343.153015F), new Vector2(27.427F, -344.131989F), new Vector2(26.7639999F, -345.390015F));
+ builder.AddCubicBezier(new Vector2(26.1009998F, -346.647003F), new Vector2(25.7689991F, -348.092987F), new Vector2(25.7689991F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(25.7689991F, -351.356995F), new Vector2(26.1009998F, -352.791992F), new Vector2(26.7639999F, -354.033997F));
+ builder.AddCubicBezier(new Vector2(27.427F, -355.274994F), new Vector2(28.3360004F, -356.243988F), new Vector2(29.4920006F, -356.94101F));
+ builder.AddCubicBezier(new Vector2(30.6469994F, -357.636993F), new Vector2(31.9909992F, -357.987F), new Vector2(33.5209999F, -357.987F));
+ builder.AddCubicBezier(new Vector2(35.0509987F, -357.987F), new Vector2(36.394001F, -357.630005F), new Vector2(37.5499992F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(38.7050018F, -356.201996F), new Vector2(39.6069984F, -355.223999F), new Vector2(40.2529984F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(40.8979988F, -352.740997F), new Vector2(41.2220001F, -351.306F), new Vector2(41.2220001F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(41.2220001F, -348.075012F), new Vector2(40.8979988F, -346.656006F), new Vector2(40.2529984F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(39.6069984F, -344.173004F), new Vector2(38.7050018F, -343.196991F), new Vector2(37.5499992F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(36.394001F, -341.769012F), new Vector2(35.0509987F, -341.411987F), new Vector2(33.5209999F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(32.0239983F, -341.411987F), new Vector2(30.691F, -341.76001F), new Vector2(29.5179996F, -342.457001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(37.7540016F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(39.2150002F, -338.989014F), new Vector2(40.3880005F, -340.052002F), new Vector2(41.2729988F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(42.1570015F, -342.770996F), new Vector2(42.6500015F, -344.319F), new Vector2(42.7519989F, -346.053009F));
+ builder.AddLine(new Vector2(42.7519989F, -353.346008F));
+ builder.AddCubicBezier(new Vector2(42.6500015F, -355.113007F), new Vector2(42.1479988F, -356.667999F), new Vector2(41.2480011F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(40.3470001F, -359.355011F), new Vector2(39.1640015F, -360.408997F), new Vector2(37.7029991F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(36.2410011F, -361.938995F), new Vector2(34.5919991F, -362.321991F), new Vector2(32.7560005F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(30.5450001F, -362.321991F), new Vector2(28.5559998F, -361.760986F), new Vector2(26.7889996F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(25.0209999F, -359.516998F), new Vector2(23.618F, -358.003998F), new Vector2(22.5809994F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(21.5429993F, -354.195007F), new Vector2(21.0259991F, -352.053009F), new Vector2(21.0259991F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(21.0259991F, -347.294006F), new Vector2(21.5429993F, -345.152008F), new Vector2(22.5809994F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(23.618F, -341.342987F), new Vector2(25.0209999F, -339.838013F), new Vector2(26.7889996F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(28.5559998F, -337.628998F), new Vector2(30.5450001F, -337.076996F), new Vector2(32.7560005F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(34.625F, -337.076996F), new Vector2(36.2919998F, -337.459015F), new Vector2(37.7540016F, -338.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1632()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(15.8240004F, -337.587006F));
+ builder.AddLine(new Vector2(15.8240004F, -374.001007F));
+ builder.AddLine(new Vector2(11.2340002F, -374.001007F));
+ builder.AddLine(new Vector2(11.2340002F, -337.587006F));
+ builder.AddLine(new Vector2(15.8240004F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1633()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(0.0649999976F, -338.479004F));
+ builder.AddCubicBezier(new Vector2(1.62800002F, -339.346008F), new Vector2(2.852F, -340.578003F), new Vector2(3.73699999F, -342.177002F));
+ builder.AddCubicBezier(new Vector2(4.62099981F, -343.774994F), new Vector2(5.0630002F, -345.627014F), new Vector2(5.0630002F, -347.735992F));
+ builder.AddLine(new Vector2(5.0630002F, -361.812012F));
+ builder.AddLine(new Vector2(0.47299999F, -361.812012F));
+ builder.AddLine(new Vector2(0.47299999F, -347.940002F));
+ builder.AddCubicBezier(new Vector2(0.47299999F, -345.933014F), new Vector2(-0.0370000005F, -344.360992F), new Vector2(-1.05700004F, -343.221985F));
+ builder.AddCubicBezier(new Vector2(-2.0769999F, -342.082001F), new Vector2(-3.48799992F, -341.514008F), new Vector2(-5.28999996F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-6.48099995F, -341.514008F), new Vector2(-7.5170002F, -341.769012F), new Vector2(-8.40100002F, -342.278992F));
+ builder.AddCubicBezier(new Vector2(-9.28600025F, -342.789001F), new Vector2(-9.95600033F, -343.528015F), new Vector2(-10.415F, -344.497009F));
+ builder.AddCubicBezier(new Vector2(-10.8739996F, -345.466003F), new Vector2(-11.1040001F, -346.614014F), new Vector2(-11.1040001F, -347.940002F));
+ builder.AddLine(new Vector2(-11.1040001F, -361.812012F));
+ builder.AddLine(new Vector2(-15.6940002F, -361.812012F));
+ builder.AddLine(new Vector2(-15.6940002F, -347.735992F));
+ builder.AddCubicBezier(new Vector2(-15.6940002F, -345.627014F), new Vector2(-15.2530003F, -343.774994F), new Vector2(-14.368F, -342.177002F));
+ builder.AddCubicBezier(new Vector2(-13.4840002F, -340.578003F), new Vector2(-12.2519999F, -339.346008F), new Vector2(-10.6709995F, -338.479004F));
+ builder.AddCubicBezier(new Vector2(-9.09000015F, -337.612F), new Vector2(-7.29699993F, -337.178986F), new Vector2(-5.28999996F, -337.178986F));
+ builder.AddCubicBezier(new Vector2(-3.28399992F, -337.178986F), new Vector2(-1.49899995F, -337.612F), new Vector2(0.0649999976F, -338.479004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1634()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-36.9099998F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(-38.1010017F, -343.299011F), new Vector2(-39.0349998F, -344.274994F), new Vector2(-39.7150002F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(-40.3959999F, -346.757996F), new Vector2(-40.7350006F, -348.177002F), new Vector2(-40.7350006F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-40.7350006F, -351.338989F), new Vector2(-40.3959999F, -352.734009F), new Vector2(-39.7150002F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(-39.0349998F, -355.182007F), new Vector2(-38.1010017F, -356.141998F), new Vector2(-36.9099998F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(-35.7200012F, -357.535004F), new Vector2(-34.3779984F, -357.88501F), new Vector2(-32.8810005F, -357.88501F));
+ builder.AddCubicBezier(new Vector2(-31.3180008F, -357.88501F), new Vector2(-29.948F, -357.535004F), new Vector2(-28.7749996F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(-27.6019993F, -356.141998F), new Vector2(-26.6679993F, -355.182007F), new Vector2(-25.9710007F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(-25.2749996F, -352.734009F), new Vector2(-24.9249992F, -351.338989F), new Vector2(-24.9249992F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-24.9249992F, -348.177002F), new Vector2(-25.2649994F, -346.757996F), new Vector2(-25.9449997F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(-26.6259995F, -344.274994F), new Vector2(-27.5599995F, -343.299011F), new Vector2(-28.75F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(-29.941F, -341.871002F), new Vector2(-31.3180008F, -341.514008F), new Vector2(-32.8810005F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-34.3779984F, -341.514008F), new Vector2(-35.7200012F, -341.871002F), new Vector2(-36.9099998F, -342.584991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-26.4300003F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(-24.5100002F, -339.881989F), new Vector2(-22.9869995F, -341.403015F), new Vector2(-21.8649998F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(-20.743F, -345.243988F), new Vector2(-20.1819992F, -347.395996F), new Vector2(-20.1819992F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-20.1819992F, -352.122009F), new Vector2(-20.743F, -354.246002F), new Vector2(-21.8649998F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(-22.9869995F, -358.054993F), new Vector2(-24.5100002F, -359.55899F), new Vector2(-26.4300003F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(-28.3509998F, -361.768005F), new Vector2(-30.5020008F, -362.321991F), new Vector2(-32.8810005F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-35.2270012F, -362.321991F), new Vector2(-37.3520012F, -361.760986F), new Vector2(-39.2560005F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(-41.1609993F, -359.516998F), new Vector2(-42.6730003F, -358.011993F), new Vector2(-43.7949982F, -356.125F));
+ builder.AddCubicBezier(new Vector2(-44.9169998F, -354.238007F), new Vector2(-45.4780006F, -352.122009F), new Vector2(-45.4780006F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-45.4780006F, -347.395996F), new Vector2(-44.9169998F, -345.243988F), new Vector2(-43.7949982F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(-42.6730003F, -341.403015F), new Vector2(-41.1609993F, -339.881989F), new Vector2(-39.2560005F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(-37.3520012F, -337.638F), new Vector2(-35.2270012F, -337.076996F), new Vector2(-32.8810005F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-30.5020008F, -337.076996F), new Vector2(-28.3509998F, -337.638F), new Vector2(-26.4300003F, -338.76001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1635()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-52.0830002F, -338.14801F));
+ builder.AddCubicBezier(new Vector2(-50.4690018F, -338.862F), new Vector2(-49.098999F, -339.864014F), new Vector2(-47.9770012F, -341.157013F));
+ builder.AddLine(new Vector2(-50.9860001F, -344.21701F));
+ builder.AddCubicBezier(new Vector2(-51.769001F, -343.332001F), new Vector2(-52.6949997F, -342.661011F), new Vector2(-53.7659988F, -342.201996F));
+ builder.AddCubicBezier(new Vector2(-54.8370018F, -341.743011F), new Vector2(-56.0180016F, -341.514008F), new Vector2(-57.3100014F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-58.8400002F, -341.514008F), new Vector2(-60.2000008F, -341.871002F), new Vector2(-61.3899994F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(-62.5810013F, -343.299011F), new Vector2(-63.5149994F, -344.268005F), new Vector2(-64.1949997F, -345.492004F));
+ builder.AddCubicBezier(new Vector2(-64.8759995F, -346.716003F), new Vector2(-65.2149963F, -348.126007F), new Vector2(-65.2149963F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-65.2149963F, -351.322998F), new Vector2(-64.8759995F, -352.734009F), new Vector2(-64.1949997F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(-63.5149994F, -355.182007F), new Vector2(-62.5810013F, -356.141998F), new Vector2(-61.3899994F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(-60.2000008F, -357.535004F), new Vector2(-58.8400002F, -357.88501F), new Vector2(-57.3100014F, -357.88501F));
+ builder.AddCubicBezier(new Vector2(-56.0530014F, -357.88501F), new Vector2(-54.8800011F, -357.654999F), new Vector2(-53.7910004F, -357.196014F));
+ builder.AddCubicBezier(new Vector2(-52.7029991F, -356.737F), new Vector2(-51.7849998F, -356.06601F), new Vector2(-51.0369987F, -355.182007F));
+ builder.AddLine(new Vector2(-47.9770012F, -358.242004F));
+ builder.AddCubicBezier(new Vector2(-49.1329994F, -359.567993F), new Vector2(-50.5099983F, -360.57901F), new Vector2(-52.1080017F, -361.276001F));
+ builder.AddCubicBezier(new Vector2(-53.7070007F, -361.971985F), new Vector2(-55.4410019F, -362.321991F), new Vector2(-57.3100014F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-59.6899986F, -362.321991F), new Vector2(-61.8419991F, -361.768005F), new Vector2(-63.762001F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(-65.6829987F, -359.55899F), new Vector2(-67.1969986F, -358.054993F), new Vector2(-68.3010025F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(-69.4059982F, -354.246002F), new Vector2(-69.9580002F, -352.104004F), new Vector2(-69.9580002F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-69.9580002F, -347.378998F), new Vector2(-69.4059982F, -345.243988F), new Vector2(-68.3010025F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(-67.1969986F, -341.403015F), new Vector2(-65.6829987F, -339.881989F), new Vector2(-63.762001F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(-61.8419991F, -337.638F), new Vector2(-59.6899986F, -337.076996F), new Vector2(-57.3100014F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-55.4410019F, -337.076996F), new Vector2(-53.6980019F, -337.43399F), new Vector2(-52.0830002F, -338.14801F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1636()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-85.6149979F, -374.001007F));
+ builder.AddLine(new Vector2(-90.2559967F, -374.001007F));
+ builder.AddLine(new Vector2(-90.2559967F, -355.895996F));
+ builder.AddLine(new Vector2(-89.3889999F, -350.031006F));
+ builder.AddLine(new Vector2(-90.2559967F, -344.11499F));
+ builder.AddLine(new Vector2(-90.2559967F, -337.587006F));
+ builder.AddLine(new Vector2(-85.6149979F, -337.587006F));
+ builder.AddLine(new Vector2(-85.6149979F, -374.001007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-101.653999F, -342.457001F));
+ builder.AddCubicBezier(new Vector2(-102.827003F, -343.153015F), new Vector2(-103.745003F, -344.131989F), new Vector2(-104.407997F, -345.390015F));
+ builder.AddCubicBezier(new Vector2(-105.070999F, -346.647003F), new Vector2(-105.403F, -348.092987F), new Vector2(-105.403F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-105.403F, -351.356995F), new Vector2(-105.070999F, -352.791992F), new Vector2(-104.407997F, -354.033997F));
+ builder.AddCubicBezier(new Vector2(-103.745003F, -355.274994F), new Vector2(-102.835999F, -356.243988F), new Vector2(-101.68F, -356.94101F));
+ builder.AddCubicBezier(new Vector2(-100.525002F, -357.636993F), new Vector2(-99.1809998F, -357.987F), new Vector2(-97.651001F, -357.987F));
+ builder.AddCubicBezier(new Vector2(-96.1210022F, -357.987F), new Vector2(-94.7779999F, -357.630005F), new Vector2(-93.6220016F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(-92.4670029F, -356.201996F), new Vector2(-91.5650024F, -355.223999F), new Vector2(-90.9189987F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(-90.2740021F, -352.740997F), new Vector2(-89.9499969F, -351.306F), new Vector2(-89.9499969F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-89.9499969F, -348.075012F), new Vector2(-90.2740021F, -346.656006F), new Vector2(-90.9189987F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(-91.5650024F, -344.173004F), new Vector2(-92.4670029F, -343.196991F), new Vector2(-93.6220016F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(-94.7779999F, -341.769012F), new Vector2(-96.1210022F, -341.411987F), new Vector2(-97.651001F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-99.1480026F, -341.411987F), new Vector2(-100.481003F, -341.76001F), new Vector2(-101.653999F, -342.457001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-93.4179993F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(-91.9570007F, -338.989014F), new Vector2(-90.7839966F, -340.052002F), new Vector2(-89.8990021F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-89.0149994F, -342.770996F), new Vector2(-88.5220032F, -344.319F), new Vector2(-88.4199982F, -346.053009F));
+ builder.AddLine(new Vector2(-88.4199982F, -353.346008F));
+ builder.AddCubicBezier(new Vector2(-88.5220032F, -355.113007F), new Vector2(-89.0240021F, -356.667999F), new Vector2(-89.9240036F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(-90.8249969F, -359.355011F), new Vector2(-92.0080032F, -360.408997F), new Vector2(-93.4690018F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(-94.9309998F, -361.938995F), new Vector2(-96.5800018F, -362.321991F), new Vector2(-98.4160004F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-100.626999F, -362.321991F), new Vector2(-102.615997F, -361.760986F), new Vector2(-104.383003F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(-106.151001F, -359.516998F), new Vector2(-107.553001F, -358.003998F), new Vector2(-108.589996F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(-109.627998F, -354.195007F), new Vector2(-110.146004F, -352.053009F), new Vector2(-110.146004F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-110.146004F, -347.294006F), new Vector2(-109.627998F, -345.152008F), new Vector2(-108.589996F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(-107.553001F, -341.342987F), new Vector2(-106.151001F, -339.838013F), new Vector2(-104.383003F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(-102.615997F, -337.628998F), new Vector2(-100.626999F, -337.076996F), new Vector2(-98.4160004F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-96.5469971F, -337.076996F), new Vector2(-94.8799973F, -337.459015F), new Vector2(-93.4179993F, -338.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1637()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-131.973999F, -337.587006F));
+ builder.AddLine(new Vector2(-131.973999F, -361.812012F));
+ builder.AddLine(new Vector2(-136.563995F, -361.812012F));
+ builder.AddLine(new Vector2(-136.563995F, -337.587006F));
+ builder.AddLine(new Vector2(-131.973999F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-114.837997F, -337.587006F));
+ builder.AddLine(new Vector2(-114.837997F, -352.631989F));
+ builder.AddCubicBezier(new Vector2(-114.837997F, -354.296997F), new Vector2(-115.246002F, -355.869995F), new Vector2(-116.061996F, -357.348999F));
+ builder.AddCubicBezier(new Vector2(-116.877998F, -358.828003F), new Vector2(-117.991997F, -360.027008F), new Vector2(-119.402F, -360.945007F));
+ builder.AddCubicBezier(new Vector2(-120.813004F, -361.863007F), new Vector2(-122.436996F, -362.321991F), new Vector2(-124.273003F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-126.109001F, -362.321991F), new Vector2(-127.759003F, -361.904999F), new Vector2(-129.220001F, -361.071991F));
+ builder.AddCubicBezier(new Vector2(-130.682007F, -360.238007F), new Vector2(-131.820999F, -359.109009F), new Vector2(-132.636993F, -357.681F));
+ builder.AddCubicBezier(new Vector2(-133.453003F, -356.252991F), new Vector2(-133.860992F, -354.621002F), new Vector2(-133.860992F, -352.785004F));
+ builder.AddLine(new Vector2(-131.973999F, -351.713989F));
+ builder.AddCubicBezier(new Vector2(-131.973999F, -352.937988F), new Vector2(-131.701996F, -354.026001F), new Vector2(-131.158005F, -354.977997F));
+ builder.AddCubicBezier(new Vector2(-130.615005F, -355.928986F), new Vector2(-129.865997F, -356.678009F), new Vector2(-128.914001F, -357.221985F));
+ builder.AddCubicBezier(new Vector2(-127.962997F, -357.765015F), new Vector2(-126.874001F, -358.037994F), new Vector2(-125.650002F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(-123.814003F, -358.037994F), new Vector2(-122.328003F, -357.442993F), new Vector2(-121.188004F, -356.252991F));
+ builder.AddCubicBezier(new Vector2(-120.049004F, -355.062012F), new Vector2(-119.478996F, -353.549988F), new Vector2(-119.478996F, -351.713989F));
+ builder.AddLine(new Vector2(-119.478996F, -337.587006F));
+ builder.AddLine(new Vector2(-114.837997F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1638()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-143.244995F, -337.587006F));
+ builder.AddLine(new Vector2(-143.244995F, -361.812012F));
+ builder.AddLine(new Vector2(-147.886002F, -361.812012F));
+ builder.AddLine(new Vector2(-147.886002F, -355.895996F));
+ builder.AddLine(new Vector2(-147.018997F, -350.031006F));
+ builder.AddLine(new Vector2(-147.886002F, -344.11499F));
+ builder.AddLine(new Vector2(-147.886002F, -337.587006F));
+ builder.AddLine(new Vector2(-143.244995F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-159.259003F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(-160.449997F, -343.196991F), new Vector2(-161.375F, -344.173004F), new Vector2(-162.037994F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(-162.701004F, -346.656006F), new Vector2(-163.033005F, -348.092987F), new Vector2(-163.033005F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-163.033005F, -351.322998F), new Vector2(-162.701004F, -352.740997F), new Vector2(-162.037994F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(-161.375F, -355.223999F), new Vector2(-160.457993F, -356.201996F), new Vector2(-159.285004F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(-158.112F, -357.630005F), new Vector2(-156.759995F, -357.987F), new Vector2(-155.229996F, -357.987F));
+ builder.AddCubicBezier(new Vector2(-153.699997F, -357.987F), new Vector2(-152.367004F, -357.636993F), new Vector2(-151.227005F, -356.94101F));
+ builder.AddCubicBezier(new Vector2(-150.087997F, -356.243988F), new Vector2(-149.195007F, -355.265991F), new Vector2(-148.548996F, -354.009003F));
+ builder.AddCubicBezier(new Vector2(-147.904007F, -352.751007F), new Vector2(-147.580002F, -351.306F), new Vector2(-147.580002F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-147.580002F, -347.259003F), new Vector2(-148.276993F, -345.278992F), new Vector2(-149.671005F, -343.731995F));
+ builder.AddCubicBezier(new Vector2(-151.065994F, -342.18399F), new Vector2(-152.901993F, -341.411987F), new Vector2(-155.179001F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-156.709F, -341.411987F), new Vector2(-158.069F, -341.769012F), new Vector2(-159.259003F, -342.483002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-150.996994F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(-149.535995F, -338.989014F), new Vector2(-148.369995F, -340.052002F), new Vector2(-147.503006F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-146.636002F, -342.770996F), new Vector2(-146.151993F, -344.319F), new Vector2(-146.050003F, -346.053009F));
+ builder.AddLine(new Vector2(-146.050003F, -353.346008F));
+ builder.AddCubicBezier(new Vector2(-146.151993F, -355.113007F), new Vector2(-146.645004F, -356.667999F), new Vector2(-147.529007F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(-148.414001F, -359.355011F), new Vector2(-149.576996F, -360.408997F), new Vector2(-151.022003F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(-152.468002F, -361.938995F), new Vector2(-154.108002F, -362.321991F), new Vector2(-155.944F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-158.188004F, -362.321991F), new Vector2(-160.203003F, -361.760986F), new Vector2(-161.988007F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(-163.772995F, -359.516998F), new Vector2(-165.184006F, -358.003998F), new Vector2(-166.220993F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(-167.259003F, -354.195007F), new Vector2(-167.776001F, -352.053009F), new Vector2(-167.776001F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-167.776001F, -347.294006F), new Vector2(-167.259003F, -345.152008F), new Vector2(-166.220993F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(-165.184006F, -341.342987F), new Vector2(-163.772995F, -339.838013F), new Vector2(-161.988007F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(-160.203003F, -337.628998F), new Vector2(-158.188004F, -337.076996F), new Vector2(-155.944F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-154.108002F, -337.076996F), new Vector2(-152.459F, -337.459015F), new Vector2(-150.996994F, -338.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1639()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-187.972F, -338.479004F));
+ builder.AddCubicBezier(new Vector2(-186.408997F, -339.346008F), new Vector2(-185.184998F, -340.578003F), new Vector2(-184.300003F, -342.177002F));
+ builder.AddCubicBezier(new Vector2(-183.416F, -343.774994F), new Vector2(-182.973999F, -345.627014F), new Vector2(-182.973999F, -347.735992F));
+ builder.AddLine(new Vector2(-182.973999F, -361.812012F));
+ builder.AddLine(new Vector2(-187.563995F, -361.812012F));
+ builder.AddLine(new Vector2(-187.563995F, -347.940002F));
+ builder.AddCubicBezier(new Vector2(-187.563995F, -345.933014F), new Vector2(-188.074005F, -344.360992F), new Vector2(-189.093994F, -343.221985F));
+ builder.AddCubicBezier(new Vector2(-190.113998F, -342.082001F), new Vector2(-191.524994F, -341.514008F), new Vector2(-193.326996F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-194.518005F, -341.514008F), new Vector2(-195.554001F, -341.769012F), new Vector2(-196.438004F, -342.278992F));
+ builder.AddCubicBezier(new Vector2(-197.322998F, -342.789001F), new Vector2(-197.992996F, -343.528015F), new Vector2(-198.451996F, -344.497009F));
+ builder.AddCubicBezier(new Vector2(-198.910995F, -345.466003F), new Vector2(-199.141006F, -346.614014F), new Vector2(-199.141006F, -347.940002F));
+ builder.AddLine(new Vector2(-199.141006F, -361.812012F));
+ builder.AddLine(new Vector2(-203.731003F, -361.812012F));
+ builder.AddLine(new Vector2(-203.731003F, -347.735992F));
+ builder.AddCubicBezier(new Vector2(-203.731003F, -345.627014F), new Vector2(-203.289993F, -343.774994F), new Vector2(-202.404999F, -342.177002F));
+ builder.AddCubicBezier(new Vector2(-201.520996F, -340.578003F), new Vector2(-200.287994F, -339.346008F), new Vector2(-198.707001F, -338.479004F));
+ builder.AddCubicBezier(new Vector2(-197.126007F, -337.612F), new Vector2(-195.334F, -337.178986F), new Vector2(-193.326996F, -337.178986F));
+ builder.AddCubicBezier(new Vector2(-191.320999F, -337.178986F), new Vector2(-189.535995F, -337.612F), new Vector2(-187.972F, -338.479004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1640()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-224.947006F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(-226.138F, -343.299011F), new Vector2(-227.072006F, -344.274994F), new Vector2(-227.751999F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(-228.432999F, -346.757996F), new Vector2(-228.772003F, -348.177002F), new Vector2(-228.772003F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-228.772003F, -351.338989F), new Vector2(-228.432999F, -352.734009F), new Vector2(-227.751999F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(-227.072006F, -355.182007F), new Vector2(-226.138F, -356.141998F), new Vector2(-224.947006F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(-223.757004F, -357.535004F), new Vector2(-222.414993F, -357.88501F), new Vector2(-220.917999F, -357.88501F));
+ builder.AddCubicBezier(new Vector2(-219.354996F, -357.88501F), new Vector2(-217.985001F, -357.535004F), new Vector2(-216.811996F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(-215.639008F, -356.141998F), new Vector2(-214.703995F, -355.182007F), new Vector2(-214.007004F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(-213.311005F, -352.734009F), new Vector2(-212.962006F, -351.338989F), new Vector2(-212.962006F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-212.962006F, -348.177002F), new Vector2(-213.302002F, -346.757996F), new Vector2(-213.981995F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(-214.662994F, -344.274994F), new Vector2(-215.597F, -343.299011F), new Vector2(-216.787003F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(-217.977997F, -341.871002F), new Vector2(-219.354996F, -341.514008F), new Vector2(-220.917999F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-222.414993F, -341.514008F), new Vector2(-223.757004F, -341.871002F), new Vector2(-224.947006F, -342.584991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-214.466003F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(-212.546005F, -339.881989F), new Vector2(-211.024002F, -341.403015F), new Vector2(-209.901993F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(-208.779999F, -345.243988F), new Vector2(-208.218994F, -347.395996F), new Vector2(-208.218994F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-208.218994F, -352.122009F), new Vector2(-208.779999F, -354.246002F), new Vector2(-209.901993F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(-211.024002F, -358.054993F), new Vector2(-212.546005F, -359.55899F), new Vector2(-214.466003F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(-216.386993F, -361.768005F), new Vector2(-218.539001F, -362.321991F), new Vector2(-220.917999F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-223.264008F, -362.321991F), new Vector2(-225.389008F, -361.760986F), new Vector2(-227.292999F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(-229.197998F, -359.516998F), new Vector2(-230.710007F, -358.011993F), new Vector2(-231.832001F, -356.125F));
+ builder.AddCubicBezier(new Vector2(-232.953995F, -354.238007F), new Vector2(-233.514999F, -352.122009F), new Vector2(-233.514999F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-233.514999F, -347.395996F), new Vector2(-232.953995F, -345.243988F), new Vector2(-231.832001F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(-230.710007F, -341.403015F), new Vector2(-229.197998F, -339.881989F), new Vector2(-227.292999F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(-225.389008F, -337.638F), new Vector2(-223.264008F, -337.076996F), new Vector2(-220.917999F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-218.539001F, -337.076996F), new Vector2(-216.386993F, -337.638F), new Vector2(-214.466003F, -338.76001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1641()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-250.701996F, -327.437988F));
+ builder.AddLine(new Vector2(-246.112F, -337.382996F));
+ builder.AddLine(new Vector2(-248.712997F, -342.075012F));
+ builder.AddLine(new Vector2(-255.802002F, -327.437988F));
+ builder.AddLine(new Vector2(-250.701996F, -327.437988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-246.112F, -337.382996F));
+ builder.AddLine(new Vector2(-234.789993F, -361.812012F));
+ builder.AddLine(new Vector2(-239.889999F, -361.812012F));
+ builder.AddLine(new Vector2(-248.100998F, -342.687012F));
+ builder.AddLine(new Vector2(-246.468994F, -342.687012F));
+ builder.AddLine(new Vector2(-254.272003F, -361.812012F));
+ builder.AddLine(new Vector2(-259.372009F, -361.812012F));
+ builder.AddLine(new Vector2(-248.865997F, -337.382996F));
+ builder.AddLine(new Vector2(-246.112F, -337.382996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1642()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-274.953003F, -339.06601F));
+ builder.AddCubicBezier(new Vector2(-273.338989F, -340.391998F), new Vector2(-272.529999F, -342.194F), new Vector2(-272.529999F, -344.471985F));
+ builder.AddCubicBezier(new Vector2(-272.529999F, -345.967987F), new Vector2(-272.845001F, -347.174988F), new Vector2(-273.473999F, -348.092987F));
+ builder.AddCubicBezier(new Vector2(-274.104004F, -349.010986F), new Vector2(-274.910004F, -349.742004F), new Vector2(-275.895996F, -350.286011F));
+ builder.AddCubicBezier(new Vector2(-276.882996F, -350.82901F), new Vector2(-277.919006F, -351.261993F), new Vector2(-279.006989F, -351.585999F));
+ builder.AddCubicBezier(new Vector2(-280.096008F, -351.908997F), new Vector2(-281.141998F, -352.223999F), new Vector2(-282.144012F, -352.529999F));
+ builder.AddCubicBezier(new Vector2(-283.147003F, -352.835999F), new Vector2(-283.95401F, -353.209991F), new Vector2(-284.56601F, -353.652008F));
+ builder.AddCubicBezier(new Vector2(-285.178009F, -354.092987F), new Vector2(-285.484009F, -354.722992F), new Vector2(-285.484009F, -355.539001F));
+ builder.AddCubicBezier(new Vector2(-285.484009F, -356.321014F), new Vector2(-285.135986F, -356.949005F), new Vector2(-284.438995F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(-283.743011F, -357.902008F), new Vector2(-282.730011F, -358.140015F), new Vector2(-281.403992F, -358.140015F));
+ builder.AddCubicBezier(new Vector2(-280.147003F, -358.140015F), new Vector2(-279.024994F, -357.902008F), new Vector2(-278.037994F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(-277.052002F, -356.949005F), new Vector2(-276.201996F, -356.269989F), new Vector2(-275.488007F, -355.385986F));
+ builder.AddLine(new Vector2(-272.529999F, -358.343994F));
+ builder.AddCubicBezier(new Vector2(-273.481995F, -359.670013F), new Vector2(-274.697998F, -360.664001F), new Vector2(-276.177002F, -361.326996F));
+ builder.AddCubicBezier(new Vector2(-277.656006F, -361.98999F), new Vector2(-279.346985F, -362.321991F), new Vector2(-281.251007F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-283.053986F, -362.321991F), new Vector2(-284.600006F, -362.03299F), new Vector2(-285.891998F, -361.454987F));
+ builder.AddCubicBezier(new Vector2(-287.184998F, -360.876007F), new Vector2(-288.179993F, -360.052002F), new Vector2(-288.876007F, -358.980988F));
+ builder.AddCubicBezier(new Vector2(-289.572998F, -357.910004F), new Vector2(-289.92099F, -356.643005F), new Vector2(-289.92099F, -355.182007F));
+ builder.AddCubicBezier(new Vector2(-289.92099F, -353.720001F), new Vector2(-289.608002F, -352.536987F), new Vector2(-288.977997F, -351.636993F));
+ builder.AddCubicBezier(new Vector2(-288.348999F, -350.735992F), new Vector2(-287.541992F, -350.031006F), new Vector2(-286.554993F, -349.520996F));
+ builder.AddCubicBezier(new Vector2(-285.569F, -349.010986F), new Vector2(-284.523987F, -348.602997F), new Vector2(-283.419006F, -348.296997F));
+ builder.AddCubicBezier(new Vector2(-282.315002F, -347.990997F), new Vector2(-281.269012F, -347.675995F), new Vector2(-280.282013F, -347.352997F));
+ builder.AddCubicBezier(new Vector2(-279.29599F, -347.028992F), new Vector2(-278.48999F, -346.621002F), new Vector2(-277.859985F, -346.128998F));
+ builder.AddCubicBezier(new Vector2(-277.230988F, -345.635986F), new Vector2(-276.915985F, -344.947998F), new Vector2(-276.915985F, -344.063995F));
+ builder.AddCubicBezier(new Vector2(-276.915985F, -343.178986F), new Vector2(-277.307007F, -342.48999F), new Vector2(-278.088989F, -341.997986F));
+ builder.AddCubicBezier(new Vector2(-278.872009F, -341.505005F), new Vector2(-279.976013F, -341.259003F), new Vector2(-281.403992F, -341.259003F));
+ builder.AddCubicBezier(new Vector2(-282.832001F, -341.259003F), new Vector2(-284.125F, -341.520996F), new Vector2(-285.279999F, -342.049011F));
+ builder.AddCubicBezier(new Vector2(-286.436005F, -342.575989F), new Vector2(-287.455994F, -343.382996F), new Vector2(-288.339996F, -344.471985F));
+ builder.AddLine(new Vector2(-291.298004F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-290.550995F, -340.596008F), new Vector2(-289.674988F, -339.804993F), new Vector2(-288.671997F, -339.141998F));
+ builder.AddCubicBezier(new Vector2(-287.670013F, -338.479004F), new Vector2(-286.554993F, -337.968994F), new Vector2(-285.330994F, -337.612F));
+ builder.AddCubicBezier(new Vector2(-284.106995F, -337.255005F), new Vector2(-282.815002F, -337.076996F), new Vector2(-281.454987F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-278.734985F, -337.076996F), new Vector2(-276.567993F, -337.73999F), new Vector2(-274.953003F, -339.06601F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1643()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-295.837006F, -374.001007F));
+ builder.AddLine(new Vector2(-300.477997F, -374.001007F));
+ builder.AddLine(new Vector2(-300.477997F, -355.895996F));
+ builder.AddLine(new Vector2(-299.610992F, -350.031006F));
+ builder.AddLine(new Vector2(-300.477997F, -344.11499F));
+ builder.AddLine(new Vector2(-300.477997F, -337.587006F));
+ builder.AddLine(new Vector2(-295.837006F, -337.587006F));
+ builder.AddLine(new Vector2(-295.837006F, -374.001007F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-311.876007F, -342.457001F));
+ builder.AddCubicBezier(new Vector2(-313.049011F, -343.153015F), new Vector2(-313.967987F, -344.131989F), new Vector2(-314.631012F, -345.390015F));
+ builder.AddCubicBezier(new Vector2(-315.294006F, -346.647003F), new Vector2(-315.625F, -348.092987F), new Vector2(-315.625F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-315.625F, -351.356995F), new Vector2(-315.294006F, -352.791992F), new Vector2(-314.631012F, -354.033997F));
+ builder.AddCubicBezier(new Vector2(-313.967987F, -355.274994F), new Vector2(-313.058014F, -356.243988F), new Vector2(-311.902008F, -356.94101F));
+ builder.AddCubicBezier(new Vector2(-310.747009F, -357.636993F), new Vector2(-309.403015F, -357.987F), new Vector2(-307.872986F, -357.987F));
+ builder.AddCubicBezier(new Vector2(-306.342987F, -357.987F), new Vector2(-305F, -357.630005F), new Vector2(-303.843994F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(-302.688995F, -356.201996F), new Vector2(-301.786987F, -355.223999F), new Vector2(-301.140991F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(-300.496002F, -352.740997F), new Vector2(-300.171997F, -351.306F), new Vector2(-300.171997F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-300.171997F, -348.075012F), new Vector2(-300.496002F, -346.656006F), new Vector2(-301.140991F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(-301.786987F, -344.173004F), new Vector2(-302.688995F, -343.196991F), new Vector2(-303.843994F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(-305F, -341.769012F), new Vector2(-306.342987F, -341.411987F), new Vector2(-307.872986F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-309.369995F, -341.411987F), new Vector2(-310.703003F, -341.76001F), new Vector2(-311.876007F, -342.457001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-303.640015F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(-302.178986F, -338.989014F), new Vector2(-301.006012F, -340.052002F), new Vector2(-300.121002F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-299.237F, -342.770996F), new Vector2(-298.743988F, -344.319F), new Vector2(-298.641998F, -346.053009F));
+ builder.AddLine(new Vector2(-298.641998F, -353.346008F));
+ builder.AddCubicBezier(new Vector2(-298.743988F, -355.113007F), new Vector2(-299.247009F, -356.667999F), new Vector2(-300.147003F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(-301.048004F, -359.355011F), new Vector2(-302.230011F, -360.408997F), new Vector2(-303.69101F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(-305.153015F, -361.938995F), new Vector2(-306.802002F, -362.321991F), new Vector2(-308.638F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-310.848999F, -362.321991F), new Vector2(-312.838013F, -361.760986F), new Vector2(-314.605011F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(-316.372986F, -359.516998F), new Vector2(-317.774994F, -358.003998F), new Vector2(-318.812012F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(-319.850006F, -354.195007F), new Vector2(-320.368011F, -352.053009F), new Vector2(-320.368011F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-320.368011F, -347.294006F), new Vector2(-319.850006F, -345.152008F), new Vector2(-318.812012F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(-317.774994F, -341.342987F), new Vector2(-316.372986F, -339.838013F), new Vector2(-314.605011F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(-312.838013F, -337.628998F), new Vector2(-310.848999F, -337.076996F), new Vector2(-308.638F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-306.769012F, -337.076996F), new Vector2(-305.10199F, -337.459015F), new Vector2(-303.640015F, -338.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1644()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-342.196014F, -337.587006F));
+ builder.AddLine(new Vector2(-342.196014F, -361.812012F));
+ builder.AddLine(new Vector2(-346.786011F, -361.812012F));
+ builder.AddLine(new Vector2(-346.786011F, -337.587006F));
+ builder.AddLine(new Vector2(-342.196014F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-325.059998F, -337.587006F));
+ builder.AddLine(new Vector2(-325.059998F, -352.631989F));
+ builder.AddCubicBezier(new Vector2(-325.059998F, -354.296997F), new Vector2(-325.467987F, -355.869995F), new Vector2(-326.283997F, -357.348999F));
+ builder.AddCubicBezier(new Vector2(-327.100006F, -358.828003F), new Vector2(-328.214996F, -360.027008F), new Vector2(-329.625F, -360.945007F));
+ builder.AddCubicBezier(new Vector2(-331.036011F, -361.863007F), new Vector2(-332.658997F, -362.321991F), new Vector2(-334.494995F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-336.330994F, -362.321991F), new Vector2(-337.980988F, -361.904999F), new Vector2(-339.441986F, -361.071991F));
+ builder.AddCubicBezier(new Vector2(-340.903992F, -360.238007F), new Vector2(-342.042999F, -359.109009F), new Vector2(-342.859009F, -357.681F));
+ builder.AddCubicBezier(new Vector2(-343.674988F, -356.252991F), new Vector2(-344.083008F, -354.621002F), new Vector2(-344.083008F, -352.785004F));
+ builder.AddLine(new Vector2(-342.196014F, -351.713989F));
+ builder.AddCubicBezier(new Vector2(-342.196014F, -352.937988F), new Vector2(-341.924011F, -354.026001F), new Vector2(-341.380005F, -354.977997F));
+ builder.AddCubicBezier(new Vector2(-340.837006F, -355.928986F), new Vector2(-340.088013F, -356.678009F), new Vector2(-339.135986F, -357.221985F));
+ builder.AddCubicBezier(new Vector2(-338.184998F, -357.765015F), new Vector2(-337.096008F, -358.037994F), new Vector2(-335.872009F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(-334.036011F, -358.037994F), new Vector2(-332.549988F, -357.442993F), new Vector2(-331.410004F, -356.252991F));
+ builder.AddCubicBezier(new Vector2(-330.270996F, -355.062012F), new Vector2(-329.700989F, -353.549988F), new Vector2(-329.700989F, -351.713989F));
+ builder.AddLine(new Vector2(-329.700989F, -337.587006F));
+ builder.AddLine(new Vector2(-325.059998F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1645()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-353.77301F, -367.497986F));
+ builder.AddCubicBezier(new Vector2(-353.230011F, -368.05899F), new Vector2(-352.957001F, -368.765015F), new Vector2(-352.957001F, -369.61499F));
+ builder.AddCubicBezier(new Vector2(-352.957001F, -370.431F), new Vector2(-353.230011F, -371.118988F), new Vector2(-353.77301F, -371.679993F));
+ builder.AddCubicBezier(new Vector2(-354.316986F, -372.240997F), new Vector2(-355.015015F, -372.522003F), new Vector2(-355.864014F, -372.522003F));
+ builder.AddCubicBezier(new Vector2(-356.713989F, -372.522003F), new Vector2(-357.411987F, -372.240997F), new Vector2(-357.954987F, -371.679993F));
+ builder.AddCubicBezier(new Vector2(-358.498993F, -371.118988F), new Vector2(-358.770996F, -370.431F), new Vector2(-358.770996F, -369.61499F));
+ builder.AddCubicBezier(new Vector2(-358.770996F, -368.765015F), new Vector2(-358.498993F, -368.05899F), new Vector2(-357.954987F, -367.497986F));
+ builder.AddCubicBezier(new Vector2(-357.411987F, -366.937012F), new Vector2(-356.713989F, -366.657013F), new Vector2(-355.864014F, -366.657013F));
+ builder.AddCubicBezier(new Vector2(-355.015015F, -366.657013F), new Vector2(-354.316986F, -366.937012F), new Vector2(-353.77301F, -367.497986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-353.569F, -337.587006F));
+ builder.AddLine(new Vector2(-353.569F, -361.812012F));
+ builder.AddLine(new Vector2(-358.209991F, -361.812012F));
+ builder.AddLine(new Vector2(-358.209991F, -337.587006F));
+ builder.AddLine(new Vector2(-353.569F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1646()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-362.799988F, -357.630005F));
+ builder.AddLine(new Vector2(-362.799988F, -361.812012F));
+ builder.AddLine(new Vector2(-381.058014F, -361.812012F));
+ builder.AddLine(new Vector2(-381.058014F, -357.630005F));
+ builder.AddLine(new Vector2(-362.799988F, -357.630005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-370.501007F, -337.587006F));
+ builder.AddLine(new Vector2(-370.501007F, -365.433014F));
+ builder.AddCubicBezier(new Vector2(-370.501007F, -366.928986F), new Vector2(-370.10199F, -368.09201F), new Vector2(-369.303009F, -368.925995F));
+ builder.AddCubicBezier(new Vector2(-368.505005F, -369.759003F), new Vector2(-367.372986F, -370.175995F), new Vector2(-365.911011F, -370.175995F));
+ builder.AddCubicBezier(new Vector2(-365.128998F, -370.175995F), new Vector2(-364.466003F, -370.056F), new Vector2(-363.921997F, -369.819F));
+ builder.AddCubicBezier(new Vector2(-363.378998F, -369.580994F), new Vector2(-362.88501F, -369.223999F), new Vector2(-362.442993F, -368.747986F));
+ builder.AddLine(new Vector2(-359.43399F, -371.705994F));
+ builder.AddCubicBezier(new Vector2(-360.283997F, -372.623993F), new Vector2(-361.218994F, -373.320007F), new Vector2(-362.239014F, -373.796997F));
+ builder.AddCubicBezier(new Vector2(-363.259003F, -374.27301F), new Vector2(-364.466003F, -374.510986F), new Vector2(-365.859985F, -374.510986F));
+ builder.AddCubicBezier(new Vector2(-367.696014F, -374.510986F), new Vector2(-369.311005F, -374.119995F), new Vector2(-370.704987F, -373.338013F));
+ builder.AddCubicBezier(new Vector2(-372.100006F, -372.554993F), new Vector2(-373.187012F, -371.484009F), new Vector2(-373.968994F, -370.125F));
+ builder.AddCubicBezier(new Vector2(-374.752014F, -368.765015F), new Vector2(-375.141998F, -367.200012F), new Vector2(-375.141998F, -365.433014F));
+ builder.AddLine(new Vector2(-375.141998F, -337.587006F));
+ builder.AddLine(new Vector2(-370.501007F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1647()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-399.877014F, -338.14801F));
+ builder.AddCubicBezier(new Vector2(-398.212006F, -338.862F), new Vector2(-396.783997F, -339.898987F), new Vector2(-395.592987F, -341.259003F));
+ builder.AddLine(new Vector2(-398.550995F, -344.268005F));
+ builder.AddCubicBezier(new Vector2(-399.367004F, -343.31601F), new Vector2(-400.343994F, -342.60199F), new Vector2(-401.483002F, -342.126007F));
+ builder.AddCubicBezier(new Vector2(-402.622986F, -341.648987F), new Vector2(-403.872986F, -341.411987F), new Vector2(-405.231995F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-406.864014F, -341.411987F), new Vector2(-408.309998F, -341.76001F), new Vector2(-409.566986F, -342.457001F));
+ builder.AddCubicBezier(new Vector2(-410.825012F, -343.153015F), new Vector2(-411.794006F, -344.140015F), new Vector2(-412.473999F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(-413.154999F, -346.690002F), new Vector2(-413.493988F, -348.177002F), new Vector2(-413.493988F, -349.877991F));
+ builder.AddCubicBezier(new Vector2(-413.493988F, -351.542999F), new Vector2(-413.17099F, -352.989014F), new Vector2(-412.524994F, -354.213013F));
+ builder.AddCubicBezier(new Vector2(-411.880005F, -355.437012F), new Vector2(-410.962006F, -356.388F), new Vector2(-409.770996F, -357.069F));
+ builder.AddCubicBezier(new Vector2(-408.580994F, -357.748993F), new Vector2(-407.20401F, -358.088989F), new Vector2(-405.640015F, -358.088989F));
+ builder.AddCubicBezier(new Vector2(-404.144012F, -358.088989F), new Vector2(-402.868988F, -357.773987F), new Vector2(-401.815002F, -357.144989F));
+ builder.AddCubicBezier(new Vector2(-400.761993F, -356.515015F), new Vector2(-399.946014F, -355.631989F), new Vector2(-399.367004F, -354.493011F));
+ builder.AddCubicBezier(new Vector2(-398.789001F, -353.352997F), new Vector2(-398.5F, -351.968994F), new Vector2(-398.5F, -350.337006F));
+ builder.AddLine(new Vector2(-396.816986F, -351.81601F));
+ builder.AddLine(new Vector2(-414.820007F, -351.81601F));
+ builder.AddLine(new Vector2(-414.820007F, -347.990997F));
+ builder.AddLine(new Vector2(-394.368988F, -347.990997F));
+ builder.AddCubicBezier(new Vector2(-394.266998F, -348.46701F), new Vector2(-394.199005F, -348.899994F), new Vector2(-394.165009F, -349.290985F));
+ builder.AddCubicBezier(new Vector2(-394.131989F, -349.681F), new Vector2(-394.114014F, -350.048004F), new Vector2(-394.114014F, -350.388F));
+ builder.AddCubicBezier(new Vector2(-394.114014F, -352.700012F), new Vector2(-394.598999F, -354.756012F), new Vector2(-395.567993F, -356.55899F));
+ builder.AddCubicBezier(new Vector2(-396.536987F, -358.360992F), new Vector2(-397.888F, -359.772003F), new Vector2(-399.622009F, -360.791992F));
+ builder.AddCubicBezier(new Vector2(-401.355988F, -361.812012F), new Vector2(-403.328003F, -362.321991F), new Vector2(-405.537994F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-407.884003F, -362.321991F), new Vector2(-410F, -361.768005F), new Vector2(-411.886993F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(-413.773987F, -359.55899F), new Vector2(-415.270996F, -358.054993F), new Vector2(-416.375F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(-417.480011F, -354.246002F), new Vector2(-418.03299F, -352.104004F), new Vector2(-418.03299F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-418.03299F, -347.309998F), new Vector2(-417.471985F, -345.152008F), new Vector2(-416.350006F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(-415.227997F, -341.342987F), new Vector2(-413.705994F, -339.838013F), new Vector2(-411.785004F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(-409.86499F, -337.628998F), new Vector2(-407.679993F, -337.076996F), new Vector2(-405.231995F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-403.328003F, -337.076996F), new Vector2(-401.542999F, -337.43399F), new Vector2(-399.877014F, -338.14801F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1648()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-439.019989F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(-440.192993F, -343.987F), new Vector2(-441.110992F, -344.912994F), new Vector2(-441.773987F, -346.104004F));
+ builder.AddCubicBezier(new Vector2(-442.437012F, -347.294006F), new Vector2(-442.768005F, -348.653992F), new Vector2(-442.768005F, -350.18399F));
+ builder.AddCubicBezier(new Vector2(-442.768005F, -351.713989F), new Vector2(-442.437012F, -353.065002F), new Vector2(-441.773987F, -354.238007F));
+ builder.AddCubicBezier(new Vector2(-441.110992F, -355.411011F), new Vector2(-440.200989F, -356.32901F), new Vector2(-439.045013F, -356.992004F));
+ builder.AddCubicBezier(new Vector2(-437.890015F, -357.654999F), new Vector2(-436.54599F, -357.987F), new Vector2(-435.015991F, -357.987F));
+ builder.AddCubicBezier(new Vector2(-433.519989F, -357.987F), new Vector2(-432.20401F, -357.654999F), new Vector2(-431.063995F, -356.992004F));
+ builder.AddCubicBezier(new Vector2(-429.924988F, -356.32901F), new Vector2(-429.041992F, -355.411011F), new Vector2(-428.411987F, -354.238007F));
+ builder.AddCubicBezier(new Vector2(-427.78299F, -353.065002F), new Vector2(-427.467987F, -351.696014F), new Vector2(-427.467987F, -350.132996F));
+ builder.AddCubicBezier(new Vector2(-427.467987F, -348.569F), new Vector2(-427.78299F, -347.200012F), new Vector2(-428.411987F, -346.027008F));
+ builder.AddCubicBezier(new Vector2(-429.041992F, -344.854004F), new Vector2(-429.915985F, -343.944F), new Vector2(-431.037994F, -343.299011F));
+ builder.AddCubicBezier(new Vector2(-432.160004F, -342.653015F), new Vector2(-433.485992F, -342.329987F), new Vector2(-435.015991F, -342.329987F));
+ builder.AddCubicBezier(new Vector2(-436.513F, -342.329987F), new Vector2(-437.846985F, -342.661011F), new Vector2(-439.019989F, -343.324005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-430.88501F, -339.117004F));
+ builder.AddCubicBezier(new Vector2(-429.424011F, -339.864014F), new Vector2(-428.259003F, -340.908997F), new Vector2(-427.391998F, -342.252991F));
+ builder.AddCubicBezier(new Vector2(-426.524994F, -343.596008F), new Vector2(-426.040009F, -345.152008F), new Vector2(-425.937988F, -346.920013F));
+ builder.AddLine(new Vector2(-425.937988F, -353.346008F));
+ builder.AddCubicBezier(new Vector2(-426.040009F, -355.14801F), new Vector2(-426.516998F, -356.718994F), new Vector2(-427.365997F, -358.062988F));
+ builder.AddCubicBezier(new Vector2(-428.216003F, -359.406006F), new Vector2(-429.381012F, -360.451996F), new Vector2(-430.859985F, -361.200012F));
+ builder.AddCubicBezier(new Vector2(-432.338989F, -361.946991F), new Vector2(-434.029999F, -362.321991F), new Vector2(-435.93399F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-438.109985F, -362.321991F), new Vector2(-440.083008F, -361.786011F), new Vector2(-441.850006F, -360.714996F));
+ builder.AddCubicBezier(new Vector2(-443.618011F, -359.644012F), new Vector2(-445.005005F, -358.197998F), new Vector2(-446.006989F, -356.380005F));
+ builder.AddCubicBezier(new Vector2(-447.01001F, -354.561005F), new Vector2(-447.510986F, -352.496002F), new Vector2(-447.510986F, -350.18399F));
+ builder.AddCubicBezier(new Vector2(-447.510986F, -347.871002F), new Vector2(-447.001007F, -345.789001F), new Vector2(-445.980988F, -343.936005F));
+ builder.AddCubicBezier(new Vector2(-444.960999F, -342.082001F), new Vector2(-443.576996F, -340.628998F), new Vector2(-441.825012F, -339.575989F));
+ builder.AddCubicBezier(new Vector2(-440.074005F, -338.522003F), new Vector2(-438.093994F, -337.994995F), new Vector2(-435.882996F, -337.994995F));
+ builder.AddCubicBezier(new Vector2(-434.014008F, -337.994995F), new Vector2(-432.346985F, -338.368988F), new Vector2(-430.88501F, -339.117004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-429.227997F, -328.381012F));
+ builder.AddCubicBezier(new Vector2(-427.308014F, -329.350006F), new Vector2(-425.811005F, -330.709991F), new Vector2(-424.73999F, -332.460999F));
+ builder.AddCubicBezier(new Vector2(-423.669006F, -334.213013F), new Vector2(-423.132996F, -336.243988F), new Vector2(-423.132996F, -338.556F));
+ builder.AddLine(new Vector2(-423.132996F, -361.812012F));
+ builder.AddLine(new Vector2(-427.722992F, -361.812012F));
+ builder.AddLine(new Vector2(-427.722992F, -355.437012F));
+ builder.AddLine(new Vector2(-426.907013F, -350.031006F));
+ builder.AddLine(new Vector2(-427.722992F, -344.574005F));
+ builder.AddLine(new Vector2(-427.722992F, -338.556F));
+ builder.AddCubicBezier(new Vector2(-427.722992F, -336.346008F), new Vector2(-428.454987F, -334.585999F), new Vector2(-429.915985F, -333.277008F));
+ builder.AddCubicBezier(new Vector2(-431.377991F, -331.968994F), new Vector2(-433.333008F, -331.313995F), new Vector2(-435.781006F, -331.313995F));
+ builder.AddCubicBezier(new Vector2(-437.651001F, -331.313995F), new Vector2(-439.266998F, -331.644989F), new Vector2(-440.626007F, -332.308014F));
+ builder.AddCubicBezier(new Vector2(-441.985992F, -332.971008F), new Vector2(-443.158997F, -333.933014F), new Vector2(-444.144989F, -335.190002F));
+ builder.AddLine(new Vector2(-447.153992F, -332.181F));
+ builder.AddCubicBezier(new Vector2(-445.963989F, -330.515991F), new Vector2(-444.417999F, -329.222992F), new Vector2(-442.513F, -328.304993F));
+ builder.AddCubicBezier(new Vector2(-440.609009F, -327.386993F), new Vector2(-438.399994F, -326.928009F), new Vector2(-435.882996F, -326.928009F));
+ builder.AddCubicBezier(new Vector2(-433.367004F, -326.928009F), new Vector2(-431.148987F, -327.411987F), new Vector2(-429.227997F, -328.381012F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1649()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-452.610992F, -337.587006F));
+ builder.AddLine(new Vector2(-452.610992F, -361.812012F));
+ builder.AddLine(new Vector2(-457.252014F, -361.812012F));
+ builder.AddLine(new Vector2(-457.252014F, -355.895996F));
+ builder.AddLine(new Vector2(-456.38501F, -350.031006F));
+ builder.AddLine(new Vector2(-457.252014F, -344.11499F));
+ builder.AddLine(new Vector2(-457.252014F, -337.587006F));
+ builder.AddLine(new Vector2(-452.610992F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-468.625F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(-469.81601F, -343.196991F), new Vector2(-470.742004F, -344.173004F), new Vector2(-471.404999F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(-472.067993F, -346.656006F), new Vector2(-472.398987F, -348.092987F), new Vector2(-472.398987F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-472.398987F, -351.322998F), new Vector2(-472.067993F, -352.740997F), new Vector2(-471.404999F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(-470.742004F, -355.223999F), new Vector2(-469.822998F, -356.201996F), new Vector2(-468.649994F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(-467.47699F, -357.630005F), new Vector2(-466.126007F, -357.987F), new Vector2(-464.596008F, -357.987F));
+ builder.AddCubicBezier(new Vector2(-463.06601F, -357.987F), new Vector2(-461.731995F, -357.636993F), new Vector2(-460.59201F, -356.94101F));
+ builder.AddCubicBezier(new Vector2(-459.453003F, -356.243988F), new Vector2(-458.561005F, -355.265991F), new Vector2(-457.915009F, -354.009003F));
+ builder.AddCubicBezier(new Vector2(-457.269989F, -352.751007F), new Vector2(-456.946014F, -351.306F), new Vector2(-456.946014F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-456.946014F, -347.259003F), new Vector2(-457.643005F, -345.278992F), new Vector2(-459.036987F, -343.731995F));
+ builder.AddCubicBezier(new Vector2(-460.432007F, -342.18399F), new Vector2(-462.268005F, -341.411987F), new Vector2(-464.545013F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-466.075012F, -341.411987F), new Vector2(-467.434998F, -341.769012F), new Vector2(-468.625F, -342.483002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-460.363007F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(-458.902008F, -338.989014F), new Vector2(-457.737F, -340.052002F), new Vector2(-456.869995F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-456.002991F, -342.770996F), new Vector2(-455.518005F, -344.319F), new Vector2(-455.415985F, -346.053009F));
+ builder.AddLine(new Vector2(-455.415985F, -353.346008F));
+ builder.AddCubicBezier(new Vector2(-455.518005F, -355.113007F), new Vector2(-456.010986F, -356.667999F), new Vector2(-456.894989F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(-457.779999F, -359.355011F), new Vector2(-458.942993F, -360.408997F), new Vector2(-460.388F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(-461.834015F, -361.938995F), new Vector2(-463.473999F, -362.321991F), new Vector2(-465.309998F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-467.553986F, -362.321991F), new Vector2(-469.567993F, -361.760986F), new Vector2(-471.352997F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(-473.138F, -359.516998F), new Vector2(-474.549011F, -358.003998F), new Vector2(-475.585999F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(-476.623993F, -354.195007F), new Vector2(-477.141998F, -352.053009F), new Vector2(-477.141998F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-477.141998F, -347.294006F), new Vector2(-476.623993F, -345.152008F), new Vector2(-475.585999F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(-474.549011F, -341.342987F), new Vector2(-473.138F, -339.838013F), new Vector2(-471.352997F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(-469.567993F, -337.628998F), new Vector2(-467.553986F, -337.076996F), new Vector2(-465.309998F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-463.473999F, -337.076996F), new Vector2(-461.825012F, -337.459015F), new Vector2(-460.363007F, -338.223999F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1650()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-483.186005F, -339.06601F));
+ builder.AddCubicBezier(new Vector2(-481.571991F, -340.391998F), new Vector2(-480.763F, -342.194F), new Vector2(-480.763F, -344.471985F));
+ builder.AddCubicBezier(new Vector2(-480.763F, -345.967987F), new Vector2(-481.078003F, -347.174988F), new Vector2(-481.707001F, -348.092987F));
+ builder.AddCubicBezier(new Vector2(-482.337006F, -349.010986F), new Vector2(-483.143005F, -349.742004F), new Vector2(-484.128998F, -350.286011F));
+ builder.AddCubicBezier(new Vector2(-485.115997F, -350.82901F), new Vector2(-486.152008F, -351.261993F), new Vector2(-487.23999F, -351.585999F));
+ builder.AddCubicBezier(new Vector2(-488.32901F, -351.908997F), new Vector2(-489.373993F, -352.223999F), new Vector2(-490.376007F, -352.529999F));
+ builder.AddCubicBezier(new Vector2(-491.378998F, -352.835999F), new Vector2(-492.187012F, -353.209991F), new Vector2(-492.799011F, -353.652008F));
+ builder.AddCubicBezier(new Vector2(-493.411011F, -354.092987F), new Vector2(-493.71701F, -354.722992F), new Vector2(-493.71701F, -355.539001F));
+ builder.AddCubicBezier(new Vector2(-493.71701F, -356.321014F), new Vector2(-493.368988F, -356.949005F), new Vector2(-492.671997F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(-491.976013F, -357.902008F), new Vector2(-490.963013F, -358.140015F), new Vector2(-489.636993F, -358.140015F));
+ builder.AddCubicBezier(new Vector2(-488.380005F, -358.140015F), new Vector2(-487.257996F, -357.902008F), new Vector2(-486.270996F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(-485.285004F, -356.949005F), new Vector2(-484.434998F, -356.269989F), new Vector2(-483.721008F, -355.385986F));
+ builder.AddLine(new Vector2(-480.763F, -358.343994F));
+ builder.AddCubicBezier(new Vector2(-481.714996F, -359.670013F), new Vector2(-482.931F, -360.664001F), new Vector2(-484.410004F, -361.326996F));
+ builder.AddCubicBezier(new Vector2(-485.889008F, -361.98999F), new Vector2(-487.579987F, -362.321991F), new Vector2(-489.484009F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-491.286987F, -362.321991F), new Vector2(-492.833008F, -362.03299F), new Vector2(-494.125F, -361.454987F));
+ builder.AddCubicBezier(new Vector2(-495.417999F, -360.876007F), new Vector2(-496.411987F, -360.052002F), new Vector2(-497.108002F, -358.980988F));
+ builder.AddCubicBezier(new Vector2(-497.804993F, -357.910004F), new Vector2(-498.153992F, -356.643005F), new Vector2(-498.153992F, -355.182007F));
+ builder.AddCubicBezier(new Vector2(-498.153992F, -353.720001F), new Vector2(-497.841003F, -352.536987F), new Vector2(-497.210999F, -351.636993F));
+ builder.AddCubicBezier(new Vector2(-496.582001F, -350.735992F), new Vector2(-495.774994F, -350.031006F), new Vector2(-494.787994F, -349.520996F));
+ builder.AddCubicBezier(new Vector2(-493.802002F, -349.010986F), new Vector2(-492.756012F, -348.602997F), new Vector2(-491.651001F, -348.296997F));
+ builder.AddCubicBezier(new Vector2(-490.546997F, -347.990997F), new Vector2(-489.502014F, -347.675995F), new Vector2(-488.515015F, -347.352997F));
+ builder.AddCubicBezier(new Vector2(-487.528992F, -347.028992F), new Vector2(-486.721985F, -346.621002F), new Vector2(-486.09201F, -346.128998F));
+ builder.AddCubicBezier(new Vector2(-485.463013F, -345.635986F), new Vector2(-485.148987F, -344.947998F), new Vector2(-485.148987F, -344.063995F));
+ builder.AddCubicBezier(new Vector2(-485.148987F, -343.178986F), new Vector2(-485.540009F, -342.48999F), new Vector2(-486.321991F, -341.997986F));
+ builder.AddCubicBezier(new Vector2(-487.105011F, -341.505005F), new Vector2(-488.209015F, -341.259003F), new Vector2(-489.636993F, -341.259003F));
+ builder.AddCubicBezier(new Vector2(-491.065002F, -341.259003F), new Vector2(-492.358002F, -341.520996F), new Vector2(-493.513F, -342.049011F));
+ builder.AddCubicBezier(new Vector2(-494.669006F, -342.575989F), new Vector2(-495.688995F, -343.382996F), new Vector2(-496.572998F, -344.471985F));
+ builder.AddLine(new Vector2(-499.531006F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-498.783997F, -340.596008F), new Vector2(-497.90799F, -339.804993F), new Vector2(-496.904999F, -339.141998F));
+ builder.AddCubicBezier(new Vector2(-495.903015F, -338.479004F), new Vector2(-494.787994F, -337.968994F), new Vector2(-493.563995F, -337.612F));
+ builder.AddCubicBezier(new Vector2(-492.339996F, -337.255005F), new Vector2(-491.048004F, -337.076996F), new Vector2(-489.687988F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-486.967987F, -337.076996F), new Vector2(-484.800995F, -337.73999F), new Vector2(-483.186005F, -339.06601F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1651()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-504.962006F, -339.06601F));
+ builder.AddCubicBezier(new Vector2(-503.347992F, -340.391998F), new Vector2(-502.540009F, -342.194F), new Vector2(-502.540009F, -344.471985F));
+ builder.AddCubicBezier(new Vector2(-502.540009F, -345.967987F), new Vector2(-502.854004F, -347.174988F), new Vector2(-503.483002F, -348.092987F));
+ builder.AddCubicBezier(new Vector2(-504.113007F, -349.010986F), new Vector2(-504.920013F, -349.742004F), new Vector2(-505.906006F, -350.286011F));
+ builder.AddCubicBezier(new Vector2(-506.893005F, -350.82901F), new Vector2(-507.928986F, -351.261993F), new Vector2(-509.016998F, -351.585999F));
+ builder.AddCubicBezier(new Vector2(-510.105988F, -351.908997F), new Vector2(-511.151001F, -352.223999F), new Vector2(-512.153992F, -352.529999F));
+ builder.AddCubicBezier(new Vector2(-513.156982F, -352.835999F), new Vector2(-513.963989F, -353.209991F), new Vector2(-514.575989F, -353.652008F));
+ builder.AddCubicBezier(new Vector2(-515.187988F, -354.092987F), new Vector2(-515.494019F, -354.722992F), new Vector2(-515.494019F, -355.539001F));
+ builder.AddCubicBezier(new Vector2(-515.494019F, -356.321014F), new Vector2(-515.14502F, -356.949005F), new Vector2(-514.447998F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(-513.752014F, -357.902008F), new Vector2(-512.73999F, -358.140015F), new Vector2(-511.414001F, -358.140015F));
+ builder.AddCubicBezier(new Vector2(-510.157013F, -358.140015F), new Vector2(-509.035004F, -357.902008F), new Vector2(-508.048004F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(-507.062012F, -356.949005F), new Vector2(-506.212006F, -356.269989F), new Vector2(-505.497986F, -355.385986F));
+ builder.AddLine(new Vector2(-502.540009F, -358.343994F));
+ builder.AddCubicBezier(new Vector2(-503.492004F, -359.670013F), new Vector2(-504.707001F, -360.664001F), new Vector2(-506.186005F, -361.326996F));
+ builder.AddCubicBezier(new Vector2(-507.665009F, -361.98999F), new Vector2(-509.356995F, -362.321991F), new Vector2(-511.260986F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-513.064026F, -362.321991F), new Vector2(-514.609985F, -362.03299F), new Vector2(-515.901978F, -361.454987F));
+ builder.AddCubicBezier(new Vector2(-517.195007F, -360.876007F), new Vector2(-518.189026F, -360.052002F), new Vector2(-518.88501F, -358.980988F));
+ builder.AddCubicBezier(new Vector2(-519.58197F, -357.910004F), new Vector2(-519.93103F, -356.643005F), new Vector2(-519.93103F, -355.182007F));
+ builder.AddCubicBezier(new Vector2(-519.93103F, -353.720001F), new Vector2(-519.617004F, -352.536987F), new Vector2(-518.987F, -351.636993F));
+ builder.AddCubicBezier(new Vector2(-518.357971F, -350.735992F), new Vector2(-517.552002F, -350.031006F), new Vector2(-516.565002F, -349.520996F));
+ builder.AddCubicBezier(new Vector2(-515.578979F, -349.010986F), new Vector2(-514.53302F, -348.602997F), new Vector2(-513.427979F, -348.296997F));
+ builder.AddCubicBezier(new Vector2(-512.323975F, -347.990997F), new Vector2(-511.278992F, -347.675995F), new Vector2(-510.291992F, -347.352997F));
+ builder.AddCubicBezier(new Vector2(-509.306F, -347.028992F), new Vector2(-508.498993F, -346.621002F), new Vector2(-507.868988F, -346.128998F));
+ builder.AddCubicBezier(new Vector2(-507.23999F, -345.635986F), new Vector2(-506.925995F, -344.947998F), new Vector2(-506.925995F, -344.063995F));
+ builder.AddCubicBezier(new Vector2(-506.925995F, -343.178986F), new Vector2(-507.316986F, -342.48999F), new Vector2(-508.098999F, -341.997986F));
+ builder.AddCubicBezier(new Vector2(-508.881989F, -341.505005F), new Vector2(-509.985992F, -341.259003F), new Vector2(-511.414001F, -341.259003F));
+ builder.AddCubicBezier(new Vector2(-512.84198F, -341.259003F), new Vector2(-514.13501F, -341.520996F), new Vector2(-515.289978F, -342.049011F));
+ builder.AddCubicBezier(new Vector2(-516.445984F, -342.575989F), new Vector2(-517.466003F, -343.382996F), new Vector2(-518.349976F, -344.471985F));
+ builder.AddLine(new Vector2(-521.307983F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-520.560974F, -340.596008F), new Vector2(-519.684021F, -339.804993F), new Vector2(-518.68103F, -339.141998F));
+ builder.AddCubicBezier(new Vector2(-517.679016F, -338.479004F), new Vector2(-516.565002F, -337.968994F), new Vector2(-515.341003F, -337.612F));
+ builder.AddCubicBezier(new Vector2(-514.117004F, -337.255005F), new Vector2(-512.825012F, -337.076996F), new Vector2(-511.464996F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-508.744995F, -337.076996F), new Vector2(-506.576996F, -337.73999F), new Vector2(-504.962006F, -339.06601F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1652()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-529.927002F, -338.14801F));
+ builder.AddCubicBezier(new Vector2(-528.262024F, -338.862F), new Vector2(-526.833008F, -339.898987F), new Vector2(-525.643005F, -341.259003F));
+ builder.AddLine(new Vector2(-528.601013F, -344.268005F));
+ builder.AddCubicBezier(new Vector2(-529.416992F, -343.31601F), new Vector2(-530.39502F, -342.60199F), new Vector2(-531.533997F, -342.126007F));
+ builder.AddCubicBezier(new Vector2(-532.674011F, -341.648987F), new Vector2(-533.922974F, -341.411987F), new Vector2(-535.281982F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-536.914001F, -341.411987F), new Vector2(-538.359009F, -341.76001F), new Vector2(-539.617004F, -342.457001F));
+ builder.AddCubicBezier(new Vector2(-540.875F, -343.153015F), new Vector2(-541.843994F, -344.140015F), new Vector2(-542.523987F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(-543.205017F, -346.690002F), new Vector2(-543.544006F, -348.177002F), new Vector2(-543.544006F, -349.877991F));
+ builder.AddCubicBezier(new Vector2(-543.544006F, -351.542999F), new Vector2(-543.221008F, -352.989014F), new Vector2(-542.575012F, -354.213013F));
+ builder.AddCubicBezier(new Vector2(-541.929993F, -355.437012F), new Vector2(-541.012024F, -356.388F), new Vector2(-539.820984F, -357.069F));
+ builder.AddCubicBezier(new Vector2(-538.630981F, -357.748993F), new Vector2(-537.254028F, -358.088989F), new Vector2(-535.690002F, -358.088989F));
+ builder.AddCubicBezier(new Vector2(-534.19397F, -358.088989F), new Vector2(-532.919006F, -357.773987F), new Vector2(-531.86499F, -357.144989F));
+ builder.AddCubicBezier(new Vector2(-530.812012F, -356.515015F), new Vector2(-529.994995F, -355.631989F), new Vector2(-529.416992F, -354.493011F));
+ builder.AddCubicBezier(new Vector2(-528.838989F, -353.352997F), new Vector2(-528.549988F, -351.968994F), new Vector2(-528.549988F, -350.337006F));
+ builder.AddLine(new Vector2(-526.867004F, -351.81601F));
+ builder.AddLine(new Vector2(-544.869995F, -351.81601F));
+ builder.AddLine(new Vector2(-544.869995F, -347.990997F));
+ builder.AddLine(new Vector2(-524.419006F, -347.990997F));
+ builder.AddCubicBezier(new Vector2(-524.317017F, -348.46701F), new Vector2(-524.249023F, -348.899994F), new Vector2(-524.215027F, -349.290985F));
+ builder.AddCubicBezier(new Vector2(-524.182007F, -349.681F), new Vector2(-524.164001F, -350.048004F), new Vector2(-524.164001F, -350.388F));
+ builder.AddCubicBezier(new Vector2(-524.164001F, -352.700012F), new Vector2(-524.648987F, -354.756012F), new Vector2(-525.617981F, -356.55899F));
+ builder.AddCubicBezier(new Vector2(-526.586975F, -358.360992F), new Vector2(-527.937988F, -359.772003F), new Vector2(-529.671997F, -360.791992F));
+ builder.AddCubicBezier(new Vector2(-531.406006F, -361.812012F), new Vector2(-533.377991F, -362.321991F), new Vector2(-535.588013F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-537.934021F, -362.321991F), new Vector2(-540.051025F, -361.768005F), new Vector2(-541.937988F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(-543.825012F, -359.55899F), new Vector2(-545.322021F, -358.054993F), new Vector2(-546.426025F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(-547.531006F, -354.246002F), new Vector2(-548.083008F, -352.104004F), new Vector2(-548.083008F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-548.083008F, -347.309998F), new Vector2(-547.521973F, -345.152008F), new Vector2(-546.400024F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(-545.278015F, -341.342987F), new Vector2(-543.757019F, -339.838013F), new Vector2(-541.835999F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(-539.916016F, -337.628998F), new Vector2(-537.72998F, -337.076996F), new Vector2(-535.281982F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-533.377991F, -337.076996F), new Vector2(-531.593018F, -337.43399F), new Vector2(-529.927002F, -338.14801F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1653()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-552.723999F, -337.587006F));
+ builder.AddLine(new Vector2(-552.723999F, -353.141998F));
+ builder.AddCubicBezier(new Vector2(-552.723999F, -355.04599F), new Vector2(-553.140991F, -356.678009F), new Vector2(-553.973999F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(-554.807983F, -359.397003F), new Vector2(-555.919983F, -360.451996F), new Vector2(-557.314026F, -361.200012F));
+ builder.AddCubicBezier(new Vector2(-558.708984F, -361.946991F), new Vector2(-560.289978F, -362.321991F), new Vector2(-562.057007F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-563.757996F, -362.321991F), new Vector2(-565.320984F, -361.938995F), new Vector2(-566.749023F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(-568.177002F, -360.408997F), new Vector2(-569.34198F, -359.355011F), new Vector2(-570.242004F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(-571.143005F, -356.667999F), new Vector2(-571.64502F, -355.062012F), new Vector2(-571.747009F, -353.192993F));
+ builder.AddLine(new Vector2(-569.145996F, -352.223999F));
+ builder.AddCubicBezier(new Vector2(-569.145996F, -353.447998F), new Vector2(-568.874023F, -354.484985F), new Vector2(-568.330017F, -355.334991F));
+ builder.AddCubicBezier(new Vector2(-567.786987F, -356.18399F), new Vector2(-567.064026F, -356.846985F), new Vector2(-566.163025F, -357.324005F));
+ builder.AddCubicBezier(new Vector2(-565.262024F, -357.799988F), new Vector2(-564.25F, -358.037994F), new Vector2(-563.127991F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(-561.495972F, -358.037994F), new Vector2(-560.127991F, -357.519012F), new Vector2(-559.02301F, -356.481995F));
+ builder.AddCubicBezier(new Vector2(-557.919006F, -355.444F), new Vector2(-557.36499F, -354.026001F), new Vector2(-557.36499F, -352.223999F));
+ builder.AddLine(new Vector2(-557.36499F, -337.587006F));
+ builder.AddLine(new Vector2(-552.723999F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-569.145996F, -337.587006F));
+ builder.AddLine(new Vector2(-569.145996F, -353.192993F));
+ builder.AddCubicBezier(new Vector2(-569.145996F, -355.062012F), new Vector2(-569.546997F, -356.678009F), new Vector2(-570.344971F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(-571.143982F, -359.397003F), new Vector2(-572.231995F, -360.451996F), new Vector2(-573.609009F, -361.200012F));
+ builder.AddCubicBezier(new Vector2(-574.986023F, -361.946991F), new Vector2(-576.523987F, -362.321991F), new Vector2(-578.223999F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-579.958008F, -362.321991F), new Vector2(-581.521973F, -361.938995F), new Vector2(-582.916016F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(-584.310974F, -360.408997F), new Vector2(-585.40802F, -359.346008F), new Vector2(-586.205994F, -357.987F));
+ builder.AddCubicBezier(new Vector2(-587.005005F, -356.627014F), new Vector2(-587.403992F, -355.028992F), new Vector2(-587.403992F, -353.192993F));
+ builder.AddLine(new Vector2(-585.517029F, -352.223999F));
+ builder.AddCubicBezier(new Vector2(-585.517029F, -353.447998F), new Vector2(-585.244995F, -354.484985F), new Vector2(-584.700989F, -355.334991F));
+ builder.AddCubicBezier(new Vector2(-584.156982F, -356.18399F), new Vector2(-583.44397F, -356.846985F), new Vector2(-582.559021F, -357.324005F));
+ builder.AddCubicBezier(new Vector2(-581.674988F, -357.799988F), new Vector2(-580.671997F, -358.037994F), new Vector2(-579.549988F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(-577.88501F, -358.037994F), new Vector2(-576.497986F, -357.519012F), new Vector2(-575.393005F, -356.481995F));
+ builder.AddCubicBezier(new Vector2(-574.289001F, -355.444F), new Vector2(-573.736023F, -354.026001F), new Vector2(-573.736023F, -352.223999F));
+ builder.AddLine(new Vector2(-573.736023F, -337.587006F));
+ builder.AddLine(new Vector2(-569.145996F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-585.517029F, -337.587006F));
+ builder.AddLine(new Vector2(-585.517029F, -361.812012F));
+ builder.AddLine(new Vector2(-590.106995F, -361.812012F));
+ builder.AddLine(new Vector2(-590.106995F, -337.587006F));
+ builder.AddLine(new Vector2(-585.517029F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1654()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-608.237F, -339.06601F));
+ builder.AddCubicBezier(new Vector2(-606.622986F, -340.391998F), new Vector2(-605.815002F, -342.194F), new Vector2(-605.815002F, -344.471985F));
+ builder.AddCubicBezier(new Vector2(-605.815002F, -345.967987F), new Vector2(-606.129028F, -347.174988F), new Vector2(-606.757996F, -348.092987F));
+ builder.AddCubicBezier(new Vector2(-607.388F, -349.010986F), new Vector2(-608.195007F, -349.742004F), new Vector2(-609.18103F, -350.286011F));
+ builder.AddCubicBezier(new Vector2(-610.16803F, -350.82901F), new Vector2(-611.203979F, -351.261993F), new Vector2(-612.291992F, -351.585999F));
+ builder.AddCubicBezier(new Vector2(-613.380981F, -351.908997F), new Vector2(-614.426025F, -352.223999F), new Vector2(-615.429016F, -352.529999F));
+ builder.AddCubicBezier(new Vector2(-616.432007F, -352.835999F), new Vector2(-617.239014F, -353.209991F), new Vector2(-617.851013F, -353.652008F));
+ builder.AddCubicBezier(new Vector2(-618.463013F, -354.092987F), new Vector2(-618.768982F, -354.722992F), new Vector2(-618.768982F, -355.539001F));
+ builder.AddCubicBezier(new Vector2(-618.768982F, -356.321014F), new Vector2(-618.421021F, -356.949005F), new Vector2(-617.723999F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(-617.028015F, -357.902008F), new Vector2(-616.015015F, -358.140015F), new Vector2(-614.689026F, -358.140015F));
+ builder.AddCubicBezier(new Vector2(-613.43103F, -358.140015F), new Vector2(-612.309998F, -357.902008F), new Vector2(-611.322998F, -357.425995F));
+ builder.AddCubicBezier(new Vector2(-610.336975F, -356.949005F), new Vector2(-609.487F, -356.269989F), new Vector2(-608.77301F, -355.385986F));
+ builder.AddLine(new Vector2(-605.815002F, -358.343994F));
+ builder.AddCubicBezier(new Vector2(-606.767029F, -359.670013F), new Vector2(-607.981995F, -360.664001F), new Vector2(-609.460999F, -361.326996F));
+ builder.AddCubicBezier(new Vector2(-610.940002F, -361.98999F), new Vector2(-612.632019F, -362.321991F), new Vector2(-614.536011F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-616.338989F, -362.321991F), new Vector2(-617.88501F, -362.03299F), new Vector2(-619.177002F, -361.454987F));
+ builder.AddCubicBezier(new Vector2(-620.469971F, -360.876007F), new Vector2(-621.465027F, -360.052002F), new Vector2(-622.161011F, -358.980988F));
+ builder.AddCubicBezier(new Vector2(-622.857971F, -357.910004F), new Vector2(-623.205994F, -356.643005F), new Vector2(-623.205994F, -355.182007F));
+ builder.AddCubicBezier(new Vector2(-623.205994F, -353.720001F), new Vector2(-622.893005F, -352.536987F), new Vector2(-622.263F, -351.636993F));
+ builder.AddCubicBezier(new Vector2(-621.633972F, -350.735992F), new Vector2(-620.827026F, -350.031006F), new Vector2(-619.840027F, -349.520996F));
+ builder.AddCubicBezier(new Vector2(-618.854004F, -349.010986F), new Vector2(-617.807983F, -348.602997F), new Vector2(-616.703003F, -348.296997F));
+ builder.AddCubicBezier(new Vector2(-615.598999F, -347.990997F), new Vector2(-614.554016F, -347.675995F), new Vector2(-613.567017F, -347.352997F));
+ builder.AddCubicBezier(new Vector2(-612.580994F, -347.028992F), new Vector2(-611.775024F, -346.621002F), new Vector2(-611.14502F, -346.128998F));
+ builder.AddCubicBezier(new Vector2(-610.515991F, -345.635986F), new Vector2(-610.200989F, -344.947998F), new Vector2(-610.200989F, -344.063995F));
+ builder.AddCubicBezier(new Vector2(-610.200989F, -343.178986F), new Vector2(-610.59198F, -342.48999F), new Vector2(-611.374023F, -341.997986F));
+ builder.AddCubicBezier(new Vector2(-612.156982F, -341.505005F), new Vector2(-613.260986F, -341.259003F), new Vector2(-614.689026F, -341.259003F));
+ builder.AddCubicBezier(new Vector2(-616.117004F, -341.259003F), new Vector2(-617.409973F, -341.520996F), new Vector2(-618.565002F, -342.049011F));
+ builder.AddCubicBezier(new Vector2(-619.721008F, -342.575989F), new Vector2(-620.741028F, -343.382996F), new Vector2(-621.625F, -344.471985F));
+ builder.AddLine(new Vector2(-624.583008F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-623.835999F, -340.596008F), new Vector2(-622.958984F, -339.804993F), new Vector2(-621.955994F, -339.141998F));
+ builder.AddCubicBezier(new Vector2(-620.953979F, -338.479004F), new Vector2(-619.840027F, -337.968994F), new Vector2(-618.616028F, -337.612F));
+ builder.AddCubicBezier(new Vector2(-617.392029F, -337.255005F), new Vector2(-616.099976F, -337.076996F), new Vector2(-614.73999F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-612.02002F, -337.076996F), new Vector2(-609.85199F, -337.73999F), new Vector2(-608.237F, -339.06601F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1655()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-629.427979F, -367.497986F));
+ builder.AddCubicBezier(new Vector2(-628.883972F, -368.05899F), new Vector2(-628.612F, -368.765015F), new Vector2(-628.612F, -369.61499F));
+ builder.AddCubicBezier(new Vector2(-628.612F, -370.431F), new Vector2(-628.883972F, -371.118988F), new Vector2(-629.427979F, -371.679993F));
+ builder.AddCubicBezier(new Vector2(-629.971985F, -372.240997F), new Vector2(-630.669983F, -372.522003F), new Vector2(-631.518982F, -372.522003F));
+ builder.AddCubicBezier(new Vector2(-632.369019F, -372.522003F), new Vector2(-633.065979F, -372.240997F), new Vector2(-633.609985F, -371.679993F));
+ builder.AddCubicBezier(new Vector2(-634.153992F, -371.118988F), new Vector2(-634.426025F, -370.431F), new Vector2(-634.426025F, -369.61499F));
+ builder.AddCubicBezier(new Vector2(-634.426025F, -368.765015F), new Vector2(-634.153992F, -368.05899F), new Vector2(-633.609985F, -367.497986F));
+ builder.AddCubicBezier(new Vector2(-633.065979F, -366.937012F), new Vector2(-632.369019F, -366.657013F), new Vector2(-631.518982F, -366.657013F));
+ builder.AddCubicBezier(new Vector2(-630.669983F, -366.657013F), new Vector2(-629.971985F, -366.937012F), new Vector2(-629.427979F, -367.497986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-629.223999F, -337.587006F));
+ builder.AddLine(new Vector2(-629.223999F, -361.812012F));
+ builder.AddLine(new Vector2(-633.86499F, -361.812012F));
+ builder.AddLine(new Vector2(-633.86499F, -337.587006F));
+ builder.AddLine(new Vector2(-629.223999F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1656()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-657.223022F, -337.587006F));
+ builder.AddLine(new Vector2(-657.223022F, -374.001007F));
+ builder.AddLine(new Vector2(-661.812988F, -374.001007F));
+ builder.AddLine(new Vector2(-661.812988F, -337.587006F));
+ builder.AddLine(new Vector2(-657.223022F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-640.086975F, -337.587006F));
+ builder.AddLine(new Vector2(-640.086975F, -352.631989F));
+ builder.AddCubicBezier(new Vector2(-640.086975F, -354.536011F), new Vector2(-640.494995F, -356.218994F), new Vector2(-641.310974F, -357.681F));
+ builder.AddCubicBezier(new Vector2(-642.127014F, -359.141998F), new Vector2(-643.241028F, -360.282013F), new Vector2(-644.651001F, -361.097992F));
+ builder.AddCubicBezier(new Vector2(-646.062012F, -361.914001F), new Vector2(-647.685974F, -362.321991F), new Vector2(-649.521973F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-651.357971F, -362.321991F), new Vector2(-653.007996F, -361.904999F), new Vector2(-654.468994F, -361.071991F));
+ builder.AddCubicBezier(new Vector2(-655.93103F, -360.238007F), new Vector2(-657.070007F, -359.109009F), new Vector2(-657.885986F, -357.681F));
+ builder.AddCubicBezier(new Vector2(-658.702026F, -356.252991F), new Vector2(-659.109985F, -354.621002F), new Vector2(-659.109985F, -352.785004F));
+ builder.AddLine(new Vector2(-657.223022F, -351.713989F));
+ builder.AddCubicBezier(new Vector2(-657.223022F, -352.937988F), new Vector2(-656.950989F, -354.026001F), new Vector2(-656.406982F, -354.977997F));
+ builder.AddCubicBezier(new Vector2(-655.862976F, -355.928986F), new Vector2(-655.11499F, -356.678009F), new Vector2(-654.163025F, -357.221985F));
+ builder.AddCubicBezier(new Vector2(-653.211975F, -357.765015F), new Vector2(-652.122986F, -358.037994F), new Vector2(-650.898987F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(-649.062988F, -358.037994F), new Vector2(-647.577026F, -357.442993F), new Vector2(-646.437012F, -356.252991F));
+ builder.AddCubicBezier(new Vector2(-645.297974F, -355.062012F), new Vector2(-644.728027F, -353.549988F), new Vector2(-644.728027F, -351.713989F));
+ builder.AddLine(new Vector2(-644.728027F, -337.587006F));
+ builder.AddLine(new Vector2(-640.086975F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1657()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-666.301025F, -357.630005F));
+ builder.AddLine(new Vector2(-666.301025F, -361.812012F));
+ builder.AddLine(new Vector2(-682.825012F, -361.812012F));
+ builder.AddLine(new Vector2(-682.825012F, -357.630005F));
+ builder.AddLine(new Vector2(-666.301025F, -357.630005F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-672.268005F, -337.587006F));
+ builder.AddLine(new Vector2(-672.268005F, -371.960999F));
+ builder.AddLine(new Vector2(-676.857971F, -371.960999F));
+ builder.AddLine(new Vector2(-676.857971F, -337.587006F));
+ builder.AddLine(new Vector2(-672.268005F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1658()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-701.898987F, -338.14801F));
+ builder.AddCubicBezier(new Vector2(-700.234009F, -338.862F), new Vector2(-698.804993F, -339.898987F), new Vector2(-697.61499F, -341.259003F));
+ builder.AddLine(new Vector2(-700.572998F, -344.268005F));
+ builder.AddCubicBezier(new Vector2(-701.388977F, -343.31601F), new Vector2(-702.367004F, -342.60199F), new Vector2(-703.505981F, -342.126007F));
+ builder.AddCubicBezier(new Vector2(-704.645996F, -341.648987F), new Vector2(-705.89502F, -341.411987F), new Vector2(-707.254028F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-708.885986F, -341.411987F), new Vector2(-710.330994F, -341.76001F), new Vector2(-711.588989F, -342.457001F));
+ builder.AddCubicBezier(new Vector2(-712.846985F, -343.153015F), new Vector2(-713.815979F, -344.140015F), new Vector2(-714.495972F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(-715.177002F, -346.690002F), new Vector2(-715.515991F, -348.177002F), new Vector2(-715.515991F, -349.877991F));
+ builder.AddCubicBezier(new Vector2(-715.515991F, -351.542999F), new Vector2(-715.192993F, -352.989014F), new Vector2(-714.546997F, -354.213013F));
+ builder.AddCubicBezier(new Vector2(-713.901978F, -355.437012F), new Vector2(-712.984009F, -356.388F), new Vector2(-711.79303F, -357.069F));
+ builder.AddCubicBezier(new Vector2(-710.603027F, -357.748993F), new Vector2(-709.226013F, -358.088989F), new Vector2(-707.661987F, -358.088989F));
+ builder.AddCubicBezier(new Vector2(-706.166016F, -358.088989F), new Vector2(-704.890991F, -357.773987F), new Vector2(-703.836975F, -357.144989F));
+ builder.AddCubicBezier(new Vector2(-702.783997F, -356.515015F), new Vector2(-701.96698F, -355.631989F), new Vector2(-701.388977F, -354.493011F));
+ builder.AddCubicBezier(new Vector2(-700.810974F, -353.352997F), new Vector2(-700.521973F, -351.968994F), new Vector2(-700.521973F, -350.337006F));
+ builder.AddLine(new Vector2(-698.838989F, -351.81601F));
+ builder.AddLine(new Vector2(-716.84198F, -351.81601F));
+ builder.AddLine(new Vector2(-716.84198F, -347.990997F));
+ builder.AddLine(new Vector2(-696.390991F, -347.990997F));
+ builder.AddCubicBezier(new Vector2(-696.289001F, -348.46701F), new Vector2(-696.221008F, -348.899994F), new Vector2(-696.187012F, -349.290985F));
+ builder.AddCubicBezier(new Vector2(-696.153992F, -349.681F), new Vector2(-696.135986F, -350.048004F), new Vector2(-696.135986F, -350.388F));
+ builder.AddCubicBezier(new Vector2(-696.135986F, -352.700012F), new Vector2(-696.620972F, -354.756012F), new Vector2(-697.590027F, -356.55899F));
+ builder.AddCubicBezier(new Vector2(-698.559021F, -358.360992F), new Vector2(-699.909973F, -359.772003F), new Vector2(-701.643982F, -360.791992F));
+ builder.AddCubicBezier(new Vector2(-703.377991F, -361.812012F), new Vector2(-705.349976F, -362.321991F), new Vector2(-707.559998F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-709.906006F, -362.321991F), new Vector2(-712.02301F, -361.768005F), new Vector2(-713.909973F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(-715.796997F, -359.55899F), new Vector2(-717.294006F, -358.054993F), new Vector2(-718.39801F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(-719.502991F, -354.246002F), new Vector2(-720.054993F, -352.104004F), new Vector2(-720.054993F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-720.054993F, -347.309998F), new Vector2(-719.494019F, -345.152008F), new Vector2(-718.372009F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(-717.25F, -341.342987F), new Vector2(-715.729004F, -339.838013F), new Vector2(-713.807983F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(-711.888F, -337.628998F), new Vector2(-709.702026F, -337.076996F), new Vector2(-707.254028F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-705.349976F, -337.076996F), new Vector2(-703.565002F, -337.43399F), new Vector2(-701.898987F, -338.14801F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1659()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-740.174011F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(-741.346985F, -343.196991F), new Vector2(-742.249023F, -344.173004F), new Vector2(-742.877991F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(-743.507996F, -346.656006F), new Vector2(-743.820984F, -348.075012F), new Vector2(-743.820984F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-743.820984F, -351.306F), new Vector2(-743.497986F, -352.740997F), new Vector2(-742.85199F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(-742.205994F, -355.223999F), new Vector2(-741.304993F, -356.201996F), new Vector2(-740.148987F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(-738.994019F, -357.630005F), new Vector2(-737.66803F, -357.987F), new Vector2(-736.171021F, -357.987F));
+ builder.AddCubicBezier(new Vector2(-734.640991F, -357.987F), new Vector2(-733.297974F, -357.630005F), new Vector2(-732.142029F, -356.915985F));
+ builder.AddCubicBezier(new Vector2(-730.987F, -356.201996F), new Vector2(-730.075989F, -355.223999F), new Vector2(-729.413025F, -353.983002F));
+ builder.AddCubicBezier(new Vector2(-728.75F, -352.740997F), new Vector2(-728.419006F, -351.322998F), new Vector2(-728.419006F, -349.725006F));
+ builder.AddCubicBezier(new Vector2(-728.419006F, -348.092987F), new Vector2(-728.75F, -346.656006F), new Vector2(-729.413025F, -345.415009F));
+ builder.AddCubicBezier(new Vector2(-730.075989F, -344.173004F), new Vector2(-730.987F, -343.196991F), new Vector2(-732.142029F, -342.483002F));
+ builder.AddCubicBezier(new Vector2(-733.297974F, -341.769012F), new Vector2(-734.640991F, -341.411987F), new Vector2(-736.171021F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-737.66803F, -341.411987F), new Vector2(-739.000977F, -341.769012F), new Vector2(-740.174011F, -342.483002F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-743.565979F, -327.437988F));
+ builder.AddLine(new Vector2(-743.565979F, -343.656006F));
+ builder.AddLine(new Vector2(-744.432983F, -349.571991F));
+ builder.AddLine(new Vector2(-743.565979F, -355.437012F));
+ builder.AddLine(new Vector2(-743.565979F, -361.812012F));
+ builder.AddLine(new Vector2(-748.156006F, -361.812012F));
+ builder.AddLine(new Vector2(-748.156006F, -327.437988F));
+ builder.AddLine(new Vector2(-743.565979F, -327.437988F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-729.413025F, -338.734009F));
+ builder.AddCubicBezier(new Vector2(-727.627991F, -339.838013F), new Vector2(-726.226013F, -341.342987F), new Vector2(-725.205994F, -343.247986F));
+ builder.AddCubicBezier(new Vector2(-724.185974F, -345.152008F), new Vector2(-723.676025F, -347.294006F), new Vector2(-723.676025F, -349.674011F));
+ builder.AddCubicBezier(new Vector2(-723.676025F, -352.053009F), new Vector2(-724.185974F, -354.195007F), new Vector2(-725.205994F, -356.100006F));
+ builder.AddCubicBezier(new Vector2(-726.226013F, -358.003998F), new Vector2(-727.627991F, -359.516998F), new Vector2(-729.413025F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(-731.197998F, -361.760986F), new Vector2(-733.195984F, -362.321991F), new Vector2(-735.406006F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-737.208984F, -362.321991F), new Vector2(-738.848022F, -361.938995F), new Vector2(-740.327026F, -361.174011F));
+ builder.AddCubicBezier(new Vector2(-741.80603F, -360.408997F), new Vector2(-742.997009F, -359.355011F), new Vector2(-743.896973F, -358.011993F));
+ builder.AddCubicBezier(new Vector2(-744.797974F, -356.667999F), new Vector2(-745.299988F, -355.113007F), new Vector2(-745.401978F, -353.346008F));
+ builder.AddLine(new Vector2(-745.401978F, -346.053009F));
+ builder.AddCubicBezier(new Vector2(-745.299988F, -344.319F), new Vector2(-744.807983F, -342.770996F), new Vector2(-743.922974F, -341.411987F));
+ builder.AddCubicBezier(new Vector2(-743.039001F, -340.052002F), new Vector2(-741.856995F, -338.989014F), new Vector2(-740.377991F, -338.223999F));
+ builder.AddCubicBezier(new Vector2(-738.898987F, -337.459015F), new Vector2(-737.242004F, -337.076996F), new Vector2(-735.406006F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-733.195984F, -337.076996F), new Vector2(-731.197998F, -337.628998F), new Vector2(-729.413025F, -338.734009F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1660()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-769.984009F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(-771.174988F, -343.299011F), new Vector2(-772.109009F, -344.274994F), new Vector2(-772.789001F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(-773.468994F, -346.757996F), new Vector2(-773.809021F, -348.177002F), new Vector2(-773.809021F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-773.809021F, -351.338989F), new Vector2(-773.468994F, -352.734009F), new Vector2(-772.789001F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(-772.109009F, -355.182007F), new Vector2(-771.174988F, -356.141998F), new Vector2(-769.984009F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(-768.794006F, -357.535004F), new Vector2(-767.452026F, -357.88501F), new Vector2(-765.955017F, -357.88501F));
+ builder.AddCubicBezier(new Vector2(-764.392029F, -357.88501F), new Vector2(-763.021973F, -357.535004F), new Vector2(-761.848999F, -356.838989F));
+ builder.AddCubicBezier(new Vector2(-760.676025F, -356.141998F), new Vector2(-759.741028F, -355.182007F), new Vector2(-759.044006F, -353.958008F));
+ builder.AddCubicBezier(new Vector2(-758.348022F, -352.734009F), new Vector2(-757.999023F, -351.338989F), new Vector2(-757.999023F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-757.999023F, -348.177002F), new Vector2(-758.338989F, -346.757996F), new Vector2(-759.018982F, -345.516998F));
+ builder.AddCubicBezier(new Vector2(-759.700012F, -344.274994F), new Vector2(-760.633972F, -343.299011F), new Vector2(-761.823975F, -342.584991F));
+ builder.AddCubicBezier(new Vector2(-763.015015F, -341.871002F), new Vector2(-764.392029F, -341.514008F), new Vector2(-765.955017F, -341.514008F));
+ builder.AddCubicBezier(new Vector2(-767.452026F, -341.514008F), new Vector2(-768.794006F, -341.871002F), new Vector2(-769.984009F, -342.584991F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-759.502991F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(-757.583008F, -339.881989F), new Vector2(-756.060974F, -341.403015F), new Vector2(-754.939026F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(-753.817017F, -345.243988F), new Vector2(-753.255981F, -347.395996F), new Vector2(-753.255981F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-753.255981F, -352.122009F), new Vector2(-753.817017F, -354.246002F), new Vector2(-754.939026F, -356.151001F));
+ builder.AddCubicBezier(new Vector2(-756.060974F, -358.054993F), new Vector2(-757.583008F, -359.55899F), new Vector2(-759.502991F, -360.664001F));
+ builder.AddCubicBezier(new Vector2(-761.424011F, -361.768005F), new Vector2(-763.575989F, -362.321991F), new Vector2(-765.955017F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-768.301025F, -362.321991F), new Vector2(-770.426025F, -361.760986F), new Vector2(-772.330017F, -360.639008F));
+ builder.AddCubicBezier(new Vector2(-774.234985F, -359.516998F), new Vector2(-775.747009F, -358.011993F), new Vector2(-776.869019F, -356.125F));
+ builder.AddCubicBezier(new Vector2(-777.991028F, -354.238007F), new Vector2(-778.552002F, -352.122009F), new Vector2(-778.552002F, -349.776001F));
+ builder.AddCubicBezier(new Vector2(-778.552002F, -347.395996F), new Vector2(-777.991028F, -345.243988F), new Vector2(-776.869019F, -343.324005F));
+ builder.AddCubicBezier(new Vector2(-775.747009F, -341.403015F), new Vector2(-774.234985F, -339.881989F), new Vector2(-772.330017F, -338.76001F));
+ builder.AddCubicBezier(new Vector2(-770.426025F, -337.638F), new Vector2(-768.301025F, -337.076996F), new Vector2(-765.955017F, -337.076996F));
+ builder.AddCubicBezier(new Vector2(-763.575989F, -337.076996F), new Vector2(-761.424011F, -337.638F), new Vector2(-759.502991F, -338.76001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1661()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-800.328979F, -337.587006F));
+ builder.AddLine(new Vector2(-800.328979F, -374.001007F));
+ builder.AddLine(new Vector2(-804.919006F, -374.001007F));
+ builder.AddLine(new Vector2(-804.919006F, -337.587006F));
+ builder.AddLine(new Vector2(-800.328979F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-783.192993F, -337.587006F));
+ builder.AddLine(new Vector2(-783.192993F, -352.631989F));
+ builder.AddCubicBezier(new Vector2(-783.192993F, -354.536011F), new Vector2(-783.601013F, -356.218994F), new Vector2(-784.416992F, -357.681F));
+ builder.AddCubicBezier(new Vector2(-785.232971F, -359.141998F), new Vector2(-786.346985F, -360.282013F), new Vector2(-787.757019F, -361.097992F));
+ builder.AddCubicBezier(new Vector2(-789.16803F, -361.914001F), new Vector2(-790.791992F, -362.321991F), new Vector2(-792.627991F, -362.321991F));
+ builder.AddCubicBezier(new Vector2(-794.463989F, -362.321991F), new Vector2(-796.114014F, -361.904999F), new Vector2(-797.575012F, -361.071991F));
+ builder.AddCubicBezier(new Vector2(-799.036987F, -360.238007F), new Vector2(-800.176025F, -359.109009F), new Vector2(-800.992004F, -357.681F));
+ builder.AddCubicBezier(new Vector2(-801.807983F, -356.252991F), new Vector2(-802.216003F, -354.621002F), new Vector2(-802.216003F, -352.785004F));
+ builder.AddLine(new Vector2(-800.328979F, -351.713989F));
+ builder.AddCubicBezier(new Vector2(-800.328979F, -352.937988F), new Vector2(-800.057007F, -354.026001F), new Vector2(-799.513F, -354.977997F));
+ builder.AddCubicBezier(new Vector2(-798.968994F, -355.928986F), new Vector2(-798.221008F, -356.678009F), new Vector2(-797.268982F, -357.221985F));
+ builder.AddCubicBezier(new Vector2(-796.317993F, -357.765015F), new Vector2(-795.229004F, -358.037994F), new Vector2(-794.005005F, -358.037994F));
+ builder.AddCubicBezier(new Vector2(-792.169006F, -358.037994F), new Vector2(-790.682007F, -357.442993F), new Vector2(-789.541992F, -356.252991F));
+ builder.AddCubicBezier(new Vector2(-788.403015F, -355.062012F), new Vector2(-787.833984F, -353.549988F), new Vector2(-787.833984F, -351.713989F));
+ builder.AddLine(new Vector2(-787.833984F, -337.587006F));
+ builder.AddLine(new Vector2(-783.192993F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - - Layer aggregator
+ // - - - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // - - Offset:<964, 825>
+ CanvasGeometry Geometry_1662()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-823.023987F, -337.587006F));
+ builder.AddLine(new Vector2(-823.023987F, -372.980988F));
+ builder.AddLine(new Vector2(-827.817993F, -372.980988F));
+ builder.AddLine(new Vector2(-827.817993F, -337.587006F));
+ builder.AddLine(new Vector2(-823.023987F, -337.587006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1663()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-3.40799999F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-2.59200001F, -0.555999994F), new Vector2(-1.89600003F, -1.06400001F), new Vector2(-1.32000005F, -1.75199997F));
+ builder.AddLine(new Vector2(-3.3599999F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-3.71199989F, -3.36800003F), new Vector2(-4.11999989F, -3.06800008F), new Vector2(-4.58400011F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-5.04799986F, -2.66799998F), new Vector2(-5.55999994F, -2.56800008F), new Vector2(-6.11999989F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-6.74399996F, -2.56800008F), new Vector2(-7.28399992F, -2.70000005F), new Vector2(-7.73999977F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-8.1960001F, -3.22799993F), new Vector2(-8.54800034F, -3.60800004F), new Vector2(-8.79599953F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-9.04399967F, -4.5999999F), new Vector2(-9.16800022F, -5.18400002F), new Vector2(-9.16800022F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-9.16800022F, -6.52799988F), new Vector2(-9.05200005F, -7.10400009F), new Vector2(-8.81999969F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-8.5880003F, -8.06400013F), new Vector2(-8.26000023F, -8.43999958F), new Vector2(-7.83599997F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-7.41200018F, -8.98400021F), new Vector2(-6.91200018F, -9.11999989F), new Vector2(-6.33599997F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-5.80800009F, -9.11999989F), new Vector2(-5.35599995F, -9F), new Vector2(-4.98000002F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-4.60400009F, -8.52000046F), new Vector2(-4.32000017F, -8.18000031F), new Vector2(-4.12799978F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-3.93600011F, -7.30000019F), new Vector2(-3.83200002F, -6.75199986F), new Vector2(-3.81599998F, -6.09600019F));
+ builder.AddLine(new Vector2(-2.23200011F, -7.17600012F));
+ builder.AddLine(new Vector2(-10.6800003F, -7.12799978F));
+ builder.AddLine(new Vector2(-10.6800003F, -4.58400011F));
+ builder.AddLine(new Vector2(-0.648000002F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-0.568000019F, -4.92000008F), new Vector2(-0.515999973F, -5.17999983F), new Vector2(-0.492000014F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-0.467999995F, -5.64400005F), new Vector2(-0.456F, -5.87200022F), new Vector2(-0.456F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-0.456F, -7.23199987F), new Vector2(-0.712000012F, -8.23999977F), new Vector2(-1.22399998F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-1.73599994F, -10F), new Vector2(-2.43199992F, -10.6879997F), new Vector2(-3.31200004F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-4.19199991F, -11.6800003F), new Vector2(-5.21600008F, -11.9280005F), new Vector2(-6.38399982F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-7.56799984F, -11.9280005F), new Vector2(-8.63199997F, -11.6639996F), new Vector2(-9.57600021F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-10.5200005F, -10.6079998F), new Vector2(-11.2639999F, -9.88399982F), new Vector2(-11.8079996F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-12.3520002F, -8.04399967F), new Vector2(-12.6239996F, -7.0079999F), new Vector2(-12.6239996F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-12.6239996F, -4.67199993F), new Vector2(-12.3439999F, -3.61599994F), new Vector2(-11.7840004F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-11.224F, -1.75999999F), new Vector2(-10.4560003F, -1.03600001F), new Vector2(-9.47999954F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-8.50399971F, 0.00400000019F), new Vector2(-7.38399982F, 0.263999999F), new Vector2(-6.11999989F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-5.12799978F, 0.263999999F), new Vector2(-4.22399998F, 0.100000001F), new Vector2(-3.40799999F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1664()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-15.2519999F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-14.4919996F, -0.555999994F), new Vector2(-13.8000002F, -1.03999996F), new Vector2(-13.1759996F, -1.67999995F));
+ builder.AddLine(new Vector2(-15.552F, -4.03200006F));
+ builder.AddCubicBezier(new Vector2(-15.8240004F, -3.72799993F), new Vector2(-16.1480007F, -3.49600005F), new Vector2(-16.5240002F, -3.33599997F));
+ builder.AddCubicBezier(new Vector2(-16.8999996F, -3.17600012F), new Vector2(-17.3279991F, -3.09599996F), new Vector2(-17.8080006F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-18.3040009F, -3.09599996F), new Vector2(-18.7600002F, -3.21199989F), new Vector2(-19.1760006F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-19.5919991F, -3.67600012F), new Vector2(-19.9160004F, -4F), new Vector2(-20.1480007F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-20.3799992F, -4.83199978F), new Vector2(-20.4960003F, -5.3119998F), new Vector2(-20.4960003F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-20.4960003F, -6.38399982F), new Vector2(-20.3799992F, -6.85200024F), new Vector2(-20.1480007F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-19.9160004F, -7.66800022F), new Vector2(-19.5960007F, -7.98799992F), new Vector2(-19.1879997F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-18.7800007F, -8.45199966F), new Vector2(-18.3199997F, -8.56799984F), new Vector2(-17.8080006F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-17.3439999F, -8.56799984F), new Vector2(-16.9319992F, -8.49600029F), new Vector2(-16.5720005F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-16.2119999F, -8.20800018F), new Vector2(-15.8959999F, -7.98400021F), new Vector2(-15.6239996F, -7.67999983F));
+ builder.AddLine(new Vector2(-13.2480001F, -10.0799999F));
+ builder.AddCubicBezier(new Vector2(-13.8400002F, -10.6879997F), new Vector2(-14.5159998F, -11.1479998F), new Vector2(-15.276F, -11.46F));
+ builder.AddCubicBezier(new Vector2(-16.0359993F, -11.7720003F), new Vector2(-16.8799992F, -11.9280005F), new Vector2(-17.8080006F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-19.0240002F, -11.9280005F), new Vector2(-20.1200008F, -11.6639996F), new Vector2(-21.0960007F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-22.0720005F, -10.6079998F), new Vector2(-22.8400002F, -9.88399982F), new Vector2(-23.3999996F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-23.9599991F, -8.04399967F), new Vector2(-24.2399998F, -7F), new Vector2(-24.2399998F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-24.2399998F, -4.67999983F), new Vector2(-23.9640007F, -3.6400001F), new Vector2(-23.4120007F, -2.71199989F));
+ builder.AddCubicBezier(new Vector2(-22.8600006F, -1.78400004F), new Vector2(-22.0960007F, -1.05599999F), new Vector2(-21.1200008F, -0.527999997F));
+ builder.AddCubicBezier(new Vector2(-20.1439991F, 0F), new Vector2(-19.0480003F, 0.263999999F), new Vector2(-17.8320007F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-16.8719997F, 0.263999999F), new Vector2(-16.0119991F, 0.100000001F), new Vector2(-15.2519999F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1665()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-33.5279999F, 0F));
+ builder.AddLine(new Vector2(-33.5279999F, -11.6639996F));
+ builder.AddLine(new Vector2(-37.223999F, -11.6639996F));
+ builder.AddLine(new Vector2(-37.223999F, 0F));
+ builder.AddLine(new Vector2(-33.5279999F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-25.7999992F, 0F));
+ builder.AddLine(new Vector2(-25.7999992F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-25.7999992F, -8.26399994F), new Vector2(-25.9920006F, -9.00399971F), new Vector2(-26.3759995F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-26.7600002F, -10.3640003F), new Vector2(-27.2880001F, -10.9040003F), new Vector2(-27.9599991F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-28.632F, -11.7040005F), new Vector2(-29.3920002F, -11.9040003F), new Vector2(-30.2399998F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-31.1359997F, -11.9040003F), new Vector2(-31.9400005F, -11.7159996F), new Vector2(-32.6520004F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-33.3639984F, -10.9639997F), new Vector2(-33.9239998F, -10.4320002F), new Vector2(-34.3320007F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-34.7400017F, -9.05599976F), new Vector2(-34.9440002F, -8.25599957F), new Vector2(-34.9440002F, -7.34399986F));
+ builder.AddLine(new Vector2(-33.5279999F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-33.5279999F, -7.04799986F), new Vector2(-33.4399986F, -7.4000001F), new Vector2(-33.2639999F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-33.0880013F, -8.00800037F), new Vector2(-32.8479996F, -8.24400043F), new Vector2(-32.5439987F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-32.2400017F, -8.57999992F), new Vector2(-31.8959999F, -8.66399956F), new Vector2(-31.5119991F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-30.9360008F, -8.66399956F), new Vector2(-30.4559994F, -8.47599983F), new Vector2(-30.0720005F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-29.6879997F, -7.72399998F), new Vector2(-29.4960003F, -7.23999977F), new Vector2(-29.4960003F, -6.64799976F));
+ builder.AddLine(new Vector2(-29.4960003F, 0F));
+ builder.AddLine(new Vector2(-25.7999992F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1666()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-41.9039993F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-41.0880013F, -0.555999994F), new Vector2(-40.3919983F, -1.06400001F), new Vector2(-39.8160019F, -1.75199997F));
+ builder.AddLine(new Vector2(-41.855999F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-42.2080002F, -3.36800003F), new Vector2(-42.6160011F, -3.06800008F), new Vector2(-43.0800018F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-43.5439987F, -2.66799998F), new Vector2(-44.0559998F, -2.56800008F), new Vector2(-44.6160011F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-45.2400017F, -2.56800008F), new Vector2(-45.7799988F, -2.70000005F), new Vector2(-46.2360001F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-46.6920013F, -3.22799993F), new Vector2(-47.0439987F, -3.60800004F), new Vector2(-47.2919998F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-47.5400009F, -4.5999999F), new Vector2(-47.6640015F, -5.18400002F), new Vector2(-47.6640015F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-47.6640015F, -6.52799988F), new Vector2(-47.5480003F, -7.10400009F), new Vector2(-47.3160019F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-47.0839996F, -8.06400013F), new Vector2(-46.7560005F, -8.43999958F), new Vector2(-46.3320007F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-45.9080009F, -8.98400021F), new Vector2(-45.4080009F, -9.11999989F), new Vector2(-44.8320007F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-44.3040009F, -9.11999989F), new Vector2(-43.8520012F, -9F), new Vector2(-43.4760017F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-43.0999985F, -8.52000046F), new Vector2(-42.8160019F, -8.18000031F), new Vector2(-42.6240005F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-42.4319992F, -7.30000019F), new Vector2(-42.3279991F, -6.75199986F), new Vector2(-42.3120003F, -6.09600019F));
+ builder.AddLine(new Vector2(-40.7280006F, -7.17600012F));
+ builder.AddLine(new Vector2(-49.1759987F, -7.12799978F));
+ builder.AddLine(new Vector2(-49.1759987F, -4.58400011F));
+ builder.AddLine(new Vector2(-39.144001F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-39.0639992F, -4.92000008F), new Vector2(-39.012001F, -5.17999983F), new Vector2(-38.987999F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-38.9640007F, -5.64400005F), new Vector2(-38.9519997F, -5.87200022F), new Vector2(-38.9519997F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-38.9519997F, -7.23199987F), new Vector2(-39.2080002F, -8.23999977F), new Vector2(-39.7200012F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-40.2319984F, -10F), new Vector2(-40.9280014F, -10.6879997F), new Vector2(-41.8079987F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-42.6879997F, -11.6800003F), new Vector2(-43.7120018F, -11.9280005F), new Vector2(-44.8800011F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-46.0639992F, -11.9280005F), new Vector2(-47.1279984F, -11.6639996F), new Vector2(-48.0719986F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-49.0159988F, -10.6079998F), new Vector2(-49.7599983F, -9.88399982F), new Vector2(-50.3040009F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-50.8479996F, -8.04399967F), new Vector2(-51.1199989F, -7.0079999F), new Vector2(-51.1199989F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-51.1199989F, -4.67199993F), new Vector2(-50.8400002F, -3.61599994F), new Vector2(-50.2799988F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-49.7200012F, -1.75999999F), new Vector2(-48.9519997F, -1.03600001F), new Vector2(-47.9760017F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-47F, 0.00400000019F), new Vector2(-45.8800011F, 0.263999999F), new Vector2(-44.6160011F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-43.6240005F, 0.263999999F), new Vector2(-42.7200012F, 0.100000001F), new Vector2(-41.9039993F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1667()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-55.2719994F, -0.395999998F));
+ builder.AddCubicBezier(new Vector2(-54.4560013F, -0.836000025F), new Vector2(-53.8199997F, -1.44400001F), new Vector2(-53.3639984F, -2.22000003F));
+ builder.AddCubicBezier(new Vector2(-52.9080009F, -2.99600005F), new Vector2(-52.6800003F, -3.89599991F), new Vector2(-52.6800003F, -4.92000008F));
+ builder.AddLine(new Vector2(-52.6800003F, -11.6639996F));
+ builder.AddLine(new Vector2(-56.3759995F, -11.6639996F));
+ builder.AddLine(new Vector2(-56.3759995F, -4.96799994F));
+ builder.AddCubicBezier(new Vector2(-56.3759995F, -4.36000013F), new Vector2(-56.5320015F, -3.88000011F), new Vector2(-56.8440018F, -3.52800012F));
+ builder.AddCubicBezier(new Vector2(-57.1559982F, -3.17600012F), new Vector2(-57.5839996F, -3F), new Vector2(-58.1279984F, -3F));
+ builder.AddCubicBezier(new Vector2(-58.4959984F, -3F), new Vector2(-58.8160019F, -3.07999992F), new Vector2(-59.0880013F, -3.24000001F));
+ builder.AddCubicBezier(new Vector2(-59.3600006F, -3.4000001F), new Vector2(-59.5680008F, -3.62800002F), new Vector2(-59.7120018F, -3.92400002F));
+ builder.AddCubicBezier(new Vector2(-59.855999F, -4.21999979F), new Vector2(-59.9280014F, -4.56799984F), new Vector2(-59.9280014F, -4.96799994F));
+ builder.AddLine(new Vector2(-59.9280014F, -11.6639996F));
+ builder.AddLine(new Vector2(-63.6240005F, -11.6639996F));
+ builder.AddLine(new Vector2(-63.6240005F, -4.92000008F));
+ builder.AddCubicBezier(new Vector2(-63.6240005F, -3.91199994F), new Vector2(-63.3919983F, -3.01999998F), new Vector2(-62.9280014F, -2.24399996F));
+ builder.AddCubicBezier(new Vector2(-62.4640007F, -1.46800005F), new Vector2(-61.8120003F, -0.856000006F), new Vector2(-60.9720001F, -0.407999992F));
+ builder.AddCubicBezier(new Vector2(-60.132F, 0.0399999991F), new Vector2(-59.1839981F, 0.263999999F), new Vector2(-58.1279984F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-57.0400009F, 0.263999999F), new Vector2(-56.0880013F, 0.0439999998F), new Vector2(-55.2719994F, -0.395999998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1668()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-65.8799973F, 4.92000008F));
+ builder.AddLine(new Vector2(-65.8799973F, -11.6639996F));
+ builder.AddLine(new Vector2(-69.5279999F, -11.6639996F));
+ builder.AddLine(new Vector2(-69.5279999F, -8.68799973F));
+ builder.AddLine(new Vector2(-68.9759979F, -5.83199978F));
+ builder.AddLine(new Vector2(-69.5279999F, -3F));
+ builder.AddLine(new Vector2(-69.5279999F, 4.92000008F));
+ builder.AddLine(new Vector2(-65.8799973F, 4.92000008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-73.3199997F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-73.7200012F, -3.67600012F), new Vector2(-74.0279999F, -4F), new Vector2(-74.2440033F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-74.4599991F, -4.83199978F), new Vector2(-74.5680008F, -5.3039999F), new Vector2(-74.5680008F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-74.5680008F, -6.36000013F), new Vector2(-74.4560013F, -6.83199978F), new Vector2(-74.2320023F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-74.0080032F, -7.66400003F), new Vector2(-73.6999969F, -7.98799992F), new Vector2(-73.3079987F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-72.9160004F, -8.45199966F), new Vector2(-72.4639969F, -8.56799984F), new Vector2(-71.9520035F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-71.4400024F, -8.56799984F), new Vector2(-70.9919968F, -8.45199966F), new Vector2(-70.6080017F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-70.223999F, -7.98799992F), new Vector2(-69.9199982F, -7.66800022F), new Vector2(-69.6959991F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-69.4720001F, -6.85200024F), new Vector2(-69.3600006F, -6.38399982F), new Vector2(-69.3600006F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-69.3600006F, -5.03999996F), new Vector2(-69.6039963F, -4.37599993F), new Vector2(-70.0920029F, -3.86400008F));
+ builder.AddCubicBezier(new Vector2(-70.5800018F, -3.352F), new Vector2(-71.2080002F, -3.09599996F), new Vector2(-71.9759979F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-72.4720001F, -3.09599996F), new Vector2(-72.9199982F, -3.21199989F), new Vector2(-73.3199997F, -3.44400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-70.6080017F, -0.216000006F));
+ builder.AddCubicBezier(new Vector2(-69.9680023F, -0.519999981F), new Vector2(-69.4520035F, -0.939999998F), new Vector2(-69.0599976F, -1.47599995F));
+ builder.AddCubicBezier(new Vector2(-68.6679993F, -2.01200008F), new Vector2(-68.4400024F, -2.62400007F), new Vector2(-68.3759995F, -3.31200004F));
+ builder.AddLine(new Vector2(-68.3759995F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-68.4400024F, -9.03999996F), new Vector2(-68.6679993F, -9.65200043F), new Vector2(-69.0599976F, -10.1879997F));
+ builder.AddCubicBezier(new Vector2(-69.4520035F, -10.724F), new Vector2(-69.9639969F, -11.1440001F), new Vector2(-70.5960007F, -11.448F));
+ builder.AddCubicBezier(new Vector2(-71.2279968F, -11.7519999F), new Vector2(-71.935997F, -11.9040003F), new Vector2(-72.7200012F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-73.7919998F, -11.9040003F), new Vector2(-74.7519989F, -11.6440001F), new Vector2(-75.5999985F, -11.1239996F));
+ builder.AddCubicBezier(new Vector2(-76.447998F, -10.6040001F), new Vector2(-77.1119995F, -9.88399982F), new Vector2(-77.5920029F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-78.0719986F, -8.04399967F), new Vector2(-78.3119965F, -7F), new Vector2(-78.3119965F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-78.3119965F, -4.66400003F), new Vector2(-78.0719986F, -3.62800002F), new Vector2(-77.5920029F, -2.72399998F));
+ builder.AddCubicBezier(new Vector2(-77.1119995F, -1.82000005F), new Vector2(-76.4520035F, -1.10000002F), new Vector2(-75.6119995F, -0.56400001F));
+ builder.AddCubicBezier(new Vector2(-74.7720032F, -0.0280000009F), new Vector2(-73.8079987F, 0.239999995F), new Vector2(-72.7200012F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-71.9520035F, 0.239999995F), new Vector2(-71.2480011F, 0.0879999995F), new Vector2(-70.6080017F, -0.216000006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1669()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-82.2959976F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-81.4800034F, -0.555999994F), new Vector2(-80.7839966F, -1.06400001F), new Vector2(-80.2080002F, -1.75199997F));
+ builder.AddLine(new Vector2(-82.2480011F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-82.5999985F, -3.36800003F), new Vector2(-83.0080032F, -3.06800008F), new Vector2(-83.4720001F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-83.935997F, -2.66799998F), new Vector2(-84.447998F, -2.56800008F), new Vector2(-85.0080032F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-85.6320038F, -2.56800008F), new Vector2(-86.1719971F, -2.70000005F), new Vector2(-86.6279984F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-87.0839996F, -3.22799993F), new Vector2(-87.435997F, -3.60800004F), new Vector2(-87.6839981F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-87.9319992F, -4.5999999F), new Vector2(-88.0559998F, -5.18400002F), new Vector2(-88.0559998F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-88.0559998F, -6.52799988F), new Vector2(-87.9400024F, -7.10400009F), new Vector2(-87.7080002F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-87.4759979F, -8.06400013F), new Vector2(-87.1480026F, -8.43999958F), new Vector2(-86.723999F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-86.3000031F, -8.98400021F), new Vector2(-85.8000031F, -9.11999989F), new Vector2(-85.223999F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-84.6959991F, -9.11999989F), new Vector2(-84.2440033F, -9F), new Vector2(-83.8679962F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-83.4919968F, -8.52000046F), new Vector2(-83.2080002F, -8.18000031F), new Vector2(-83.0159988F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-82.8239975F, -7.30000019F), new Vector2(-82.7200012F, -6.75199986F), new Vector2(-82.7040024F, -6.09600019F));
+ builder.AddLine(new Vector2(-81.1200027F, -7.17600012F));
+ builder.AddLine(new Vector2(-89.5680008F, -7.12799978F));
+ builder.AddLine(new Vector2(-89.5680008F, -4.58400011F));
+ builder.AddLine(new Vector2(-79.5360031F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-79.4560013F, -4.92000008F), new Vector2(-79.4039993F, -5.17999983F), new Vector2(-79.3799973F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-79.3560028F, -5.64400005F), new Vector2(-79.3440018F, -5.87200022F), new Vector2(-79.3440018F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-79.3440018F, -7.23199987F), new Vector2(-79.5999985F, -8.23999977F), new Vector2(-80.1119995F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-80.6240005F, -10F), new Vector2(-81.3199997F, -10.6879997F), new Vector2(-82.1999969F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-83.0800018F, -11.6800003F), new Vector2(-84.1039963F, -11.9280005F), new Vector2(-85.2720032F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-86.4560013F, -11.9280005F), new Vector2(-87.5199966F, -11.6639996F), new Vector2(-88.4639969F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-89.4079971F, -10.6079998F), new Vector2(-90.1520004F, -9.88399982F), new Vector2(-90.6959991F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-91.2399979F, -8.04399967F), new Vector2(-91.512001F, -7.0079999F), new Vector2(-91.512001F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-91.512001F, -4.67199993F), new Vector2(-91.2320023F, -3.61599994F), new Vector2(-90.6719971F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-90.1119995F, -1.75999999F), new Vector2(-89.3440018F, -1.03600001F), new Vector2(-88.3679962F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-87.3919983F, 0.00400000019F), new Vector2(-86.2720032F, 0.263999999F), new Vector2(-85.0080032F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-84.0159988F, 0.263999999F), new Vector2(-83.1119995F, 0.100000001F), new Vector2(-82.2959976F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1670()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-94.0199966F, -0.708000004F));
+ builder.AddCubicBezier(new Vector2(-93.1640015F, -1.38800001F), new Vector2(-92.7360001F, -2.296F), new Vector2(-92.7360001F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-92.7360001F, -4.16800022F), new Vector2(-92.8720016F, -4.76399994F), new Vector2(-93.1439972F, -5.21999979F));
+ builder.AddCubicBezier(new Vector2(-93.4160004F, -5.67600012F), new Vector2(-93.7679977F, -6.04400015F), new Vector2(-94.1999969F, -6.32399988F));
+ builder.AddCubicBezier(new Vector2(-94.6320038F, -6.60400009F), new Vector2(-95.0879974F, -6.82000017F), new Vector2(-95.5680008F, -6.97200012F));
+ builder.AddCubicBezier(new Vector2(-96.0479965F, -7.12400007F), new Vector2(-96.5F, -7.25600004F), new Vector2(-96.9240036F, -7.36800003F));
+ builder.AddCubicBezier(new Vector2(-97.3479996F, -7.48000002F), new Vector2(-97.6999969F, -7.6079998F), new Vector2(-97.9800034F, -7.75199986F));
+ builder.AddCubicBezier(new Vector2(-98.2600021F, -7.89599991F), new Vector2(-98.4000015F, -8.0880003F), new Vector2(-98.4000015F, -8.32800007F));
+ builder.AddCubicBezier(new Vector2(-98.4000015F, -8.53600025F), new Vector2(-98.2959976F, -8.70400047F), new Vector2(-98.0879974F, -8.83199978F));
+ builder.AddCubicBezier(new Vector2(-97.8799973F, -8.96000004F), new Vector2(-97.5680008F, -9.02400017F), new Vector2(-97.1520004F, -9.02400017F));
+ builder.AddCubicBezier(new Vector2(-96.7200012F, -9.02400017F), new Vector2(-96.276001F, -8.93200016F), new Vector2(-95.8199997F, -8.74800014F));
+ builder.AddCubicBezier(new Vector2(-95.3639984F, -8.56400013F), new Vector2(-94.9520035F, -8.25599957F), new Vector2(-94.5839996F, -7.82399988F));
+ builder.AddLine(new Vector2(-92.4960022F, -9.96000004F));
+ builder.AddCubicBezier(new Vector2(-93.0080032F, -10.632F), new Vector2(-93.6880035F, -11.1400003F), new Vector2(-94.5360031F, -11.4840002F));
+ builder.AddCubicBezier(new Vector2(-95.3840027F, -11.8280001F), new Vector2(-96.2959976F, -12F), new Vector2(-97.2720032F, -12F));
+ builder.AddCubicBezier(new Vector2(-98.2480011F, -12F), new Vector2(-99.0879974F, -11.8400002F), new Vector2(-99.7919998F, -11.5200005F));
+ builder.AddCubicBezier(new Vector2(-100.496002F, -11.1999998F), new Vector2(-101.040001F, -10.7639999F), new Vector2(-101.424004F, -10.2119999F));
+ builder.AddCubicBezier(new Vector2(-101.807999F, -9.65999985F), new Vector2(-102F, -9.00800037F), new Vector2(-102F, -8.25599957F));
+ builder.AddCubicBezier(new Vector2(-102F, -7.53599977F), new Vector2(-101.863998F, -6.95200014F), new Vector2(-101.592003F, -6.50400019F));
+ builder.AddCubicBezier(new Vector2(-101.32F, -6.05600023F), new Vector2(-100.968002F, -5.704F), new Vector2(-100.536003F, -5.44799995F));
+ builder.AddCubicBezier(new Vector2(-100.103996F, -5.19199991F), new Vector2(-99.6480026F, -4.98799992F), new Vector2(-99.1679993F, -4.83599997F));
+ builder.AddCubicBezier(new Vector2(-98.6880035F, -4.68400002F), new Vector2(-98.2279968F, -4.54799986F), new Vector2(-97.788002F, -4.42799997F));
+ builder.AddCubicBezier(new Vector2(-97.3479996F, -4.30800009F), new Vector2(-96.9919968F, -4.17999983F), new Vector2(-96.7200012F, -4.04400015F));
+ builder.AddCubicBezier(new Vector2(-96.447998F, -3.90799999F), new Vector2(-96.3119965F, -3.6960001F), new Vector2(-96.3119965F, -3.40799999F));
+ builder.AddCubicBezier(new Vector2(-96.3119965F, -3.16799998F), new Vector2(-96.4280014F, -2.98399997F), new Vector2(-96.6600037F, -2.85599995F));
+ builder.AddCubicBezier(new Vector2(-96.8919983F, -2.72799993F), new Vector2(-97.2080002F, -2.66400003F), new Vector2(-97.6080017F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(-98.2480011F, -2.66400003F), new Vector2(-98.8280029F, -2.77999997F), new Vector2(-99.3479996F, -3.01200008F));
+ builder.AddCubicBezier(new Vector2(-99.8679962F, -3.24399996F), new Vector2(-100.328003F, -3.56800008F), new Vector2(-100.727997F, -3.98399997F));
+ builder.AddLine(new Vector2(-102.839996F, -1.87199998F));
+ builder.AddCubicBezier(new Vector2(-102.424004F, -1.44000006F), new Vector2(-101.935997F, -1.05999994F), new Vector2(-101.375999F, -0.731999993F));
+ builder.AddCubicBezier(new Vector2(-100.816002F, -0.404000014F), new Vector2(-100.199997F, -0.148000002F), new Vector2(-99.5279999F, 0.0359999985F));
+ builder.AddCubicBezier(new Vector2(-98.8560028F, 0.219999999F), new Vector2(-98.1760025F, 0.312000006F), new Vector2(-97.487999F, 0.312000006F));
+ builder.AddCubicBezier(new Vector2(-96.0319977F, 0.312000006F), new Vector2(-94.8759995F, -0.0280000009F), new Vector2(-94.0199966F, -0.708000004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1671()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-115.872002F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-116.272003F, -3.6559999F), new Vector2(-116.584F, -3.98000002F), new Vector2(-116.807999F, -4.40399981F));
+ builder.AddCubicBezier(new Vector2(-117.031998F, -4.82800007F), new Vector2(-117.143997F, -5.3119998F), new Vector2(-117.143997F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-117.143997F, -6.36800003F), new Vector2(-117.031998F, -6.83199978F), new Vector2(-116.807999F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-116.584F, -7.66400003F), new Vector2(-116.272003F, -7.98799992F), new Vector2(-115.872002F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-115.472F, -8.45199966F), new Vector2(-115.015999F, -8.56799984F), new Vector2(-114.503998F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-113.991997F, -8.56799984F), new Vector2(-113.540001F, -8.45199966F), new Vector2(-113.148003F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-112.755997F, -7.98799992F), new Vector2(-112.447998F, -7.66800022F), new Vector2(-112.223999F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-112F, -6.85200024F), new Vector2(-111.888F, -6.38399982F), new Vector2(-111.888F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-111.888F, -5.3119998F), new Vector2(-111.996002F, -4.82800007F), new Vector2(-112.211998F, -4.40399981F));
+ builder.AddCubicBezier(new Vector2(-112.428001F, -3.98000002F), new Vector2(-112.736F, -3.6559999F), new Vector2(-113.136002F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-113.536003F, -3.20799994F), new Vector2(-113.991997F, -3.09599996F), new Vector2(-114.503998F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-115.015999F, -3.09599996F), new Vector2(-115.472F, -3.20799994F), new Vector2(-115.872002F, -3.43199992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-111.239998F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(-110.279999F, -1.09599996F), new Vector2(-109.519997F, -1.82799995F), new Vector2(-108.959999F, -2.74799991F));
+ builder.AddCubicBezier(new Vector2(-108.400002F, -3.66799998F), new Vector2(-108.120003F, -4.71199989F), new Vector2(-108.120003F, -5.88000011F));
+ builder.AddCubicBezier(new Vector2(-108.120003F, -7.01599979F), new Vector2(-108.400002F, -8.04399967F), new Vector2(-108.959999F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-109.519997F, -9.88399982F), new Vector2(-110.283997F, -10.6079998F), new Vector2(-111.251999F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-112.220001F, -11.6639996F), new Vector2(-113.304001F, -11.9280005F), new Vector2(-114.503998F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-115.736F, -11.9280005F), new Vector2(-116.832001F, -11.6599998F), new Vector2(-117.792F, -11.1239996F));
+ builder.AddCubicBezier(new Vector2(-118.751999F, -10.5880003F), new Vector2(-119.508003F, -9.86400032F), new Vector2(-120.059998F, -8.95199966F));
+ builder.AddCubicBezier(new Vector2(-120.612F, -8.03999996F), new Vector2(-120.888F, -7.01599979F), new Vector2(-120.888F, -5.88000011F));
+ builder.AddCubicBezier(new Vector2(-120.888F, -4.72800016F), new Vector2(-120.608002F, -3.68799996F), new Vector2(-120.047997F, -2.75999999F));
+ builder.AddCubicBezier(new Vector2(-119.487999F, -1.83200002F), new Vector2(-118.727997F, -1.09599996F), new Vector2(-117.767998F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(-116.807999F, -0.00800000038F), new Vector2(-115.720001F, 0.263999999F), new Vector2(-114.503998F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-113.288002F, 0.263999999F), new Vector2(-112.199997F, -0.00800000038F), new Vector2(-111.239998F, -0.551999986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1672()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-125.82F, -8.07600021F));
+ builder.AddCubicBezier(new Vector2(-125.459999F, -8.45199966F), new Vector2(-124.968002F, -8.64000034F), new Vector2(-124.344002F, -8.64000034F));
+ builder.AddCubicBezier(new Vector2(-124.040001F, -8.64000034F), new Vector2(-123.767998F, -8.59200001F), new Vector2(-123.528F, -8.49600029F));
+ builder.AddCubicBezier(new Vector2(-123.288002F, -8.39999962F), new Vector2(-123.096001F, -8.27200031F), new Vector2(-122.952003F, -8.11200047F));
+ builder.AddLine(new Vector2(-120.767998F, -10.8959999F));
+ builder.AddCubicBezier(new Vector2(-121.087997F, -11.2320004F), new Vector2(-121.459999F, -11.4840002F), new Vector2(-121.884003F, -11.6520004F));
+ builder.AddCubicBezier(new Vector2(-122.307999F, -11.8199997F), new Vector2(-122.800003F, -11.9040003F), new Vector2(-123.360001F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-124.624001F, -11.9040003F), new Vector2(-125.620003F, -11.5279999F), new Vector2(-126.348F, -10.776F));
+ builder.AddCubicBezier(new Vector2(-127.075996F, -10.0240002F), new Vector2(-127.592003F, -8.96000004F), new Vector2(-127.896004F, -7.58400011F));
+ builder.AddLine(new Vector2(-126.360001F, -6.38399982F));
+ builder.AddCubicBezier(new Vector2(-126.360001F, -7.13600016F), new Vector2(-126.18F, -7.69999981F), new Vector2(-125.82F, -8.07600021F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-126.360001F, 0F));
+ builder.AddLine(new Vector2(-126.360001F, -11.6639996F));
+ builder.AddLine(new Vector2(-130.056F, -11.6639996F));
+ builder.AddLine(new Vector2(-130.056F, 0F));
+ builder.AddLine(new Vector2(-126.360001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1673()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-131.639999F, -8.52000046F));
+ builder.AddLine(new Vector2(-131.639999F, -11.6639996F));
+ builder.AddLine(new Vector2(-140.591995F, -11.6639996F));
+ builder.AddLine(new Vector2(-140.591995F, -8.52000046F));
+ builder.AddLine(new Vector2(-131.639999F, -8.52000046F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-134.279999F, 0F));
+ builder.AddLine(new Vector2(-134.279999F, -16.4880009F));
+ builder.AddLine(new Vector2(-137.975998F, -16.4880009F));
+ builder.AddLine(new Vector2(-137.975998F, 0F));
+ builder.AddLine(new Vector2(-134.279999F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1674()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-149.520004F, 0F));
+ builder.AddLine(new Vector2(-149.520004F, -11.6639996F));
+ builder.AddLine(new Vector2(-153.216003F, -11.6639996F));
+ builder.AddLine(new Vector2(-153.216003F, 0F));
+ builder.AddLine(new Vector2(-149.520004F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-141.792007F, 0F));
+ builder.AddLine(new Vector2(-141.792007F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-141.792007F, -8.26399994F), new Vector2(-141.983994F, -9.00399971F), new Vector2(-142.367996F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-142.751999F, -10.3640003F), new Vector2(-143.279999F, -10.9040003F), new Vector2(-143.951996F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-144.623993F, -11.7040005F), new Vector2(-145.384003F, -11.9040003F), new Vector2(-146.231995F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-147.128006F, -11.9040003F), new Vector2(-147.932007F, -11.7159996F), new Vector2(-148.643997F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-149.356003F, -10.9639997F), new Vector2(-149.916F, -10.4320002F), new Vector2(-150.324005F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-150.731995F, -9.05599976F), new Vector2(-150.936005F, -8.25599957F), new Vector2(-150.936005F, -7.34399986F));
+ builder.AddLine(new Vector2(-149.520004F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-149.520004F, -7.04799986F), new Vector2(-149.432007F, -7.4000001F), new Vector2(-149.255997F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-149.080002F, -8.00800037F), new Vector2(-148.839996F, -8.24400043F), new Vector2(-148.535995F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-148.231995F, -8.57999992F), new Vector2(-147.888F, -8.66399956F), new Vector2(-147.503998F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-146.927994F, -8.66399956F), new Vector2(-146.447998F, -8.47599983F), new Vector2(-146.063995F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-145.679993F, -7.72399998F), new Vector2(-145.488007F, -7.23999977F), new Vector2(-145.488007F, -6.64799976F));
+ builder.AddLine(new Vector2(-145.488007F, 0F));
+ builder.AddLine(new Vector2(-141.792007F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1675()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-156.179993F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-155.820007F, -14.2480001F), new Vector2(-155.639999F, -14.7279997F), new Vector2(-155.639999F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-155.639999F, -15.8640003F), new Vector2(-155.820007F, -16.3439999F), new Vector2(-156.179993F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-156.539993F, -17.1119995F), new Vector2(-157.016006F, -17.3040009F), new Vector2(-157.608002F, -17.3040009F));
+ builder.AddCubicBezier(new Vector2(-158.167999F, -17.3040009F), new Vector2(-158.639999F, -17.1119995F), new Vector2(-159.024002F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-159.408005F, -16.3439999F), new Vector2(-159.600006F, -15.8640003F), new Vector2(-159.600006F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-159.600006F, -14.7279997F), new Vector2(-159.408005F, -14.2480001F), new Vector2(-159.024002F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-158.639999F, -13.448F), new Vector2(-158.167999F, -13.2480001F), new Vector2(-157.608002F, -13.2480001F));
+ builder.AddCubicBezier(new Vector2(-157.016006F, -13.2480001F), new Vector2(-156.539993F, -13.448F), new Vector2(-156.179993F, -13.8479996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-155.759995F, 0F));
+ builder.AddLine(new Vector2(-155.759995F, -11.6639996F));
+ builder.AddLine(new Vector2(-159.455994F, -11.6639996F));
+ builder.AddLine(new Vector2(-159.455994F, 0F));
+ builder.AddLine(new Vector2(-155.759995F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1676()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-165.623993F, -8.52000046F));
+ builder.AddLine(new Vector2(-165.623993F, -11.6639996F));
+ builder.AddLine(new Vector2(-174.576004F, -11.6639996F));
+ builder.AddLine(new Vector2(-174.576004F, -8.52000046F));
+ builder.AddLine(new Vector2(-165.623993F, -8.52000046F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-168.264008F, 0F));
+ builder.AddLine(new Vector2(-168.264008F, -16.4880009F));
+ builder.AddLine(new Vector2(-171.960007F, -16.4880009F));
+ builder.AddLine(new Vector2(-171.960007F, 0F));
+ builder.AddLine(new Vector2(-168.264008F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1677()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-174.936005F, -11.6639996F));
+ builder.AddLine(new Vector2(-178.968002F, -11.6639996F));
+ builder.AddLine(new Vector2(-181.584F, -7.41599989F));
+ builder.AddLine(new Vector2(-179.472F, -5.06400013F));
+ builder.AddLine(new Vector2(-174.936005F, -11.6639996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-183.360001F, 0F));
+ builder.AddLine(new Vector2(-180.503998F, -4.41599989F));
+ builder.AddLine(new Vector2(-182.615997F, -6.79199982F));
+ builder.AddLine(new Vector2(-187.391998F, 0F));
+ builder.AddLine(new Vector2(-183.360001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-174.720001F, 0F));
+ builder.AddLine(new Vector2(-179.472F, -6.93599987F));
+ builder.AddLine(new Vector2(-180.240005F, -7.44000006F));
+ builder.AddLine(new Vector2(-182.856003F, -11.6639996F));
+ builder.AddLine(new Vector2(-187.151993F, -11.6639996F));
+ builder.AddLine(new Vector2(-182.567993F, -5.03999996F));
+ builder.AddLine(new Vector2(-181.776001F, -4.51200008F));
+ builder.AddLine(new Vector2(-178.992004F, 0F));
+ builder.AddLine(new Vector2(-174.720001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1678()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-190.584F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-189.768005F, -0.555999994F), new Vector2(-189.072006F, -1.06400001F), new Vector2(-188.496002F, -1.75199997F));
+ builder.AddLine(new Vector2(-190.535995F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-190.888F, -3.36800003F), new Vector2(-191.296005F, -3.06800008F), new Vector2(-191.759995F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-192.223999F, -2.66799998F), new Vector2(-192.735992F, -2.56800008F), new Vector2(-193.296005F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-193.919998F, -2.56800008F), new Vector2(-194.460007F, -2.70000005F), new Vector2(-194.916F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-195.371994F, -3.22799993F), new Vector2(-195.723999F, -3.60800004F), new Vector2(-195.972F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-196.220001F, -4.5999999F), new Vector2(-196.343994F, -5.18400002F), new Vector2(-196.343994F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-196.343994F, -6.52799988F), new Vector2(-196.227997F, -7.10400009F), new Vector2(-195.996002F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-195.764008F, -8.06400013F), new Vector2(-195.436005F, -8.43999958F), new Vector2(-195.011993F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-194.587997F, -8.98400021F), new Vector2(-194.087997F, -9.11999989F), new Vector2(-193.511993F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-192.983994F, -9.11999989F), new Vector2(-192.531998F, -9F), new Vector2(-192.156006F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-191.779999F, -8.52000046F), new Vector2(-191.496002F, -8.18000031F), new Vector2(-191.304001F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-191.112F, -7.30000019F), new Vector2(-191.007996F, -6.75199986F), new Vector2(-190.992004F, -6.09600019F));
+ builder.AddLine(new Vector2(-189.408005F, -7.17600012F));
+ builder.AddLine(new Vector2(-197.856003F, -7.12799978F));
+ builder.AddLine(new Vector2(-197.856003F, -4.58400011F));
+ builder.AddLine(new Vector2(-187.824005F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-187.744003F, -4.92000008F), new Vector2(-187.692001F, -5.17999983F), new Vector2(-187.667999F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-187.643997F, -5.64400005F), new Vector2(-187.632004F, -5.87200022F), new Vector2(-187.632004F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-187.632004F, -7.23199987F), new Vector2(-187.888F, -8.23999977F), new Vector2(-188.399994F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-188.912003F, -10F), new Vector2(-189.608002F, -10.6879997F), new Vector2(-190.488007F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-191.367996F, -11.6800003F), new Vector2(-192.391998F, -11.9280005F), new Vector2(-193.559998F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-194.744003F, -11.9280005F), new Vector2(-195.807999F, -11.6639996F), new Vector2(-196.751999F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-197.695999F, -10.6079998F), new Vector2(-198.440002F, -9.88399982F), new Vector2(-198.983994F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-199.528F, -8.04399967F), new Vector2(-199.800003F, -7.0079999F), new Vector2(-199.800003F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-199.800003F, -4.67199993F), new Vector2(-199.520004F, -3.61599994F), new Vector2(-198.960007F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-198.399994F, -1.75999999F), new Vector2(-197.632004F, -1.03600001F), new Vector2(-196.656006F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-195.679993F, 0.00400000019F), new Vector2(-194.559998F, 0.263999999F), new Vector2(-193.296005F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-192.304001F, 0.263999999F), new Vector2(-191.399994F, 0.100000001F), new Vector2(-190.584F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1679()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-209.087997F, 0F));
+ builder.AddLine(new Vector2(-209.087997F, -11.6639996F));
+ builder.AddLine(new Vector2(-212.783997F, -11.6639996F));
+ builder.AddLine(new Vector2(-212.783997F, 0F));
+ builder.AddLine(new Vector2(-209.087997F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-201.360001F, 0F));
+ builder.AddLine(new Vector2(-201.360001F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-201.360001F, -8.26399994F), new Vector2(-201.552002F, -9.00399971F), new Vector2(-201.936005F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-202.320007F, -10.3640003F), new Vector2(-202.848007F, -10.9040003F), new Vector2(-203.520004F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-204.192001F, -11.7040005F), new Vector2(-204.951996F, -11.9040003F), new Vector2(-205.800003F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-206.695999F, -11.9040003F), new Vector2(-207.5F, -11.7159996F), new Vector2(-208.212006F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-208.923996F, -10.9639997F), new Vector2(-209.483994F, -10.4320002F), new Vector2(-209.891998F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-210.300003F, -9.05599976F), new Vector2(-210.503998F, -8.25599957F), new Vector2(-210.503998F, -7.34399986F));
+ builder.AddLine(new Vector2(-209.087997F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-209.087997F, -7.04799986F), new Vector2(-209F, -7.4000001F), new Vector2(-208.824005F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-208.647995F, -8.00800037F), new Vector2(-208.408005F, -8.24400043F), new Vector2(-208.104004F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-207.800003F, -8.57999992F), new Vector2(-207.455994F, -8.66399956F), new Vector2(-207.072006F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-206.496002F, -8.66399956F), new Vector2(-206.016006F, -8.47599983F), new Vector2(-205.632004F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-205.248001F, -7.72399998F), new Vector2(-205.056F, -7.23999977F), new Vector2(-205.056F, -6.64799976F));
+ builder.AddLine(new Vector2(-205.056F, 0F));
+ builder.AddLine(new Vector2(-201.360001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1680()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-222.024002F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-221.207993F, -0.555999994F), new Vector2(-220.511993F, -1.06400001F), new Vector2(-219.936005F, -1.75199997F));
+ builder.AddLine(new Vector2(-221.975998F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-222.328003F, -3.36800003F), new Vector2(-222.735992F, -3.06800008F), new Vector2(-223.199997F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-223.664001F, -2.66799998F), new Vector2(-224.175995F, -2.56800008F), new Vector2(-224.735992F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-225.360001F, -2.56800008F), new Vector2(-225.899994F, -2.70000005F), new Vector2(-226.356003F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-226.811996F, -3.22799993F), new Vector2(-227.164001F, -3.60800004F), new Vector2(-227.412003F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-227.660004F, -4.5999999F), new Vector2(-227.783997F, -5.18400002F), new Vector2(-227.783997F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-227.783997F, -6.52799988F), new Vector2(-227.667999F, -7.10400009F), new Vector2(-227.436005F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-227.203995F, -8.06400013F), new Vector2(-226.876007F, -8.43999958F), new Vector2(-226.451996F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-226.028F, -8.98400021F), new Vector2(-225.528F, -9.11999989F), new Vector2(-224.951996F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-224.423996F, -9.11999989F), new Vector2(-223.972F, -9F), new Vector2(-223.595993F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-223.220001F, -8.52000046F), new Vector2(-222.936005F, -8.18000031F), new Vector2(-222.744003F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-222.552002F, -7.30000019F), new Vector2(-222.447998F, -6.75199986F), new Vector2(-222.432007F, -6.09600019F));
+ builder.AddLine(new Vector2(-220.848007F, -7.17600012F));
+ builder.AddLine(new Vector2(-229.296005F, -7.12799978F));
+ builder.AddLine(new Vector2(-229.296005F, -4.58400011F));
+ builder.AddLine(new Vector2(-219.264008F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-219.184006F, -4.92000008F), new Vector2(-219.132004F, -5.17999983F), new Vector2(-219.108002F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-219.084F, -5.64400005F), new Vector2(-219.072006F, -5.87200022F), new Vector2(-219.072006F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-219.072006F, -7.23199987F), new Vector2(-219.328003F, -8.23999977F), new Vector2(-219.839996F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-220.352005F, -10F), new Vector2(-221.048004F, -10.6879997F), new Vector2(-221.927994F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-222.807999F, -11.6800003F), new Vector2(-223.832001F, -11.9280005F), new Vector2(-225F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-226.184006F, -11.9280005F), new Vector2(-227.248001F, -11.6639996F), new Vector2(-228.192001F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-229.136002F, -10.6079998F), new Vector2(-229.880005F, -9.88399982F), new Vector2(-230.423996F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-230.968002F, -8.04399967F), new Vector2(-231.240005F, -7.0079999F), new Vector2(-231.240005F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-231.240005F, -4.67199993F), new Vector2(-230.960007F, -3.61599994F), new Vector2(-230.399994F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-229.839996F, -1.75999999F), new Vector2(-229.072006F, -1.03600001F), new Vector2(-228.095993F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-227.119995F, 0.00400000019F), new Vector2(-226F, 0.263999999F), new Vector2(-224.735992F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-223.744003F, 0.263999999F), new Vector2(-222.839996F, 0.100000001F), new Vector2(-222.024002F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1681()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-240.528F, 0F));
+ builder.AddLine(new Vector2(-240.528F, -17.4239998F));
+ builder.AddLine(new Vector2(-244.223999F, -17.4239998F));
+ builder.AddLine(new Vector2(-244.223999F, 0F));
+ builder.AddLine(new Vector2(-240.528F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-232.800003F, 0F));
+ builder.AddLine(new Vector2(-232.800003F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-232.800003F, -8.34399986F), new Vector2(-232.992004F, -9.11600018F), new Vector2(-233.376007F, -9.77999973F));
+ builder.AddCubicBezier(new Vector2(-233.759995F, -10.4440002F), new Vector2(-234.296005F, -10.9639997F), new Vector2(-234.983994F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-235.671997F, -11.7159996F), new Vector2(-236.472F, -11.9040003F), new Vector2(-237.384003F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-238.264008F, -11.9040003F), new Vector2(-239.048004F, -11.7159996F), new Vector2(-239.735992F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-240.423996F, -10.9639997F), new Vector2(-240.964005F, -10.4320002F), new Vector2(-241.356003F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-241.748001F, -9.05599976F), new Vector2(-241.944F, -8.25599957F), new Vector2(-241.944F, -7.34399986F));
+ builder.AddLine(new Vector2(-240.528F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-240.528F, -7.04799986F), new Vector2(-240.440002F, -7.4000001F), new Vector2(-240.264008F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-240.087997F, -8.00800037F), new Vector2(-239.848007F, -8.24400043F), new Vector2(-239.544006F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-239.240005F, -8.57999992F), new Vector2(-238.895996F, -8.66399956F), new Vector2(-238.511993F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-237.936005F, -8.66399956F), new Vector2(-237.455994F, -8.47599983F), new Vector2(-237.072006F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-236.688004F, -7.72399998F), new Vector2(-236.496002F, -7.23999977F), new Vector2(-236.496002F, -6.64799976F));
+ builder.AddLine(new Vector2(-236.496002F, 0F));
+ builder.AddLine(new Vector2(-232.800003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1682()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-245.807999F, -8.52000046F));
+ builder.AddLine(new Vector2(-245.807999F, -11.6639996F));
+ builder.AddLine(new Vector2(-254.759995F, -11.6639996F));
+ builder.AddLine(new Vector2(-254.759995F, -8.52000046F));
+ builder.AddLine(new Vector2(-245.807999F, -8.52000046F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-248.447998F, 0F));
+ builder.AddLine(new Vector2(-248.447998F, -16.4880009F));
+ builder.AddLine(new Vector2(-252.143997F, -16.4880009F));
+ builder.AddLine(new Vector2(-252.143997F, 0F));
+ builder.AddLine(new Vector2(-248.447998F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1683()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-268.391998F, 0F));
+ builder.AddLine(new Vector2(-268.391998F, -11.6639996F));
+ builder.AddLine(new Vector2(-272.088013F, -11.6639996F));
+ builder.AddLine(new Vector2(-272.088013F, 0F));
+ builder.AddLine(new Vector2(-268.391998F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-260.664001F, 0F));
+ builder.AddLine(new Vector2(-260.664001F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-260.664001F, -8.26399994F), new Vector2(-260.855988F, -9.00399971F), new Vector2(-261.23999F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-261.623993F, -10.3640003F), new Vector2(-262.152008F, -10.9040003F), new Vector2(-262.824005F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-263.496002F, -11.7040005F), new Vector2(-264.256012F, -11.9040003F), new Vector2(-265.104004F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-266F, -11.9040003F), new Vector2(-266.803986F, -11.7159996F), new Vector2(-267.515991F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-268.227997F, -10.9639997F), new Vector2(-268.787994F, -10.4320002F), new Vector2(-269.196014F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-269.604004F, -9.05599976F), new Vector2(-269.808014F, -8.25599957F), new Vector2(-269.808014F, -7.34399986F));
+ builder.AddLine(new Vector2(-268.391998F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-268.391998F, -7.04799986F), new Vector2(-268.303986F, -7.4000001F), new Vector2(-268.127991F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-267.951996F, -8.00800037F), new Vector2(-267.712006F, -8.24400043F), new Vector2(-267.40799F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-267.104004F, -8.57999992F), new Vector2(-266.76001F, -8.66399956F), new Vector2(-266.376007F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-265.799988F, -8.66399956F), new Vector2(-265.320007F, -8.47599983F), new Vector2(-264.936005F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-264.552002F, -7.72399998F), new Vector2(-264.359985F, -7.23999977F), new Vector2(-264.359985F, -6.64799976F));
+ builder.AddLine(new Vector2(-264.359985F, 0F));
+ builder.AddLine(new Vector2(-260.664001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1684()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-275.052002F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-274.691986F, -14.2480001F), new Vector2(-274.511993F, -14.7279997F), new Vector2(-274.511993F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-274.511993F, -15.8640003F), new Vector2(-274.691986F, -16.3439999F), new Vector2(-275.052002F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-275.411987F, -17.1119995F), new Vector2(-275.888F, -17.3040009F), new Vector2(-276.480011F, -17.3040009F));
+ builder.AddCubicBezier(new Vector2(-277.040009F, -17.3040009F), new Vector2(-277.511993F, -17.1119995F), new Vector2(-277.895996F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-278.279999F, -16.3439999F), new Vector2(-278.471985F, -15.8640003F), new Vector2(-278.471985F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-278.471985F, -14.7279997F), new Vector2(-278.279999F, -14.2480001F), new Vector2(-277.895996F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-277.511993F, -13.448F), new Vector2(-277.040009F, -13.2480001F), new Vector2(-276.480011F, -13.2480001F));
+ builder.AddCubicBezier(new Vector2(-275.888F, -13.2480001F), new Vector2(-275.411987F, -13.448F), new Vector2(-275.052002F, -13.8479996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-274.631989F, 0F));
+ builder.AddLine(new Vector2(-274.631989F, -11.6639996F));
+ builder.AddLine(new Vector2(-278.328003F, -11.6639996F));
+ builder.AddLine(new Vector2(-278.328003F, 0F));
+ builder.AddLine(new Vector2(-274.631989F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1685()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-285.480011F, -17.4239998F));
+ builder.AddLine(new Vector2(-289.175995F, -17.4239998F));
+ builder.AddLine(new Vector2(-289.175995F, -8.80799961F));
+ builder.AddLine(new Vector2(-288.552002F, -6F));
+ builder.AddLine(new Vector2(-289.104004F, -3.14400005F));
+ builder.AddLine(new Vector2(-289.104004F, 0F));
+ builder.AddLine(new Vector2(-285.480011F, 0F));
+ builder.AddLine(new Vector2(-285.480011F, -17.4239998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-292.895996F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-293.29599F, -3.67600012F), new Vector2(-293.604004F, -4F), new Vector2(-293.820007F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-294.036011F, -4.83199978F), new Vector2(-294.144012F, -5.3039999F), new Vector2(-294.144012F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-294.144012F, -6.36000013F), new Vector2(-294.028015F, -6.82800007F), new Vector2(-293.79599F, -7.23600006F));
+ builder.AddCubicBezier(new Vector2(-293.563995F, -7.64400005F), new Vector2(-293.256012F, -7.96799994F), new Vector2(-292.872009F, -8.20800018F));
+ builder.AddCubicBezier(new Vector2(-292.488007F, -8.44799995F), new Vector2(-292.040009F, -8.56799984F), new Vector2(-291.528015F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-291.015991F, -8.56799984F), new Vector2(-290.567993F, -8.45199966F), new Vector2(-290.18399F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-289.799988F, -7.98799992F), new Vector2(-289.5F, -7.66800022F), new Vector2(-289.283997F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-289.067993F, -6.85200024F), new Vector2(-288.959991F, -6.38399982F), new Vector2(-288.959991F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-288.959991F, -5.3119998F), new Vector2(-289.067993F, -4.83199978F), new Vector2(-289.283997F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-289.5F, -4F), new Vector2(-289.799988F, -3.67600012F), new Vector2(-290.18399F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-290.567993F, -3.21199989F), new Vector2(-291.023987F, -3.09599996F), new Vector2(-291.552002F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-292.048004F, -3.09599996F), new Vector2(-292.496002F, -3.21199989F), new Vector2(-292.895996F, -3.44400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-290.040009F, -0.252000004F));
+ builder.AddCubicBezier(new Vector2(-289.384003F, -0.579999983F), new Vector2(-288.847992F, -1.01999998F), new Vector2(-288.432007F, -1.57200003F));
+ builder.AddCubicBezier(new Vector2(-288.015991F, -2.12400007F), new Vector2(-287.776001F, -2.74399996F), new Vector2(-287.712006F, -3.43199992F));
+ builder.AddLine(new Vector2(-287.712006F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-287.776001F, -9.05599976F), new Vector2(-288.015991F, -9.67599964F), new Vector2(-288.432007F, -10.2119999F));
+ builder.AddCubicBezier(new Vector2(-288.847992F, -10.7480001F), new Vector2(-289.384003F, -11.1639996F), new Vector2(-290.040009F, -11.46F));
+ builder.AddCubicBezier(new Vector2(-290.696014F, -11.7559996F), new Vector2(-291.415985F, -11.9040003F), new Vector2(-292.200012F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-293.303986F, -11.9040003F), new Vector2(-294.287994F, -11.6400003F), new Vector2(-295.152008F, -11.1120005F));
+ builder.AddCubicBezier(new Vector2(-296.015991F, -10.5839996F), new Vector2(-296.687988F, -9.86400032F), new Vector2(-297.167999F, -8.95199966F));
+ builder.AddCubicBezier(new Vector2(-297.64801F, -8.03999996F), new Vector2(-297.888F, -7F), new Vector2(-297.888F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-297.888F, -4.66400003F), new Vector2(-297.64801F, -3.62400007F), new Vector2(-297.167999F, -2.71199989F));
+ builder.AddCubicBezier(new Vector2(-296.687988F, -1.79999995F), new Vector2(-296.019989F, -1.08000004F), new Vector2(-295.164001F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(-294.308014F, -0.0240000002F), new Vector2(-293.320007F, 0.239999995F), new Vector2(-292.200012F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-291.415985F, 0.239999995F), new Vector2(-290.696014F, 0.0759999976F), new Vector2(-290.040009F, -0.252000004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1686()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-301.872009F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-301.056F, -0.555999994F), new Vector2(-300.359985F, -1.06400001F), new Vector2(-299.783997F, -1.75199997F));
+ builder.AddLine(new Vector2(-301.824005F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-302.175995F, -3.36800003F), new Vector2(-302.584015F, -3.06800008F), new Vector2(-303.048004F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-303.511993F, -2.66799998F), new Vector2(-304.023987F, -2.56800008F), new Vector2(-304.584015F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-305.208008F, -2.56800008F), new Vector2(-305.747986F, -2.70000005F), new Vector2(-306.20401F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-306.660004F, -3.22799993F), new Vector2(-307.011993F, -3.60800004F), new Vector2(-307.26001F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-307.507996F, -4.5999999F), new Vector2(-307.631989F, -5.18400002F), new Vector2(-307.631989F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-307.631989F, -6.52799988F), new Vector2(-307.515991F, -7.10400009F), new Vector2(-307.283997F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-307.052002F, -8.06400013F), new Vector2(-306.723999F, -8.43999958F), new Vector2(-306.299988F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-305.876007F, -8.98400021F), new Vector2(-305.376007F, -9.11999989F), new Vector2(-304.799988F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-304.272003F, -9.11999989F), new Vector2(-303.820007F, -9F), new Vector2(-303.444F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-303.067993F, -8.52000046F), new Vector2(-302.783997F, -8.18000031F), new Vector2(-302.59201F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-302.399994F, -7.30000019F), new Vector2(-302.29599F, -6.75199986F), new Vector2(-302.279999F, -6.09600019F));
+ builder.AddLine(new Vector2(-300.696014F, -7.17600012F));
+ builder.AddLine(new Vector2(-309.144012F, -7.12799978F));
+ builder.AddLine(new Vector2(-309.144012F, -4.58400011F));
+ builder.AddLine(new Vector2(-299.112F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-299.032013F, -4.92000008F), new Vector2(-298.980011F, -5.17999983F), new Vector2(-298.955994F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-298.932007F, -5.64400005F), new Vector2(-298.920013F, -5.87200022F), new Vector2(-298.920013F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-298.920013F, -7.23199987F), new Vector2(-299.175995F, -8.23999977F), new Vector2(-299.687988F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-300.200012F, -10F), new Vector2(-300.895996F, -10.6879997F), new Vector2(-301.776001F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-302.656006F, -11.6800003F), new Vector2(-303.679993F, -11.9280005F), new Vector2(-304.847992F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-306.032013F, -11.9280005F), new Vector2(-307.096008F, -11.6639996F), new Vector2(-308.040009F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-308.984009F, -10.6079998F), new Vector2(-309.727997F, -9.88399982F), new Vector2(-310.272003F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-310.81601F, -8.04399967F), new Vector2(-311.088013F, -7.0079999F), new Vector2(-311.088013F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-311.088013F, -4.67199993F), new Vector2(-310.808014F, -3.61599994F), new Vector2(-310.247986F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-309.687988F, -1.75999999F), new Vector2(-308.920013F, -1.03600001F), new Vector2(-307.944F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-306.967987F, 0.00400000019F), new Vector2(-305.847992F, 0.263999999F), new Vector2(-304.584015F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-303.59201F, 0.263999999F), new Vector2(-302.687988F, 0.100000001F), new Vector2(-301.872009F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1687()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-318.335999F, 4.92000008F));
+ builder.AddLine(new Vector2(-316.272003F, 0.0719999969F));
+ builder.AddLine(new Vector2(-318.623993F, -2.66400003F));
+ builder.AddLine(new Vector2(-322.127991F, 4.92000008F));
+ builder.AddLine(new Vector2(-318.335999F, 4.92000008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-316.272003F, 0.0719999969F));
+ builder.AddLine(new Vector2(-311.279999F, -11.6639996F));
+ builder.AddLine(new Vector2(-315.264008F, -11.6639996F));
+ builder.AddLine(new Vector2(-318.359985F, -2.37599993F));
+ builder.AddLine(new Vector2(-316.895996F, -2.37599993F));
+ builder.AddLine(new Vector2(-319.944F, -11.6639996F));
+ builder.AddLine(new Vector2(-323.928009F, -11.6639996F));
+ builder.AddLine(new Vector2(-319.127991F, 0.0719999969F));
+ builder.AddLine(new Vector2(-316.272003F, 0.0719999969F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1688()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-325.29599F, 0F));
+ builder.AddLine(new Vector2(-325.29599F, -11.6639996F));
+ builder.AddLine(new Vector2(-328.920013F, -11.6639996F));
+ builder.AddLine(new Vector2(-328.920013F, -8.80799961F));
+ builder.AddLine(new Vector2(-328.368011F, -6F));
+ builder.AddLine(new Vector2(-328.920013F, -3.14400005F));
+ builder.AddLine(new Vector2(-328.920013F, 0F));
+ builder.AddLine(new Vector2(-325.29599F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-332.700012F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-333.09201F, -3.67600012F), new Vector2(-333.403992F, -4F), new Vector2(-333.635986F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-333.868011F, -4.83199978F), new Vector2(-333.984009F, -5.3039999F), new Vector2(-333.984009F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-333.984009F, -6.36000013F), new Vector2(-333.868011F, -6.83199978F), new Vector2(-333.635986F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-333.403992F, -7.66400003F), new Vector2(-333.09201F, -7.98799992F), new Vector2(-332.700012F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-332.308014F, -8.45199966F), new Vector2(-331.864014F, -8.56799984F), new Vector2(-331.368011F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-330.855988F, -8.56799984F), new Vector2(-330.399994F, -8.45199966F), new Vector2(-330F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-329.600006F, -7.98799992F), new Vector2(-329.29599F, -7.66800022F), new Vector2(-329.088013F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-328.880005F, -6.85200024F), new Vector2(-328.776001F, -6.38399982F), new Vector2(-328.776001F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-328.776001F, -5.03999996F), new Vector2(-329.011993F, -4.37599993F), new Vector2(-329.484009F, -3.86400008F));
+ builder.AddCubicBezier(new Vector2(-329.955994F, -3.352F), new Vector2(-330.584015F, -3.09599996F), new Vector2(-331.368011F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-331.864014F, -3.09599996F), new Vector2(-332.308014F, -3.21199989F), new Vector2(-332.700012F, -3.44400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-329.988007F, -0.216000006F));
+ builder.AddCubicBezier(new Vector2(-329.355988F, -0.519999981F), new Vector2(-328.843994F, -0.939999998F), new Vector2(-328.451996F, -1.47599995F));
+ builder.AddCubicBezier(new Vector2(-328.059998F, -2.01200008F), new Vector2(-327.839996F, -2.62400007F), new Vector2(-327.791992F, -3.31200004F));
+ builder.AddLine(new Vector2(-327.791992F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-327.839996F, -9.03999996F), new Vector2(-328.063995F, -9.65200043F), new Vector2(-328.463989F, -10.1879997F));
+ builder.AddCubicBezier(new Vector2(-328.864014F, -10.724F), new Vector2(-329.380005F, -11.1440001F), new Vector2(-330.011993F, -11.448F));
+ builder.AddCubicBezier(new Vector2(-330.644012F, -11.7519999F), new Vector2(-331.35199F, -11.9040003F), new Vector2(-332.135986F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-333.208008F, -11.9040003F), new Vector2(-334.164001F, -11.6440001F), new Vector2(-335.003998F, -11.1239996F));
+ builder.AddCubicBezier(new Vector2(-335.843994F, -10.6040001F), new Vector2(-336.507996F, -9.88399982F), new Vector2(-336.996002F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-337.484009F, -8.04399967F), new Vector2(-337.727997F, -7F), new Vector2(-337.727997F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-337.727997F, -4.66400003F), new Vector2(-337.484009F, -3.62800002F), new Vector2(-336.996002F, -2.72399998F));
+ builder.AddCubicBezier(new Vector2(-336.507996F, -1.82000005F), new Vector2(-335.839996F, -1.10000002F), new Vector2(-334.992004F, -0.56400001F));
+ builder.AddCubicBezier(new Vector2(-334.144012F, -0.0280000009F), new Vector2(-333.191986F, 0.239999995F), new Vector2(-332.135986F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-331.335999F, 0.239999995F), new Vector2(-330.619995F, 0.0879999995F), new Vector2(-329.988007F, -0.216000006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1689()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-339.600006F, 0F));
+ builder.AddLine(new Vector2(-339.600006F, -17.4239998F));
+ builder.AddLine(new Vector2(-343.29599F, -17.4239998F));
+ builder.AddLine(new Vector2(-343.29599F, 0F));
+ builder.AddLine(new Vector2(-339.600006F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1690()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-352.835999F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-353.227997F, -3.67600012F), new Vector2(-353.536011F, -4F), new Vector2(-353.76001F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-353.984009F, -4.83199978F), new Vector2(-354.096008F, -5.3039999F), new Vector2(-354.096008F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-354.096008F, -6.36000013F), new Vector2(-353.984009F, -6.83199978F), new Vector2(-353.76001F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-353.536011F, -7.66400003F), new Vector2(-353.227997F, -7.98799992F), new Vector2(-352.835999F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-352.444F, -8.45199966F), new Vector2(-351.992004F, -8.56799984F), new Vector2(-351.480011F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-350.967987F, -8.56799984F), new Vector2(-350.519989F, -8.45199966F), new Vector2(-350.135986F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-349.752014F, -7.98799992F), new Vector2(-349.444F, -7.66400003F), new Vector2(-349.212006F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-348.980011F, -6.83199978F), new Vector2(-348.864014F, -6.36000013F), new Vector2(-348.864014F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-348.864014F, -5.3039999F), new Vector2(-348.980011F, -4.83199978F), new Vector2(-349.212006F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-349.444F, -4F), new Vector2(-349.756012F, -3.67600012F), new Vector2(-350.14801F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-350.540009F, -3.21199989F), new Vector2(-350.992004F, -3.09599996F), new Vector2(-351.503998F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-352F, -3.09599996F), new Vector2(-352.444F, -3.21199989F), new Vector2(-352.835999F, -3.44400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-353.928009F, 4.92000008F));
+ builder.AddLine(new Vector2(-353.928009F, -3F));
+ builder.AddLine(new Vector2(-354.480011F, -5.83199978F));
+ builder.AddLine(new Vector2(-353.880005F, -8.68799973F));
+ builder.AddLine(new Vector2(-353.880005F, -11.6639996F));
+ builder.AddLine(new Vector2(-357.575989F, -11.6639996F));
+ builder.AddLine(new Vector2(-357.575989F, 4.92000008F));
+ builder.AddLine(new Vector2(-353.928009F, 4.92000008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-347.880005F, -0.56400001F));
+ builder.AddCubicBezier(new Vector2(-347.015991F, -1.10000002F), new Vector2(-346.339996F, -1.82000005F), new Vector2(-345.85199F, -2.72399998F));
+ builder.AddCubicBezier(new Vector2(-345.364014F, -3.62800002F), new Vector2(-345.119995F, -4.66400003F), new Vector2(-345.119995F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-345.119995F, -7F), new Vector2(-345.368011F, -8.03999996F), new Vector2(-345.864014F, -8.95199966F));
+ builder.AddCubicBezier(new Vector2(-346.359985F, -9.86400032F), new Vector2(-347.036011F, -10.5839996F), new Vector2(-347.891998F, -11.1120005F));
+ builder.AddCubicBezier(new Vector2(-348.747986F, -11.6400003F), new Vector2(-349.720001F, -11.9040003F), new Vector2(-350.808014F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-351.59201F, -11.9040003F), new Vector2(-352.312012F, -11.7440004F), new Vector2(-352.967987F, -11.4239998F));
+ builder.AddCubicBezier(new Vector2(-353.623993F, -11.1040001F), new Vector2(-354.160004F, -10.6680002F), new Vector2(-354.575989F, -10.1160002F));
+ builder.AddCubicBezier(new Vector2(-354.992004F, -9.56400013F), new Vector2(-355.231995F, -8.93599987F), new Vector2(-355.29599F, -8.23200035F));
+ builder.AddLine(new Vector2(-355.29599F, -3.31200004F));
+ builder.AddCubicBezier(new Vector2(-355.231995F, -2.62400007F), new Vector2(-354.996002F, -2.01200008F), new Vector2(-354.588013F, -1.47599995F));
+ builder.AddCubicBezier(new Vector2(-354.179993F, -0.939999998F), new Vector2(-353.64801F, -0.519999981F), new Vector2(-352.992004F, -0.216000006F));
+ builder.AddCubicBezier(new Vector2(-352.335999F, 0.0879999995F), new Vector2(-351.608002F, 0.239999995F), new Vector2(-350.808014F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-349.720001F, 0.239999995F), new Vector2(-348.743988F, -0.0280000009F), new Vector2(-347.880005F, -0.56400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1691()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-360.828003F, -0.708000004F));
+ builder.AddCubicBezier(new Vector2(-359.971985F, -1.38800001F), new Vector2(-359.544006F, -2.296F), new Vector2(-359.544006F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-359.544006F, -4.16800022F), new Vector2(-359.679993F, -4.76399994F), new Vector2(-359.951996F, -5.21999979F));
+ builder.AddCubicBezier(new Vector2(-360.223999F, -5.67600012F), new Vector2(-360.575989F, -6.04400015F), new Vector2(-361.007996F, -6.32399988F));
+ builder.AddCubicBezier(new Vector2(-361.440002F, -6.60400009F), new Vector2(-361.895996F, -6.82000017F), new Vector2(-362.376007F, -6.97200012F));
+ builder.AddCubicBezier(new Vector2(-362.855988F, -7.12400007F), new Vector2(-363.308014F, -7.25600004F), new Vector2(-363.731995F, -7.36800003F));
+ builder.AddCubicBezier(new Vector2(-364.156006F, -7.48000002F), new Vector2(-364.507996F, -7.6079998F), new Vector2(-364.787994F, -7.75199986F));
+ builder.AddCubicBezier(new Vector2(-365.067993F, -7.89599991F), new Vector2(-365.208008F, -8.0880003F), new Vector2(-365.208008F, -8.32800007F));
+ builder.AddCubicBezier(new Vector2(-365.208008F, -8.53600025F), new Vector2(-365.104004F, -8.70400047F), new Vector2(-364.895996F, -8.83199978F));
+ builder.AddCubicBezier(new Vector2(-364.687988F, -8.96000004F), new Vector2(-364.376007F, -9.02400017F), new Vector2(-363.959991F, -9.02400017F));
+ builder.AddCubicBezier(new Vector2(-363.528015F, -9.02400017F), new Vector2(-363.084015F, -8.93200016F), new Vector2(-362.627991F, -8.74800014F));
+ builder.AddCubicBezier(new Vector2(-362.171997F, -8.56400013F), new Vector2(-361.76001F, -8.25599957F), new Vector2(-361.391998F, -7.82399988F));
+ builder.AddLine(new Vector2(-359.303986F, -9.96000004F));
+ builder.AddCubicBezier(new Vector2(-359.81601F, -10.632F), new Vector2(-360.496002F, -11.1400003F), new Vector2(-361.343994F, -11.4840002F));
+ builder.AddCubicBezier(new Vector2(-362.191986F, -11.8280001F), new Vector2(-363.104004F, -12F), new Vector2(-364.079987F, -12F));
+ builder.AddCubicBezier(new Vector2(-365.056F, -12F), new Vector2(-365.895996F, -11.8400002F), new Vector2(-366.600006F, -11.5200005F));
+ builder.AddCubicBezier(new Vector2(-367.303986F, -11.1999998F), new Vector2(-367.847992F, -10.7639999F), new Vector2(-368.231995F, -10.2119999F));
+ builder.AddCubicBezier(new Vector2(-368.615997F, -9.65999985F), new Vector2(-368.808014F, -9.00800037F), new Vector2(-368.808014F, -8.25599957F));
+ builder.AddCubicBezier(new Vector2(-368.808014F, -7.53599977F), new Vector2(-368.671997F, -6.95200014F), new Vector2(-368.399994F, -6.50400019F));
+ builder.AddCubicBezier(new Vector2(-368.127991F, -6.05600023F), new Vector2(-367.776001F, -5.704F), new Vector2(-367.343994F, -5.44799995F));
+ builder.AddCubicBezier(new Vector2(-366.911987F, -5.19199991F), new Vector2(-366.455994F, -4.98799992F), new Vector2(-365.976013F, -4.83599997F));
+ builder.AddCubicBezier(new Vector2(-365.496002F, -4.68400002F), new Vector2(-365.036011F, -4.54799986F), new Vector2(-364.596008F, -4.42799997F));
+ builder.AddCubicBezier(new Vector2(-364.156006F, -4.30800009F), new Vector2(-363.799988F, -4.17999983F), new Vector2(-363.528015F, -4.04400015F));
+ builder.AddCubicBezier(new Vector2(-363.256012F, -3.90799999F), new Vector2(-363.119995F, -3.6960001F), new Vector2(-363.119995F, -3.40799999F));
+ builder.AddCubicBezier(new Vector2(-363.119995F, -3.16799998F), new Vector2(-363.235992F, -2.98399997F), new Vector2(-363.467987F, -2.85599995F));
+ builder.AddCubicBezier(new Vector2(-363.700012F, -2.72799993F), new Vector2(-364.015991F, -2.66400003F), new Vector2(-364.415985F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(-365.056F, -2.66400003F), new Vector2(-365.635986F, -2.77999997F), new Vector2(-366.156006F, -3.01200008F));
+ builder.AddCubicBezier(new Vector2(-366.675995F, -3.24399996F), new Vector2(-367.135986F, -3.56800008F), new Vector2(-367.536011F, -3.98399997F));
+ builder.AddLine(new Vector2(-369.64801F, -1.87199998F));
+ builder.AddCubicBezier(new Vector2(-369.231995F, -1.44000006F), new Vector2(-368.743988F, -1.05999994F), new Vector2(-368.18399F, -0.731999993F));
+ builder.AddCubicBezier(new Vector2(-367.623993F, -0.404000014F), new Vector2(-367.007996F, -0.148000002F), new Vector2(-366.335999F, 0.0359999985F));
+ builder.AddCubicBezier(new Vector2(-365.664001F, 0.219999999F), new Vector2(-364.984009F, 0.312000006F), new Vector2(-364.29599F, 0.312000006F));
+ builder.AddCubicBezier(new Vector2(-362.839996F, 0.312000006F), new Vector2(-361.68399F, -0.0280000009F), new Vector2(-360.828003F, -0.708000004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1692()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-371.532013F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-371.171997F, -14.2480001F), new Vector2(-370.992004F, -14.7279997F), new Vector2(-370.992004F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-370.992004F, -15.8640003F), new Vector2(-371.171997F, -16.3439999F), new Vector2(-371.532013F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-371.891998F, -17.1119995F), new Vector2(-372.368011F, -17.3040009F), new Vector2(-372.959991F, -17.3040009F));
+ builder.AddCubicBezier(new Vector2(-373.519989F, -17.3040009F), new Vector2(-373.992004F, -17.1119995F), new Vector2(-374.376007F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-374.76001F, -16.3439999F), new Vector2(-374.951996F, -15.8640003F), new Vector2(-374.951996F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-374.951996F, -14.7279997F), new Vector2(-374.76001F, -14.2480001F), new Vector2(-374.376007F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-373.992004F, -13.448F), new Vector2(-373.519989F, -13.2480001F), new Vector2(-372.959991F, -13.2480001F));
+ builder.AddCubicBezier(new Vector2(-372.368011F, -13.2480001F), new Vector2(-371.891998F, -13.448F), new Vector2(-371.532013F, -13.8479996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-371.112F, 0F));
+ builder.AddLine(new Vector2(-371.112F, -11.6639996F));
+ builder.AddLine(new Vector2(-374.808014F, -11.6639996F));
+ builder.AddLine(new Vector2(-374.808014F, 0F));
+ builder.AddLine(new Vector2(-371.112F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1693()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-377.399994F, -17.4239998F));
+ builder.AddLine(new Vector2(-381.096008F, -17.4239998F));
+ builder.AddLine(new Vector2(-381.096008F, -8.80799961F));
+ builder.AddLine(new Vector2(-380.471985F, -6F));
+ builder.AddLine(new Vector2(-381.023987F, -3.14400005F));
+ builder.AddLine(new Vector2(-381.023987F, 0F));
+ builder.AddLine(new Vector2(-377.399994F, 0F));
+ builder.AddLine(new Vector2(-377.399994F, -17.4239998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-384.81601F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-385.216003F, -3.67600012F), new Vector2(-385.523987F, -4F), new Vector2(-385.73999F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-385.955994F, -4.83199978F), new Vector2(-386.063995F, -5.3039999F), new Vector2(-386.063995F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-386.063995F, -6.36000013F), new Vector2(-385.947998F, -6.82800007F), new Vector2(-385.716003F, -7.23600006F));
+ builder.AddCubicBezier(new Vector2(-385.484009F, -7.64400005F), new Vector2(-385.175995F, -7.96799994F), new Vector2(-384.791992F, -8.20800018F));
+ builder.AddCubicBezier(new Vector2(-384.40799F, -8.44799995F), new Vector2(-383.959991F, -8.56799984F), new Vector2(-383.447998F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-382.936005F, -8.56799984F), new Vector2(-382.488007F, -8.45199966F), new Vector2(-382.104004F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-381.720001F, -7.98799992F), new Vector2(-381.420013F, -7.66800022F), new Vector2(-381.20401F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-380.988007F, -6.85200024F), new Vector2(-380.880005F, -6.38399982F), new Vector2(-380.880005F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-380.880005F, -5.3119998F), new Vector2(-380.988007F, -4.83199978F), new Vector2(-381.20401F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-381.420013F, -4F), new Vector2(-381.720001F, -3.67600012F), new Vector2(-382.104004F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-382.488007F, -3.21199989F), new Vector2(-382.944F, -3.09599996F), new Vector2(-383.471985F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-383.967987F, -3.09599996F), new Vector2(-384.415985F, -3.21199989F), new Vector2(-384.81601F, -3.44400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-381.959991F, -0.252000004F));
+ builder.AddCubicBezier(new Vector2(-381.303986F, -0.579999983F), new Vector2(-380.768005F, -1.01999998F), new Vector2(-380.35199F, -1.57200003F));
+ builder.AddCubicBezier(new Vector2(-379.936005F, -2.12400007F), new Vector2(-379.696014F, -2.74399996F), new Vector2(-379.631989F, -3.43199992F));
+ builder.AddLine(new Vector2(-379.631989F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-379.696014F, -9.05599976F), new Vector2(-379.936005F, -9.67599964F), new Vector2(-380.35199F, -10.2119999F));
+ builder.AddCubicBezier(new Vector2(-380.768005F, -10.7480001F), new Vector2(-381.303986F, -11.1639996F), new Vector2(-381.959991F, -11.46F));
+ builder.AddCubicBezier(new Vector2(-382.615997F, -11.7559996F), new Vector2(-383.335999F, -11.9040003F), new Vector2(-384.119995F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-385.223999F, -11.9040003F), new Vector2(-386.208008F, -11.6400003F), new Vector2(-387.071991F, -11.1120005F));
+ builder.AddCubicBezier(new Vector2(-387.936005F, -10.5839996F), new Vector2(-388.608002F, -9.86400032F), new Vector2(-389.088013F, -8.95199966F));
+ builder.AddCubicBezier(new Vector2(-389.567993F, -8.03999996F), new Vector2(-389.808014F, -7F), new Vector2(-389.808014F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-389.808014F, -4.66400003F), new Vector2(-389.567993F, -3.62400007F), new Vector2(-389.088013F, -2.71199989F));
+ builder.AddCubicBezier(new Vector2(-388.608002F, -1.79999995F), new Vector2(-387.940002F, -1.08000004F), new Vector2(-387.084015F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(-386.227997F, -0.0240000002F), new Vector2(-385.23999F, 0.239999995F), new Vector2(-384.119995F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-383.335999F, 0.239999995F), new Vector2(-382.615997F, 0.0759999976F), new Vector2(-381.959991F, -0.252000004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1694()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-398.35199F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-397.536011F, -0.555999994F), new Vector2(-396.839996F, -1.06400001F), new Vector2(-396.264008F, -1.75199997F));
+ builder.AddLine(new Vector2(-398.303986F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-398.656006F, -3.36800003F), new Vector2(-399.063995F, -3.06800008F), new Vector2(-399.528015F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-399.992004F, -2.66799998F), new Vector2(-400.503998F, -2.56800008F), new Vector2(-401.063995F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-401.687988F, -2.56800008F), new Vector2(-402.227997F, -2.70000005F), new Vector2(-402.68399F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-403.140015F, -3.22799993F), new Vector2(-403.492004F, -3.60800004F), new Vector2(-403.73999F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-403.988007F, -4.5999999F), new Vector2(-404.112F, -5.18400002F), new Vector2(-404.112F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-404.112F, -6.52799988F), new Vector2(-403.996002F, -7.10400009F), new Vector2(-403.764008F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-403.532013F, -8.06400013F), new Vector2(-403.20401F, -8.43999958F), new Vector2(-402.779999F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-402.355988F, -8.98400021F), new Vector2(-401.855988F, -9.11999989F), new Vector2(-401.279999F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-400.752014F, -9.11999989F), new Vector2(-400.299988F, -9F), new Vector2(-399.924011F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-399.548004F, -8.52000046F), new Vector2(-399.264008F, -8.18000031F), new Vector2(-399.071991F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-398.880005F, -7.30000019F), new Vector2(-398.776001F, -6.75199986F), new Vector2(-398.76001F, -6.09600019F));
+ builder.AddLine(new Vector2(-397.175995F, -7.17600012F));
+ builder.AddLine(new Vector2(-405.623993F, -7.12799978F));
+ builder.AddLine(new Vector2(-405.623993F, -4.58400011F));
+ builder.AddLine(new Vector2(-395.59201F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-395.511993F, -4.92000008F), new Vector2(-395.459991F, -5.17999983F), new Vector2(-395.436005F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-395.411987F, -5.64400005F), new Vector2(-395.399994F, -5.87200022F), new Vector2(-395.399994F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-395.399994F, -7.23199987F), new Vector2(-395.656006F, -8.23999977F), new Vector2(-396.167999F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-396.679993F, -10F), new Vector2(-397.376007F, -10.6879997F), new Vector2(-398.256012F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-399.135986F, -11.6800003F), new Vector2(-400.160004F, -11.9280005F), new Vector2(-401.328003F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-402.511993F, -11.9280005F), new Vector2(-403.575989F, -11.6639996F), new Vector2(-404.519989F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-405.463989F, -10.6079998F), new Vector2(-406.208008F, -9.88399982F), new Vector2(-406.752014F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-407.29599F, -8.04399967F), new Vector2(-407.567993F, -7.0079999F), new Vector2(-407.567993F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-407.567993F, -4.67199993F), new Vector2(-407.287994F, -3.61599994F), new Vector2(-406.727997F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-406.167999F, -1.75999999F), new Vector2(-405.399994F, -1.03600001F), new Vector2(-404.424011F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-403.447998F, 0.00400000019F), new Vector2(-402.328003F, 0.263999999F), new Vector2(-401.063995F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-400.071991F, 0.263999999F), new Vector2(-399.167999F, 0.100000001F), new Vector2(-398.35199F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1695()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-416.364014F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-416.756012F, -3.6559999F), new Vector2(-417.063995F, -3.98000002F), new Vector2(-417.287994F, -4.40399981F));
+ builder.AddCubicBezier(new Vector2(-417.511993F, -4.82800007F), new Vector2(-417.623993F, -5.3119998F), new Vector2(-417.623993F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-417.623993F, -6.36800003F), new Vector2(-417.515991F, -6.83199978F), new Vector2(-417.299988F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-417.084015F, -7.66400003F), new Vector2(-416.776001F, -7.98799992F), new Vector2(-416.376007F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-415.976013F, -8.45199966F), new Vector2(-415.519989F, -8.56799984F), new Vector2(-415.007996F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-414.511993F, -8.56799984F), new Vector2(-414.067993F, -8.45199966F), new Vector2(-413.675995F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-413.283997F, -7.98799992F), new Vector2(-412.971985F, -7.66400003F), new Vector2(-412.73999F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-412.507996F, -6.83199978F), new Vector2(-412.391998F, -6.36000013F), new Vector2(-412.391998F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-412.391998F, -5.3039999F), new Vector2(-412.507996F, -4.83199978F), new Vector2(-412.73999F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-412.971985F, -4F), new Vector2(-413.283997F, -3.67600012F), new Vector2(-413.675995F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-414.067993F, -3.21199989F), new Vector2(-414.511993F, -3.09599996F), new Vector2(-415.007996F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-415.519989F, -3.09599996F), new Vector2(-415.971985F, -3.20799994F), new Vector2(-416.364014F, -3.43199992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-417.455994F, 0F));
+ builder.AddLine(new Vector2(-417.455994F, -3.14400005F));
+ builder.AddLine(new Vector2(-418.007996F, -6F));
+ builder.AddLine(new Vector2(-417.40799F, -8.80799961F));
+ builder.AddLine(new Vector2(-417.40799F, -17.4239998F));
+ builder.AddLine(new Vector2(-421.104004F, -17.4239998F));
+ builder.AddLine(new Vector2(-421.104004F, 0F));
+ builder.AddLine(new Vector2(-417.455994F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-411.40799F, -0.56400001F));
+ builder.AddCubicBezier(new Vector2(-410.544006F, -1.10000002F), new Vector2(-409.868011F, -1.82000005F), new Vector2(-409.380005F, -2.72399998F));
+ builder.AddCubicBezier(new Vector2(-408.891998F, -3.62800002F), new Vector2(-408.64801F, -4.66400003F), new Vector2(-408.64801F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-408.64801F, -7F), new Vector2(-408.895996F, -8.03999996F), new Vector2(-409.391998F, -8.95199966F));
+ builder.AddCubicBezier(new Vector2(-409.888F, -9.86400032F), new Vector2(-410.563995F, -10.5839996F), new Vector2(-411.420013F, -11.1120005F));
+ builder.AddCubicBezier(new Vector2(-412.276001F, -11.6400003F), new Vector2(-413.247986F, -11.9040003F), new Vector2(-414.335999F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-415.119995F, -11.9040003F), new Vector2(-415.839996F, -11.7559996F), new Vector2(-416.496002F, -11.46F));
+ builder.AddCubicBezier(new Vector2(-417.152008F, -11.1639996F), new Vector2(-417.687988F, -10.7480001F), new Vector2(-418.104004F, -10.2119999F));
+ builder.AddCubicBezier(new Vector2(-418.519989F, -9.67599964F), new Vector2(-418.76001F, -9.05599976F), new Vector2(-418.824005F, -8.35200024F));
+ builder.AddLine(new Vector2(-418.824005F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-418.76001F, -2.74399996F), new Vector2(-418.523987F, -2.12400007F), new Vector2(-418.115997F, -1.57200003F));
+ builder.AddCubicBezier(new Vector2(-417.708008F, -1.01999998F), new Vector2(-417.175995F, -0.579999983F), new Vector2(-416.519989F, -0.252000004F));
+ builder.AddCubicBezier(new Vector2(-415.864014F, 0.0759999976F), new Vector2(-415.135986F, 0.239999995F), new Vector2(-414.335999F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-413.247986F, 0.239999995F), new Vector2(-412.272003F, -0.0280000009F), new Vector2(-411.40799F, -0.56400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1696()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-432.084015F, -8.07600021F));
+ builder.AddCubicBezier(new Vector2(-431.723999F, -8.45199966F), new Vector2(-431.231995F, -8.64000034F), new Vector2(-430.608002F, -8.64000034F));
+ builder.AddCubicBezier(new Vector2(-430.303986F, -8.64000034F), new Vector2(-430.032013F, -8.59200001F), new Vector2(-429.791992F, -8.49600029F));
+ builder.AddCubicBezier(new Vector2(-429.552002F, -8.39999962F), new Vector2(-429.359985F, -8.27200031F), new Vector2(-429.216003F, -8.11200047F));
+ builder.AddLine(new Vector2(-427.032013F, -10.8959999F));
+ builder.AddCubicBezier(new Vector2(-427.35199F, -11.2320004F), new Vector2(-427.723999F, -11.4840002F), new Vector2(-428.14801F, -11.6520004F));
+ builder.AddCubicBezier(new Vector2(-428.571991F, -11.8199997F), new Vector2(-429.063995F, -11.9040003F), new Vector2(-429.623993F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-430.888F, -11.9040003F), new Vector2(-431.884003F, -11.5279999F), new Vector2(-432.612F, -10.776F));
+ builder.AddCubicBezier(new Vector2(-433.339996F, -10.0240002F), new Vector2(-433.855988F, -8.96000004F), new Vector2(-434.160004F, -7.58400011F));
+ builder.AddLine(new Vector2(-432.623993F, -6.38399982F));
+ builder.AddCubicBezier(new Vector2(-432.623993F, -7.13600016F), new Vector2(-432.444F, -7.69999981F), new Vector2(-432.084015F, -8.07600021F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-432.623993F, 0F));
+ builder.AddLine(new Vector2(-432.623993F, -11.6639996F));
+ builder.AddLine(new Vector2(-436.320007F, -11.6639996F));
+ builder.AddLine(new Vector2(-436.320007F, 0F));
+ builder.AddLine(new Vector2(-432.623993F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1697()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-441F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-440.18399F, -0.555999994F), new Vector2(-439.488007F, -1.06400001F), new Vector2(-438.911987F, -1.75199997F));
+ builder.AddLine(new Vector2(-440.951996F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-441.303986F, -3.36800003F), new Vector2(-441.712006F, -3.06800008F), new Vector2(-442.175995F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-442.640015F, -2.66799998F), new Vector2(-443.152008F, -2.56800008F), new Vector2(-443.712006F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-444.335999F, -2.56800008F), new Vector2(-444.876007F, -2.70000005F), new Vector2(-445.332001F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-445.787994F, -3.22799993F), new Vector2(-446.140015F, -3.60800004F), new Vector2(-446.388F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-446.635986F, -4.5999999F), new Vector2(-446.76001F, -5.18400002F), new Vector2(-446.76001F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-446.76001F, -6.52799988F), new Vector2(-446.644012F, -7.10400009F), new Vector2(-446.411987F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-446.179993F, -8.06400013F), new Vector2(-445.85199F, -8.43999958F), new Vector2(-445.428009F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-445.003998F, -8.98400021F), new Vector2(-444.503998F, -9.11999989F), new Vector2(-443.928009F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-443.399994F, -9.11999989F), new Vector2(-442.947998F, -9F), new Vector2(-442.571991F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-442.196014F, -8.52000046F), new Vector2(-441.911987F, -8.18000031F), new Vector2(-441.720001F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-441.528015F, -7.30000019F), new Vector2(-441.424011F, -6.75199986F), new Vector2(-441.40799F, -6.09600019F));
+ builder.AddLine(new Vector2(-439.824005F, -7.17600012F));
+ builder.AddLine(new Vector2(-448.272003F, -7.12799978F));
+ builder.AddLine(new Vector2(-448.272003F, -4.58400011F));
+ builder.AddLine(new Vector2(-438.23999F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-438.160004F, -4.92000008F), new Vector2(-438.108002F, -5.17999983F), new Vector2(-438.084015F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-438.059998F, -5.64400005F), new Vector2(-438.048004F, -5.87200022F), new Vector2(-438.048004F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-438.048004F, -7.23199987F), new Vector2(-438.303986F, -8.23999977F), new Vector2(-438.81601F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-439.328003F, -10F), new Vector2(-440.023987F, -10.6879997F), new Vector2(-440.903992F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-441.783997F, -11.6800003F), new Vector2(-442.808014F, -11.9280005F), new Vector2(-443.976013F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-445.160004F, -11.9280005F), new Vector2(-446.223999F, -11.6639996F), new Vector2(-447.167999F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-448.112F, -10.6079998F), new Vector2(-448.855988F, -9.88399982F), new Vector2(-449.399994F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-449.944F, -8.04399967F), new Vector2(-450.216003F, -7.0079999F), new Vector2(-450.216003F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-450.216003F, -4.67199993F), new Vector2(-449.936005F, -3.61599994F), new Vector2(-449.376007F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-448.81601F, -1.75999999F), new Vector2(-448.048004F, -1.03600001F), new Vector2(-447.071991F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-446.096008F, 0.00400000019F), new Vector2(-444.976013F, 0.263999999F), new Vector2(-443.712006F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-442.720001F, 0.263999999F), new Vector2(-441.81601F, 0.100000001F), new Vector2(-441F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1698()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-455.399994F, 0F));
+ builder.AddLine(new Vector2(-450.432007F, -11.6639996F));
+ builder.AddLine(new Vector2(-454.343994F, -11.6639996F));
+ builder.AddLine(new Vector2(-457.727997F, -1.96800005F));
+ builder.AddLine(new Vector2(-455.976013F, -1.96800005F));
+ builder.AddLine(new Vector2(-459.335999F, -11.6639996F));
+ builder.AddLine(new Vector2(-463.320007F, -11.6639996F));
+ builder.AddLine(new Vector2(-458.376007F, 0F));
+ builder.AddLine(new Vector2(-455.399994F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1699()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-466.536011F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-465.720001F, -0.555999994F), new Vector2(-465.023987F, -1.06400001F), new Vector2(-464.447998F, -1.75199997F));
+ builder.AddLine(new Vector2(-466.488007F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-466.839996F, -3.36800003F), new Vector2(-467.247986F, -3.06800008F), new Vector2(-467.712006F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-468.175995F, -2.66799998F), new Vector2(-468.687988F, -2.56800008F), new Vector2(-469.247986F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-469.872009F, -2.56800008F), new Vector2(-470.411987F, -2.70000005F), new Vector2(-470.868011F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-471.324005F, -3.22799993F), new Vector2(-471.675995F, -3.60800004F), new Vector2(-471.924011F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-472.171997F, -4.5999999F), new Vector2(-472.29599F, -5.18400002F), new Vector2(-472.29599F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-472.29599F, -6.52799988F), new Vector2(-472.179993F, -7.10400009F), new Vector2(-471.947998F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-471.716003F, -8.06400013F), new Vector2(-471.388F, -8.43999958F), new Vector2(-470.963989F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-470.540009F, -8.98400021F), new Vector2(-470.040009F, -9.11999989F), new Vector2(-469.463989F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-468.936005F, -9.11999989F), new Vector2(-468.484009F, -9F), new Vector2(-468.108002F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-467.731995F, -8.52000046F), new Vector2(-467.447998F, -8.18000031F), new Vector2(-467.256012F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-467.063995F, -7.30000019F), new Vector2(-466.959991F, -6.75199986F), new Vector2(-466.944F, -6.09600019F));
+ builder.AddLine(new Vector2(-465.359985F, -7.17600012F));
+ builder.AddLine(new Vector2(-473.808014F, -7.12799978F));
+ builder.AddLine(new Vector2(-473.808014F, -4.58400011F));
+ builder.AddLine(new Vector2(-463.776001F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-463.696014F, -4.92000008F), new Vector2(-463.644012F, -5.17999983F), new Vector2(-463.619995F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-463.596008F, -5.64400005F), new Vector2(-463.584015F, -5.87200022F), new Vector2(-463.584015F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-463.584015F, -7.23199987F), new Vector2(-463.839996F, -8.23999977F), new Vector2(-464.35199F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-464.864014F, -10F), new Vector2(-465.559998F, -10.6879997F), new Vector2(-466.440002F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-467.320007F, -11.6800003F), new Vector2(-468.343994F, -11.9280005F), new Vector2(-469.511993F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-470.696014F, -11.9280005F), new Vector2(-471.76001F, -11.6639996F), new Vector2(-472.70401F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-473.64801F, -10.6079998F), new Vector2(-474.391998F, -9.88399982F), new Vector2(-474.936005F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-475.480011F, -8.04399967F), new Vector2(-475.752014F, -7.0079999F), new Vector2(-475.752014F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-475.752014F, -4.67199993F), new Vector2(-475.471985F, -3.61599994F), new Vector2(-474.911987F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-474.35199F, -1.75999999F), new Vector2(-473.584015F, -1.03600001F), new Vector2(-472.608002F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-471.631989F, 0.00400000019F), new Vector2(-470.511993F, 0.263999999F), new Vector2(-469.247986F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-468.256012F, 0.263999999F), new Vector2(-467.35199F, 0.100000001F), new Vector2(-466.536011F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1700()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-485.040009F, 0F));
+ builder.AddLine(new Vector2(-485.040009F, -11.6639996F));
+ builder.AddLine(new Vector2(-488.735992F, -11.6639996F));
+ builder.AddLine(new Vector2(-488.735992F, 0F));
+ builder.AddLine(new Vector2(-485.040009F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-477.312012F, 0F));
+ builder.AddLine(new Vector2(-477.312012F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-477.312012F, -8.26399994F), new Vector2(-477.503998F, -9.00399971F), new Vector2(-477.888F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-478.272003F, -10.3640003F), new Vector2(-478.799988F, -10.9040003F), new Vector2(-479.471985F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-480.144012F, -11.7040005F), new Vector2(-480.903992F, -11.9040003F), new Vector2(-481.752014F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-482.64801F, -11.9040003F), new Vector2(-483.451996F, -11.7159996F), new Vector2(-484.164001F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-484.876007F, -10.9639997F), new Vector2(-485.436005F, -10.4320002F), new Vector2(-485.843994F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-486.252014F, -9.05599976F), new Vector2(-486.455994F, -8.25599957F), new Vector2(-486.455994F, -7.34399986F));
+ builder.AddLine(new Vector2(-485.040009F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-485.040009F, -7.04799986F), new Vector2(-484.951996F, -7.4000001F), new Vector2(-484.776001F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-484.600006F, -8.00800037F), new Vector2(-484.359985F, -8.24400043F), new Vector2(-484.056F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-483.752014F, -8.57999992F), new Vector2(-483.40799F, -8.66399956F), new Vector2(-483.023987F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-482.447998F, -8.66399956F), new Vector2(-481.967987F, -8.47599983F), new Vector2(-481.584015F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-481.200012F, -7.72399998F), new Vector2(-481.007996F, -7.23999977F), new Vector2(-481.007996F, -6.64799976F));
+ builder.AddLine(new Vector2(-481.007996F, 0F));
+ builder.AddLine(new Vector2(-477.312012F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1701()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-495.888F, 0F));
+ builder.AddLine(new Vector2(-495.888F, -17.4239998F));
+ builder.AddLine(new Vector2(-499.584015F, -17.4239998F));
+ builder.AddLine(new Vector2(-499.584015F, 0F));
+ builder.AddLine(new Vector2(-495.888F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1702()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-502.175995F, 0F));
+ builder.AddLine(new Vector2(-502.175995F, -17.4239998F));
+ builder.AddLine(new Vector2(-505.872009F, -17.4239998F));
+ builder.AddLine(new Vector2(-505.872009F, 0F));
+ builder.AddLine(new Vector2(-502.175995F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1703()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-508.835999F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-508.476013F, -14.2480001F), new Vector2(-508.29599F, -14.7279997F), new Vector2(-508.29599F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-508.29599F, -15.8640003F), new Vector2(-508.476013F, -16.3439999F), new Vector2(-508.835999F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-509.196014F, -17.1119995F), new Vector2(-509.671997F, -17.3040009F), new Vector2(-510.264008F, -17.3040009F));
+ builder.AddCubicBezier(new Vector2(-510.824005F, -17.3040009F), new Vector2(-511.29599F, -17.1119995F), new Vector2(-511.679993F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-512.064026F, -16.3439999F), new Vector2(-512.255981F, -15.8640003F), new Vector2(-512.255981F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-512.255981F, -14.7279997F), new Vector2(-512.064026F, -14.2480001F), new Vector2(-511.679993F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-511.29599F, -13.448F), new Vector2(-510.824005F, -13.2480001F), new Vector2(-510.264008F, -13.2480001F));
+ builder.AddCubicBezier(new Vector2(-509.671997F, -13.2480001F), new Vector2(-509.196014F, -13.448F), new Vector2(-508.835999F, -13.8479996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-508.415985F, 0F));
+ builder.AddLine(new Vector2(-508.415985F, -11.6639996F));
+ builder.AddLine(new Vector2(-512.112F, -11.6639996F));
+ builder.AddLine(new Vector2(-512.112F, 0F));
+ builder.AddLine(new Vector2(-508.415985F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1704()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-524.903992F, 0F));
+ builder.AddLine(new Vector2(-522.16803F, -8.06400013F));
+ builder.AddLine(new Vector2(-523.080017F, -8.06400013F));
+ builder.AddLine(new Vector2(-520.392029F, 0F));
+ builder.AddLine(new Vector2(-517.367981F, 0F));
+ builder.AddLine(new Vector2(-513.312012F, -11.6639996F));
+ builder.AddLine(new Vector2(-516.935974F, -11.6639996F));
+ builder.AddLine(new Vector2(-519.47998F, -3.19199991F));
+ builder.AddLine(new Vector2(-518.375977F, -3.16799998F));
+ builder.AddLine(new Vector2(-521.135986F, -11.6639996F));
+ builder.AddLine(new Vector2(-524.159973F, -11.6639996F));
+ builder.AddLine(new Vector2(-526.895996F, -3.16799998F));
+ builder.AddLine(new Vector2(-525.815979F, -3.19199991F));
+ builder.AddLine(new Vector2(-528.335999F, -11.6639996F));
+ builder.AddLine(new Vector2(-531.960022F, -11.6639996F));
+ builder.AddLine(new Vector2(-527.927979F, 0F));
+ builder.AddLine(new Vector2(-524.903992F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1705()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-537.911987F, -17.4239998F));
+ builder.AddLine(new Vector2(-541.607971F, -17.4239998F));
+ builder.AddLine(new Vector2(-541.607971F, -8.80799961F));
+ builder.AddLine(new Vector2(-540.984009F, -6F));
+ builder.AddLine(new Vector2(-541.536011F, -3.14400005F));
+ builder.AddLine(new Vector2(-541.536011F, 0F));
+ builder.AddLine(new Vector2(-537.911987F, 0F));
+ builder.AddLine(new Vector2(-537.911987F, -17.4239998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-545.328003F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-545.728027F, -3.67600012F), new Vector2(-546.036011F, -4F), new Vector2(-546.252014F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-546.468018F, -4.83199978F), new Vector2(-546.575989F, -5.3039999F), new Vector2(-546.575989F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-546.575989F, -6.36000013F), new Vector2(-546.460022F, -6.82800007F), new Vector2(-546.228027F, -7.23600006F));
+ builder.AddCubicBezier(new Vector2(-545.995972F, -7.64400005F), new Vector2(-545.687988F, -7.96799994F), new Vector2(-545.304016F, -8.20800018F));
+ builder.AddCubicBezier(new Vector2(-544.919983F, -8.44799995F), new Vector2(-544.471985F, -8.56799984F), new Vector2(-543.960022F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-543.447998F, -8.56799984F), new Vector2(-543F, -8.45199966F), new Vector2(-542.616028F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-542.231995F, -7.98799992F), new Vector2(-541.932007F, -7.66800022F), new Vector2(-541.716003F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-541.5F, -6.85200024F), new Vector2(-541.392029F, -6.38399982F), new Vector2(-541.392029F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-541.392029F, -5.3119998F), new Vector2(-541.5F, -4.83199978F), new Vector2(-541.716003F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-541.932007F, -4F), new Vector2(-542.231995F, -3.67600012F), new Vector2(-542.616028F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-543F, -3.21199989F), new Vector2(-543.455994F, -3.09599996F), new Vector2(-543.984009F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-544.47998F, -3.09599996F), new Vector2(-544.927979F, -3.21199989F), new Vector2(-545.328003F, -3.44400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-542.471985F, -0.252000004F));
+ builder.AddCubicBezier(new Vector2(-541.815979F, -0.579999983F), new Vector2(-541.280029F, -1.01999998F), new Vector2(-540.864014F, -1.57200003F));
+ builder.AddCubicBezier(new Vector2(-540.447998F, -2.12400007F), new Vector2(-540.208008F, -2.74399996F), new Vector2(-540.143982F, -3.43199992F));
+ builder.AddLine(new Vector2(-540.143982F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-540.208008F, -9.05599976F), new Vector2(-540.447998F, -9.67599964F), new Vector2(-540.864014F, -10.2119999F));
+ builder.AddCubicBezier(new Vector2(-541.280029F, -10.7480001F), new Vector2(-541.815979F, -11.1639996F), new Vector2(-542.471985F, -11.46F));
+ builder.AddCubicBezier(new Vector2(-543.127991F, -11.7559996F), new Vector2(-543.848022F, -11.9040003F), new Vector2(-544.632019F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-545.736023F, -11.9040003F), new Vector2(-546.719971F, -11.6400003F), new Vector2(-547.583984F, -11.1120005F));
+ builder.AddCubicBezier(new Vector2(-548.447998F, -10.5839996F), new Vector2(-549.119995F, -9.86400032F), new Vector2(-549.599976F, -8.95199966F));
+ builder.AddCubicBezier(new Vector2(-550.080017F, -8.03999996F), new Vector2(-550.320007F, -7F), new Vector2(-550.320007F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-550.320007F, -4.66400003F), new Vector2(-550.080017F, -3.62400007F), new Vector2(-549.599976F, -2.71199989F));
+ builder.AddCubicBezier(new Vector2(-549.119995F, -1.79999995F), new Vector2(-548.452026F, -1.08000004F), new Vector2(-547.596008F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(-546.73999F, -0.0240000002F), new Vector2(-545.752014F, 0.239999995F), new Vector2(-544.632019F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-543.848022F, 0.239999995F), new Vector2(-543.127991F, 0.0759999976F), new Vector2(-542.471985F, -0.252000004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1706()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-559.656006F, 0F));
+ builder.AddLine(new Vector2(-559.656006F, -11.6639996F));
+ builder.AddLine(new Vector2(-563.35199F, -11.6639996F));
+ builder.AddLine(new Vector2(-563.35199F, 0F));
+ builder.AddLine(new Vector2(-559.656006F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-551.927979F, 0F));
+ builder.AddLine(new Vector2(-551.927979F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-551.927979F, -8.26399994F), new Vector2(-552.119995F, -9.00399971F), new Vector2(-552.504028F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-552.888F, -10.3640003F), new Vector2(-553.416016F, -10.9040003F), new Vector2(-554.088013F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-554.76001F, -11.7040005F), new Vector2(-555.52002F, -11.9040003F), new Vector2(-556.367981F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-557.263977F, -11.9040003F), new Vector2(-558.067993F, -11.7159996F), new Vector2(-558.780029F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-559.492004F, -10.9639997F), new Vector2(-560.052002F, -10.4320002F), new Vector2(-560.460022F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-560.867981F, -9.05599976F), new Vector2(-561.072021F, -8.25599957F), new Vector2(-561.072021F, -7.34399986F));
+ builder.AddLine(new Vector2(-559.656006F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-559.656006F, -7.04799986F), new Vector2(-559.567993F, -7.4000001F), new Vector2(-559.392029F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-559.216003F, -8.00800037F), new Vector2(-558.976013F, -8.24400043F), new Vector2(-558.671997F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-558.367981F, -8.57999992F), new Vector2(-558.023987F, -8.66399956F), new Vector2(-557.640015F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-557.064026F, -8.66399956F), new Vector2(-556.583984F, -8.47599983F), new Vector2(-556.200012F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-555.815979F, -7.72399998F), new Vector2(-555.624023F, -7.23999977F), new Vector2(-555.624023F, -6.64799976F));
+ builder.AddLine(new Vector2(-555.624023F, 0F));
+ builder.AddLine(new Vector2(-551.927979F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1707()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-565.919983F, 0F));
+ builder.AddLine(new Vector2(-565.919983F, -11.6639996F));
+ builder.AddLine(new Vector2(-569.544006F, -11.6639996F));
+ builder.AddLine(new Vector2(-569.544006F, -8.80799961F));
+ builder.AddLine(new Vector2(-568.992004F, -6F));
+ builder.AddLine(new Vector2(-569.544006F, -3.14400005F));
+ builder.AddLine(new Vector2(-569.544006F, 0F));
+ builder.AddLine(new Vector2(-565.919983F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-573.323975F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-573.716003F, -3.67600012F), new Vector2(-574.028015F, -4F), new Vector2(-574.26001F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-574.492004F, -4.83199978F), new Vector2(-574.607971F, -5.3039999F), new Vector2(-574.607971F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-574.607971F, -6.36000013F), new Vector2(-574.492004F, -6.83199978F), new Vector2(-574.26001F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-574.028015F, -7.66400003F), new Vector2(-573.716003F, -7.98799992F), new Vector2(-573.323975F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-572.932007F, -8.45199966F), new Vector2(-572.487976F, -8.56799984F), new Vector2(-571.992004F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-571.47998F, -8.56799984F), new Vector2(-571.023987F, -8.45199966F), new Vector2(-570.624023F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-570.223999F, -7.98799992F), new Vector2(-569.919983F, -7.66800022F), new Vector2(-569.711975F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-569.504028F, -6.85200024F), new Vector2(-569.400024F, -6.38399982F), new Vector2(-569.400024F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-569.400024F, -5.03999996F), new Vector2(-569.635986F, -4.37599993F), new Vector2(-570.107971F, -3.86400008F));
+ builder.AddCubicBezier(new Vector2(-570.580017F, -3.352F), new Vector2(-571.208008F, -3.09599996F), new Vector2(-571.992004F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-572.487976F, -3.09599996F), new Vector2(-572.932007F, -3.21199989F), new Vector2(-573.323975F, -3.44400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-570.612F, -0.216000006F));
+ builder.AddCubicBezier(new Vector2(-569.97998F, -0.519999981F), new Vector2(-569.468018F, -0.939999998F), new Vector2(-569.075989F, -1.47599995F));
+ builder.AddCubicBezier(new Vector2(-568.684021F, -2.01200008F), new Vector2(-568.463989F, -2.62400007F), new Vector2(-568.416016F, -3.31200004F));
+ builder.AddLine(new Vector2(-568.416016F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-568.463989F, -9.03999996F), new Vector2(-568.687988F, -9.65200043F), new Vector2(-569.088013F, -10.1879997F));
+ builder.AddCubicBezier(new Vector2(-569.487976F, -10.724F), new Vector2(-570.004028F, -11.1440001F), new Vector2(-570.635986F, -11.448F));
+ builder.AddCubicBezier(new Vector2(-571.268005F, -11.7519999F), new Vector2(-571.976013F, -11.9040003F), new Vector2(-572.76001F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-573.83197F, -11.9040003F), new Vector2(-574.788025F, -11.6440001F), new Vector2(-575.627991F, -11.1239996F));
+ builder.AddCubicBezier(new Vector2(-576.468018F, -10.6040001F), new Vector2(-577.132019F, -9.88399982F), new Vector2(-577.619995F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-578.107971F, -8.04399967F), new Vector2(-578.35199F, -7F), new Vector2(-578.35199F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-578.35199F, -4.66400003F), new Vector2(-578.107971F, -3.62800002F), new Vector2(-577.619995F, -2.72399998F));
+ builder.AddCubicBezier(new Vector2(-577.132019F, -1.82000005F), new Vector2(-576.463989F, -1.10000002F), new Vector2(-575.616028F, -0.56400001F));
+ builder.AddCubicBezier(new Vector2(-574.768005F, -0.0280000009F), new Vector2(-573.815979F, 0.239999995F), new Vector2(-572.76001F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-571.960022F, 0.239999995F), new Vector2(-571.244019F, 0.0879999995F), new Vector2(-570.612F, -0.216000006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1708()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-583.776001F, -8.52000046F));
+ builder.AddLine(new Vector2(-583.776001F, -11.6639996F));
+ builder.AddLine(new Vector2(-592.728027F, -11.6639996F));
+ builder.AddLine(new Vector2(-592.728027F, -8.52000046F));
+ builder.AddLine(new Vector2(-583.776001F, -8.52000046F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-586.416016F, 0F));
+ builder.AddLine(new Vector2(-586.416016F, -16.4880009F));
+ builder.AddLine(new Vector2(-590.112F, -16.4880009F));
+ builder.AddLine(new Vector2(-590.112F, 0F));
+ builder.AddLine(new Vector2(-586.416016F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1709()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-601.656006F, 0F));
+ builder.AddLine(new Vector2(-601.656006F, -11.6639996F));
+ builder.AddLine(new Vector2(-605.35199F, -11.6639996F));
+ builder.AddLine(new Vector2(-605.35199F, 0F));
+ builder.AddLine(new Vector2(-601.656006F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-593.927979F, 0F));
+ builder.AddLine(new Vector2(-593.927979F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-593.927979F, -8.26399994F), new Vector2(-594.119995F, -9.00399971F), new Vector2(-594.504028F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-594.888F, -10.3640003F), new Vector2(-595.416016F, -10.9040003F), new Vector2(-596.088013F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-596.76001F, -11.7040005F), new Vector2(-597.52002F, -11.9040003F), new Vector2(-598.367981F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-599.263977F, -11.9040003F), new Vector2(-600.067993F, -11.7159996F), new Vector2(-600.780029F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-601.492004F, -10.9639997F), new Vector2(-602.052002F, -10.4320002F), new Vector2(-602.460022F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-602.867981F, -9.05599976F), new Vector2(-603.072021F, -8.25599957F), new Vector2(-603.072021F, -7.34399986F));
+ builder.AddLine(new Vector2(-601.656006F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-601.656006F, -7.04799986F), new Vector2(-601.567993F, -7.4000001F), new Vector2(-601.392029F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-601.216003F, -8.00800037F), new Vector2(-600.976013F, -8.24400043F), new Vector2(-600.671997F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-600.367981F, -8.57999992F), new Vector2(-600.023987F, -8.66399956F), new Vector2(-599.640015F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-599.064026F, -8.66399956F), new Vector2(-598.583984F, -8.47599983F), new Vector2(-598.200012F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-597.815979F, -7.72399998F), new Vector2(-597.624023F, -7.23999977F), new Vector2(-597.624023F, -6.64799976F));
+ builder.AddLine(new Vector2(-597.624023F, 0F));
+ builder.AddLine(new Vector2(-593.927979F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1710()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-610.031982F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-609.216003F, -0.555999994F), new Vector2(-608.52002F, -1.06400001F), new Vector2(-607.94397F, -1.75199997F));
+ builder.AddLine(new Vector2(-609.984009F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-610.335999F, -3.36800003F), new Vector2(-610.744019F, -3.06800008F), new Vector2(-611.208008F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-611.671997F, -2.66799998F), new Vector2(-612.184021F, -2.56800008F), new Vector2(-612.744019F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-613.367981F, -2.56800008F), new Vector2(-613.90802F, -2.70000005F), new Vector2(-614.364014F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-614.820007F, -3.22799993F), new Vector2(-615.171997F, -3.60800004F), new Vector2(-615.419983F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-615.66803F, -4.5999999F), new Vector2(-615.791992F, -5.18400002F), new Vector2(-615.791992F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-615.791992F, -6.52799988F), new Vector2(-615.676025F, -7.10400009F), new Vector2(-615.44397F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-615.211975F, -8.06400013F), new Vector2(-614.883972F, -8.43999958F), new Vector2(-614.460022F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-614.036011F, -8.98400021F), new Vector2(-613.536011F, -9.11999989F), new Vector2(-612.960022F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-612.432007F, -9.11999989F), new Vector2(-611.97998F, -9F), new Vector2(-611.604004F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-611.228027F, -8.52000046F), new Vector2(-610.94397F, -8.18000031F), new Vector2(-610.752014F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-610.559998F, -7.30000019F), new Vector2(-610.455994F, -6.75199986F), new Vector2(-610.440002F, -6.09600019F));
+ builder.AddLine(new Vector2(-608.856018F, -7.17600012F));
+ builder.AddLine(new Vector2(-617.304016F, -7.12799978F));
+ builder.AddLine(new Vector2(-617.304016F, -4.58400011F));
+ builder.AddLine(new Vector2(-607.271973F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-607.192017F, -4.92000008F), new Vector2(-607.140015F, -5.17999983F), new Vector2(-607.116028F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-607.09198F, -5.64400005F), new Vector2(-607.080017F, -5.87200022F), new Vector2(-607.080017F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-607.080017F, -7.23199987F), new Vector2(-607.335999F, -8.23999977F), new Vector2(-607.848022F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-608.359985F, -10F), new Vector2(-609.05603F, -10.6879997F), new Vector2(-609.935974F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-610.815979F, -11.6800003F), new Vector2(-611.840027F, -11.9280005F), new Vector2(-613.007996F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-614.192017F, -11.9280005F), new Vector2(-615.255981F, -11.6639996F), new Vector2(-616.200012F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-617.143982F, -10.6079998F), new Vector2(-617.888F, -9.88399982F), new Vector2(-618.432007F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-618.976013F, -8.04399967F), new Vector2(-619.247986F, -7.0079999F), new Vector2(-619.247986F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-619.247986F, -4.67199993F), new Vector2(-618.968018F, -3.61599994F), new Vector2(-618.40802F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-617.848022F, -1.75999999F), new Vector2(-617.080017F, -1.03600001F), new Vector2(-616.104004F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-615.127991F, 0.00400000019F), new Vector2(-614.007996F, 0.263999999F), new Vector2(-612.744019F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-611.752014F, 0.263999999F), new Vector2(-610.848022F, 0.100000001F), new Vector2(-610.031982F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1711()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-620.83197F, 0F));
+ builder.AddLine(new Vector2(-620.83197F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-620.83197F, -8.22399998F), new Vector2(-621.031982F, -9.05599976F), new Vector2(-621.432007F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-621.83197F, -10.4320002F), new Vector2(-622.383972F, -10.9639997F), new Vector2(-623.088013F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-623.791992F, -11.7159996F), new Vector2(-624.583984F, -11.9040003F), new Vector2(-625.463989F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-626.375977F, -11.9040003F), new Vector2(-627.200012F, -11.7119999F), new Vector2(-627.935974F, -11.3280001F));
+ builder.AddCubicBezier(new Vector2(-628.671997F, -10.9440002F), new Vector2(-629.255981F, -10.3920002F), new Vector2(-629.687988F, -9.67199993F));
+ builder.AddCubicBezier(new Vector2(-630.119995F, -8.95199966F), new Vector2(-630.359985F, -8.09599972F), new Vector2(-630.40802F, -7.10400009F));
+ builder.AddLine(new Vector2(-628.271973F, -6.81599998F));
+ builder.AddCubicBezier(new Vector2(-628.271973F, -7.19999981F), new Vector2(-628.192017F, -7.52799988F), new Vector2(-628.031982F, -7.80000019F));
+ builder.AddCubicBezier(new Vector2(-627.872009F, -8.07199955F), new Vector2(-627.643982F, -8.2840004F), new Vector2(-627.348022F, -8.43599987F));
+ builder.AddCubicBezier(new Vector2(-627.052002F, -8.5880003F), new Vector2(-626.728027F, -8.66399956F), new Vector2(-626.375977F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-625.864014F, -8.66399956F), new Vector2(-625.427979F, -8.5F), new Vector2(-625.067993F, -8.17199993F));
+ builder.AddCubicBezier(new Vector2(-624.708008F, -7.84399986F), new Vector2(-624.528015F, -7.3920002F), new Vector2(-624.528015F, -6.81599998F));
+ builder.AddLine(new Vector2(-624.528015F, 0F));
+ builder.AddLine(new Vector2(-620.83197F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-628.271973F, 0F));
+ builder.AddLine(new Vector2(-628.271973F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-628.271973F, -8.3760004F), new Vector2(-628.468018F, -9.15999985F), new Vector2(-628.859985F, -9.81599998F));
+ builder.AddCubicBezier(new Vector2(-629.252014F, -10.4720001F), new Vector2(-629.771973F, -10.9840002F), new Vector2(-630.419983F, -11.3520002F));
+ builder.AddCubicBezier(new Vector2(-631.067993F, -11.7200003F), new Vector2(-631.791992F, -11.9040003F), new Vector2(-632.59198F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-633.471985F, -11.9040003F), new Vector2(-634.252014F, -11.724F), new Vector2(-634.932007F, -11.3640003F));
+ builder.AddCubicBezier(new Vector2(-635.612F, -11.0039997F), new Vector2(-636.156006F, -10.4919996F), new Vector2(-636.564026F, -9.82800007F));
+ builder.AddCubicBezier(new Vector2(-636.971985F, -9.16399956F), new Vector2(-637.176025F, -8.3760004F), new Vector2(-637.176025F, -7.46400023F));
+ builder.AddLine(new Vector2(-635.76001F, -6.81599998F));
+ builder.AddCubicBezier(new Vector2(-635.76001F, -7.19999981F), new Vector2(-635.676025F, -7.52799988F), new Vector2(-635.507996F, -7.80000019F));
+ builder.AddCubicBezier(new Vector2(-635.340027F, -8.07199955F), new Vector2(-635.112F, -8.2840004F), new Vector2(-634.823975F, -8.43599987F));
+ builder.AddCubicBezier(new Vector2(-634.536011F, -8.5880003F), new Vector2(-634.208008F, -8.66399956F), new Vector2(-633.840027F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-633.312012F, -8.66399956F), new Vector2(-632.867981F, -8.5F), new Vector2(-632.507996F, -8.17199993F));
+ builder.AddCubicBezier(new Vector2(-632.14801F, -7.84399986F), new Vector2(-631.968018F, -7.3920002F), new Vector2(-631.968018F, -6.81599998F));
+ builder.AddLine(new Vector2(-631.968018F, 0F));
+ builder.AddLine(new Vector2(-628.271973F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-635.76001F, 0F));
+ builder.AddLine(new Vector2(-635.76001F, -11.6639996F));
+ builder.AddLine(new Vector2(-639.455994F, -11.6639996F));
+ builder.AddLine(new Vector2(-639.455994F, 0F));
+ builder.AddLine(new Vector2(-635.76001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1712()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-644.135986F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-643.320007F, -0.555999994F), new Vector2(-642.624023F, -1.06400001F), new Vector2(-642.047974F, -1.75199997F));
+ builder.AddLine(new Vector2(-644.088013F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-644.440002F, -3.36800003F), new Vector2(-644.848022F, -3.06800008F), new Vector2(-645.312012F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-645.776001F, -2.66799998F), new Vector2(-646.288025F, -2.56800008F), new Vector2(-646.848022F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-647.471985F, -2.56800008F), new Vector2(-648.012024F, -2.70000005F), new Vector2(-648.468018F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-648.924011F, -3.22799993F), new Vector2(-649.276001F, -3.60800004F), new Vector2(-649.523987F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-649.771973F, -4.5999999F), new Vector2(-649.895996F, -5.18400002F), new Vector2(-649.895996F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-649.895996F, -6.52799988F), new Vector2(-649.780029F, -7.10400009F), new Vector2(-649.547974F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-649.315979F, -8.06400013F), new Vector2(-648.987976F, -8.43999958F), new Vector2(-648.564026F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-648.140015F, -8.98400021F), new Vector2(-647.640015F, -9.11999989F), new Vector2(-647.064026F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-646.536011F, -9.11999989F), new Vector2(-646.083984F, -9F), new Vector2(-645.708008F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-645.33197F, -8.52000046F), new Vector2(-645.047974F, -8.18000031F), new Vector2(-644.856018F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-644.664001F, -7.30000019F), new Vector2(-644.559998F, -6.75199986F), new Vector2(-644.544006F, -6.09600019F));
+ builder.AddLine(new Vector2(-642.960022F, -7.17600012F));
+ builder.AddLine(new Vector2(-651.40802F, -7.12799978F));
+ builder.AddLine(new Vector2(-651.40802F, -4.58400011F));
+ builder.AddLine(new Vector2(-641.375977F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-641.296021F, -4.92000008F), new Vector2(-641.244019F, -5.17999983F), new Vector2(-641.219971F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-641.195984F, -5.64400005F), new Vector2(-641.184021F, -5.87200022F), new Vector2(-641.184021F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-641.184021F, -7.23199987F), new Vector2(-641.440002F, -8.23999977F), new Vector2(-641.952026F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-642.463989F, -10F), new Vector2(-643.159973F, -10.6879997F), new Vector2(-644.039978F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-644.919983F, -11.6800003F), new Vector2(-645.94397F, -11.9280005F), new Vector2(-647.112F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-648.296021F, -11.9280005F), new Vector2(-649.359985F, -11.6639996F), new Vector2(-650.304016F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-651.247986F, -10.6079998F), new Vector2(-651.992004F, -9.88399982F), new Vector2(-652.536011F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-653.080017F, -8.04399967F), new Vector2(-653.35199F, -7.0079999F), new Vector2(-653.35199F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-653.35199F, -4.67199993F), new Vector2(-653.072021F, -3.61599994F), new Vector2(-652.512024F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-651.952026F, -1.75999999F), new Vector2(-651.184021F, -1.03600001F), new Vector2(-650.208008F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-649.231995F, 0.00400000019F), new Vector2(-648.112F, 0.263999999F), new Vector2(-646.848022F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-645.856018F, 0.263999999F), new Vector2(-644.952026F, 0.100000001F), new Vector2(-644.135986F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1713()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-655.97998F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-655.219971F, -0.555999994F), new Vector2(-654.528015F, -1.03999996F), new Vector2(-653.903992F, -1.67999995F));
+ builder.AddLine(new Vector2(-656.280029F, -4.03200006F));
+ builder.AddCubicBezier(new Vector2(-656.552002F, -3.72799993F), new Vector2(-656.875977F, -3.49600005F), new Vector2(-657.252014F, -3.33599997F));
+ builder.AddCubicBezier(new Vector2(-657.627991F, -3.17600012F), new Vector2(-658.05603F, -3.09599996F), new Vector2(-658.536011F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-659.031982F, -3.09599996F), new Vector2(-659.487976F, -3.21199989F), new Vector2(-659.903992F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-660.320007F, -3.67600012F), new Vector2(-660.643982F, -4F), new Vector2(-660.875977F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-661.107971F, -4.83199978F), new Vector2(-661.223999F, -5.3119998F), new Vector2(-661.223999F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-661.223999F, -6.38399982F), new Vector2(-661.107971F, -6.85200024F), new Vector2(-660.875977F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-660.643982F, -7.66800022F), new Vector2(-660.323975F, -7.98799992F), new Vector2(-659.916016F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-659.507996F, -8.45199966F), new Vector2(-659.047974F, -8.56799984F), new Vector2(-658.536011F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-658.072021F, -8.56799984F), new Vector2(-657.659973F, -8.49600029F), new Vector2(-657.299988F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-656.940002F, -8.20800018F), new Vector2(-656.624023F, -7.98400021F), new Vector2(-656.35199F, -7.67999983F));
+ builder.AddLine(new Vector2(-653.976013F, -10.0799999F));
+ builder.AddCubicBezier(new Vector2(-654.567993F, -10.6879997F), new Vector2(-655.244019F, -11.1479998F), new Vector2(-656.004028F, -11.46F));
+ builder.AddCubicBezier(new Vector2(-656.763977F, -11.7720003F), new Vector2(-657.607971F, -11.9280005F), new Vector2(-658.536011F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-659.752014F, -11.9280005F), new Vector2(-660.848022F, -11.6639996F), new Vector2(-661.823975F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-662.799988F, -10.6079998F), new Vector2(-663.567993F, -9.88399982F), new Vector2(-664.127991F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-664.687988F, -8.04399967F), new Vector2(-664.968018F, -7F), new Vector2(-664.968018F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-664.968018F, -4.67999983F), new Vector2(-664.692017F, -3.6400001F), new Vector2(-664.140015F, -2.71199989F));
+ builder.AddCubicBezier(new Vector2(-663.588013F, -1.78400004F), new Vector2(-662.823975F, -1.05599999F), new Vector2(-661.848022F, -0.527999997F));
+ builder.AddCubicBezier(new Vector2(-660.872009F, 0F), new Vector2(-659.776001F, 0.263999999F), new Vector2(-658.559998F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-657.599976F, 0.263999999F), new Vector2(-656.73999F, 0.100000001F), new Vector2(-655.97998F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1714()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-674.255981F, 0F));
+ builder.AddLine(new Vector2(-674.255981F, -11.6639996F));
+ builder.AddLine(new Vector2(-677.952026F, -11.6639996F));
+ builder.AddLine(new Vector2(-677.952026F, 0F));
+ builder.AddLine(new Vector2(-674.255981F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-666.528015F, 0F));
+ builder.AddLine(new Vector2(-666.528015F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-666.528015F, -8.26399994F), new Vector2(-666.719971F, -9.00399971F), new Vector2(-667.104004F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-667.487976F, -10.3640003F), new Vector2(-668.015991F, -10.9040003F), new Vector2(-668.687988F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-669.359985F, -11.7040005F), new Vector2(-670.119995F, -11.9040003F), new Vector2(-670.968018F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-671.864014F, -11.9040003F), new Vector2(-672.66803F, -11.7159996F), new Vector2(-673.380005F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-674.09198F, -10.9639997F), new Vector2(-674.651978F, -10.4320002F), new Vector2(-675.059998F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-675.468018F, -9.05599976F), new Vector2(-675.671997F, -8.25599957F), new Vector2(-675.671997F, -7.34399986F));
+ builder.AddLine(new Vector2(-674.255981F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-674.255981F, -7.04799986F), new Vector2(-674.16803F, -7.4000001F), new Vector2(-673.992004F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-673.815979F, -8.00800037F), new Vector2(-673.575989F, -8.24400043F), new Vector2(-673.271973F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-672.968018F, -8.57999992F), new Vector2(-672.624023F, -8.66399956F), new Vector2(-672.23999F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-671.664001F, -8.66399956F), new Vector2(-671.184021F, -8.47599983F), new Vector2(-670.799988F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-670.416016F, -7.72399998F), new Vector2(-670.223999F, -7.23999977F), new Vector2(-670.223999F, -6.64799976F));
+ builder.AddLine(new Vector2(-670.223999F, 0F));
+ builder.AddLine(new Vector2(-666.528015F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1715()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-682.848022F, -0.395999998F));
+ builder.AddCubicBezier(new Vector2(-682.031982F, -0.836000025F), new Vector2(-681.395996F, -1.44400001F), new Vector2(-680.940002F, -2.22000003F));
+ builder.AddCubicBezier(new Vector2(-680.484009F, -2.99600005F), new Vector2(-680.255981F, -3.89599991F), new Vector2(-680.255981F, -4.92000008F));
+ builder.AddLine(new Vector2(-680.255981F, -11.6639996F));
+ builder.AddLine(new Vector2(-683.952026F, -11.6639996F));
+ builder.AddLine(new Vector2(-683.952026F, -4.96799994F));
+ builder.AddCubicBezier(new Vector2(-683.952026F, -4.36000013F), new Vector2(-684.107971F, -3.88000011F), new Vector2(-684.419983F, -3.52800012F));
+ builder.AddCubicBezier(new Vector2(-684.731995F, -3.17600012F), new Vector2(-685.159973F, -3F), new Vector2(-685.703979F, -3F));
+ builder.AddCubicBezier(new Vector2(-686.072021F, -3F), new Vector2(-686.392029F, -3.07999992F), new Vector2(-686.664001F, -3.24000001F));
+ builder.AddCubicBezier(new Vector2(-686.935974F, -3.4000001F), new Vector2(-687.143982F, -3.62800002F), new Vector2(-687.288025F, -3.92400002F));
+ builder.AddCubicBezier(new Vector2(-687.432007F, -4.21999979F), new Vector2(-687.504028F, -4.56799984F), new Vector2(-687.504028F, -4.96799994F));
+ builder.AddLine(new Vector2(-687.504028F, -11.6639996F));
+ builder.AddLine(new Vector2(-691.200012F, -11.6639996F));
+ builder.AddLine(new Vector2(-691.200012F, -4.92000008F));
+ builder.AddCubicBezier(new Vector2(-691.200012F, -3.91199994F), new Vector2(-690.968018F, -3.01999998F), new Vector2(-690.504028F, -2.24399996F));
+ builder.AddCubicBezier(new Vector2(-690.039978F, -1.46800005F), new Vector2(-689.388F, -0.856000006F), new Vector2(-688.547974F, -0.407999992F));
+ builder.AddCubicBezier(new Vector2(-687.708008F, 0.0399999991F), new Vector2(-686.76001F, 0.263999999F), new Vector2(-685.703979F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-684.616028F, 0.263999999F), new Vector2(-683.664001F, 0.0439999998F), new Vector2(-682.848022F, -0.395999998F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1716()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-700.463989F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-700.864014F, -3.6559999F), new Vector2(-701.176025F, -3.98000002F), new Vector2(-701.400024F, -4.40399981F));
+ builder.AddCubicBezier(new Vector2(-701.624023F, -4.82800007F), new Vector2(-701.736023F, -5.3119998F), new Vector2(-701.736023F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-701.736023F, -6.36800003F), new Vector2(-701.624023F, -6.83199978F), new Vector2(-701.400024F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-701.176025F, -7.66400003F), new Vector2(-700.864014F, -7.98799992F), new Vector2(-700.463989F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-700.064026F, -8.45199966F), new Vector2(-699.607971F, -8.56799984F), new Vector2(-699.096008F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-698.583984F, -8.56799984F), new Vector2(-698.132019F, -8.45199966F), new Vector2(-697.73999F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-697.348022F, -7.98799992F), new Vector2(-697.039978F, -7.66800022F), new Vector2(-696.815979F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-696.59198F, -6.85200024F), new Vector2(-696.47998F, -6.38399982F), new Vector2(-696.47998F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-696.47998F, -5.3119998F), new Vector2(-696.588013F, -4.82800007F), new Vector2(-696.804016F, -4.40399981F));
+ builder.AddCubicBezier(new Vector2(-697.02002F, -3.98000002F), new Vector2(-697.328003F, -3.6559999F), new Vector2(-697.728027F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-698.127991F, -3.20799994F), new Vector2(-698.583984F, -3.09599996F), new Vector2(-699.096008F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-699.607971F, -3.09599996F), new Vector2(-700.064026F, -3.20799994F), new Vector2(-700.463989F, -3.43199992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-695.83197F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(-694.872009F, -1.09599996F), new Vector2(-694.112F, -1.82799995F), new Vector2(-693.552002F, -2.74799991F));
+ builder.AddCubicBezier(new Vector2(-692.992004F, -3.66799998F), new Vector2(-692.711975F, -4.71199989F), new Vector2(-692.711975F, -5.88000011F));
+ builder.AddCubicBezier(new Vector2(-692.711975F, -7.01599979F), new Vector2(-692.992004F, -8.04399967F), new Vector2(-693.552002F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-694.112F, -9.88399982F), new Vector2(-694.875977F, -10.6079998F), new Vector2(-695.843994F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-696.812012F, -11.6639996F), new Vector2(-697.895996F, -11.9280005F), new Vector2(-699.096008F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-700.328003F, -11.9280005F), new Vector2(-701.424011F, -11.6599998F), new Vector2(-702.383972F, -11.1239996F));
+ builder.AddCubicBezier(new Vector2(-703.343994F, -10.5880003F), new Vector2(-704.099976F, -9.86400032F), new Vector2(-704.651978F, -8.95199966F));
+ builder.AddCubicBezier(new Vector2(-705.203979F, -8.03999996F), new Vector2(-705.47998F, -7.01599979F), new Vector2(-705.47998F, -5.88000011F));
+ builder.AddCubicBezier(new Vector2(-705.47998F, -4.72800016F), new Vector2(-705.200012F, -3.68799996F), new Vector2(-704.640015F, -2.75999999F));
+ builder.AddCubicBezier(new Vector2(-704.080017F, -1.83200002F), new Vector2(-703.320007F, -1.09599996F), new Vector2(-702.359985F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(-701.400024F, -0.00800000038F), new Vector2(-700.312012F, 0.263999999F), new Vector2(-699.096008F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-697.880005F, 0.263999999F), new Vector2(-696.791992F, -0.00800000038F), new Vector2(-695.83197F, -0.551999986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1717()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-714.768005F, 0F));
+ builder.AddLine(new Vector2(-714.768005F, -11.6639996F));
+ builder.AddLine(new Vector2(-718.463989F, -11.6639996F));
+ builder.AddLine(new Vector2(-718.463989F, 0F));
+ builder.AddLine(new Vector2(-714.768005F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-707.039978F, 0F));
+ builder.AddLine(new Vector2(-707.039978F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-707.039978F, -8.26399994F), new Vector2(-707.231995F, -9.00399971F), new Vector2(-707.616028F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-708F, -10.3640003F), new Vector2(-708.528015F, -10.9040003F), new Vector2(-709.200012F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-709.872009F, -11.7040005F), new Vector2(-710.632019F, -11.9040003F), new Vector2(-711.47998F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-712.375977F, -11.9040003F), new Vector2(-713.179993F, -11.7159996F), new Vector2(-713.892029F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-714.604004F, -10.9639997F), new Vector2(-715.164001F, -10.4320002F), new Vector2(-715.572021F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-715.97998F, -9.05599976F), new Vector2(-716.184021F, -8.25599957F), new Vector2(-716.184021F, -7.34399986F));
+ builder.AddLine(new Vector2(-714.768005F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-714.768005F, -7.04799986F), new Vector2(-714.679993F, -7.4000001F), new Vector2(-714.504028F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-714.328003F, -8.00800037F), new Vector2(-714.088013F, -8.24400043F), new Vector2(-713.783997F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-713.47998F, -8.57999992F), new Vector2(-713.135986F, -8.66399956F), new Vector2(-712.752014F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-712.176025F, -8.66399956F), new Vector2(-711.695984F, -8.47599983F), new Vector2(-711.312012F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-710.927979F, -7.72399998F), new Vector2(-710.736023F, -7.23999977F), new Vector2(-710.736023F, -6.64799976F));
+ builder.AddLine(new Vector2(-710.736023F, 0F));
+ builder.AddLine(new Vector2(-707.039978F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1718()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-728.495972F, 0F));
+ builder.AddLine(new Vector2(-728.495972F, -11.6639996F));
+ builder.AddLine(new Vector2(-732.192017F, -11.6639996F));
+ builder.AddLine(new Vector2(-732.192017F, 0F));
+ builder.AddLine(new Vector2(-728.495972F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-720.768005F, 0F));
+ builder.AddLine(new Vector2(-720.768005F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-720.768005F, -8.26399994F), new Vector2(-720.960022F, -9.00399971F), new Vector2(-721.343994F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-721.728027F, -10.3640003F), new Vector2(-722.255981F, -10.9040003F), new Vector2(-722.927979F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-723.599976F, -11.7040005F), new Vector2(-724.359985F, -11.9040003F), new Vector2(-725.208008F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-726.104004F, -11.9040003F), new Vector2(-726.90802F, -11.7159996F), new Vector2(-727.619995F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-728.33197F, -10.9639997F), new Vector2(-728.892029F, -10.4320002F), new Vector2(-729.299988F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-729.708008F, -9.05599976F), new Vector2(-729.911987F, -8.25599957F), new Vector2(-729.911987F, -7.34399986F));
+ builder.AddLine(new Vector2(-728.495972F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-728.495972F, -7.04799986F), new Vector2(-728.40802F, -7.4000001F), new Vector2(-728.231995F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-728.05603F, -8.00800037F), new Vector2(-727.815979F, -8.24400043F), new Vector2(-727.512024F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-727.208008F, -8.57999992F), new Vector2(-726.864014F, -8.66399956F), new Vector2(-726.47998F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-725.903992F, -8.66399956F), new Vector2(-725.424011F, -8.47599983F), new Vector2(-725.039978F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-724.656006F, -7.72399998F), new Vector2(-724.463989F, -7.23999977F), new Vector2(-724.463989F, -6.64799976F));
+ builder.AddLine(new Vector2(-724.463989F, 0F));
+ builder.AddLine(new Vector2(-720.768005F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1719()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-734.76001F, 0F));
+ builder.AddLine(new Vector2(-734.76001F, -11.6639996F));
+ builder.AddLine(new Vector2(-738.383972F, -11.6639996F));
+ builder.AddLine(new Vector2(-738.383972F, -8.80799961F));
+ builder.AddLine(new Vector2(-737.83197F, -6F));
+ builder.AddLine(new Vector2(-738.383972F, -3.14400005F));
+ builder.AddLine(new Vector2(-738.383972F, 0F));
+ builder.AddLine(new Vector2(-734.76001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-742.164001F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-742.55603F, -3.67600012F), new Vector2(-742.867981F, -4F), new Vector2(-743.099976F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-743.33197F, -4.83199978F), new Vector2(-743.447998F, -5.3039999F), new Vector2(-743.447998F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-743.447998F, -6.36000013F), new Vector2(-743.33197F, -6.83199978F), new Vector2(-743.099976F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-742.867981F, -7.66400003F), new Vector2(-742.55603F, -7.98799992F), new Vector2(-742.164001F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-741.771973F, -8.45199966F), new Vector2(-741.328003F, -8.56799984F), new Vector2(-740.83197F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-740.320007F, -8.56799984F), new Vector2(-739.864014F, -8.45199966F), new Vector2(-739.463989F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-739.064026F, -7.98799992F), new Vector2(-738.76001F, -7.66800022F), new Vector2(-738.552002F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-738.343994F, -6.85200024F), new Vector2(-738.23999F, -6.38399982F), new Vector2(-738.23999F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-738.23999F, -5.03999996F), new Vector2(-738.476013F, -4.37599993F), new Vector2(-738.947998F, -3.86400008F));
+ builder.AddCubicBezier(new Vector2(-739.419983F, -3.352F), new Vector2(-740.047974F, -3.09599996F), new Vector2(-740.83197F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-741.328003F, -3.09599996F), new Vector2(-741.771973F, -3.21199989F), new Vector2(-742.164001F, -3.44400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-739.452026F, -0.216000006F));
+ builder.AddCubicBezier(new Vector2(-738.820007F, -0.519999981F), new Vector2(-738.307983F, -0.939999998F), new Vector2(-737.916016F, -1.47599995F));
+ builder.AddCubicBezier(new Vector2(-737.523987F, -2.01200008F), new Vector2(-737.304016F, -2.62400007F), new Vector2(-737.255981F, -3.31200004F));
+ builder.AddLine(new Vector2(-737.255981F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-737.304016F, -9.03999996F), new Vector2(-737.528015F, -9.65200043F), new Vector2(-737.927979F, -10.1879997F));
+ builder.AddCubicBezier(new Vector2(-738.328003F, -10.724F), new Vector2(-738.843994F, -11.1440001F), new Vector2(-739.476013F, -11.448F));
+ builder.AddCubicBezier(new Vector2(-740.107971F, -11.7519999F), new Vector2(-740.815979F, -11.9040003F), new Vector2(-741.599976F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-742.671997F, -11.9040003F), new Vector2(-743.627991F, -11.6440001F), new Vector2(-744.468018F, -11.1239996F));
+ builder.AddCubicBezier(new Vector2(-745.307983F, -10.6040001F), new Vector2(-745.971985F, -9.88399982F), new Vector2(-746.460022F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-746.947998F, -8.04399967F), new Vector2(-747.192017F, -7F), new Vector2(-747.192017F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-747.192017F, -4.66400003F), new Vector2(-746.947998F, -3.62800002F), new Vector2(-746.460022F, -2.72399998F));
+ builder.AddCubicBezier(new Vector2(-745.971985F, -1.82000005F), new Vector2(-745.304016F, -1.10000002F), new Vector2(-744.455994F, -0.56400001F));
+ builder.AddCubicBezier(new Vector2(-743.607971F, -0.0280000009F), new Vector2(-742.656006F, 0.239999995F), new Vector2(-741.599976F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-740.799988F, 0.239999995F), new Vector2(-740.083984F, 0.0879999995F), new Vector2(-739.452026F, -0.216000006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1720()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-755.711975F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-754.895996F, -0.555999994F), new Vector2(-754.200012F, -1.06400001F), new Vector2(-753.624023F, -1.75199997F));
+ builder.AddLine(new Vector2(-755.664001F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-756.015991F, -3.36800003F), new Vector2(-756.424011F, -3.06800008F), new Vector2(-756.888F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-757.35199F, -2.66799998F), new Vector2(-757.864014F, -2.56800008F), new Vector2(-758.424011F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-759.047974F, -2.56800008F), new Vector2(-759.588013F, -2.70000005F), new Vector2(-760.044006F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-760.5F, -3.22799993F), new Vector2(-760.85199F, -3.60800004F), new Vector2(-761.099976F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-761.348022F, -4.5999999F), new Vector2(-761.471985F, -5.18400002F), new Vector2(-761.471985F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-761.471985F, -6.52799988F), new Vector2(-761.356018F, -7.10400009F), new Vector2(-761.124023F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-760.892029F, -8.06400013F), new Vector2(-760.564026F, -8.43999958F), new Vector2(-760.140015F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-759.716003F, -8.98400021F), new Vector2(-759.216003F, -9.11999989F), new Vector2(-758.640015F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-758.112F, -9.11999989F), new Vector2(-757.659973F, -9F), new Vector2(-757.283997F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-756.90802F, -8.52000046F), new Vector2(-756.624023F, -8.18000031F), new Vector2(-756.432007F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-756.23999F, -7.30000019F), new Vector2(-756.135986F, -6.75199986F), new Vector2(-756.119995F, -6.09600019F));
+ builder.AddLine(new Vector2(-754.536011F, -7.17600012F));
+ builder.AddLine(new Vector2(-762.984009F, -7.12799978F));
+ builder.AddLine(new Vector2(-762.984009F, -4.58400011F));
+ builder.AddLine(new Vector2(-752.952026F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-752.872009F, -4.92000008F), new Vector2(-752.820007F, -5.17999983F), new Vector2(-752.796021F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-752.771973F, -5.64400005F), new Vector2(-752.76001F, -5.87200022F), new Vector2(-752.76001F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-752.76001F, -7.23199987F), new Vector2(-753.015991F, -8.23999977F), new Vector2(-753.528015F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-754.039978F, -10F), new Vector2(-754.736023F, -10.6879997F), new Vector2(-755.616028F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-756.495972F, -11.6800003F), new Vector2(-757.52002F, -11.9280005F), new Vector2(-758.687988F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-759.872009F, -11.9280005F), new Vector2(-760.935974F, -11.6639996F), new Vector2(-761.880005F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-762.823975F, -10.6079998F), new Vector2(-763.567993F, -9.88399982F), new Vector2(-764.112F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-764.656006F, -8.04399967F), new Vector2(-764.927979F, -7.0079999F), new Vector2(-764.927979F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-764.927979F, -4.67199993F), new Vector2(-764.64801F, -3.61599994F), new Vector2(-764.088013F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-763.528015F, -1.75999999F), new Vector2(-762.76001F, -1.03600001F), new Vector2(-761.783997F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-760.807983F, 0.00400000019F), new Vector2(-759.687988F, 0.263999999F), new Vector2(-758.424011F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-757.432007F, 0.263999999F), new Vector2(-756.528015F, 0.100000001F), new Vector2(-755.711975F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1721()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-766.512024F, 0F));
+ builder.AddLine(new Vector2(-766.512024F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-766.512024F, -8.22399998F), new Vector2(-766.711975F, -9.05599976F), new Vector2(-767.112F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-767.512024F, -10.4320002F), new Vector2(-768.064026F, -10.9639997F), new Vector2(-768.768005F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-769.471985F, -11.7159996F), new Vector2(-770.263977F, -11.9040003F), new Vector2(-771.143982F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-772.05603F, -11.9040003F), new Vector2(-772.880005F, -11.7119999F), new Vector2(-773.616028F, -11.3280001F));
+ builder.AddCubicBezier(new Vector2(-774.35199F, -10.9440002F), new Vector2(-774.935974F, -10.3920002F), new Vector2(-775.367981F, -9.67199993F));
+ builder.AddCubicBezier(new Vector2(-775.799988F, -8.95199966F), new Vector2(-776.039978F, -8.09599972F), new Vector2(-776.088013F, -7.10400009F));
+ builder.AddLine(new Vector2(-773.952026F, -6.81599998F));
+ builder.AddCubicBezier(new Vector2(-773.952026F, -7.19999981F), new Vector2(-773.872009F, -7.52799988F), new Vector2(-773.711975F, -7.80000019F));
+ builder.AddCubicBezier(new Vector2(-773.552002F, -8.07199955F), new Vector2(-773.323975F, -8.2840004F), new Vector2(-773.028015F, -8.43599987F));
+ builder.AddCubicBezier(new Vector2(-772.731995F, -8.5880003F), new Vector2(-772.40802F, -8.66399956F), new Vector2(-772.05603F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-771.544006F, -8.66399956F), new Vector2(-771.107971F, -8.5F), new Vector2(-770.747986F, -8.17199993F));
+ builder.AddCubicBezier(new Vector2(-770.388F, -7.84399986F), new Vector2(-770.208008F, -7.3920002F), new Vector2(-770.208008F, -6.81599998F));
+ builder.AddLine(new Vector2(-770.208008F, 0F));
+ builder.AddLine(new Vector2(-766.512024F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-773.952026F, 0F));
+ builder.AddLine(new Vector2(-773.952026F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-773.952026F, -8.3760004F), new Vector2(-774.14801F, -9.15999985F), new Vector2(-774.539978F, -9.81599998F));
+ builder.AddCubicBezier(new Vector2(-774.932007F, -10.4720001F), new Vector2(-775.452026F, -10.9840002F), new Vector2(-776.099976F, -11.3520002F));
+ builder.AddCubicBezier(new Vector2(-776.747986F, -11.7200003F), new Vector2(-777.471985F, -11.9040003F), new Vector2(-778.271973F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-779.151978F, -11.9040003F), new Vector2(-779.932007F, -11.724F), new Vector2(-780.612F, -11.3640003F));
+ builder.AddCubicBezier(new Vector2(-781.291992F, -11.0039997F), new Vector2(-781.835999F, -10.4919996F), new Vector2(-782.244019F, -9.82800007F));
+ builder.AddCubicBezier(new Vector2(-782.651978F, -9.16399956F), new Vector2(-782.856018F, -8.3760004F), new Vector2(-782.856018F, -7.46400023F));
+ builder.AddLine(new Vector2(-781.440002F, -6.81599998F));
+ builder.AddCubicBezier(new Vector2(-781.440002F, -7.19999981F), new Vector2(-781.356018F, -7.52799988F), new Vector2(-781.187988F, -7.80000019F));
+ builder.AddCubicBezier(new Vector2(-781.02002F, -8.07199955F), new Vector2(-780.791992F, -8.2840004F), new Vector2(-780.504028F, -8.43599987F));
+ builder.AddCubicBezier(new Vector2(-780.216003F, -8.5880003F), new Vector2(-779.888F, -8.66399956F), new Vector2(-779.52002F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-778.992004F, -8.66399956F), new Vector2(-778.547974F, -8.5F), new Vector2(-778.187988F, -8.17199993F));
+ builder.AddCubicBezier(new Vector2(-777.828003F, -7.84399986F), new Vector2(-777.64801F, -7.3920002F), new Vector2(-777.64801F, -6.81599998F));
+ builder.AddLine(new Vector2(-777.64801F, 0F));
+ builder.AddLine(new Vector2(-773.952026F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-781.440002F, 0F));
+ builder.AddLine(new Vector2(-781.440002F, -11.6639996F));
+ builder.AddLine(new Vector2(-785.135986F, -11.6639996F));
+ builder.AddLine(new Vector2(-785.135986F, 0F));
+ builder.AddLine(new Vector2(-781.440002F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1722()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-788.099976F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-787.73999F, -14.2480001F), new Vector2(-787.559998F, -14.7279997F), new Vector2(-787.559998F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-787.559998F, -15.8640003F), new Vector2(-787.73999F, -16.3439999F), new Vector2(-788.099976F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-788.460022F, -17.1119995F), new Vector2(-788.935974F, -17.3040009F), new Vector2(-789.528015F, -17.3040009F));
+ builder.AddCubicBezier(new Vector2(-790.088013F, -17.3040009F), new Vector2(-790.559998F, -17.1119995F), new Vector2(-790.94397F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-791.328003F, -16.3439999F), new Vector2(-791.52002F, -15.8640003F), new Vector2(-791.52002F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-791.52002F, -14.7279997F), new Vector2(-791.328003F, -14.2480001F), new Vector2(-790.94397F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-790.559998F, -13.448F), new Vector2(-790.088013F, -13.2480001F), new Vector2(-789.528015F, -13.2480001F));
+ builder.AddCubicBezier(new Vector2(-788.935974F, -13.2480001F), new Vector2(-788.460022F, -13.448F), new Vector2(-788.099976F, -13.8479996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-787.679993F, 0F));
+ builder.AddLine(new Vector2(-787.679993F, -11.6639996F));
+ builder.AddLine(new Vector2(-791.375977F, -11.6639996F));
+ builder.AddLine(new Vector2(-791.375977F, 0F));
+ builder.AddLine(new Vector2(-787.679993F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1723()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-792.984009F, -8.52000046F));
+ builder.AddLine(new Vector2(-792.984009F, -11.6639996F));
+ builder.AddLine(new Vector2(-801.935974F, -11.6639996F));
+ builder.AddLine(new Vector2(-801.935974F, -8.52000046F));
+ builder.AddLine(new Vector2(-792.984009F, -8.52000046F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-795.624023F, 0F));
+ builder.AddLine(new Vector2(-795.624023F, -16.4880009F));
+ builder.AddLine(new Vector2(-799.320007F, -16.4880009F));
+ builder.AddLine(new Vector2(-799.320007F, 0F));
+ builder.AddLine(new Vector2(-795.624023F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1724()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-803.231995F, -4.51200008F));
+ builder.AddLine(new Vector2(-803.231995F, -7.72800016F));
+ builder.AddLine(new Vector2(-811.776001F, -7.72800016F));
+ builder.AddLine(new Vector2(-811.776001F, -4.51200008F));
+ builder.AddLine(new Vector2(-803.231995F, -4.51200008F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1725()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-816.960022F, -0.228F));
+ builder.AddCubicBezier(new Vector2(-816.143982F, -0.555999994F), new Vector2(-815.447998F, -1.06400001F), new Vector2(-814.872009F, -1.75199997F));
+ builder.AddLine(new Vector2(-816.911987F, -3.76799989F));
+ builder.AddCubicBezier(new Vector2(-817.263977F, -3.36800003F), new Vector2(-817.671997F, -3.06800008F), new Vector2(-818.135986F, -2.86800003F));
+ builder.AddCubicBezier(new Vector2(-818.599976F, -2.66799998F), new Vector2(-819.112F, -2.56800008F), new Vector2(-819.671997F, -2.56800008F));
+ builder.AddCubicBezier(new Vector2(-820.296021F, -2.56800008F), new Vector2(-820.835999F, -2.70000005F), new Vector2(-821.291992F, -2.96399999F));
+ builder.AddCubicBezier(new Vector2(-821.747986F, -3.22799993F), new Vector2(-822.099976F, -3.60800004F), new Vector2(-822.348022F, -4.10400009F));
+ builder.AddCubicBezier(new Vector2(-822.596008F, -4.5999999F), new Vector2(-822.719971F, -5.18400002F), new Vector2(-822.719971F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-822.719971F, -6.52799988F), new Vector2(-822.604004F, -7.10400009F), new Vector2(-822.372009F, -7.58400011F));
+ builder.AddCubicBezier(new Vector2(-822.140015F, -8.06400013F), new Vector2(-821.812012F, -8.43999958F), new Vector2(-821.388F, -8.71199989F));
+ builder.AddCubicBezier(new Vector2(-820.963989F, -8.98400021F), new Vector2(-820.463989F, -9.11999989F), new Vector2(-819.888F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-819.359985F, -9.11999989F), new Vector2(-818.90802F, -9F), new Vector2(-818.531982F, -8.76000023F));
+ builder.AddCubicBezier(new Vector2(-818.156006F, -8.52000046F), new Vector2(-817.872009F, -8.18000031F), new Vector2(-817.679993F, -7.73999977F));
+ builder.AddCubicBezier(new Vector2(-817.487976F, -7.30000019F), new Vector2(-817.383972F, -6.75199986F), new Vector2(-817.367981F, -6.09600019F));
+ builder.AddLine(new Vector2(-815.783997F, -7.17600012F));
+ builder.AddLine(new Vector2(-824.231995F, -7.12799978F));
+ builder.AddLine(new Vector2(-824.231995F, -4.58400011F));
+ builder.AddLine(new Vector2(-814.200012F, -4.63199997F));
+ builder.AddCubicBezier(new Vector2(-814.119995F, -4.92000008F), new Vector2(-814.067993F, -5.17999983F), new Vector2(-814.044006F, -5.41200018F));
+ builder.AddCubicBezier(new Vector2(-814.02002F, -5.64400005F), new Vector2(-814.007996F, -5.87200022F), new Vector2(-814.007996F, -6.09600019F));
+ builder.AddCubicBezier(new Vector2(-814.007996F, -7.23199987F), new Vector2(-814.263977F, -8.23999977F), new Vector2(-814.776001F, -9.11999989F));
+ builder.AddCubicBezier(new Vector2(-815.288025F, -10F), new Vector2(-815.984009F, -10.6879997F), new Vector2(-816.864014F, -11.184F));
+ builder.AddCubicBezier(new Vector2(-817.744019F, -11.6800003F), new Vector2(-818.768005F, -11.9280005F), new Vector2(-819.935974F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-821.119995F, -11.9280005F), new Vector2(-822.184021F, -11.6639996F), new Vector2(-823.127991F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-824.072021F, -10.6079998F), new Vector2(-824.815979F, -9.88399982F), new Vector2(-825.359985F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-825.903992F, -8.04399967F), new Vector2(-826.176025F, -7.0079999F), new Vector2(-826.176025F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-826.176025F, -4.67199993F), new Vector2(-825.895996F, -3.61599994F), new Vector2(-825.335999F, -2.68799996F));
+ builder.AddCubicBezier(new Vector2(-824.776001F, -1.75999999F), new Vector2(-824.007996F, -1.03600001F), new Vector2(-823.031982F, -0.515999973F));
+ builder.AddCubicBezier(new Vector2(-822.05603F, 0.00400000019F), new Vector2(-820.935974F, 0.263999999F), new Vector2(-819.671997F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-818.679993F, 0.263999999F), new Vector2(-817.776001F, 0.100000001F), new Vector2(-816.960022F, -0.228F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1726()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-835.463989F, 0F));
+ builder.AddLine(new Vector2(-835.463989F, -11.6639996F));
+ builder.AddLine(new Vector2(-839.159973F, -11.6639996F));
+ builder.AddLine(new Vector2(-839.159973F, 0F));
+ builder.AddLine(new Vector2(-835.463989F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-827.736023F, 0F));
+ builder.AddLine(new Vector2(-827.736023F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-827.736023F, -8.26399994F), new Vector2(-827.927979F, -9.00399971F), new Vector2(-828.312012F, -9.68400002F));
+ builder.AddCubicBezier(new Vector2(-828.695984F, -10.3640003F), new Vector2(-829.223999F, -10.9040003F), new Vector2(-829.895996F, -11.3039999F));
+ builder.AddCubicBezier(new Vector2(-830.567993F, -11.7040005F), new Vector2(-831.328003F, -11.9040003F), new Vector2(-832.176025F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-833.072021F, -11.9040003F), new Vector2(-833.875977F, -11.7159996F), new Vector2(-834.588013F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-835.299988F, -10.9639997F), new Vector2(-835.859985F, -10.4320002F), new Vector2(-836.268005F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-836.676025F, -9.05599976F), new Vector2(-836.880005F, -8.25599957F), new Vector2(-836.880005F, -7.34399986F));
+ builder.AddLine(new Vector2(-835.463989F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-835.463989F, -7.04799986F), new Vector2(-835.375977F, -7.4000001F), new Vector2(-835.200012F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-835.023987F, -8.00800037F), new Vector2(-834.783997F, -8.24400043F), new Vector2(-834.47998F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-834.176025F, -8.57999992F), new Vector2(-833.83197F, -8.66399956F), new Vector2(-833.447998F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-832.872009F, -8.66399956F), new Vector2(-832.392029F, -8.47599983F), new Vector2(-832.007996F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-831.624023F, -7.72399998F), new Vector2(-831.432007F, -7.23999977F), new Vector2(-831.432007F, -6.64799976F));
+ builder.AddLine(new Vector2(-831.432007F, 0F));
+ builder.AddLine(new Vector2(-827.736023F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1727()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-848.711975F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-849.112F, -3.6559999F), new Vector2(-849.424011F, -3.98000002F), new Vector2(-849.64801F, -4.40399981F));
+ builder.AddCubicBezier(new Vector2(-849.872009F, -4.82800007F), new Vector2(-849.984009F, -5.3119998F), new Vector2(-849.984009F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-849.984009F, -6.36800003F), new Vector2(-849.872009F, -6.83199978F), new Vector2(-849.64801F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-849.424011F, -7.66400003F), new Vector2(-849.112F, -7.98799992F), new Vector2(-848.711975F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-848.312012F, -8.45199966F), new Vector2(-847.856018F, -8.56799984F), new Vector2(-847.343994F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-846.83197F, -8.56799984F), new Vector2(-846.380005F, -8.45199966F), new Vector2(-845.987976F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-845.596008F, -7.98799992F), new Vector2(-845.288025F, -7.66800022F), new Vector2(-845.064026F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-844.840027F, -6.85200024F), new Vector2(-844.728027F, -6.38399982F), new Vector2(-844.728027F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-844.728027F, -5.3119998F), new Vector2(-844.835999F, -4.82800007F), new Vector2(-845.052002F, -4.40399981F));
+ builder.AddCubicBezier(new Vector2(-845.268005F, -3.98000002F), new Vector2(-845.575989F, -3.6559999F), new Vector2(-845.976013F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-846.375977F, -3.20799994F), new Vector2(-846.83197F, -3.09599996F), new Vector2(-847.343994F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-847.856018F, -3.09599996F), new Vector2(-848.312012F, -3.20799994F), new Vector2(-848.711975F, -3.43199992F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-844.080017F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(-843.119995F, -1.09599996F), new Vector2(-842.359985F, -1.82799995F), new Vector2(-841.799988F, -2.74799991F));
+ builder.AddCubicBezier(new Vector2(-841.23999F, -3.66799998F), new Vector2(-840.960022F, -4.71199989F), new Vector2(-840.960022F, -5.88000011F));
+ builder.AddCubicBezier(new Vector2(-840.960022F, -7.01599979F), new Vector2(-841.23999F, -8.04399967F), new Vector2(-841.799988F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-842.359985F, -9.88399982F), new Vector2(-843.124023F, -10.6079998F), new Vector2(-844.09198F, -11.1359997F));
+ builder.AddCubicBezier(new Vector2(-845.059998F, -11.6639996F), new Vector2(-846.143982F, -11.9280005F), new Vector2(-847.343994F, -11.9280005F));
+ builder.AddCubicBezier(new Vector2(-848.575989F, -11.9280005F), new Vector2(-849.671997F, -11.6599998F), new Vector2(-850.632019F, -11.1239996F));
+ builder.AddCubicBezier(new Vector2(-851.59198F, -10.5880003F), new Vector2(-852.348022F, -9.86400032F), new Vector2(-852.900024F, -8.95199966F));
+ builder.AddCubicBezier(new Vector2(-853.452026F, -8.03999996F), new Vector2(-853.728027F, -7.01599979F), new Vector2(-853.728027F, -5.88000011F));
+ builder.AddCubicBezier(new Vector2(-853.728027F, -4.72800016F), new Vector2(-853.447998F, -3.68799996F), new Vector2(-852.888F, -2.75999999F));
+ builder.AddCubicBezier(new Vector2(-852.328003F, -1.83200002F), new Vector2(-851.567993F, -1.09599996F), new Vector2(-850.607971F, -0.551999986F));
+ builder.AddCubicBezier(new Vector2(-849.64801F, -0.00800000038F), new Vector2(-848.559998F, 0.263999999F), new Vector2(-847.343994F, 0.263999999F));
+ builder.AddCubicBezier(new Vector2(-846.127991F, 0.263999999F), new Vector2(-845.039978F, -0.00800000038F), new Vector2(-844.080017F, -0.551999986F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1728()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-860.112F, 0F));
+ builder.AddLine(new Vector2(-860.112F, -11.6639996F));
+ builder.AddLine(new Vector2(-863.736023F, -11.6639996F));
+ builder.AddLine(new Vector2(-863.736023F, -8.80799961F));
+ builder.AddLine(new Vector2(-863.184021F, -6F));
+ builder.AddLine(new Vector2(-863.736023F, -3.14400005F));
+ builder.AddLine(new Vector2(-863.736023F, 0F));
+ builder.AddLine(new Vector2(-860.112F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-867.515991F, -3.44400001F));
+ builder.AddCubicBezier(new Vector2(-867.90802F, -3.67600012F), new Vector2(-868.219971F, -4F), new Vector2(-868.452026F, -4.41599989F));
+ builder.AddCubicBezier(new Vector2(-868.684021F, -4.83199978F), new Vector2(-868.799988F, -5.3039999F), new Vector2(-868.799988F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-868.799988F, -6.36000013F), new Vector2(-868.684021F, -6.83199978F), new Vector2(-868.452026F, -7.24800014F));
+ builder.AddCubicBezier(new Vector2(-868.219971F, -7.66400003F), new Vector2(-867.90802F, -7.98799992F), new Vector2(-867.515991F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-867.124023F, -8.45199966F), new Vector2(-866.679993F, -8.56799984F), new Vector2(-866.184021F, -8.56799984F));
+ builder.AddCubicBezier(new Vector2(-865.671997F, -8.56799984F), new Vector2(-865.216003F, -8.45199966F), new Vector2(-864.815979F, -8.22000027F));
+ builder.AddCubicBezier(new Vector2(-864.416016F, -7.98799992F), new Vector2(-864.112F, -7.66800022F), new Vector2(-863.903992F, -7.26000023F));
+ builder.AddCubicBezier(new Vector2(-863.695984F, -6.85200024F), new Vector2(-863.59198F, -6.38399982F), new Vector2(-863.59198F, -5.85599995F));
+ builder.AddCubicBezier(new Vector2(-863.59198F, -5.03999996F), new Vector2(-863.828003F, -4.37599993F), new Vector2(-864.299988F, -3.86400008F));
+ builder.AddCubicBezier(new Vector2(-864.771973F, -3.352F), new Vector2(-865.400024F, -3.09599996F), new Vector2(-866.184021F, -3.09599996F));
+ builder.AddCubicBezier(new Vector2(-866.679993F, -3.09599996F), new Vector2(-867.124023F, -3.21199989F), new Vector2(-867.515991F, -3.44400001F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-864.804016F, -0.216000006F));
+ builder.AddCubicBezier(new Vector2(-864.171997F, -0.519999981F), new Vector2(-863.659973F, -0.939999998F), new Vector2(-863.268005F, -1.47599995F));
+ builder.AddCubicBezier(new Vector2(-862.875977F, -2.01200008F), new Vector2(-862.656006F, -2.62400007F), new Vector2(-862.607971F, -3.31200004F));
+ builder.AddLine(new Vector2(-862.607971F, -8.35200024F));
+ builder.AddCubicBezier(new Vector2(-862.656006F, -9.03999996F), new Vector2(-862.880005F, -9.65200043F), new Vector2(-863.280029F, -10.1879997F));
+ builder.AddCubicBezier(new Vector2(-863.679993F, -10.724F), new Vector2(-864.195984F, -11.1440001F), new Vector2(-864.828003F, -11.448F));
+ builder.AddCubicBezier(new Vector2(-865.460022F, -11.7519999F), new Vector2(-866.16803F, -11.9040003F), new Vector2(-866.952026F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-868.023987F, -11.9040003F), new Vector2(-868.97998F, -11.6440001F), new Vector2(-869.820007F, -11.1239996F));
+ builder.AddCubicBezier(new Vector2(-870.659973F, -10.6040001F), new Vector2(-871.323975F, -9.88399982F), new Vector2(-871.812012F, -8.96399975F));
+ builder.AddCubicBezier(new Vector2(-872.299988F, -8.04399967F), new Vector2(-872.544006F, -7F), new Vector2(-872.544006F, -5.83199978F));
+ builder.AddCubicBezier(new Vector2(-872.544006F, -4.66400003F), new Vector2(-872.299988F, -3.62800002F), new Vector2(-871.812012F, -2.72399998F));
+ builder.AddCubicBezier(new Vector2(-871.323975F, -1.82000005F), new Vector2(-870.656006F, -1.10000002F), new Vector2(-869.807983F, -0.56400001F));
+ builder.AddCubicBezier(new Vector2(-868.960022F, -0.0280000009F), new Vector2(-868.007996F, 0.239999995F), new Vector2(-866.952026F, 0.239999995F));
+ builder.AddCubicBezier(new Vector2(-866.151978F, 0.239999995F), new Vector2(-865.435974F, 0.0879999995F), new Vector2(-864.804016F, -0.216000006F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1729()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-879.635986F, -0.708000004F));
+ builder.AddCubicBezier(new Vector2(-878.780029F, -1.38800001F), new Vector2(-878.35199F, -2.296F), new Vector2(-878.35199F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-878.35199F, -4.16800022F), new Vector2(-878.487976F, -4.76399994F), new Vector2(-878.76001F, -5.21999979F));
+ builder.AddCubicBezier(new Vector2(-879.031982F, -5.67600012F), new Vector2(-879.383972F, -6.04400015F), new Vector2(-879.815979F, -6.32399988F));
+ builder.AddCubicBezier(new Vector2(-880.247986F, -6.60400009F), new Vector2(-880.703979F, -6.82000017F), new Vector2(-881.184021F, -6.97200012F));
+ builder.AddCubicBezier(new Vector2(-881.664001F, -7.12400007F), new Vector2(-882.116028F, -7.25600004F), new Vector2(-882.539978F, -7.36800003F));
+ builder.AddCubicBezier(new Vector2(-882.963989F, -7.48000002F), new Vector2(-883.315979F, -7.6079998F), new Vector2(-883.596008F, -7.75199986F));
+ builder.AddCubicBezier(new Vector2(-883.875977F, -7.89599991F), new Vector2(-884.015991F, -8.0880003F), new Vector2(-884.015991F, -8.32800007F));
+ builder.AddCubicBezier(new Vector2(-884.015991F, -8.53600025F), new Vector2(-883.911987F, -8.70400047F), new Vector2(-883.703979F, -8.83199978F));
+ builder.AddCubicBezier(new Vector2(-883.495972F, -8.96000004F), new Vector2(-883.184021F, -9.02400017F), new Vector2(-882.768005F, -9.02400017F));
+ builder.AddCubicBezier(new Vector2(-882.335999F, -9.02400017F), new Vector2(-881.892029F, -8.93200016F), new Vector2(-881.435974F, -8.74800014F));
+ builder.AddCubicBezier(new Vector2(-880.97998F, -8.56400013F), new Vector2(-880.567993F, -8.25599957F), new Vector2(-880.200012F, -7.82399988F));
+ builder.AddLine(new Vector2(-878.112F, -9.96000004F));
+ builder.AddCubicBezier(new Vector2(-878.624023F, -10.632F), new Vector2(-879.304016F, -11.1400003F), new Vector2(-880.151978F, -11.4840002F));
+ builder.AddCubicBezier(new Vector2(-881F, -11.8280001F), new Vector2(-881.911987F, -12F), new Vector2(-882.888F, -12F));
+ builder.AddCubicBezier(new Vector2(-883.864014F, -12F), new Vector2(-884.703979F, -11.8400002F), new Vector2(-885.40802F, -11.5200005F));
+ builder.AddCubicBezier(new Vector2(-886.112F, -11.1999998F), new Vector2(-886.656006F, -10.7639999F), new Vector2(-887.039978F, -10.2119999F));
+ builder.AddCubicBezier(new Vector2(-887.424011F, -9.65999985F), new Vector2(-887.616028F, -9.00800037F), new Vector2(-887.616028F, -8.25599957F));
+ builder.AddCubicBezier(new Vector2(-887.616028F, -7.53599977F), new Vector2(-887.47998F, -6.95200014F), new Vector2(-887.208008F, -6.50400019F));
+ builder.AddCubicBezier(new Vector2(-886.935974F, -6.05600023F), new Vector2(-886.583984F, -5.704F), new Vector2(-886.151978F, -5.44799995F));
+ builder.AddCubicBezier(new Vector2(-885.719971F, -5.19199991F), new Vector2(-885.263977F, -4.98799992F), new Vector2(-884.783997F, -4.83599997F));
+ builder.AddCubicBezier(new Vector2(-884.304016F, -4.68400002F), new Vector2(-883.843994F, -4.54799986F), new Vector2(-883.403992F, -4.42799997F));
+ builder.AddCubicBezier(new Vector2(-882.963989F, -4.30800009F), new Vector2(-882.607971F, -4.17999983F), new Vector2(-882.335999F, -4.04400015F));
+ builder.AddCubicBezier(new Vector2(-882.064026F, -3.90799999F), new Vector2(-881.927979F, -3.6960001F), new Vector2(-881.927979F, -3.40799999F));
+ builder.AddCubicBezier(new Vector2(-881.927979F, -3.16799998F), new Vector2(-882.044006F, -2.98399997F), new Vector2(-882.276001F, -2.85599995F));
+ builder.AddCubicBezier(new Vector2(-882.507996F, -2.72799993F), new Vector2(-882.823975F, -2.66400003F), new Vector2(-883.223999F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(-883.864014F, -2.66400003F), new Vector2(-884.44397F, -2.77999997F), new Vector2(-884.963989F, -3.01200008F));
+ builder.AddCubicBezier(new Vector2(-885.484009F, -3.24399996F), new Vector2(-885.94397F, -3.56800008F), new Vector2(-886.343994F, -3.98399997F));
+ builder.AddLine(new Vector2(-888.455994F, -1.87199998F));
+ builder.AddCubicBezier(new Vector2(-888.039978F, -1.44000006F), new Vector2(-887.552002F, -1.05999994F), new Vector2(-886.992004F, -0.731999993F));
+ builder.AddCubicBezier(new Vector2(-886.432007F, -0.404000014F), new Vector2(-885.815979F, -0.148000002F), new Vector2(-885.143982F, 0.0359999985F));
+ builder.AddCubicBezier(new Vector2(-884.471985F, 0.219999999F), new Vector2(-883.791992F, 0.312000006F), new Vector2(-883.104004F, 0.312000006F));
+ builder.AddCubicBezier(new Vector2(-881.64801F, 0.312000006F), new Vector2(-880.492004F, -0.0280000009F), new Vector2(-879.635986F, -0.708000004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1730()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-890.340027F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-889.97998F, -14.2480001F), new Vector2(-889.799988F, -14.7279997F), new Vector2(-889.799988F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-889.799988F, -15.8640003F), new Vector2(-889.97998F, -16.3439999F), new Vector2(-890.340027F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-890.700012F, -17.1119995F), new Vector2(-891.176025F, -17.3040009F), new Vector2(-891.768005F, -17.3040009F));
+ builder.AddCubicBezier(new Vector2(-892.328003F, -17.3040009F), new Vector2(-892.799988F, -17.1119995F), new Vector2(-893.184021F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-893.567993F, -16.3439999F), new Vector2(-893.76001F, -15.8640003F), new Vector2(-893.76001F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-893.76001F, -14.7279997F), new Vector2(-893.567993F, -14.2480001F), new Vector2(-893.184021F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-892.799988F, -13.448F), new Vector2(-892.328003F, -13.2480001F), new Vector2(-891.768005F, -13.2480001F));
+ builder.AddCubicBezier(new Vector2(-891.176025F, -13.2480001F), new Vector2(-890.700012F, -13.448F), new Vector2(-890.340027F, -13.8479996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-889.919983F, 0F));
+ builder.AddLine(new Vector2(-889.919983F, -11.6639996F));
+ builder.AddLine(new Vector2(-893.616028F, -11.6639996F));
+ builder.AddLine(new Vector2(-893.616028F, 0F));
+ builder.AddLine(new Vector2(-889.919983F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1731()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-901.452026F, -0.708000004F));
+ builder.AddCubicBezier(new Vector2(-900.596008F, -1.38800001F), new Vector2(-900.16803F, -2.296F), new Vector2(-900.16803F, -3.43199992F));
+ builder.AddCubicBezier(new Vector2(-900.16803F, -4.16800022F), new Vector2(-900.304016F, -4.76399994F), new Vector2(-900.575989F, -5.21999979F));
+ builder.AddCubicBezier(new Vector2(-900.848022F, -5.67600012F), new Vector2(-901.200012F, -6.04400015F), new Vector2(-901.632019F, -6.32399988F));
+ builder.AddCubicBezier(new Vector2(-902.064026F, -6.60400009F), new Vector2(-902.52002F, -6.82000017F), new Vector2(-903F, -6.97200012F));
+ builder.AddCubicBezier(new Vector2(-903.47998F, -7.12400007F), new Vector2(-903.932007F, -7.25600004F), new Vector2(-904.356018F, -7.36800003F));
+ builder.AddCubicBezier(new Vector2(-904.780029F, -7.48000002F), new Vector2(-905.132019F, -7.6079998F), new Vector2(-905.411987F, -7.75199986F));
+ builder.AddCubicBezier(new Vector2(-905.692017F, -7.89599991F), new Vector2(-905.83197F, -8.0880003F), new Vector2(-905.83197F, -8.32800007F));
+ builder.AddCubicBezier(new Vector2(-905.83197F, -8.53600025F), new Vector2(-905.728027F, -8.70400047F), new Vector2(-905.52002F, -8.83199978F));
+ builder.AddCubicBezier(new Vector2(-905.312012F, -8.96000004F), new Vector2(-905F, -9.02400017F), new Vector2(-904.583984F, -9.02400017F));
+ builder.AddCubicBezier(new Vector2(-904.151978F, -9.02400017F), new Vector2(-903.708008F, -8.93200016F), new Vector2(-903.252014F, -8.74800014F));
+ builder.AddCubicBezier(new Vector2(-902.796021F, -8.56400013F), new Vector2(-902.383972F, -8.25599957F), new Vector2(-902.015991F, -7.82399988F));
+ builder.AddLine(new Vector2(-899.927979F, -9.96000004F));
+ builder.AddCubicBezier(new Vector2(-900.440002F, -10.632F), new Vector2(-901.119995F, -11.1400003F), new Vector2(-901.968018F, -11.4840002F));
+ builder.AddCubicBezier(new Vector2(-902.815979F, -11.8280001F), new Vector2(-903.728027F, -12F), new Vector2(-904.703979F, -12F));
+ builder.AddCubicBezier(new Vector2(-905.679993F, -12F), new Vector2(-906.52002F, -11.8400002F), new Vector2(-907.223999F, -11.5200005F));
+ builder.AddCubicBezier(new Vector2(-907.927979F, -11.1999998F), new Vector2(-908.471985F, -10.7639999F), new Vector2(-908.856018F, -10.2119999F));
+ builder.AddCubicBezier(new Vector2(-909.23999F, -9.65999985F), new Vector2(-909.432007F, -9.00800037F), new Vector2(-909.432007F, -8.25599957F));
+ builder.AddCubicBezier(new Vector2(-909.432007F, -7.53599977F), new Vector2(-909.296021F, -6.95200014F), new Vector2(-909.023987F, -6.50400019F));
+ builder.AddCubicBezier(new Vector2(-908.752014F, -6.05600023F), new Vector2(-908.400024F, -5.704F), new Vector2(-907.968018F, -5.44799995F));
+ builder.AddCubicBezier(new Vector2(-907.536011F, -5.19199991F), new Vector2(-907.080017F, -4.98799992F), new Vector2(-906.599976F, -4.83599997F));
+ builder.AddCubicBezier(new Vector2(-906.119995F, -4.68400002F), new Vector2(-905.659973F, -4.54799986F), new Vector2(-905.219971F, -4.42799997F));
+ builder.AddCubicBezier(new Vector2(-904.780029F, -4.30800009F), new Vector2(-904.424011F, -4.17999983F), new Vector2(-904.151978F, -4.04400015F));
+ builder.AddCubicBezier(new Vector2(-903.880005F, -3.90799999F), new Vector2(-903.744019F, -3.6960001F), new Vector2(-903.744019F, -3.40799999F));
+ builder.AddCubicBezier(new Vector2(-903.744019F, -3.16799998F), new Vector2(-903.859985F, -2.98399997F), new Vector2(-904.09198F, -2.85599995F));
+ builder.AddCubicBezier(new Vector2(-904.323975F, -2.72799993F), new Vector2(-904.640015F, -2.66400003F), new Vector2(-905.039978F, -2.66400003F));
+ builder.AddCubicBezier(new Vector2(-905.679993F, -2.66400003F), new Vector2(-906.26001F, -2.77999997F), new Vector2(-906.780029F, -3.01200008F));
+ builder.AddCubicBezier(new Vector2(-907.299988F, -3.24399996F), new Vector2(-907.76001F, -3.56800008F), new Vector2(-908.159973F, -3.98399997F));
+ builder.AddLine(new Vector2(-910.271973F, -1.87199998F));
+ builder.AddCubicBezier(new Vector2(-909.856018F, -1.44000006F), new Vector2(-909.367981F, -1.05999994F), new Vector2(-908.807983F, -0.731999993F));
+ builder.AddCubicBezier(new Vector2(-908.247986F, -0.404000014F), new Vector2(-907.632019F, -0.148000002F), new Vector2(-906.960022F, 0.0359999985F));
+ builder.AddCubicBezier(new Vector2(-906.288025F, 0.219999999F), new Vector2(-905.607971F, 0.312000006F), new Vector2(-904.919983F, 0.312000006F));
+ builder.AddCubicBezier(new Vector2(-903.463989F, 0.312000006F), new Vector2(-902.307983F, -0.0280000009F), new Vector2(-901.452026F, -0.708000004F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1732()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-912.156006F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-911.796021F, -14.2480001F), new Vector2(-911.616028F, -14.7279997F), new Vector2(-911.616028F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-911.616028F, -15.8640003F), new Vector2(-911.796021F, -16.3439999F), new Vector2(-912.156006F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-912.515991F, -17.1119995F), new Vector2(-912.992004F, -17.3040009F), new Vector2(-913.583984F, -17.3040009F));
+ builder.AddCubicBezier(new Vector2(-914.143982F, -17.3040009F), new Vector2(-914.616028F, -17.1119995F), new Vector2(-915F, -16.7280006F));
+ builder.AddCubicBezier(new Vector2(-915.383972F, -16.3439999F), new Vector2(-915.575989F, -15.8640003F), new Vector2(-915.575989F, -15.2880001F));
+ builder.AddCubicBezier(new Vector2(-915.575989F, -14.7279997F), new Vector2(-915.383972F, -14.2480001F), new Vector2(-915F, -13.8479996F));
+ builder.AddCubicBezier(new Vector2(-914.616028F, -13.448F), new Vector2(-914.143982F, -13.2480001F), new Vector2(-913.583984F, -13.2480001F));
+ builder.AddCubicBezier(new Vector2(-912.992004F, -13.2480001F), new Vector2(-912.515991F, -13.448F), new Vector2(-912.156006F, -13.8479996F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-911.736023F, 0F));
+ builder.AddLine(new Vector2(-911.736023F, -11.6639996F));
+ builder.AddLine(new Vector2(-915.432007F, -11.6639996F));
+ builder.AddLine(new Vector2(-915.432007F, 0F));
+ builder.AddLine(new Vector2(-911.736023F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1733()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-925.487976F, 0F));
+ builder.AddLine(new Vector2(-925.487976F, -17.4239998F));
+ builder.AddLine(new Vector2(-929.184021F, -17.4239998F));
+ builder.AddLine(new Vector2(-929.184021F, 0F));
+ builder.AddLine(new Vector2(-925.487976F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-917.76001F, 0F));
+ builder.AddLine(new Vector2(-917.76001F, -7.46400023F));
+ builder.AddCubicBezier(new Vector2(-917.76001F, -8.34399986F), new Vector2(-917.952026F, -9.11600018F), new Vector2(-918.335999F, -9.77999973F));
+ builder.AddCubicBezier(new Vector2(-918.719971F, -10.4440002F), new Vector2(-919.255981F, -10.9639997F), new Vector2(-919.94397F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-920.632019F, -11.7159996F), new Vector2(-921.432007F, -11.9040003F), new Vector2(-922.343994F, -11.9040003F));
+ builder.AddCubicBezier(new Vector2(-923.223999F, -11.9040003F), new Vector2(-924.007996F, -11.7159996F), new Vector2(-924.695984F, -11.3400002F));
+ builder.AddCubicBezier(new Vector2(-925.383972F, -10.9639997F), new Vector2(-925.924011F, -10.4320002F), new Vector2(-926.315979F, -9.74400043F));
+ builder.AddCubicBezier(new Vector2(-926.708008F, -9.05599976F), new Vector2(-926.903992F, -8.25599957F), new Vector2(-926.903992F, -7.34399986F));
+ builder.AddLine(new Vector2(-925.487976F, -6.64799976F));
+ builder.AddCubicBezier(new Vector2(-925.487976F, -7.04799986F), new Vector2(-925.400024F, -7.4000001F), new Vector2(-925.223999F, -7.704F));
+ builder.AddCubicBezier(new Vector2(-925.047974F, -8.00800037F), new Vector2(-924.807983F, -8.24400043F), new Vector2(-924.504028F, -8.4119997F));
+ builder.AddCubicBezier(new Vector2(-924.200012F, -8.57999992F), new Vector2(-923.856018F, -8.66399956F), new Vector2(-923.471985F, -8.66399956F));
+ builder.AddCubicBezier(new Vector2(-922.895996F, -8.66399956F), new Vector2(-922.416016F, -8.47599983F), new Vector2(-922.031982F, -8.10000038F));
+ builder.AddCubicBezier(new Vector2(-921.64801F, -7.72399998F), new Vector2(-921.455994F, -7.23999977F), new Vector2(-921.455994F, -6.64799976F));
+ builder.AddLine(new Vector2(-921.455994F, 0F));
+ builder.AddLine(new Vector2(-917.76001F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Offset:<1772, 42>
+ CanvasGeometry Geometry_1734()
+ {
+ CanvasGeometry result;
+ using (var builder = new CanvasPathBuilder(null))
+ {
+ builder.SetFilledRegionDetermination(CanvasFilledRegionDetermination.Winding);
+ builder.BeginFigure(new Vector2(-930.935974F, -13.632F));
+ builder.AddLine(new Vector2(-930.935974F, -16.9440002F));
+ builder.AddLine(new Vector2(-945.335999F, -16.9440002F));
+ builder.AddLine(new Vector2(-945.335999F, -13.632F));
+ builder.AddLine(new Vector2(-930.935974F, -13.632F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ builder.BeginFigure(new Vector2(-936.216003F, 0F));
+ builder.AddLine(new Vector2(-936.216003F, -16.7280006F));
+ builder.AddLine(new Vector2(-940.031982F, -16.7280006F));
+ builder.AddLine(new Vector2(-940.031982F, 0F));
+ builder.AddLine(new Vector2(-936.216003F, 0F));
+ builder.EndFigure(CanvasFigureLoop.Closed);
+ result = CanvasGeometry.CreatePath(builder);
+ }
+ return result;
+ }
+
+ CompositionColorBrush ColorBrush_Black()
+ {
+ return (_colorBrush_Black == null)
+ ? _colorBrush_Black = _c.CreateColorBrush(Color.FromArgb(0xFF, 0x00, 0x00, 0x00))
+ : _colorBrush_Black;
+ }
+
+ // Color bound to theme property value: Color_E63B3B
+ CompositionColorBrush ThemeColor_Color_E63B3B_0()
+ {
+ if (_themeColor_Color_E63B3B_0 != null) { return _themeColor_Color_E63B3B_0; }
+ var result = _themeColor_Color_E63B3B_0 = _c.CreateColorBrush();
+ BindProperty(_themeColor_Color_E63B3B_0, "Color", "ColorRGB(_theme.Color_E63B3B.W,_theme.Color_E63B3B.X,_theme.Color_E63B3B.Y,_theme.Color_E63B3B.Z)", "_theme", _themeProperties);
+ return result;
+ }
+
+ // - - Layer aggregator
+ // ShapeGroup: Rectangle 1 Offset:<59, 517>
+ // Color bound to theme property value: Color_E63B3B
+ CompositionColorBrush ThemeColor_Color_E63B3B_1()
+ {
+ if (_themeColor_Color_E63B3B_1 != null) { return _themeColor_Color_E63B3B_1; }
+ var result = _themeColor_Color_E63B3B_1 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 1F);
+ BindProperty2(_themeColor_Color_E63B3B_1, "Color", "ColorRGB(_theme.Color_E63B3B.W*my.Opacity0,_theme.Color_E63B3B.X,_theme.Color_E63B3B.Y,_theme.Color_E63B3B.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // - - - Layer aggregator
+ // - - Layer: Shape Layer 2
+ // ShapeGroup: Rectangle 1 Offset:<59, 517>
+ // Color bound to theme property value: Color_E63B3B
+ CompositionColorBrush ThemeColor_Color_E63B3B_2()
+ {
+ if (_themeColor_Color_E63B3B_2 != null) { return _themeColor_Color_E63B3B_2; }
+ var result = _themeColor_Color_E63B3B_2 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 1F);
+ BindProperty2(_themeColor_Color_E63B3B_2, "Color", "ColorRGB(_theme.Color_E63B3B.W*my.Opacity0,_theme.Color_E63B3B.X,_theme.Color_E63B3B.Y,_theme.Color_E63B3B.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - Shape tree root for layer: Shape Layer 3
+ // Offset:<416, 509>
+ // Color bound to theme property value: Color_FF0000
+ CompositionColorBrush ThemeColor_Color_FF0000()
+ {
+ if (_themeColor_Color_FF0000 != null) { return _themeColor_Color_FF0000; }
+ var result = _themeColor_Color_FF0000 = _c.CreateColorBrush();
+ BindProperty(_themeColor_Color_FF0000, "Color", "ColorRGB(_theme.Color_FF0000.W,_theme.Color_FF0000.X,_theme.Color_FF0000.Y,_theme.Color_FF0000.Z)", "_theme", _themeProperties);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_0()
+ {
+ if (_themeColor_Color_FFFFFF_0 != null) { return _themeColor_Color_FFFFFF_0; }
+ var result = _themeColor_Color_FFFFFF_0 = _c.CreateColorBrush();
+ BindProperty(_themeColor_Color_FFFFFF_0, "Color", "ColorRGB(_theme.Color_FFFFFF.W,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_1()
+ {
+ if (_themeColor_Color_FFFFFF_1 != null) { return _themeColor_Color_FFFFFF_1; }
+ var result = _themeColor_Color_FFFFFF_1 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 0F);
+ BindProperty2(_themeColor_Color_FFFFFF_1, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_2()
+ {
+ if (_themeColor_Color_FFFFFF_2 != null) { return _themeColor_Color_FFFFFF_2; }
+ var result = _themeColor_Color_FFFFFF_2 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 0F);
+ BindProperty2(_themeColor_Color_FFFFFF_2, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_3()
+ {
+ if (_themeColor_Color_FFFFFF_3 != null) { return _themeColor_Color_FFFFFF_3; }
+ var result = _themeColor_Color_FFFFFF_3 = _c.CreateColorBrush();
+ BindProperty(_themeColor_Color_FFFFFF_3, "Color", "ColorRGB(_theme.Color_FFFFFF.W*0.05,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_4()
+ {
+ if (_themeColor_Color_FFFFFF_4 != null) { return _themeColor_Color_FFFFFF_4; }
+ var result = _themeColor_Color_FFFFFF_4 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 0F);
+ BindProperty2(_themeColor_Color_FFFFFF_4, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_5()
+ {
+ if (_themeColor_Color_FFFFFF_5 != null) { return _themeColor_Color_FFFFFF_5; }
+ var result = _themeColor_Color_FFFFFF_5 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 0F);
+ BindProperty2(_themeColor_Color_FFFFFF_5, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_6()
+ {
+ if (_themeColor_Color_FFFFFF_6 != null) { return _themeColor_Color_FFFFFF_6; }
+ var result = _themeColor_Color_FFFFFF_6 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 0F);
+ BindProperty2(_themeColor_Color_FFFFFF_6, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_7()
+ {
+ if (_themeColor_Color_FFFFFF_7 != null) { return _themeColor_Color_FFFFFF_7; }
+ var result = _themeColor_Color_FFFFFF_7 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 0F);
+ BindProperty2(_themeColor_Color_FFFFFF_7, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_8()
+ {
+ if (_themeColor_Color_FFFFFF_8 != null) { return _themeColor_Color_FFFFFF_8; }
+ var result = _themeColor_Color_FFFFFF_8 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 0F);
+ BindProperty2(_themeColor_Color_FFFFFF_8, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // Color bound to theme property value: Color_FFFFFF
+ CompositionColorBrush ThemeColor_Color_FFFFFF_9()
+ {
+ if (_themeColor_Color_FFFFFF_9 != null) { return _themeColor_Color_FFFFFF_9; }
+ var result = _themeColor_Color_FFFFFF_9 = _c.CreateColorBrush();
+ var propertySet = result.Properties;
+ propertySet.InsertScalar("Opacity0", 0F);
+ BindProperty2(_themeColor_Color_FFFFFF_9, "Color", "ColorRGB(_theme.Color_FFFFFF.W*my.Opacity0,_theme.Color_FFFFFF.X,_theme.Color_FFFFFF.Y,_theme.Color_FFFFFF.Z)", "_theme", _themeProperties, "my", propertySet);
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ CompositionContainerShape ContainerShape_00()
+ {
+ if (_containerShape_00 != null) { return _containerShape_00; }
+ var result = _containerShape_00 = _c.CreateContainerShape();
+ result.Offset = new Vector2(710.526001F, 232.421005F);
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // ShapeGroup: s
+ shapes.Add(SpriteShape_0015());
+ // ShapeGroup: s
+ shapes.Add(SpriteShape_0016());
+ // ShapeGroup: s
+ shapes.Add(SpriteShape_0017());
+ // ShapeGroup: s
+ shapes.Add(SpriteShape_0018());
+ // ShapeGroup: s
+ shapes.Add(SpriteShape_0019());
+ // ShapeGroup: s
+ shapes.Add(SpriteShape_0020());
+ // ShapeGroup: s
+ shapes.Add(SpriteShape_0021());
+ // ShapeGroup: s
+ shapes.Add(SpriteShape_0022());
+ // ShapeGroup: s
+ shapes.Add(SpriteShape_0023());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 2 Outlines
+ CompositionContainerShape ContainerShape_01()
+ {
+ if (_containerShape_01 != null) { return _containerShape_01; }
+ var result = _containerShape_01 = _c.CreateContainerShape();
+ result.Offset = new Vector2(710.526001F, 232.421005F);
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0024());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0025());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0026());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0027());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0028());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0029());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ CompositionContainerShape ContainerShape_02()
+ {
+ if (_containerShape_02 != null) { return _containerShape_02; }
+ var result = _containerShape_02 = _c.CreateContainerShape();
+ result.Offset = new Vector2(710.526001F, 207.421005F);
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0030());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0031());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0032());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0033());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0034());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0035());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0036());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0037());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0038());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0039());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 4 Outlines
+ CompositionContainerShape ContainerShape_03()
+ {
+ if (_containerShape_03 != null) { return _containerShape_03; }
+ var result = _containerShape_03 = _c.CreateContainerShape();
+ result.Offset = new Vector2(710.526001F, 232.421005F);
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0040());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0041());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0042());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0043());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0044());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0045());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0046());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ CompositionContainerShape ContainerShape_04()
+ {
+ if (_containerShape_04 != null) { return _containerShape_04; }
+ var result = _containerShape_04 = _c.CreateContainerShape();
+ result.Offset = new Vector2(710.526001F, 232.421005F);
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0047());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0048());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0049());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0050());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0051());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0052());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0053());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0054());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0055());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0056());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 6 Outlines
+ CompositionContainerShape ContainerShape_05()
+ {
+ if (_containerShape_05 != null) { return _containerShape_05; }
+ var result = _containerShape_05 = _c.CreateContainerShape();
+ result.Offset = new Vector2(710.526001F, 232.421005F);
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // ShapeGroup: m
+ shapes.Add(SpriteShape_0057());
+ // ShapeGroup: m
+ shapes.Add(SpriteShape_0058());
+ // ShapeGroup: m
+ shapes.Add(SpriteShape_0059());
+ // ShapeGroup: m
+ shapes.Add(SpriteShape_0060());
+ // ShapeGroup: m
+ shapes.Add(SpriteShape_0061());
+ // ShapeGroup: m
+ shapes.Add(SpriteShape_0062());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ CompositionContainerShape ContainerShape_06()
+ {
+ if (_containerShape_06 != null) { return _containerShape_06; }
+ var result = _containerShape_06 = _c.CreateContainerShape();
+ result.Offset = new Vector2(710.526001F, 232.421005F);
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0063());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0064());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0065());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0066());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0067());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0068());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0069());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0070());
+ // ShapeGroup: y
+ shapes.Add(SpriteShape_0071());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ CompositionContainerShape ContainerShape_07()
+ {
+ if (_containerShape_07 != null) { return _containerShape_07; }
+ var result = _containerShape_07 = _c.CreateContainerShape();
+ result.Offset = new Vector2(525.526001F, 232.421005F);
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // ShapeGroup: a
+ shapes.Add(SpriteShape_0072());
+ // ShapeGroup: a
+ shapes.Add(SpriteShape_0073());
+ // ShapeGroup: a
+ shapes.Add(SpriteShape_0074());
+ // ShapeGroup: a
+ shapes.Add(SpriteShape_0075());
+ // ShapeGroup: a
+ shapes.Add(SpriteShape_0076());
+ // ShapeGroup: a
+ shapes.Add(SpriteShape_0077());
+ // ShapeGroup: a
+ shapes.Add(SpriteShape_0078());
+ // ShapeGroup: a
+ shapes.Add(SpriteShape_0079());
+ // ShapeGroup: a
+ shapes.Add(SpriteShape_0080());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 1
+ // Layer: second Outlines
+ CompositionContainerShape ContainerShape_08()
+ {
+ if (_containerShape_08 != null) { return _containerShape_08; }
+ var result = _containerShape_08 = _c.CreateContainerShape();
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ shapes.Add(ContainerShape_09());
+ shapes.Add(ContainerShape_10());
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: second Outlines
+ CompositionContainerShape ContainerShape_09()
+ {
+ if (_containerShape_09 != null) { return _containerShape_09; }
+ var result = _containerShape_09 = _c.CreateContainerShape();
+ result.Offset = new Vector2(525.789001F, 232.421005F);
+ var shapes = result.Shapes;
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0081());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0082());
+ // ShapeGroup: e
+ shapes.Add(SpriteShape_0083());
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: second Outlines
+ CompositionContainerShape ContainerShape_10()
+ {
+ if (_containerShape_10 != null) { return _containerShape_10; }
+ var result = _containerShape_10 = _c.CreateContainerShape();
+ result.Offset = new Vector2(170.526001F, 232.632004F);
+ var shapes = result.Shapes;
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0084());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0085());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0086());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0087());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0088());
+ // ShapeGroup: t
+ shapes.Add(SpriteShape_0089());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ CompositionContainerShape ContainerShape_11()
+ {
+ if (_containerShape_11 != null) { return _containerShape_11; }
+ var result = _containerShape_11 = _c.CreateContainerShape();
+ var shapes = result.Shapes;
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0139());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0140());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0141());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0142());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0143());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0144());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0145());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0146());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0147());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0148());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0149());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0150());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0151());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0152());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0153());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0154());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0155());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0156());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0157());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0158());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0159());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0160());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0161());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0162());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0163());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0164());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0165());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0166());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0167());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0168());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0169());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0170());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0171());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0172());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0173());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0174());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0175());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0176());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0177());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0178());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0179());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0180());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0181());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0182());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0183());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0184());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0185());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0186());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0187());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0188());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0189());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0190());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0191());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0192());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0193());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0194());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0195());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0196());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0197());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0198());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0199());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0200());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0201());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0202());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0203());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0204());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0205());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0206());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0207());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0208());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0209());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0210());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0211());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0212());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0213());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0214());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0215());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0216());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0217());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0218());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0219());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0220());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0221());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0222());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0223());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0224());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0225());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0226());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0227());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0228());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0229());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0230());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0231());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0232());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0233());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0234());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0235());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0236());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0237());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0238());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0239());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0240());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0241());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0242());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0243());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0244());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0245());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0246());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0247());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0248());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0249());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0250());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0251());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0252());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0253());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0254());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0255());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0256());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0257());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0258());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ CompositionContainerShape ContainerShape_12()
+ {
+ if (_containerShape_12 != null) { return _containerShape_12; }
+ var result = _containerShape_12 = _c.CreateContainerShape();
+ var shapes = result.Shapes;
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0259());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0260());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0261());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0262());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0263());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0264());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0265());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0266());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0267());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0268());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0269());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0270());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0271());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0272());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0273());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0274());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0275());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0276());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0277());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0278());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0279());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0280());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0281());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0282());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0283());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0284());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0285());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0286());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0287());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0288());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0289());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0290());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0291());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0292());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0293());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0294());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0295());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0296());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0297());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0298());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0299());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0300());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0301());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0302());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0303());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0304());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0305());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0306());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0307());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0308());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0309());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0310());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0311());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0312());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0313());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0314());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0315());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0316());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0317());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0318());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0319());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0320());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0321());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0322());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0323());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0324());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0325());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0326());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0327());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0328());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0329());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0330());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0331());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0332());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0333());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0334());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0335());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0336());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0337());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0338());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0339());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0340());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0341());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0342());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0343());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0344());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0345());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0346());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0347());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0348());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0349());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0350());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0351());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0352());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0353());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0354());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0355());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0356());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0357());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0358());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0359());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0360());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0361());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0362());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0363());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0364());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0365());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0366());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0367());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0368());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0369());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0370());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0371());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0372());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0373());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0374());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0375());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0376());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0377());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0378());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ CompositionContainerShape ContainerShape_13()
+ {
+ if (_containerShape_13 != null) { return _containerShape_13; }
+ var result = _containerShape_13 = _c.CreateContainerShape();
+ var shapes = result.Shapes;
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0379());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0380());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0381());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0382());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0383());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0384());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0385());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0386());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0387());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0388());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0389());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0390());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0391());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0392());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0393());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0394());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0395());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0396());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0397());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0398());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0399());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0400());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0401());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0402());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0403());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0404());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0405());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0406());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0407());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0408());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0409());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0410());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0411());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0412());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0413());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0414());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0415());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0416());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0417());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0418());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0419());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0420());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0421());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0422());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0423());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0424());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0425());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0426());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0427());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0428());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0429());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0430());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0431());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0432());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0433());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0434());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0435());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0436());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0437());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0438());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0439());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0440());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0441());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0442());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0443());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0444());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0445());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0446());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0447());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0448());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0449());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0450());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0451());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0452());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0453());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0454());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0455());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0456());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0457());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0458());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0459());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0460());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0461());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0462());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0463());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0464());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0465());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0466());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0467());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0468());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0469());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0470());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0471());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0472());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0473());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0474());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0475());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0476());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0477());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0478());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0479());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0480());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0481());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0482());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0483());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0484());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0485());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0486());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0487());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0488());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0489());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0490());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0491());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0492());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0493());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0494());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0495());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0496());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0497());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0498());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ CompositionContainerShape ContainerShape_14()
+ {
+ if (_containerShape_14 != null) { return _containerShape_14; }
+ var result = _containerShape_14 = _c.CreateContainerShape();
+ var shapes = result.Shapes;
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0499());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0500());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0501());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0502());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0503());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0504());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0505());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0506());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0507());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0508());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0509());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0510());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0511());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0512());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0513());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0514());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0515());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0516());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0517());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0518());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0519());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0520());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0521());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0522());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0523());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0524());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0525());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0526());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0527());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0528());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0529());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0530());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0531());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0532());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0533());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0534());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0535());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0536());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0537());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0538());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0539());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0540());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0541());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0542());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0543());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0544());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0545());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0546());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0547());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0548());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0549());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0550());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0551());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0552());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0553());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0554());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0555());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0556());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0557());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0558());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0559());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0560());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0561());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0562());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0563());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0564());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0565());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0566());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0567());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0568());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0569());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0570());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0571());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0572());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0573());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0574());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0575());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0576());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0577());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0578());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0579());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0580());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0581());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0582());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0583());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0584());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0585());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0586());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0587());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0588());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0589());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0590());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0591());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0592());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0593());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0594());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0595());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0596());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0597());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0598());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0599());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0600());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0601());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0602());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0603());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0604());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0605());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0606());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0607());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0608());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0609());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0610());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0611());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0612());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0613());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0614());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0615());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0616());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0617());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0618());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ CompositionContainerShape ContainerShape_15()
+ {
+ if (_containerShape_15 != null) { return _containerShape_15; }
+ var result = _containerShape_15 = _c.CreateContainerShape();
+ var shapes = result.Shapes;
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0619());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0620());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0621());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0622());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0623());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0624());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0625());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0626());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0627());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0628());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0629());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0630());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0631());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0632());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0633());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0634());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0635());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0636());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0637());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0638());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0639());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0640());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0641());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0642());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0643());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0644());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0645());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0646());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0647());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0648());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0649());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0650());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0651());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0652());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0653());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0654());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0655());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0656());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0657());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0658());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0659());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0660());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0661());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0662());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0663());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0664());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0665());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0666());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0667());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0668());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0669());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0670());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0671());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0672());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0673());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0674());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0675());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0676());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0677());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0678());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0679());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0680());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0681());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0682());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0683());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0684());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0685());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0686());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0687());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0688());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0689());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0690());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0691());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0692());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0693());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0694());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0695());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0696());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0697());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0698());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0699());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0700());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0701());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0702());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0703());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0704());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0705());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0706());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0707());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0708());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0709());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0710());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0711());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0712());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0713());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0714());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0715());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0716());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0717());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0718());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0719());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0720());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0721());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0722());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0723());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0724());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0725());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0726());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0727());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0728());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0729());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0730());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0731());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0732());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0733());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0734());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0735());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0736());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0737());
+ // ShapeGroup: P
+ shapes.Add(SpriteShape_0738());
+ return result;
+ }
+
+ // Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ CompositionContainerShape ContainerShape_16()
+ {
+ if (_containerShape_16 != null) { return _containerShape_16; }
+ var result = _containerShape_16 = _c.CreateContainerShape();
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0757());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0758());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0759());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0760());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0761());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0762());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0763());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0764());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0765());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0766());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0767());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0768());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0769());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0770());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0771());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0772());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0773());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0774());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0775());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0776());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0777());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0778());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0779());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0780());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0781());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0782());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0783());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0784());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0785());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0786());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0787());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0788());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0789());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0790());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0791());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0792());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0793());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0794());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0795());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0796());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0797());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0798());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0799());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0800());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0801());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0802());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0803());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0804());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0805());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0806());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0807());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0808());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0809());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0810());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0811());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0812());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0813());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0814());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0815());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0816());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0817());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0818());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0819());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0820());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0821());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0822());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0823());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0824());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0825());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0826());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0827());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0828());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0829());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0830());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0831());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0832());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0833());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0834());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0835());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0836());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0837());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0838());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0839());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0840());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0841());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0842());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0843());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0844());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0845());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0846());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0847());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0848());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0849());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0850());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0851());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0852());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0853());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0854());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0855());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0856());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0857());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0858());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0859());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0860());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0861());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0862());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0863());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0864());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0865());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0866());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0867());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0868());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0869());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0870());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0871());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0872());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0873());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0874());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0875());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0876());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0877());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0878());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0879());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0880());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0881());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0882());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0883());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0884());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0885());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0886());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0887());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0888());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0889());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0890());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0891());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0892());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0893());
+ // Offset:<964, 609>
+ shapes.Add(SpriteShape_0894());
+ return result;
+ }
+
+ // Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ CompositionContainerShape ContainerShape_17()
+ {
+ if (_containerShape_17 != null) { return _containerShape_17; }
+ var result = _containerShape_17 = _c.CreateContainerShape();
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0895());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0896());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0897());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0898());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0899());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0900());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0901());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0902());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0903());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0904());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0905());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0906());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0907());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0908());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0909());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0910());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0911());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0912());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0913());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0914());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0915());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0916());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0917());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0918());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0919());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0920());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0921());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0922());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0923());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0924());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0925());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0926());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0927());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0928());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0929());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0930());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0931());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0932());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0933());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0934());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0935());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0936());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0937());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0938());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0939());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0940());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0941());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0942());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0943());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0944());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0945());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0946());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0947());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0948());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0949());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0950());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0951());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0952());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0953());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0954());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0955());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0956());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0957());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0958());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0959());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0960());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0961());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0962());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0963());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0964());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0965());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0966());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0967());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0968());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0969());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0970());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0971());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0972());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0973());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0974());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0975());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0976());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0977());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0978());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0979());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0980());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0981());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0982());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0983());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0984());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0985());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0986());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0987());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0988());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0989());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0990());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0991());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0992());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0993());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0994());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0995());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0996());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0997());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0998());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_0999());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1000());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1001());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1002());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1003());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1004());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1005());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1006());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1007());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1008());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1009());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1010());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1011());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1012());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1013());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1014());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1015());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1016());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1017());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1018());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1019());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1020());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1021());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1022());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1023());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1024());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1025());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1026());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1027());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1028());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1029());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1030());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1031());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1032());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1033());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1034());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1035());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1036());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1037());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1038());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1039());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1040());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1041());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1042());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1043());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1044());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1045());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1046());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1047());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1048());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1049());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1050());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1051());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1052());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1053());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1054());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1055());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1056());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1057());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1058());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1059());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1060());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1061());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1062());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1063());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1064());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1065());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1066());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1067());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1068());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1069());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1070());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1071());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1072());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1073());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1074());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1075());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1076());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1077());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1078());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1079());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1080());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1081());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1082());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1083());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1084());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1085());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1086());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1087());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1088());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1089());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1090());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1091());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1092());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1093());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1094());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1095());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1096());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1097());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1098());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1099());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1100());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1101());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1102());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1103());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1104());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1105());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1106());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1107());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1108());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1109());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1110());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1111());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1112());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1113());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1114());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1115());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1116());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1117());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1118());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1119());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1120());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1121());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1122());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1123());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1124());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1125());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1126());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1127());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1128());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1129());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1130());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1131());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1132());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1133());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1134());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1135());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1136());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1137());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1138());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1139());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1140());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1141());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1142());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1143());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1144());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1145());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1146());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1147());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1148());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1149());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1150());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1151());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1152());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1153());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1154());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1155());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1156());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1157());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1158());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1159());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1160());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1161());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1162());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1163());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1164());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1165());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1166());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1167());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1168());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1169());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1170());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1171());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1172());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1173());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1174());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1175());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1176());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1177());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1178());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1179());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1180());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1181());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1182());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1183());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1184());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1185());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1186());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1187());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1188());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1189());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1190());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1191());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1192());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1193());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1194());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1195());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1196());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1197());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1198());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1199());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1200());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1201());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1202());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1203());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1204());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1205());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1206());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1207());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1208());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1209());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1210());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1211());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1212());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1213());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1214());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1215());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1216());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1217());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1218());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1219());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1220());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1221());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1222());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1223());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1224());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1225());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1226());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1227());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1228());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1229());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1230());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1231());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1232());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1233());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1234());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1235());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1236());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1237());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1238());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1239());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1240());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1241());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1242());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1243());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1244());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1245());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1246());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1247());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1248());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1249());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1250());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1251());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1252());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1253());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1254());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1255());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1256());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1257());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1258());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1259());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1260());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1261());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1262());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1263());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1264());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1265());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1266());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1267());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1268());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1269());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1270());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1271());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1272());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1273());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1274());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1275());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1276());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1277());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1278());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1279());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1280());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1281());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1282());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1283());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1284());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1285());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1286());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1287());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1288());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1289());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1290());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1291());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1292());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1293());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1294());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1295());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1296());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1297());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1298());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1299());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1300());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1301());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1302());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1303());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1304());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1305());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1306());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1307());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1308());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1309());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1310());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1311());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1312());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1313());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1314());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1315());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1316());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1317());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1318());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1319());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1320());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1321());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1322());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1323());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1324());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1325());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1326());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1327());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1328());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1329());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1330());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1331());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1332());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1333());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1334());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1335());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1336());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1337());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1338());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1339());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1340());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1341());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1342());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1343());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1344());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1345());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1346());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1347());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1348());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1349());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1350());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1351());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1352());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1353());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1354());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1355());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1356());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1357());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1358());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1359());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1360());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1361());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1362());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1363());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1364());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1365());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1366());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1367());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1368());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1369());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1370());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1371());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1372());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1373());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1374());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1375());
+ // Offset:<964, 726>
+ shapes.Add(SpriteShape_1376());
+ return result;
+ }
+
+ // Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ CompositionContainerShape ContainerShape_18()
+ {
+ if (_containerShape_18 != null) { return _containerShape_18; }
+ var result = _containerShape_18 = _c.CreateContainerShape();
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1377());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1378());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1379());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1380());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1381());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1382());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1383());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1384());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1385());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1386());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1387());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1388());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1389());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1390());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1391());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1392());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1393());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1394());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1395());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1396());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1397());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1398());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1399());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1400());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1401());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1402());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1403());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1404());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1405());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1406());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1407());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1408());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1409());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1410());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1411());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1412());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1413());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1414());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1415());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1416());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1417());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1418());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1419());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1420());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1421());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1422());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1423());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1424());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1425());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1426());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1427());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1428());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1429());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1430());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1431());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1432());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1433());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1434());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1435());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1436());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1437());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1438());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1439());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1440());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1441());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1442());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1443());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1444());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1445());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1446());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1447());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1448());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1449());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1450());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1451());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1452());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1453());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1454());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1455());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1456());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1457());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1458());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1459());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1460());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1461());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1462());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1463());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1464());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1465());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1466());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1467());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1468());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1469());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1470());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1471());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1472());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1473());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1474());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1475());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1476());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1477());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1478());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1479());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1480());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1481());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1482());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1483());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1484());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1485());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1486());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1487());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1488());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1489());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1490());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1491());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1492());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1493());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1494());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1495());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1496());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1497());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1498());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1499());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1500());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1501());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1502());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1503());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1504());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1505());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1506());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1507());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1508());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1509());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1510());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1511());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1512());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1513());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1514());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1515());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1516());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1517());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1518());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1519());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1520());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1521());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1522());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1523());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1524());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1525());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1526());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1527());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1528());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1529());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1530());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1531());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1532());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1533());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1534());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1535());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1536());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1537());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1538());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1539());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1540());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1541());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1542());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1543());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1544());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1545());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1546());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1547());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1548());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1549());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1550());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1551());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1552());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1553());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1554());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1555());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1556());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1557());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1558());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1559());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1560());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1561());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1562());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1563());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1564());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1565());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1566());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1567());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1568());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1569());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1570());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1571());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1572());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1573());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1574());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1575());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1576());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1577());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1578());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1579());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1580());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1581());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1582());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1583());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1584());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1585());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1586());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1587());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1588());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1589());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1590());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1591());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1592());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1593());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1594());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1595());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1596());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1597());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1598());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1599());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1600());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1601());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1602());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1603());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1604());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1605());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1606());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1607());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1608());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1609());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1610());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1611());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1612());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1613());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1614());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1615());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1616());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1617());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1618());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1619());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1620());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1621());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1622());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1623());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1624());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1625());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1626());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1627());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1628());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1629());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1630());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1631());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1632());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1633());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1634());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1635());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1636());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1637());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1638());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1639());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1640());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1641());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1642());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1643());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1644());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1645());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1646());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1647());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1648());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1649());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1650());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1651());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1652());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1653());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1654());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1655());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1656());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1657());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1658());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1659());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1660());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1661());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1662());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1663());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1664());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1665());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1666());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1667());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1668());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1669());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1670());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1671());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1672());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1673());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1674());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1675());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1676());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1677());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1678());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1679());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1680());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1681());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1682());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1683());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1684());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1685());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1686());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1687());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1688());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1689());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1690());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1691());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1692());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1693());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1694());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1695());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1696());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1697());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1698());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1699());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1700());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1701());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1702());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1703());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1704());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1705());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1706());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1707());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1708());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1709());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1710());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1711());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1712());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1713());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1714());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1715());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1716());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1717());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1718());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1719());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1720());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1721());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1722());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1723());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1724());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1725());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1726());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1727());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1728());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1729());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1730());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1731());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1732());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1733());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1734());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1735());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1736());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1737());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1738());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1739());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1740());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1741());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1742());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1743());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1744());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1745());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1746());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1747());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1748());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1749());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1750());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1751());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1752());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1753());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1754());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1755());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1756());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1757());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1758());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1759());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1760());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1761());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1762());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1763());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1764());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1765());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1766());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1767());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1768());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1769());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1770());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1771());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1772());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1773());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1774());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1775());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1776());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1777());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1778());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1779());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1780());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1781());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1782());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1783());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1784());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1785());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1786());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1787());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1788());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1789());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1790());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1791());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1792());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1793());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1794());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1795());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1796());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1797());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1798());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1799());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1800());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1801());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1802());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1803());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1804());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1805());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1806());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1807());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1808());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1809());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1810());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1811());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1812());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1813());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1814());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1815());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1816());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1817());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1818());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1819());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1820());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1821());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1822());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1823());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1824());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1825());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1826());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1827());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1828());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1829());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1830());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1831());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1832());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1833());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1834());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1835());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1836());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1837());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1838());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1839());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1840());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1841());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1842());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1843());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1844());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1845());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1846());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1847());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1848());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1849());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1850());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1851());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1852());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1853());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1854());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1855());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1856());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1857());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1858());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1859());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1860());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1861());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1862());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1863());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1864());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1865());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1866());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1867());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1868());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1869());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1870());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1871());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1872());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1873());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1874());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1875());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1876());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1877());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1878());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1879());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1880());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1881());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1882());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1883());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1884());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1885());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1886());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1887());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1888());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1889());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1890());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1891());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1892());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1893());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1894());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1895());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1896());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1897());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1898());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1899());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1900());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1901());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1902());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1903());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1904());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1905());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1906());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1907());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1908());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1909());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1910());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1911());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1912());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1913());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1914());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1915());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1916());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1917());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1918());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1919());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1920());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1921());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1922());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1923());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1924());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1925());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1926());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1927());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1928());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1929());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1930());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1931());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1932());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1933());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1934());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1935());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1936());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1937());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1938());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1939());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1940());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1941());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1942());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1943());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1944());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1945());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1946());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1947());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1948());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1949());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1950());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1951());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1952());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1953());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1954());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1955());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1956());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1957());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1958());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1959());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1960());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1961());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1962());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1963());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1964());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1965());
+ // Offset:<964, 1018>
+ shapes.Add(SpriteShape_1966());
+ return result;
+ }
+
+ // Layer aggregator
+ // Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ CompositionContainerShape ContainerShape_19()
+ {
+ if (_containerShape_19 != null) { return _containerShape_19; }
+ var result = _containerShape_19 = _c.CreateContainerShape();
+ result.Scale = new Vector2(0F, 0F);
+ var shapes = result.Shapes;
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1967());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1968());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1969());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1970());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1971());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1972());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1973());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1974());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1975());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1976());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1977());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1978());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1979());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1980());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1981());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1982());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1983());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1984());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1985());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1986());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1987());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1988());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1989());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1990());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1991());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1992());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1993());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1994());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1995());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1996());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1997());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1998());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_1999());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2000());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2001());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2002());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2003());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2004());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2005());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2006());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2007());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2008());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2009());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2010());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2011());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2012());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2013());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2014());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2015());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2016());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2017());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2018());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2019());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2020());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2021());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2022());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2023());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2024());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2025());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2026());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2027());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2028());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2029());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2030());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2031());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2032());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2033());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2034());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2035());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2036());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2037());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2038());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2039());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2040());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2041());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2042());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2043());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2044());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2045());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2046());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2047());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2048());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2049());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2050());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2051());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2052());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2053());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2054());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2055());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2056());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2057());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2058());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2059());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2060());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2061());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2062());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2063());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2064());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2065());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2066());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2067());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2068());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2069());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2070());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2071());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2072());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2073());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2074());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2075());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2076());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2077());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2078());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2079());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2080());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2081());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2082());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2083());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2084());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2085());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2086());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2087());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2088());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2089());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2090());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2091());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2092());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2093());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2094());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2095());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2096());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2097());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2098());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2099());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2100());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2101());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2102());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2103());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2104());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2105());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2106());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2107());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2108());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2109());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2110());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2111());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2112());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2113());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2114());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2115());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2116());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2117());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2118());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2119());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2120());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2121());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2122());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2123());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2124());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2125());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2126());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2127());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2128());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2129());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2130());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2131());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2132());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2133());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2134());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2135());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2136());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2137());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2138());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2139());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2140());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2141());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2142());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2143());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2144());
+ // Offset:<964, 825>
+ shapes.Add(SpriteShape_2145());
+ return result;
+ }
+
+ // Layer aggregator
+ CompositionContainerShape ContainerShape_20()
+ {
+ if (_containerShape_20 != null) { return _containerShape_20; }
+ var result = _containerShape_20 = _c.CreateContainerShape();
+ result.CenterPoint = new Vector2(55F, 0F);
+ result.Offset = new Vector2(-55F, 592F);
+ // ShapeGroup: Rectangle 1 Offset:<59, 517>
+ result.Shapes.Add(SpriteShape_2146());
+ return result;
+ }
+
+ // Layer aggregator
+ // Layer: Shape Layer 2
+ CompositionContainerShape ContainerShape_21()
+ {
+ if (_containerShape_21 != null) { return _containerShape_21; }
+ var result = _containerShape_21 = _c.CreateContainerShape();
+ result.Scale = new Vector2(0F, 0F);
+ result.Shapes.Add(ContainerShape_22());
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Shape Layer 2
+ CompositionContainerShape ContainerShape_22()
+ {
+ if (_containerShape_22 != null) { return _containerShape_22; }
+ var result = _containerShape_22 = _c.CreateContainerShape();
+ result.CenterPoint = new Vector2(55F, 0F);
+ result.Offset = new Vector2(-55F, 592F);
+ // ShapeGroup: Rectangle 1 Offset:<59, 517>
+ result.Shapes.Add(SpriteShape_2147());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: NewLogoDraft-1024poutline
+ CompositionEffectBrush EffectBrush_0()
+ {
+ var effectFactory = EffectFactory();
+ var result = effectFactory.CreateBrush();
+ result.SetSourceParameter("destination", SurfaceBrush_0());
+ result.SetSourceParameter("source", SurfaceBrush_1());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: NewLogoDraft-1024poutline
+ CompositionEffectBrush EffectBrush_1()
+ {
+ var effectFactory = EffectFactory();
+ var result = effectFactory.CreateBrush();
+ result.SetSourceParameter("destination", SurfaceBrush_2());
+ result.SetSourceParameter("source", SurfaceBrush_3());
+ return result;
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Opacity for layer: NewLogoDraft-1024poutline
+ CompositionEffectBrush EffectBrush_2()
+ {
+ var effectFactory = EffectFactory();
+ var result = effectFactory.CreateBrush();
+ result.SetSourceParameter("destination", SurfaceBrush_4());
+ result.SetSourceParameter("source", SurfaceBrush_5());
+ return result;
+ }
+
+ CompositionEffectFactory EffectFactory()
+ {
+ var compositeEffect = new CompositeEffect();
+ compositeEffect.Mode = CanvasComposite.DestinationIn;
+ compositeEffect.Sources.Add(new CompositionEffectSourceParameter("destination"));
+ compositeEffect.Sources.Add(new CompositionEffectSourceParameter("source"));
+ if (_effectFactory != null) { return _effectFactory; }
+ var result = _effectFactory = _c.CreateEffectFactory(compositeEffect);
+ return result;
+ }
+
+ // - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - Shape tree root for layer: Shape Layer 1
+ // Offset:<701, 286>
+ CompositionPathGeometry PathGeometry_0000()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0000()));
+ }
+
+ // - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - Masks
+ // Layer: Shape Layer 1
+ CompositionPathGeometry PathGeometry_0001()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0001()));
+ }
+
+ // - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - Shape tree root for layer: Shape Layer 2
+ // Offset:<523.5, 488.5>
+ CompositionPathGeometry PathGeometry_0002()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0002()));
+ }
+
+ // - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - Masks
+ // Layer: Shape Layer 2
+ CompositionPathGeometry PathGeometry_0003()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0003()));
+ }
+
+ // - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - Shape tree root for layer: Shape Layer 3
+ // Offset:<416, 509>
+ CompositionPathGeometry PathGeometry_0004()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0004()));
+ }
+
+ // - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - Shape tree root for layer: Shape Layer 3
+ // Offset:<416, 509>
+ CompositionPathGeometry PathGeometry_0005()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0005()));
+ }
+
+ // - - - - - - - - PreComp layer: Comp 1
+ // - - - - - - - Opacity for layer: Comp 1
+ // - - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // - Masks
+ // Layer: Shape Layer 3
+ CompositionPathGeometry PathGeometry_0006()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0006()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Scale:1.23,1.23, Offset:<1464, 580>
+ CompositionPathGeometry PathGeometry_0007()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0007()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Scale:1.23,1.23, Offset:<1464, 580>
+ CompositionPathGeometry PathGeometry_0008()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0008()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Scale:1.23,1.23, Offset:<1464, 580>
+ CompositionPathGeometry PathGeometry_0009()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0009()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Scale:1.23,1.23, Offset:<1464, 580>
+ CompositionPathGeometry PathGeometry_0010()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0010()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Scale:1.23,1.23, Offset:<1464, 580>
+ CompositionPathGeometry PathGeometry_0011()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0011()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Scale:1.23,1.23, Offset:<1464, 580>
+ CompositionPathGeometry PathGeometry_0012()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0012()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Scale:1.23,1.23, Offset:<1464, 580>
+ CompositionPathGeometry PathGeometry_0013()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0013()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Scale:1.23,1.23, Offset:<1464, 580>
+ CompositionPathGeometry PathGeometry_0014()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0014()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionPathGeometry PathGeometry_0015()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0015()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionPathGeometry PathGeometry_0016()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0016()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionPathGeometry PathGeometry_0017()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0017()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionPathGeometry PathGeometry_0018()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0018()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionPathGeometry PathGeometry_0019()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0019()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionPathGeometry PathGeometry_0020()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0020()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionPathGeometry PathGeometry_0021()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0021()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionPathGeometry PathGeometry_0022()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0022()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionPathGeometry PathGeometry_0023()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0023()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 2 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0024()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0024()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 2 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0025()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0025()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 2 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0026()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0026()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 2 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0027()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0027()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 2 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0028()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0028()));
+ }
+
+ CompositionPathGeometry PathGeometry_0029()
+ {
+ return (_pathGeometry_0029 == null)
+ ? _pathGeometry_0029 = _c.CreatePathGeometry(new CompositionPath(Geometry_0029()))
+ : _pathGeometry_0029;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0030()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0030()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0031()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0031()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0032()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0032()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0033()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0033()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0034()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0034()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0035()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0035()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0036()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0036()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0037()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0037()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0038()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0038()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0039()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0039()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0040()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0040()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0041()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0041()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0042()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0042()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0043()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0043()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0044()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0044()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0045()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0045()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0046()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0046()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0047()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0047()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0048()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0048()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0049()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0049()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0050()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0050()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0051()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0051()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0052()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0052()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0053()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0053()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0054()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0054()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 6 Outlines
+ // ShapeGroup: m
+ CompositionPathGeometry PathGeometry_0055()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0055()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 6 Outlines
+ // ShapeGroup: m
+ CompositionPathGeometry PathGeometry_0056()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0056()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 6 Outlines
+ // ShapeGroup: m
+ CompositionPathGeometry PathGeometry_0057()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0057()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 6 Outlines
+ // ShapeGroup: m
+ CompositionPathGeometry PathGeometry_0058()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0058()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 6 Outlines
+ // ShapeGroup: m
+ CompositionPathGeometry PathGeometry_0059()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0059()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 6 Outlines
+ // ShapeGroup: m
+ CompositionPathGeometry PathGeometry_0060()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0060()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0061()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0061()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0062()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0062()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0063()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0063()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0064()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0064()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0065()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0065()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0066()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0066()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0067()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0067()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0068()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0068()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionPathGeometry PathGeometry_0069()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0069()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionPathGeometry PathGeometry_0070()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0070()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionPathGeometry PathGeometry_0071()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0071()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionPathGeometry PathGeometry_0072()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0072()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionPathGeometry PathGeometry_0073()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0073()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionPathGeometry PathGeometry_0074()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0074()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionPathGeometry PathGeometry_0075()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0075()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionPathGeometry PathGeometry_0076()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0076()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionPathGeometry PathGeometry_0077()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0077()));
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionPathGeometry PathGeometry_0078()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0078()));
+ }
+
+ // - - - - - PreComp layer: Comp 1
+ // - - - - Opacity for layer: Comp 1
+ // - - - Opacity for layer: Pre-comp 1
+ // - - Layer: second Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0079()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0079()));
+ }
+
+ // - - - - - PreComp layer: Comp 1
+ // - - - - Opacity for layer: Comp 1
+ // - - - Opacity for layer: Pre-comp 1
+ // - - Layer: second Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0080()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0080()));
+ }
+
+ // - - - - - PreComp layer: Comp 1
+ // - - - - Opacity for layer: Comp 1
+ // - - - Opacity for layer: Pre-comp 1
+ // - - Layer: second Outlines
+ // ShapeGroup: e
+ CompositionPathGeometry PathGeometry_0081()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0081()));
+ }
+
+ // - - - - - PreComp layer: Comp 1
+ // - - - - Opacity for layer: Comp 1
+ // - - - Opacity for layer: Pre-comp 1
+ // - - Layer: second Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0082()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0082()));
+ }
+
+ // - - - - - PreComp layer: Comp 1
+ // - - - - Opacity for layer: Comp 1
+ // - - - Opacity for layer: Pre-comp 1
+ // - - Layer: second Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0083()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0083()));
+ }
+
+ // - - - - - PreComp layer: Comp 1
+ // - - - - Opacity for layer: Comp 1
+ // - - - Opacity for layer: Pre-comp 1
+ // - - Layer: second Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0084()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0084()));
+ }
+
+ // - - - - - PreComp layer: Comp 1
+ // - - - - Opacity for layer: Comp 1
+ // - - - Opacity for layer: Pre-comp 1
+ // - - Layer: second Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0085()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0085()));
+ }
+
+ // - - - - - PreComp layer: Comp 1
+ // - - - - Opacity for layer: Comp 1
+ // - - - Opacity for layer: Pre-comp 1
+ // - - Layer: second Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0086()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0086()));
+ }
+
+ // - - - - - PreComp layer: Comp 1
+ // - - - - Opacity for layer: Comp 1
+ // - - - Opacity for layer: Pre-comp 1
+ // - - Layer: second Outlines
+ // ShapeGroup: t
+ CompositionPathGeometry PathGeometry_0087()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0087()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0088()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0088()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0089()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0089()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0090()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0090()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0091()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0091()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0092()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0092()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0093()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0093()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0094()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0094()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0095()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0095()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0096()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0096()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0097()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0097()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0098()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0098()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0099()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0099()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0100()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0100()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0101()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0101()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0102()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0102()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0103()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0103()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0104()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0104()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0105()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0105()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0106()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0106()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0107()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0107()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0108()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0108()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0109()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0109()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0110()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0110()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0111()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0111()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0112()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0112()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0113()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0113()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0114()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0114()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0115()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0115()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0116()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0116()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0117()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0117()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0118()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0118()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0119()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0119()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0120()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0120()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0121()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0121()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0122()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0122()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0123()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0123()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0124()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0124()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0125()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0125()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0126()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0126()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0127()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0127()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0128()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0128()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0129()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0129()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0130()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0130()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0131()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0131()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0132()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0132()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0133()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0133()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0134()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0134()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0135()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0135()));
+ }
+
+ // - - PreComp layer: Comp 1
+ // - Opacity for layer: Comp 1
+ // Layer: © Collapse Project Outlines
+ CompositionPathGeometry PathGeometry_0136()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0136()));
+ }
+
+ CompositionPathGeometry PathGeometry_0137()
+ {
+ return (_pathGeometry_0137 == null)
+ ? _pathGeometry_0137 = _c.CreatePathGeometry(new CompositionPath(Geometry_0137()))
+ : _pathGeometry_0137;
+ }
+
+ CompositionPathGeometry PathGeometry_0138()
+ {
+ return (_pathGeometry_0138 == null)
+ ? _pathGeometry_0138 = _c.CreatePathGeometry(new CompositionPath(Geometry_0138()))
+ : _pathGeometry_0138;
+ }
+
+ CompositionPathGeometry PathGeometry_0139()
+ {
+ return (_pathGeometry_0139 == null)
+ ? _pathGeometry_0139 = _c.CreatePathGeometry(new CompositionPath(Geometry_0139()))
+ : _pathGeometry_0139;
+ }
+
+ CompositionPathGeometry PathGeometry_0140()
+ {
+ return (_pathGeometry_0140 == null)
+ ? _pathGeometry_0140 = _c.CreatePathGeometry(new CompositionPath(Geometry_0140()))
+ : _pathGeometry_0140;
+ }
+
+ CompositionPathGeometry PathGeometry_0141()
+ {
+ return (_pathGeometry_0141 == null)
+ ? _pathGeometry_0141 = _c.CreatePathGeometry(new CompositionPath(Geometry_0141()))
+ : _pathGeometry_0141;
+ }
+
+ CompositionPathGeometry PathGeometry_0142()
+ {
+ return (_pathGeometry_0142 == null)
+ ? _pathGeometry_0142 = _c.CreatePathGeometry(new CompositionPath(Geometry_0142()))
+ : _pathGeometry_0142;
+ }
+
+ CompositionPathGeometry PathGeometry_0143()
+ {
+ return (_pathGeometry_0143 == null)
+ ? _pathGeometry_0143 = _c.CreatePathGeometry(new CompositionPath(Geometry_0143()))
+ : _pathGeometry_0143;
+ }
+
+ CompositionPathGeometry PathGeometry_0144()
+ {
+ return (_pathGeometry_0144 == null)
+ ? _pathGeometry_0144 = _c.CreatePathGeometry(new CompositionPath(Geometry_0144()))
+ : _pathGeometry_0144;
+ }
+
+ CompositionPathGeometry PathGeometry_0145()
+ {
+ return (_pathGeometry_0145 == null)
+ ? _pathGeometry_0145 = _c.CreatePathGeometry(new CompositionPath(Geometry_0145()))
+ : _pathGeometry_0145;
+ }
+
+ CompositionPathGeometry PathGeometry_0146()
+ {
+ return (_pathGeometry_0146 == null)
+ ? _pathGeometry_0146 = _c.CreatePathGeometry(new CompositionPath(Geometry_0146()))
+ : _pathGeometry_0146;
+ }
+
+ CompositionPathGeometry PathGeometry_0147()
+ {
+ return (_pathGeometry_0147 == null)
+ ? _pathGeometry_0147 = _c.CreatePathGeometry(new CompositionPath(Geometry_0147()))
+ : _pathGeometry_0147;
+ }
+
+ CompositionPathGeometry PathGeometry_0148()
+ {
+ return (_pathGeometry_0148 == null)
+ ? _pathGeometry_0148 = _c.CreatePathGeometry(new CompositionPath(Geometry_0148()))
+ : _pathGeometry_0148;
+ }
+
+ CompositionPathGeometry PathGeometry_0149()
+ {
+ return (_pathGeometry_0149 == null)
+ ? _pathGeometry_0149 = _c.CreatePathGeometry(new CompositionPath(Geometry_0149()))
+ : _pathGeometry_0149;
+ }
+
+ CompositionPathGeometry PathGeometry_0150()
+ {
+ return (_pathGeometry_0150 == null)
+ ? _pathGeometry_0150 = _c.CreatePathGeometry(new CompositionPath(Geometry_0150()))
+ : _pathGeometry_0150;
+ }
+
+ CompositionPathGeometry PathGeometry_0151()
+ {
+ return (_pathGeometry_0151 == null)
+ ? _pathGeometry_0151 = _c.CreatePathGeometry(new CompositionPath(Geometry_0151()))
+ : _pathGeometry_0151;
+ }
+
+ CompositionPathGeometry PathGeometry_0152()
+ {
+ return (_pathGeometry_0152 == null)
+ ? _pathGeometry_0152 = _c.CreatePathGeometry(new CompositionPath(Geometry_0152()))
+ : _pathGeometry_0152;
+ }
+
+ CompositionPathGeometry PathGeometry_0153()
+ {
+ return (_pathGeometry_0153 == null)
+ ? _pathGeometry_0153 = _c.CreatePathGeometry(new CompositionPath(Geometry_0153()))
+ : _pathGeometry_0153;
+ }
+
+ CompositionPathGeometry PathGeometry_0154()
+ {
+ return (_pathGeometry_0154 == null)
+ ? _pathGeometry_0154 = _c.CreatePathGeometry(new CompositionPath(Geometry_0154()))
+ : _pathGeometry_0154;
+ }
+
+ CompositionPathGeometry PathGeometry_0155()
+ {
+ return (_pathGeometry_0155 == null)
+ ? _pathGeometry_0155 = _c.CreatePathGeometry(new CompositionPath(Geometry_0155()))
+ : _pathGeometry_0155;
+ }
+
+ CompositionPathGeometry PathGeometry_0156()
+ {
+ return (_pathGeometry_0156 == null)
+ ? _pathGeometry_0156 = _c.CreatePathGeometry(new CompositionPath(Geometry_0156()))
+ : _pathGeometry_0156;
+ }
+
+ CompositionPathGeometry PathGeometry_0157()
+ {
+ return (_pathGeometry_0157 == null)
+ ? _pathGeometry_0157 = _c.CreatePathGeometry(new CompositionPath(Geometry_0157()))
+ : _pathGeometry_0157;
+ }
+
+ CompositionPathGeometry PathGeometry_0158()
+ {
+ return (_pathGeometry_0158 == null)
+ ? _pathGeometry_0158 = _c.CreatePathGeometry(new CompositionPath(Geometry_0158()))
+ : _pathGeometry_0158;
+ }
+
+ CompositionPathGeometry PathGeometry_0159()
+ {
+ return (_pathGeometry_0159 == null)
+ ? _pathGeometry_0159 = _c.CreatePathGeometry(new CompositionPath(Geometry_0159()))
+ : _pathGeometry_0159;
+ }
+
+ CompositionPathGeometry PathGeometry_0160()
+ {
+ return (_pathGeometry_0160 == null)
+ ? _pathGeometry_0160 = _c.CreatePathGeometry(new CompositionPath(Geometry_0160()))
+ : _pathGeometry_0160;
+ }
+
+ CompositionPathGeometry PathGeometry_0161()
+ {
+ return (_pathGeometry_0161 == null)
+ ? _pathGeometry_0161 = _c.CreatePathGeometry(new CompositionPath(Geometry_0161()))
+ : _pathGeometry_0161;
+ }
+
+ CompositionPathGeometry PathGeometry_0162()
+ {
+ return (_pathGeometry_0162 == null)
+ ? _pathGeometry_0162 = _c.CreatePathGeometry(new CompositionPath(Geometry_0162()))
+ : _pathGeometry_0162;
+ }
+
+ CompositionPathGeometry PathGeometry_0163()
+ {
+ return (_pathGeometry_0163 == null)
+ ? _pathGeometry_0163 = _c.CreatePathGeometry(new CompositionPath(Geometry_0163()))
+ : _pathGeometry_0163;
+ }
+
+ CompositionPathGeometry PathGeometry_0164()
+ {
+ return (_pathGeometry_0164 == null)
+ ? _pathGeometry_0164 = _c.CreatePathGeometry(new CompositionPath(Geometry_0164()))
+ : _pathGeometry_0164;
+ }
+
+ CompositionPathGeometry PathGeometry_0165()
+ {
+ return (_pathGeometry_0165 == null)
+ ? _pathGeometry_0165 = _c.CreatePathGeometry(new CompositionPath(Geometry_0165()))
+ : _pathGeometry_0165;
+ }
+
+ CompositionPathGeometry PathGeometry_0166()
+ {
+ return (_pathGeometry_0166 == null)
+ ? _pathGeometry_0166 = _c.CreatePathGeometry(new CompositionPath(Geometry_0166()))
+ : _pathGeometry_0166;
+ }
+
+ CompositionPathGeometry PathGeometry_0167()
+ {
+ return (_pathGeometry_0167 == null)
+ ? _pathGeometry_0167 = _c.CreatePathGeometry(new CompositionPath(Geometry_0167()))
+ : _pathGeometry_0167;
+ }
+
+ CompositionPathGeometry PathGeometry_0168()
+ {
+ return (_pathGeometry_0168 == null)
+ ? _pathGeometry_0168 = _c.CreatePathGeometry(new CompositionPath(Geometry_0168()))
+ : _pathGeometry_0168;
+ }
+
+ CompositionPathGeometry PathGeometry_0169()
+ {
+ return (_pathGeometry_0169 == null)
+ ? _pathGeometry_0169 = _c.CreatePathGeometry(new CompositionPath(Geometry_0169()))
+ : _pathGeometry_0169;
+ }
+
+ CompositionPathGeometry PathGeometry_0170()
+ {
+ return (_pathGeometry_0170 == null)
+ ? _pathGeometry_0170 = _c.CreatePathGeometry(new CompositionPath(Geometry_0170()))
+ : _pathGeometry_0170;
+ }
+
+ CompositionPathGeometry PathGeometry_0171()
+ {
+ return (_pathGeometry_0171 == null)
+ ? _pathGeometry_0171 = _c.CreatePathGeometry(new CompositionPath(Geometry_0171()))
+ : _pathGeometry_0171;
+ }
+
+ CompositionPathGeometry PathGeometry_0172()
+ {
+ return (_pathGeometry_0172 == null)
+ ? _pathGeometry_0172 = _c.CreatePathGeometry(new CompositionPath(Geometry_0172()))
+ : _pathGeometry_0172;
+ }
+
+ CompositionPathGeometry PathGeometry_0173()
+ {
+ return (_pathGeometry_0173 == null)
+ ? _pathGeometry_0173 = _c.CreatePathGeometry(new CompositionPath(Geometry_0173()))
+ : _pathGeometry_0173;
+ }
+
+ CompositionPathGeometry PathGeometry_0174()
+ {
+ return (_pathGeometry_0174 == null)
+ ? _pathGeometry_0174 = _c.CreatePathGeometry(new CompositionPath(Geometry_0174()))
+ : _pathGeometry_0174;
+ }
+
+ CompositionPathGeometry PathGeometry_0175()
+ {
+ return (_pathGeometry_0175 == null)
+ ? _pathGeometry_0175 = _c.CreatePathGeometry(new CompositionPath(Geometry_0175()))
+ : _pathGeometry_0175;
+ }
+
+ CompositionPathGeometry PathGeometry_0176()
+ {
+ return (_pathGeometry_0176 == null)
+ ? _pathGeometry_0176 = _c.CreatePathGeometry(new CompositionPath(Geometry_0176()))
+ : _pathGeometry_0176;
+ }
+
+ CompositionPathGeometry PathGeometry_0177()
+ {
+ return (_pathGeometry_0177 == null)
+ ? _pathGeometry_0177 = _c.CreatePathGeometry(new CompositionPath(Geometry_0177()))
+ : _pathGeometry_0177;
+ }
+
+ CompositionPathGeometry PathGeometry_0178()
+ {
+ return (_pathGeometry_0178 == null)
+ ? _pathGeometry_0178 = _c.CreatePathGeometry(new CompositionPath(Geometry_0178()))
+ : _pathGeometry_0178;
+ }
+
+ CompositionPathGeometry PathGeometry_0179()
+ {
+ return (_pathGeometry_0179 == null)
+ ? _pathGeometry_0179 = _c.CreatePathGeometry(new CompositionPath(Geometry_0179()))
+ : _pathGeometry_0179;
+ }
+
+ CompositionPathGeometry PathGeometry_0180()
+ {
+ return (_pathGeometry_0180 == null)
+ ? _pathGeometry_0180 = _c.CreatePathGeometry(new CompositionPath(Geometry_0180()))
+ : _pathGeometry_0180;
+ }
+
+ CompositionPathGeometry PathGeometry_0181()
+ {
+ return (_pathGeometry_0181 == null)
+ ? _pathGeometry_0181 = _c.CreatePathGeometry(new CompositionPath(Geometry_0181()))
+ : _pathGeometry_0181;
+ }
+
+ CompositionPathGeometry PathGeometry_0182()
+ {
+ return (_pathGeometry_0182 == null)
+ ? _pathGeometry_0182 = _c.CreatePathGeometry(new CompositionPath(Geometry_0182()))
+ : _pathGeometry_0182;
+ }
+
+ CompositionPathGeometry PathGeometry_0183()
+ {
+ return (_pathGeometry_0183 == null)
+ ? _pathGeometry_0183 = _c.CreatePathGeometry(new CompositionPath(Geometry_0183()))
+ : _pathGeometry_0183;
+ }
+
+ CompositionPathGeometry PathGeometry_0184()
+ {
+ return (_pathGeometry_0184 == null)
+ ? _pathGeometry_0184 = _c.CreatePathGeometry(new CompositionPath(Geometry_0184()))
+ : _pathGeometry_0184;
+ }
+
+ CompositionPathGeometry PathGeometry_0185()
+ {
+ return (_pathGeometry_0185 == null)
+ ? _pathGeometry_0185 = _c.CreatePathGeometry(new CompositionPath(Geometry_0185()))
+ : _pathGeometry_0185;
+ }
+
+ CompositionPathGeometry PathGeometry_0186()
+ {
+ return (_pathGeometry_0186 == null)
+ ? _pathGeometry_0186 = _c.CreatePathGeometry(new CompositionPath(Geometry_0186()))
+ : _pathGeometry_0186;
+ }
+
+ CompositionPathGeometry PathGeometry_0187()
+ {
+ return (_pathGeometry_0187 == null)
+ ? _pathGeometry_0187 = _c.CreatePathGeometry(new CompositionPath(Geometry_0187()))
+ : _pathGeometry_0187;
+ }
+
+ CompositionPathGeometry PathGeometry_0188()
+ {
+ return (_pathGeometry_0188 == null)
+ ? _pathGeometry_0188 = _c.CreatePathGeometry(new CompositionPath(Geometry_0188()))
+ : _pathGeometry_0188;
+ }
+
+ CompositionPathGeometry PathGeometry_0189()
+ {
+ return (_pathGeometry_0189 == null)
+ ? _pathGeometry_0189 = _c.CreatePathGeometry(new CompositionPath(Geometry_0189()))
+ : _pathGeometry_0189;
+ }
+
+ CompositionPathGeometry PathGeometry_0190()
+ {
+ return (_pathGeometry_0190 == null)
+ ? _pathGeometry_0190 = _c.CreatePathGeometry(new CompositionPath(Geometry_0190()))
+ : _pathGeometry_0190;
+ }
+
+ CompositionPathGeometry PathGeometry_0191()
+ {
+ return (_pathGeometry_0191 == null)
+ ? _pathGeometry_0191 = _c.CreatePathGeometry(new CompositionPath(Geometry_0191()))
+ : _pathGeometry_0191;
+ }
+
+ CompositionPathGeometry PathGeometry_0192()
+ {
+ return (_pathGeometry_0192 == null)
+ ? _pathGeometry_0192 = _c.CreatePathGeometry(new CompositionPath(Geometry_0192()))
+ : _pathGeometry_0192;
+ }
+
+ CompositionPathGeometry PathGeometry_0193()
+ {
+ return (_pathGeometry_0193 == null)
+ ? _pathGeometry_0193 = _c.CreatePathGeometry(new CompositionPath(Geometry_0193()))
+ : _pathGeometry_0193;
+ }
+
+ CompositionPathGeometry PathGeometry_0194()
+ {
+ return (_pathGeometry_0194 == null)
+ ? _pathGeometry_0194 = _c.CreatePathGeometry(new CompositionPath(Geometry_0194()))
+ : _pathGeometry_0194;
+ }
+
+ CompositionPathGeometry PathGeometry_0195()
+ {
+ return (_pathGeometry_0195 == null)
+ ? _pathGeometry_0195 = _c.CreatePathGeometry(new CompositionPath(Geometry_0195()))
+ : _pathGeometry_0195;
+ }
+
+ CompositionPathGeometry PathGeometry_0196()
+ {
+ return (_pathGeometry_0196 == null)
+ ? _pathGeometry_0196 = _c.CreatePathGeometry(new CompositionPath(Geometry_0196()))
+ : _pathGeometry_0196;
+ }
+
+ CompositionPathGeometry PathGeometry_0197()
+ {
+ return (_pathGeometry_0197 == null)
+ ? _pathGeometry_0197 = _c.CreatePathGeometry(new CompositionPath(Geometry_0197()))
+ : _pathGeometry_0197;
+ }
+
+ CompositionPathGeometry PathGeometry_0198()
+ {
+ return (_pathGeometry_0198 == null)
+ ? _pathGeometry_0198 = _c.CreatePathGeometry(new CompositionPath(Geometry_0198()))
+ : _pathGeometry_0198;
+ }
+
+ CompositionPathGeometry PathGeometry_0199()
+ {
+ return (_pathGeometry_0199 == null)
+ ? _pathGeometry_0199 = _c.CreatePathGeometry(new CompositionPath(Geometry_0199()))
+ : _pathGeometry_0199;
+ }
+
+ CompositionPathGeometry PathGeometry_0200()
+ {
+ return (_pathGeometry_0200 == null)
+ ? _pathGeometry_0200 = _c.CreatePathGeometry(new CompositionPath(Geometry_0200()))
+ : _pathGeometry_0200;
+ }
+
+ CompositionPathGeometry PathGeometry_0201()
+ {
+ return (_pathGeometry_0201 == null)
+ ? _pathGeometry_0201 = _c.CreatePathGeometry(new CompositionPath(Geometry_0201()))
+ : _pathGeometry_0201;
+ }
+
+ CompositionPathGeometry PathGeometry_0202()
+ {
+ return (_pathGeometry_0202 == null)
+ ? _pathGeometry_0202 = _c.CreatePathGeometry(new CompositionPath(Geometry_0202()))
+ : _pathGeometry_0202;
+ }
+
+ CompositionPathGeometry PathGeometry_0203()
+ {
+ return (_pathGeometry_0203 == null)
+ ? _pathGeometry_0203 = _c.CreatePathGeometry(new CompositionPath(Geometry_0203()))
+ : _pathGeometry_0203;
+ }
+
+ CompositionPathGeometry PathGeometry_0204()
+ {
+ return (_pathGeometry_0204 == null)
+ ? _pathGeometry_0204 = _c.CreatePathGeometry(new CompositionPath(Geometry_0204()))
+ : _pathGeometry_0204;
+ }
+
+ CompositionPathGeometry PathGeometry_0205()
+ {
+ return (_pathGeometry_0205 == null)
+ ? _pathGeometry_0205 = _c.CreatePathGeometry(new CompositionPath(Geometry_0205()))
+ : _pathGeometry_0205;
+ }
+
+ CompositionPathGeometry PathGeometry_0206()
+ {
+ return (_pathGeometry_0206 == null)
+ ? _pathGeometry_0206 = _c.CreatePathGeometry(new CompositionPath(Geometry_0206()))
+ : _pathGeometry_0206;
+ }
+
+ CompositionPathGeometry PathGeometry_0207()
+ {
+ return (_pathGeometry_0207 == null)
+ ? _pathGeometry_0207 = _c.CreatePathGeometry(new CompositionPath(Geometry_0207()))
+ : _pathGeometry_0207;
+ }
+
+ CompositionPathGeometry PathGeometry_0208()
+ {
+ return (_pathGeometry_0208 == null)
+ ? _pathGeometry_0208 = _c.CreatePathGeometry(new CompositionPath(Geometry_0208()))
+ : _pathGeometry_0208;
+ }
+
+ CompositionPathGeometry PathGeometry_0209()
+ {
+ return (_pathGeometry_0209 == null)
+ ? _pathGeometry_0209 = _c.CreatePathGeometry(new CompositionPath(Geometry_0209()))
+ : _pathGeometry_0209;
+ }
+
+ CompositionPathGeometry PathGeometry_0210()
+ {
+ return (_pathGeometry_0210 == null)
+ ? _pathGeometry_0210 = _c.CreatePathGeometry(new CompositionPath(Geometry_0210()))
+ : _pathGeometry_0210;
+ }
+
+ CompositionPathGeometry PathGeometry_0211()
+ {
+ return (_pathGeometry_0211 == null)
+ ? _pathGeometry_0211 = _c.CreatePathGeometry(new CompositionPath(Geometry_0211()))
+ : _pathGeometry_0211;
+ }
+
+ CompositionPathGeometry PathGeometry_0212()
+ {
+ return (_pathGeometry_0212 == null)
+ ? _pathGeometry_0212 = _c.CreatePathGeometry(new CompositionPath(Geometry_0212()))
+ : _pathGeometry_0212;
+ }
+
+ CompositionPathGeometry PathGeometry_0213()
+ {
+ return (_pathGeometry_0213 == null)
+ ? _pathGeometry_0213 = _c.CreatePathGeometry(new CompositionPath(Geometry_0213()))
+ : _pathGeometry_0213;
+ }
+
+ CompositionPathGeometry PathGeometry_0214()
+ {
+ return (_pathGeometry_0214 == null)
+ ? _pathGeometry_0214 = _c.CreatePathGeometry(new CompositionPath(Geometry_0214()))
+ : _pathGeometry_0214;
+ }
+
+ CompositionPathGeometry PathGeometry_0215()
+ {
+ return (_pathGeometry_0215 == null)
+ ? _pathGeometry_0215 = _c.CreatePathGeometry(new CompositionPath(Geometry_0215()))
+ : _pathGeometry_0215;
+ }
+
+ CompositionPathGeometry PathGeometry_0216()
+ {
+ return (_pathGeometry_0216 == null)
+ ? _pathGeometry_0216 = _c.CreatePathGeometry(new CompositionPath(Geometry_0216()))
+ : _pathGeometry_0216;
+ }
+
+ CompositionPathGeometry PathGeometry_0217()
+ {
+ return (_pathGeometry_0217 == null)
+ ? _pathGeometry_0217 = _c.CreatePathGeometry(new CompositionPath(Geometry_0217()))
+ : _pathGeometry_0217;
+ }
+
+ CompositionPathGeometry PathGeometry_0218()
+ {
+ return (_pathGeometry_0218 == null)
+ ? _pathGeometry_0218 = _c.CreatePathGeometry(new CompositionPath(Geometry_0218()))
+ : _pathGeometry_0218;
+ }
+
+ CompositionPathGeometry PathGeometry_0219()
+ {
+ return (_pathGeometry_0219 == null)
+ ? _pathGeometry_0219 = _c.CreatePathGeometry(new CompositionPath(Geometry_0219()))
+ : _pathGeometry_0219;
+ }
+
+ CompositionPathGeometry PathGeometry_0220()
+ {
+ return (_pathGeometry_0220 == null)
+ ? _pathGeometry_0220 = _c.CreatePathGeometry(new CompositionPath(Geometry_0220()))
+ : _pathGeometry_0220;
+ }
+
+ CompositionPathGeometry PathGeometry_0221()
+ {
+ return (_pathGeometry_0221 == null)
+ ? _pathGeometry_0221 = _c.CreatePathGeometry(new CompositionPath(Geometry_0221()))
+ : _pathGeometry_0221;
+ }
+
+ CompositionPathGeometry PathGeometry_0222()
+ {
+ return (_pathGeometry_0222 == null)
+ ? _pathGeometry_0222 = _c.CreatePathGeometry(new CompositionPath(Geometry_0222()))
+ : _pathGeometry_0222;
+ }
+
+ CompositionPathGeometry PathGeometry_0223()
+ {
+ return (_pathGeometry_0223 == null)
+ ? _pathGeometry_0223 = _c.CreatePathGeometry(new CompositionPath(Geometry_0223()))
+ : _pathGeometry_0223;
+ }
+
+ CompositionPathGeometry PathGeometry_0224()
+ {
+ return (_pathGeometry_0224 == null)
+ ? _pathGeometry_0224 = _c.CreatePathGeometry(new CompositionPath(Geometry_0224()))
+ : _pathGeometry_0224;
+ }
+
+ CompositionPathGeometry PathGeometry_0225()
+ {
+ return (_pathGeometry_0225 == null)
+ ? _pathGeometry_0225 = _c.CreatePathGeometry(new CompositionPath(Geometry_0225()))
+ : _pathGeometry_0225;
+ }
+
+ CompositionPathGeometry PathGeometry_0226()
+ {
+ return (_pathGeometry_0226 == null)
+ ? _pathGeometry_0226 = _c.CreatePathGeometry(new CompositionPath(Geometry_0226()))
+ : _pathGeometry_0226;
+ }
+
+ CompositionPathGeometry PathGeometry_0227()
+ {
+ return (_pathGeometry_0227 == null)
+ ? _pathGeometry_0227 = _c.CreatePathGeometry(new CompositionPath(Geometry_0227()))
+ : _pathGeometry_0227;
+ }
+
+ CompositionPathGeometry PathGeometry_0228()
+ {
+ return (_pathGeometry_0228 == null)
+ ? _pathGeometry_0228 = _c.CreatePathGeometry(new CompositionPath(Geometry_0228()))
+ : _pathGeometry_0228;
+ }
+
+ CompositionPathGeometry PathGeometry_0229()
+ {
+ return (_pathGeometry_0229 == null)
+ ? _pathGeometry_0229 = _c.CreatePathGeometry(new CompositionPath(Geometry_0229()))
+ : _pathGeometry_0229;
+ }
+
+ CompositionPathGeometry PathGeometry_0230()
+ {
+ return (_pathGeometry_0230 == null)
+ ? _pathGeometry_0230 = _c.CreatePathGeometry(new CompositionPath(Geometry_0230()))
+ : _pathGeometry_0230;
+ }
+
+ CompositionPathGeometry PathGeometry_0231()
+ {
+ return (_pathGeometry_0231 == null)
+ ? _pathGeometry_0231 = _c.CreatePathGeometry(new CompositionPath(Geometry_0231()))
+ : _pathGeometry_0231;
+ }
+
+ CompositionPathGeometry PathGeometry_0232()
+ {
+ return (_pathGeometry_0232 == null)
+ ? _pathGeometry_0232 = _c.CreatePathGeometry(new CompositionPath(Geometry_0232()))
+ : _pathGeometry_0232;
+ }
+
+ CompositionPathGeometry PathGeometry_0233()
+ {
+ return (_pathGeometry_0233 == null)
+ ? _pathGeometry_0233 = _c.CreatePathGeometry(new CompositionPath(Geometry_0233()))
+ : _pathGeometry_0233;
+ }
+
+ CompositionPathGeometry PathGeometry_0234()
+ {
+ return (_pathGeometry_0234 == null)
+ ? _pathGeometry_0234 = _c.CreatePathGeometry(new CompositionPath(Geometry_0234()))
+ : _pathGeometry_0234;
+ }
+
+ CompositionPathGeometry PathGeometry_0235()
+ {
+ return (_pathGeometry_0235 == null)
+ ? _pathGeometry_0235 = _c.CreatePathGeometry(new CompositionPath(Geometry_0235()))
+ : _pathGeometry_0235;
+ }
+
+ CompositionPathGeometry PathGeometry_0236()
+ {
+ return (_pathGeometry_0236 == null)
+ ? _pathGeometry_0236 = _c.CreatePathGeometry(new CompositionPath(Geometry_0236()))
+ : _pathGeometry_0236;
+ }
+
+ CompositionPathGeometry PathGeometry_0237()
+ {
+ return (_pathGeometry_0237 == null)
+ ? _pathGeometry_0237 = _c.CreatePathGeometry(new CompositionPath(Geometry_0237()))
+ : _pathGeometry_0237;
+ }
+
+ CompositionPathGeometry PathGeometry_0238()
+ {
+ return (_pathGeometry_0238 == null)
+ ? _pathGeometry_0238 = _c.CreatePathGeometry(new CompositionPath(Geometry_0238()))
+ : _pathGeometry_0238;
+ }
+
+ CompositionPathGeometry PathGeometry_0239()
+ {
+ return (_pathGeometry_0239 == null)
+ ? _pathGeometry_0239 = _c.CreatePathGeometry(new CompositionPath(Geometry_0239()))
+ : _pathGeometry_0239;
+ }
+
+ CompositionPathGeometry PathGeometry_0240()
+ {
+ return (_pathGeometry_0240 == null)
+ ? _pathGeometry_0240 = _c.CreatePathGeometry(new CompositionPath(Geometry_0240()))
+ : _pathGeometry_0240;
+ }
+
+ CompositionPathGeometry PathGeometry_0241()
+ {
+ return (_pathGeometry_0241 == null)
+ ? _pathGeometry_0241 = _c.CreatePathGeometry(new CompositionPath(Geometry_0241()))
+ : _pathGeometry_0241;
+ }
+
+ CompositionPathGeometry PathGeometry_0242()
+ {
+ return (_pathGeometry_0242 == null)
+ ? _pathGeometry_0242 = _c.CreatePathGeometry(new CompositionPath(Geometry_0242()))
+ : _pathGeometry_0242;
+ }
+
+ CompositionPathGeometry PathGeometry_0243()
+ {
+ return (_pathGeometry_0243 == null)
+ ? _pathGeometry_0243 = _c.CreatePathGeometry(new CompositionPath(Geometry_0243()))
+ : _pathGeometry_0243;
+ }
+
+ CompositionPathGeometry PathGeometry_0244()
+ {
+ return (_pathGeometry_0244 == null)
+ ? _pathGeometry_0244 = _c.CreatePathGeometry(new CompositionPath(Geometry_0244()))
+ : _pathGeometry_0244;
+ }
+
+ CompositionPathGeometry PathGeometry_0245()
+ {
+ return (_pathGeometry_0245 == null)
+ ? _pathGeometry_0245 = _c.CreatePathGeometry(new CompositionPath(Geometry_0245()))
+ : _pathGeometry_0245;
+ }
+
+ CompositionPathGeometry PathGeometry_0246()
+ {
+ return (_pathGeometry_0246 == null)
+ ? _pathGeometry_0246 = _c.CreatePathGeometry(new CompositionPath(Geometry_0246()))
+ : _pathGeometry_0246;
+ }
+
+ CompositionPathGeometry PathGeometry_0247()
+ {
+ return (_pathGeometry_0247 == null)
+ ? _pathGeometry_0247 = _c.CreatePathGeometry(new CompositionPath(Geometry_0247()))
+ : _pathGeometry_0247;
+ }
+
+ CompositionPathGeometry PathGeometry_0248()
+ {
+ return (_pathGeometry_0248 == null)
+ ? _pathGeometry_0248 = _c.CreatePathGeometry(new CompositionPath(Geometry_0248()))
+ : _pathGeometry_0248;
+ }
+
+ CompositionPathGeometry PathGeometry_0249()
+ {
+ return (_pathGeometry_0249 == null)
+ ? _pathGeometry_0249 = _c.CreatePathGeometry(new CompositionPath(Geometry_0249()))
+ : _pathGeometry_0249;
+ }
+
+ CompositionPathGeometry PathGeometry_0250()
+ {
+ return (_pathGeometry_0250 == null)
+ ? _pathGeometry_0250 = _c.CreatePathGeometry(new CompositionPath(Geometry_0250()))
+ : _pathGeometry_0250;
+ }
+
+ CompositionPathGeometry PathGeometry_0251()
+ {
+ return (_pathGeometry_0251 == null)
+ ? _pathGeometry_0251 = _c.CreatePathGeometry(new CompositionPath(Geometry_0251()))
+ : _pathGeometry_0251;
+ }
+
+ CompositionPathGeometry PathGeometry_0252()
+ {
+ return (_pathGeometry_0252 == null)
+ ? _pathGeometry_0252 = _c.CreatePathGeometry(new CompositionPath(Geometry_0252()))
+ : _pathGeometry_0252;
+ }
+
+ CompositionPathGeometry PathGeometry_0253()
+ {
+ return (_pathGeometry_0253 == null)
+ ? _pathGeometry_0253 = _c.CreatePathGeometry(new CompositionPath(Geometry_0253()))
+ : _pathGeometry_0253;
+ }
+
+ CompositionPathGeometry PathGeometry_0254()
+ {
+ return (_pathGeometry_0254 == null)
+ ? _pathGeometry_0254 = _c.CreatePathGeometry(new CompositionPath(Geometry_0254()))
+ : _pathGeometry_0254;
+ }
+
+ CompositionPathGeometry PathGeometry_0255()
+ {
+ return (_pathGeometry_0255 == null)
+ ? _pathGeometry_0255 = _c.CreatePathGeometry(new CompositionPath(Geometry_0255()))
+ : _pathGeometry_0255;
+ }
+
+ CompositionPathGeometry PathGeometry_0256()
+ {
+ return (_pathGeometry_0256 == null)
+ ? _pathGeometry_0256 = _c.CreatePathGeometry(new CompositionPath(Geometry_0256()))
+ : _pathGeometry_0256;
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0257()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0257()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0258()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0258()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0259()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0259()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0260()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0260()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0261()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0261()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0262()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0262()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0263()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0263()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0264()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0264()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0265()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0265()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0266()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0266()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0267()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0267()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0268()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0268()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0269()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0269()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0270()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0270()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0271()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0271()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0272()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0272()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0273()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0273()));
+ }
+
+ // - Layer aggregator
+ // Offset:<128, 166>
+ CompositionPathGeometry PathGeometry_0274()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0274()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0275()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0275()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0276()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0276()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0277()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0277()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0278()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0278()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0279()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0279()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0280()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0280()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0281()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0281()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0282()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0282()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0283()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0283()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0284()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0284()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0285()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0285()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0286()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0286()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0287()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0287()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0288()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0288()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0289()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0289()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0290()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0290()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0291()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0291()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0292()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0292()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0293()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0293()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0294()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0294()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0295()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0295()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0296()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0296()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0297()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0297()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0298()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0298()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0299()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0299()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0300()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0300()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0301()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0301()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0302()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0302()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0303()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0303()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0304()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0304()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0305()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0305()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0306()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0306()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0307()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0307()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0308()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0308()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0309()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0309()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0310()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0310()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0311()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0311()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0312()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0312()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0313()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0313()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0314()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0314()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0315()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0315()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0316()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0316()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0317()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0317()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0318()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0318()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0319()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0319()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0320()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0320()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0321()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0321()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0322()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0322()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0323()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0323()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0324()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0324()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0325()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0325()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0326()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0326()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0327()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0327()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0328()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0328()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0329()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0329()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0330()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0330()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0331()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0331()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0332()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0332()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0333()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0333()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0334()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0334()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0335()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0335()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0336()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0336()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0337()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0337()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0338()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0338()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0339()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0339()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0340()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0340()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0341()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0341()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0342()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0342()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0343()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0343()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0344()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0344()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0345()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0345()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0346()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0346()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0347()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0347()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0348()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0348()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0349()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0349()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0350()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0350()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0351()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0351()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0352()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0352()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0353()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0353()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0354()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0354()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0355()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0355()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0356()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0356()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0357()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0357()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0358()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0358()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0359()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0359()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0360()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0360()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0361()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0361()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0362()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0362()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0363()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0363()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0364()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0364()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0365()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0365()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0366()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0366()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0367()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0367()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0368()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0368()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0369()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0369()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0370()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0370()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0371()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0371()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0372()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0372()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0373()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0373()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0374()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0374()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0375()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0375()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0376()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0376()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0377()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0377()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0378()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0378()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0379()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0379()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0380()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0380()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0381()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0381()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0382()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0382()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0383()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0383()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0384()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0384()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0385()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0385()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0386()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0386()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0387()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0387()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0388()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0388()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0389()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0389()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0390()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0390()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0391()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0391()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0392()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0392()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0393()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0393()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0394()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0394()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0395()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0395()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0396()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0396()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0397()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0397()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0398()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0398()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0399()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0399()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0400()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0400()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0401()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0401()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0402()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0402()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0403()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0403()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0404()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0404()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0405()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0405()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0406()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0406()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0407()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0407()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0408()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0408()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0409()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0409()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0410()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0410()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Firstly, I would like to apologize for this sudden announcement but, I
+ // would like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // Offset:<964, 609>
+ CompositionPathGeometry PathGeometry_0411()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0411()));
+ }
+
+ CompositionPathGeometry PathGeometry_0412()
+ {
+ return (_pathGeometry_0412 == null)
+ ? _pathGeometry_0412 = _c.CreatePathGeometry(new CompositionPath(Geometry_0412()))
+ : _pathGeometry_0412;
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0413()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0413()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0414()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0414()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0415()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0415()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0416()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0416()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0417()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0417()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0418()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0418()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0419()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0419()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0420()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0420()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0421()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0421()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0422()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0422()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0423()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0423()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0424()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0424()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0425()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0425()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0426()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0426()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0427()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0427()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0428()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0428()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0429()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0429()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0430()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0430()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0431()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0431()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0432()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0432()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0433()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0433()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0434()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0434()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0435()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0435()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0436()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0436()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0437()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0437()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0438()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0438()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0439()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0439()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0440()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0440()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0441()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0441()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0442()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0442()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0443()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0443()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0444()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0444()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0445()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0445()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0446()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0446()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0447()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0447()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0448()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0448()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0449()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0449()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0450()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0450()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0451()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0451()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0452()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0452()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0453()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0453()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0454()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0454()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0455()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0455()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0456()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0456()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0457()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0457()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0458()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0458()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0459()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0459()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0460()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0460()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0461()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0461()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0462()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0462()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0463()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0463()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0464()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0464()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0465()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0465()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0466()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0466()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0467()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0467()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0468()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0468()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0469()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0469()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0470()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0470()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0471()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0471()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0472()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0472()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0473()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0473()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0474()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0474()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0475()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0475()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0476()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0476()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0477()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0477()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0478()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0478()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0479()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0479()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0480()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0480()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0481()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0481()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0482()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0482()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0483()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0483()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0484()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0484()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0485()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0485()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0486()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0486()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0487()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0487()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0488()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0488()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0489()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0489()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0490()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0490()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0491()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0491()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0492()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0492()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0493()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0493()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0494()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0494()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0495()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0495()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0496()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0496()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0497()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0497()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0498()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0498()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0499()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0499()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0500()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0500()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0501()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0501()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0502()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0502()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0503()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0503()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0504()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0504()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0505()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0505()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0506()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0506()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0507()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0507()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0508()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0508()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0509()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0509()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0510()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0510()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0511()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0511()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0512()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0512()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0513()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0513()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0514()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0514()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0515()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0515()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0516()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0516()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0517()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0517()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0518()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0518()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0519()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0519()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0520()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0520()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0521()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0521()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0522()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0522()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0523()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0523()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0524()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0524()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0525()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0525()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0526()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0526()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0527()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0527()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0528()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0528()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0529()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0529()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0530()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0530()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0531()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0531()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0532()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0532()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0533()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0533()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0534()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0534()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0535()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0535()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0536()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0536()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0537()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0537()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0538()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0538()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0539()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0539()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0540()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0540()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0541()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0541()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0542()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0542()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0543()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0543()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0544()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0544()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0545()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0545()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0546()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0546()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0547()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0547()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0548()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0548()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0549()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0549()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0550()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0550()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0551()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0551()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0552()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0552()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0553()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0553()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0554()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0554()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0555()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0555()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0556()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0556()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0557()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0557()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0558()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0558()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0559()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0559()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0560()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0560()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0561()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0561()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0562()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0562()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0563()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0563()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0564()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0564()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0565()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0565()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0566()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0566()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0567()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0567()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0568()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0568()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0569()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0569()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0570()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0570()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0571()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0571()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0572()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0572()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0573()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0573()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0574()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0574()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0575()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0575()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0576()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0576()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0577()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0577()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0578()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0578()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0579()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0579()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0580()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0580()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0581()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0581()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0582()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0582()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0583()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0583()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0584()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0584()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0585()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0585()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0586()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0586()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0587()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0587()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0588()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0588()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0589()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0589()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0590()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0590()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0591()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0591()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0592()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0592()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0593()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0593()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0594()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0594()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0595()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0595()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0596()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0596()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0597()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0597()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0598()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0598()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0599()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0599()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0600()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0600()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0601()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0601()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0602()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0602()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0603()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0603()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0604()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0604()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0605()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0605()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0606()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0606()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0607()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0607()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0608()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0608()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0609()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0609()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0610()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0610()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0611()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0611()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0612()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0612()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0613()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0613()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0614()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0614()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0615()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0615()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0616()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0616()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0617()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0617()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0618()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0618()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0619()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0619()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0620()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0620()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0621()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0621()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0622()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0622()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0623()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0623()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0624()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0624()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0625()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0625()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0626()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0626()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0627()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0627()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0628()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0628()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0629()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0629()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0630()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0630()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0631()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0631()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0632()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0632()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0633()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0633()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0634()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0634()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0635()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0635()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0636()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0636()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0637()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0637()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0638()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0638()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0639()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0639()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0640()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0640()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0641()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0641()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0642()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0642()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0643()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0643()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0644()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0644()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0645()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0645()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0646()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0646()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0647()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0647()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0648()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0648()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0649()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0649()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0650()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0650()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0651()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0651()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0652()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0652()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0653()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0653()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0654()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0654()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0655()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0655()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0656()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0656()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0657()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0657()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0658()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0658()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0659()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0659()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0660()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0660()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0661()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0661()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0662()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0662()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0663()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0663()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0664()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0664()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0665()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0665()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0666()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0666()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0667()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0667()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0668()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0668()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0669()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0669()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0670()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0670()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0671()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0671()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0672()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0672()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0673()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0673()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0674()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0674()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0675()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0675()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0676()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0676()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0677()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0677()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0678()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0678()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0679()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0679()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0680()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0680()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0681()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0681()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0682()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0682()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0683()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0683()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0684()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0684()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0685()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0685()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0686()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0686()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0687()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0687()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0688()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0688()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0689()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0689()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0690()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0690()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0691()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0691()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0692()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0692()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0693()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0693()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0694()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0694()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0695()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0695()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0696()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0696()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0697()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0697()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0698()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0698()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0699()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0699()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0700()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0700()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0701()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0701()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0702()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0702()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0703()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0703()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0704()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0704()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0705()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0705()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0706()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0706()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0707()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0707()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0708()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0708()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0709()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0709()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0710()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0710()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0711()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0711()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0712()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0712()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0713()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0713()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0714()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0714()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0715()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0715()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0716()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0716()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0717()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0717()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0718()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0718()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0719()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0719()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0720()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0720()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0721()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0721()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0722()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0722()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0723()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0723()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0724()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0724()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0725()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0725()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0726()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0726()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0727()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0727()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0728()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0728()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0729()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0729()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0730()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0730()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0731()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0731()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0732()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0732()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0733()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0733()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0734()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0734()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0735()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0735()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0736()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0736()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0737()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0737()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0738()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0738()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0739()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0739()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0740()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0740()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0741()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0741()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0742()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0742()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0743()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0743()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0744()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0744()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0745()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0745()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0746()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0746()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0747()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0747()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0748()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0748()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0749()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0749()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0750()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0750()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0751()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0751()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0752()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0752()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0753()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0753()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0754()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0754()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0755()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0755()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0756()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0756()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0757()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0757()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0758()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0758()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0759()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0759()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0760()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0760()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0761()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0761()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0762()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0762()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0763()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0763()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0764()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0764()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0765()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0765()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0766()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0766()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0767()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0767()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0768()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0768()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0769()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0769()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0770()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0770()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0771()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0771()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0772()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0772()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0773()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0773()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0774()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0774()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0775()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0775()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0776()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0776()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0777()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0777()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0778()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0778()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0779()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0779()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0780()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0780()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0781()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0781()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0782()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0782()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0783()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0783()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0784()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0784()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0785()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0785()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0786()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0786()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0787()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0787()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0788()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0788()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0789()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0789()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0790()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0790()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0791()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0791()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0792()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0792()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0793()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0793()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0794()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0794()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0795()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0795()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0796()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0796()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0797()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0797()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0798()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0798()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0799()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0799()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0800()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0800()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0801()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0801()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0802()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0802()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0803()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0803()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0804()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0804()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0805()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0805()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0806()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0806()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0807()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0807()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0808()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0808()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0809()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0809()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0810()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0810()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0811()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0811()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0812()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0812()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0813()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0813()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0814()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0814()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0815()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0815()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0816()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0816()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0817()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0817()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0818()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0818()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0819()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0819()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0820()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0820()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0821()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0821()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0822()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0822()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0823()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0823()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0824()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0824()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0825()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0825()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0826()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0826()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0827()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0827()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0828()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0828()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0829()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0829()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0830()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0830()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0831()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0831()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0832()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0832()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0833()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0833()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0834()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0834()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0835()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0835()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0836()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0836()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0837()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0837()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0838()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0838()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0839()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0839()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0840()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0840()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0841()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0841()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0842()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0842()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0843()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0843()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0844()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0844()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0845()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0845()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0846()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0846()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0847()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0847()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0848()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0848()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0849()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0849()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0850()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0850()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0851()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0851()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0852()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0852()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0853()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0853()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0854()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0854()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0855()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0855()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0856()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0856()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0857()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0857()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0858()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0858()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0859()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0859()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0860()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0860()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0861()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0861()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0862()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0862()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0863()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0863()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0864()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0864()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0865()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0865()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0866()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0866()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0867()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0867()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0868()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0868()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0869()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0869()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0870()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0870()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0871()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0871()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0872()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0872()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0873()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0873()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0874()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0874()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0875()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0875()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0876()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0876()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0877()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0877()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0878()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0878()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0879()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0879()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0880()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0880()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0881()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0881()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0882()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0882()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0883()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0883()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0884()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0884()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0885()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0885()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0886()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0886()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0887()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0887()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0888()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0888()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0889()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0889()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0890()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0890()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0891()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0891()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0892()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0892()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: For the last following days, Indonesia is currently under windespread
+ // unrest due to government’s unfair policies, oppression and violence by the police.
+ // This results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // Offset:<964, 726>
+ CompositionPathGeometry PathGeometry_0893()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0893()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0894()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0894()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0895()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0895()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0896()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0896()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0897()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0897()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0898()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0898()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0899()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0899()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0900()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0900()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0901()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0901()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0902()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0902()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0903()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0903()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0904()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0904()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0905()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0905()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0906()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0906()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0907()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0907()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0908()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0908()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0909()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0909()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0910()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0910()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0911()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0911()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0912()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0912()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0913()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0913()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0914()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0914()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0915()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0915()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0916()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0916()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0917()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0917()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0918()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0918()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0919()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0919()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0920()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0920()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0921()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0921()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0922()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0922()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0923()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0923()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0924()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0924()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0925()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0925()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0926()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0926()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0927()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0927()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0928()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0928()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0929()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0929()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0930()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0930()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0931()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0931()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0932()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0932()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0933()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0933()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0934()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0934()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0935()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0935()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0936()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0936()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0937()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0937()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0938()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0938()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0939()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0939()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0940()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0940()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0941()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0941()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0942()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0942()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0943()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0943()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0944()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0944()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0945()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0945()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0946()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0946()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0947()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0947()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0948()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0948()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0949()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0949()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0950()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0950()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0951()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0951()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0952()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0952()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0953()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0953()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0954()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0954()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0955()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0955()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0956()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0956()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0957()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0957()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0958()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0958()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0959()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0959()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0960()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0960()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0961()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0961()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0962()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0962()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0963()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0963()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0964()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0964()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0965()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0965()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0966()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0966()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0967()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0967()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0968()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0968()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0969()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0969()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0970()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0970()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0971()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0971()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0972()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0972()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0973()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0973()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0974()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0974()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0975()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0975()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0976()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0976()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0977()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0977()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0978()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0978()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0979()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0979()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0980()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0980()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0981()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0981()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0982()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0982()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0983()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0983()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0984()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0984()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0985()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0985()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0986()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0986()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0987()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0987()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0988()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0988()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0989()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0989()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0990()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0990()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0991()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0991()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0992()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0992()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0993()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0993()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0994()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0994()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0995()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0995()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0996()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0996()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0997()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0997()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0998()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0998()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_0999()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_0999()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1000()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1000()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1001()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1001()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1002()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1002()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1003()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1003()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1004()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1004()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1005()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1005()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1006()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1006()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1007()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1007()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1008()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1008()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1009()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1009()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1010()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1010()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1011()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1011()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1012()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1012()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1013()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1013()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1014()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1014()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1015()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1015()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1016()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1016()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1017()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1017()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1018()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1018()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1019()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1019()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1020()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1020()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1021()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1021()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1022()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1022()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1023()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1023()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1024()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1024()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1025()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1025()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1026()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1026()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1027()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1027()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1028()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1028()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1029()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1029()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1030()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1030()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1031()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1031()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1032()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1032()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1033()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1033()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1034()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1034()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1035()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1035()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1036()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1036()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1037()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1037()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1038()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1038()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1039()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1039()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1040()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1040()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1041()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1041()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1042()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1042()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1043()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1043()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1044()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1044()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1045()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1045()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1046()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1046()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1047()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1047()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1048()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1048()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1049()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1049()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1050()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1050()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1051()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1051()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1052()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1052()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1053()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1053()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1054()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1054()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1055()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1055()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1056()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1056()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1057()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1057()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1058()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1058()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1059()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1059()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1060()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1060()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1061()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1061()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1062()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1062()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1063()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1063()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1064()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1064()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1065()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1065()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1066()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1066()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1067()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1067()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1068()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1068()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1069()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1069()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1070()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1070()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1071()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1071()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1072()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1072()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1073()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1073()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1074()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1074()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1075()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1075()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1076()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1076()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1077()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1077()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1078()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1078()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1079()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1079()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1080()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1080()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1081()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1081()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1082()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1082()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1083()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1083()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1084()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1084()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1085()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1085()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1086()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1086()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1087()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1087()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1088()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1088()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1089()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1089()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1090()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1090()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1091()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1091()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1092()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1092()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1093()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1093()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1094()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1094()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1095()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1095()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1096()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1096()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1097()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1097()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1098()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1098()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1099()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1099()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1100()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1100()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1101()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1101()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1102()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1102()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1103()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1103()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1104()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1104()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1105()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1105()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1106()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1106()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1107()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1107()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1108()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1108()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1109()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1109()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1110()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1110()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1111()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1111()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1112()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1112()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1113()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1113()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1114()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1114()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1115()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1115()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1116()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1116()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1117()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1117()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1118()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1118()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1119()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1119()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1120()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1120()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1121()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1121()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1122()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1122()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1123()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1123()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1124()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1124()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1125()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1125()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1126()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1126()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1127()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1127()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1128()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1128()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1129()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1129()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1130()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1130()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1131()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1131()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1132()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1132()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1133()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1133()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1134()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1134()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1135()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1135()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1136()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1136()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1137()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1137()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1138()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1138()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1139()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1139()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1140()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1140()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1141()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1141()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1142()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1142()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1143()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1143()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1144()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1144()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1145()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1145()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1146()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1146()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1147()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1147()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1148()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1148()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1149()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1149()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1150()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1150()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1151()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1151()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1152()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1152()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1153()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1153()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1154()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1154()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1155()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1155()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1156()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1156()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1157()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1157()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1158()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1158()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1159()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1159()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1160()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1160()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1161()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1161()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1162()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1162()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1163()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1163()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1164()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1164()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1165()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1165()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1166()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1166()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1167()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1167()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1168()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1168()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1169()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1169()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1170()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1170()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1171()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1171()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1172()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1172()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1173()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1173()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1174()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1174()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1175()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1175()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1176()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1176()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1177()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1177()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1178()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1178()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1179()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1179()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1180()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1180()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1181()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1181()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1182()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1182()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1183()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1183()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1184()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1184()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1185()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1185()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1186()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1186()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1187()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1187()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1188()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1188()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1189()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1189()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1190()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1190()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1191()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1191()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1192()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1192()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1193()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1193()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1194()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1194()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1195()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1195()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1196()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1196()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1197()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1197()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1198()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1198()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1199()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1199()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1200()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1200()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1201()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1201()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1202()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1202()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1203()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1203()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1204()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1204()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1205()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1205()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1206()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1206()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1207()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1207()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1208()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1208()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1209()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1209()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1210()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1210()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1211()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1211()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1212()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1212()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1213()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1213()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1214()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1214()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1215()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1215()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1216()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1216()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1217()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1217()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1218()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1218()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1219()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1219()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1220()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1220()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1221()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1221()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1222()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1222()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1223()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1223()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1224()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1224()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1225()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1225()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1226()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1226()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1227()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1227()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1228()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1228()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1229()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1229()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1230()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1230()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1231()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1231()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1232()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1232()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1233()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1233()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1234()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1234()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1235()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1235()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1236()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1236()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1237()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1237()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1238()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1238()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1239()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1239()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1240()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1240()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1241()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1241()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1242()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1242()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1243()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1243()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1244()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1244()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1245()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1245()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1246()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1246()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1247()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1247()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1248()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1248()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1249()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1249()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1250()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1250()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1251()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1251()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1252()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1252()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1253()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1253()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1254()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1254()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1255()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1255()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1256()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1256()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1257()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1257()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1258()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1258()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1259()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1259()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1260()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1260()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1261()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1261()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1262()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1262()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1263()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1263()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1264()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1264()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1265()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1265()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1266()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1266()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1267()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1267()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1268()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1268()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1269()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1269()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1270()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1270()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1271()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1271()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1272()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1272()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1273()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1273()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1274()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1274()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1275()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1275()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1276()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1276()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1277()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1277()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1278()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1278()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1279()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1279()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1280()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1280()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1281()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1281()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1282()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1282()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1283()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1283()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1284()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1284()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1285()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1285()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1286()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1286()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1287()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1287()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1288()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1288()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1289()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1289()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1290()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1290()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1291()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1291()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1292()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1292()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1293()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1293()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1294()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1294()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1295()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1295()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1296()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1296()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1297()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1297()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1298()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1298()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1299()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1299()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1300()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1300()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1301()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1301()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1302()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1302()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1303()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1303()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1304()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1304()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1305()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1305()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1306()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1306()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1307()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1307()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1308()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1308()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1309()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1309()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1310()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1310()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1311()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1311()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1312()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1312()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1313()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1313()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1314()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1314()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1315()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1315()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1316()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1316()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1317()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1317()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1318()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1318()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1319()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1319()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1320()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1320()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1321()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1321()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1322()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1322()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1323()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1323()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1324()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1324()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1325()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1325()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1326()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1326()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1327()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1327()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1328()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1328()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1329()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1329()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1330()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1330()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1331()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1331()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1332()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1332()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1333()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1333()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1334()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1334()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1335()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1335()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1336()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1336()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1337()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1337()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1338()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1338()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1339()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1339()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1340()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1340()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1341()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1341()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1342()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1342()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1343()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1343()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1344()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1344()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1345()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1345()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1346()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1346()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1347()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1347()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1348()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1348()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1349()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1349()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1350()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1350()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1351()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1351()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1352()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1352()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1353()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1353()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1354()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1354()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1355()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1355()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1356()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1356()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1357()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1357()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1358()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1358()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1359()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1359()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1360()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1360()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1361()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1361()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1362()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1362()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1363()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1363()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1364()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1364()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1365()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1365()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1366()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1366()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1367()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1367()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1368()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1368()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1369()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1369()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1370()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1370()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1371()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1371()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1372()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1372()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1373()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1373()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1374()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1374()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1375()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1375()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1376()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1376()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1377()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1377()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1378()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1378()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1379()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1379()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1380()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1380()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1381()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1381()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1382()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1382()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1383()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1383()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1384()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1384()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1385()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1385()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1386()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1386()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1387()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1387()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1388()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1388()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1389()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1389()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1390()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1390()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1391()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1391()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1392()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1392()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1393()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1393()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1394()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1394()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1395()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1395()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1396()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1396()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1397()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1397()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1398()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1398()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1399()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1399()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1400()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1400()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1401()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1401()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1402()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1402()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1403()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1403()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1404()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1404()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1405()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1405()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1406()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1406()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1407()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1407()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1408()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1408()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1409()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1409()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1410()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1410()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1411()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1411()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1412()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1412()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1413()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1413()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1414()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1414()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1415()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1415()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1416()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1416()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1417()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1417()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1418()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1418()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1419()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1419()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1420()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1420()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1421()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1421()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1422()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1422()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1423()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1423()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1424()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1424()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1425()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1425()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1426()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1426()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1427()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1427()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1428()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1428()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1429()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1429()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1430()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1430()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1431()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1431()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1432()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1432()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1433()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1433()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1434()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1434()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1435()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1435()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1436()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1436()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1437()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1437()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1438()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1438()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1439()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1439()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1440()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1440()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1441()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1441()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1442()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1442()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1443()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1443()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1444()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1444()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1445()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1445()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1446()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1446()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1447()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1447()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1448()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1448()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1449()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1449()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1450()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1450()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1451()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1451()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1452()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1452()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1453()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1453()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1454()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1454()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1455()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1455()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1456()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1456()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1457()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1457()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1458()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1458()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1459()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1459()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1460()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1460()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1461()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1461()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1462()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1462()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1463()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1463()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1464()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1464()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1465()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1465()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1466()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1466()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1467()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1467()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1468()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1468()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1469()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1469()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1470()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1470()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1471()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1471()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1472()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1472()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1473()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1473()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1474()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1474()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1475()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1475()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1476()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1476()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1477()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1477()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1478()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1478()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1479()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1479()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1480()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1480()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1481()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1481()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1482()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1482()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // Offset:<964, 1018>
+ CompositionPathGeometry PathGeometry_1483()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1483()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1484()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1484()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1485()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1485()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1486()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1486()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1487()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1487()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1488()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1488()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1489()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1489()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1490()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1490()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1491()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1491()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1492()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1492()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1493()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1493()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1494()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1494()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1495()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1495()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1496()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1496()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1497()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1497()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1498()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1498()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1499()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1499()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1500()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1500()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1501()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1501()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1502()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1502()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1503()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1503()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1504()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1504()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1505()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1505()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1506()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1506()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1507()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1507()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1508()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1508()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1509()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1509()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1510()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1510()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1511()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1511()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1512()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1512()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1513()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1513()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1514()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1514()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1515()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1515()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1516()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1516()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1517()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1517()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1518()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1518()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1519()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1519()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1520()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1520()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1521()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1521()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1522()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1522()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1523()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1523()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1524()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1524()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1525()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1525()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1526()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1526()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1527()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1527()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1528()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1528()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1529()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1529()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1530()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1530()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1531()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1531()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1532()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1532()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1533()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1533()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1534()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1534()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1535()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1535()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1536()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1536()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1537()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1537()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1538()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1538()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1539()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1539()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1540()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1540()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1541()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1541()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1542()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1542()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1543()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1543()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1544()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1544()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1545()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1545()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1546()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1546()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1547()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1547()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1548()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1548()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1549()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1549()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1550()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1550()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1551()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1551()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1552()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1552()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1553()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1553()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1554()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1554()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1555()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1555()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1556()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1556()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1557()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1557()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1558()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1558()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1559()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1559()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1560()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1560()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1561()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1561()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1562()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1562()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1563()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1563()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1564()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1564()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1565()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1565()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1566()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1566()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1567()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1567()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1568()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1568()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1569()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1569()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1570()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1570()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1571()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1571()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1572()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1572()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1573()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1573()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1574()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1574()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1575()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1575()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1576()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1576()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1577()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1577()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1578()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1578()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1579()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1579()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1580()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1580()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1581()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1581()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1582()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1582()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1583()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1583()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1584()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1584()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1585()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1585()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1586()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1586()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1587()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1587()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1588()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1588()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1589()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1589()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1590()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1590()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1591()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1591()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1592()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1592()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1593()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1593()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1594()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1594()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1595()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1595()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1596()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1596()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1597()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1597()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1598()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1598()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1599()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1599()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1600()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1600()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1601()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1601()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1602()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1602()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1603()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1603()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1604()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1604()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1605()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1605()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1606()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1606()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1607()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1607()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1608()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1608()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1609()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1609()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1610()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1610()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1611()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1611()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1612()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1612()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1613()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1613()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1614()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1614()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1615()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1615()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1616()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1616()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1617()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1617()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1618()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1618()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1619()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1619()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1620()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1620()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1621()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1621()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1622()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1622()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1623()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1623()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1624()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1624()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1625()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1625()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1626()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1626()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1627()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1627()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1628()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1628()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1629()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1629()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1630()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1630()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1631()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1631()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1632()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1632()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1633()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1633()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1634()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1634()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1635()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1635()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1636()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1636()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1637()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1637()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1638()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1638()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1639()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1639()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1640()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1640()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1641()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1641()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1642()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1642()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1643()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1643()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1644()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1644()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1645()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1645()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1646()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1646()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1647()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1647()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1648()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1648()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1649()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1649()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1650()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1650()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1651()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1651()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1652()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1652()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1653()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1653()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1654()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1654()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1655()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1655()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1656()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1656()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1657()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1657()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1658()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1658()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1659()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1659()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1660()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1660()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1661()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1661()));
+ }
+
+ // - - Layer aggregator
+ // - Layer: I hope this message finds you and could help to bring awareness to
+ // international fellows regarding the current situation of this country. To learn
+ // more about what’s happening, click the “Learn More” button below. Outlines
+ // Offset:<964, 825>
+ CompositionPathGeometry PathGeometry_1662()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1662()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1663()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1663()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1664()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1664()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1665()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1665()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1666()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1666()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1667()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1667()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1668()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1668()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1669()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1669()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1670()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1670()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1671()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1671()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1672()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1672()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1673()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1673()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1674()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1674()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1675()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1675()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1676()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1676()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1677()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1677()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1678()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1678()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1679()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1679()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1680()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1680()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1681()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1681()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1682()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1682()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1683()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1683()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1684()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1684()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1685()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1685()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1686()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1686()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1687()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1687()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1688()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1688()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1689()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1689()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1690()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1690()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1691()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1691()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1692()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1692()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1693()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1693()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1694()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1694()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1695()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1695()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1696()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1696()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1697()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1697()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1698()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1698()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1699()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1699()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1700()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1700()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1701()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1701()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1702()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1702()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1703()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1703()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1704()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1704()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1705()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1705()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1706()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1706()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1707()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1707()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1708()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1708()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1709()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1709()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1710()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1710()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1711()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1711()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1712()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1712()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1713()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1713()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1714()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1714()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1715()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1715()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1716()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1716()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1717()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1717()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1718()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1718()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1719()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1719()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1720()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1720()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1721()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1721()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1722()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1722()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1723()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1723()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1724()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1724()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1725()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1725()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1726()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1726()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1727()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1727()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1728()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1728()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1729()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1729()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1730()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1730()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1731()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1731()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1732()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1732()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1733()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1733()));
+ }
+
+ // - Layer aggregator
+ // Offset:<1772, 42>
+ CompositionPathGeometry PathGeometry_1734()
+ {
+ return _c.CreatePathGeometry(new CompositionPath(Geometry_1734()));
+ }
+
+ // Rectangle Path 1.RectangleGeometry
+ CompositionRectangleGeometry Rectangle_1920x82()
+ {
+ if (_rectangle_1920x82 != null) { return _rectangle_1920x82; }
+ var result = _rectangle_1920x82 = _c.CreateRectangleGeometry();
+ result.Offset = new Vector2(0F, -41F);
+ result.Size = new Vector2(1920F, 82F);
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // Shape tree root for layer: Shape Layer 1
+ // Path 1
+ CompositionSpriteShape SpriteShape_0000()
+ {
+ // Offset:<701, 286>
+ var result = CreateSpriteShape(PathGeometry_0000(), new Matrix3x2(1F, 0F, 0F, 1F, 701F, 286F));;
+ result.StrokeBrush = ThemeColor_Color_FFFFFF_0();
+ result.StrokeMiterLimit = 2F;
+ result.StrokeThickness = 120F;
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // Masks
+ // Offset:<701, 286>
+ CompositionSpriteShape SpriteShape_0001()
+ {
+ // Offset:<701, 286>
+ var geometry = PathGeometry_0001();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 701F, 286F), ColorBrush_Black());;
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // Shape tree root for layer: Shape Layer 2
+ // Path 1
+ CompositionSpriteShape SpriteShape_0002()
+ {
+ // Offset:<523.5, 488.5>
+ var result = CreateSpriteShape(PathGeometry_0002(), new Matrix3x2(1F, 0F, 0F, 1F, 523.5F, 488.5F));;
+ result.StrokeBrush = ThemeColor_Color_FFFFFF_0();
+ result.StrokeMiterLimit = 2F;
+ result.StrokeThickness = 120F;
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // Masks
+ // Offset:<523.5, 488.5>
+ CompositionSpriteShape SpriteShape_0003()
+ {
+ // Offset:<523.5, 488.5>
+ var geometry = PathGeometry_0003();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 523.5F, 488.5F), ColorBrush_Black());;
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // Shape tree root for layer: Shape Layer 3
+ // Path 1
+ CompositionSpriteShape SpriteShape_0004()
+ {
+ // Offset:<416, 509>
+ var result = CreateSpriteShape(PathGeometry_0004(), new Matrix3x2(1F, 0F, 0F, 1F, 416F, 509F));;
+ result.StrokeBrush = ThemeColor_Color_FFFFFF_0();
+ result.StrokeMiterLimit = 2F;
+ result.StrokeThickness = 60F;
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // Shape tree root for layer: Shape Layer 3
+ // Path 1
+ CompositionSpriteShape SpriteShape_0005()
+ {
+ // Offset:<416, 509>
+ var geometry = PathGeometry_0005();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 416F, 509F), ThemeColor_Color_FF0000());;
+ result.StrokeBrush = ThemeColor_Color_FFFFFF_0();
+ result.StrokeMiterLimit = 2F;
+ result.StrokeThickness = 60F;
+ return result;
+ }
+
+ // - - - - - - - PreComp layer: Comp 1
+ // - - - - - - Opacity for layer: Comp 1
+ // - - - - - Opacity for layer: NewLogoDraft-1024poutline
+ // Masks
+ // Offset:<416, 509>
+ CompositionSpriteShape SpriteShape_0006()
+ {
+ // Offset:<416, 509>
+ var geometry = PathGeometry_0006();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 416F, 509F), ColorBrush_Black());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // e
+ CompositionSpriteShape SpriteShape_0007()
+ {
+ // Offset:<1464, 580>, Scale:<1.23, 1.23>
+ var geometry = PathGeometry_0007();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // s
+ CompositionSpriteShape SpriteShape_0008()
+ {
+ // Offset:<1464, 580>, Scale:<1.23, 1.23>
+ var geometry = PathGeometry_0008();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0009()
+ {
+ // Offset:<1464, 580>, Scale:<1.23, 1.23>
+ var geometry = PathGeometry_0009();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0010()
+ {
+ // Offset:<1464, 580>, Scale:<1.23, 1.23>
+ var geometry = PathGeometry_0010();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // l
+ CompositionSpriteShape SpriteShape_0011()
+ {
+ // Offset:<1464, 580>, Scale:<1.23, 1.23>
+ var geometry = PathGeometry_0011();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // l
+ CompositionSpriteShape SpriteShape_0012()
+ {
+ // Offset:<1464, 580>, Scale:<1.23, 1.23>
+ var geometry = PathGeometry_0012();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0013()
+ {
+ // Offset:<1464, 580>, Scale:<1.23, 1.23>
+ var geometry = PathGeometry_0013();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // c
+ CompositionSpriteShape SpriteShape_0014()
+ {
+ // Offset:<1464, 580>, Scale:<1.23, 1.23>
+ var geometry = PathGeometry_0014();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1.23000002F, 0F, 0F, 1.23000002F, 1464F, 580F), ThemeColor_Color_FFFFFF_0());;
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0015()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0015());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionSpriteShape SpriteShape_0016()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0016());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0017()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0017());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionSpriteShape SpriteShape_0018()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0018());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0019()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0019());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionSpriteShape SpriteShape_0020()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0020());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionSpriteShape SpriteShape_0021()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0021());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionSpriteShape SpriteShape_0022()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0022());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers Outlines
+ // ShapeGroup: s
+ CompositionSpriteShape SpriteShape_0023()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0023());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 2 Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0024()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0024());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 2 Outlines
+ // c
+ CompositionSpriteShape SpriteShape_0025()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0025());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 2 Outlines
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0026()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0026());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 2 Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0027()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0027());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 2 Outlines
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0028()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0028());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 2 Outlines
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0029()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0029());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0030()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0030());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0031()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0031());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0032()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0032());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0033()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0033());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0034()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0034());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0035()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0035());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0036()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0036());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0037()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0037());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0038()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0038());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 3 Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0039()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0029());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 4 Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0040()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0039());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 4 Outlines
+ // c
+ CompositionSpriteShape SpriteShape_0041()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0040());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0042()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0041());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0043()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0042());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 4 Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0044()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0043());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 4 Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0045()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0044());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 4 Outlines
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0046()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0045());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0047()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0046());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // c
+ CompositionSpriteShape SpriteShape_0048()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0047());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0049()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0048());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0050()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0049());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0051()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0050());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0052()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0051());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0053()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0052());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0054()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0053());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0055()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0054());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 5 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0056()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0029());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 6 Outlines
+ // ShapeGroup: m
+ CompositionSpriteShape SpriteShape_0057()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0055());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 6 Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0058()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0056());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 6 Outlines
+ // ShapeGroup: m
+ CompositionSpriteShape SpriteShape_0059()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0057());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 6 Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0060()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0058());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 6 Outlines
+ // ShapeGroup: m
+ CompositionSpriteShape SpriteShape_0061()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0059());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 6 Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0062()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0060());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0063()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0061());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ // c
+ CompositionSpriteShape SpriteShape_0064()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0062());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0065()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0063());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0066()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0064());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ // c
+ CompositionSpriteShape SpriteShape_0067()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0065());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0068()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0066());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0069()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0067());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0070()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0068());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 7 Outlines
+ // ShapeGroup: y
+ CompositionSpriteShape SpriteShape_0071()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0069());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionSpriteShape SpriteShape_0072()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0070());
+ result.FillBrush = ThemeColor_Color_E63B3B_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionSpriteShape SpriteShape_0073()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0071());
+ result.FillBrush = ThemeColor_Color_E63B3B_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0074()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0072());
+ result.FillBrush = ThemeColor_Color_E63B3B_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0075()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0073());
+ result.FillBrush = ThemeColor_Color_E63B3B_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionSpriteShape SpriteShape_0076()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0074());
+ result.FillBrush = ThemeColor_Color_E63B3B_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionSpriteShape SpriteShape_0077()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0075());
+ result.FillBrush = ThemeColor_Color_E63B3B_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionSpriteShape SpriteShape_0078()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0076());
+ result.FillBrush = ThemeColor_Color_E63B3B_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionSpriteShape SpriteShape_0079()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0077());
+ result.FillBrush = ThemeColor_Color_E63B3B_0();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 1
+ // Layer: text-ministers 8 Outlines
+ // ShapeGroup: a
+ CompositionSpriteShape SpriteShape_0080()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0078());
+ result.FillBrush = ThemeColor_Color_E63B3B_0();
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: second Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0081()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0079());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: second Outlines
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0082()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0080());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: second Outlines
+ // ShapeGroup: e
+ CompositionSpriteShape SpriteShape_0083()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0081());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: second Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0084()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0082());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: second Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0085()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0083());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: second Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0086()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0084());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: second Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0087()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0085());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: second Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0088()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0086());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - - - - PreComp layer: Comp 1
+ // - - - Opacity for layer: Comp 1
+ // - - Opacity for layer: Pre-comp 1
+ // - Layer: second Outlines
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0089()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0087());
+ result.FillBrush = ThemeColor_Color_FFFFFF_0();
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0090()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0088();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // c
+ CompositionSpriteShape SpriteShape_0091()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0089();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // e
+ CompositionSpriteShape SpriteShape_0092()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0090();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0093()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0091();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0094()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0092();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0095()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0093();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0096()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0094();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // e
+ CompositionSpriteShape SpriteShape_0097()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0095();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // s
+ CompositionSpriteShape SpriteShape_0098()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0096();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0099()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0097();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0100()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0098();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // l
+ CompositionSpriteShape SpriteShape_0101()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0099();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // l
+ CompositionSpriteShape SpriteShape_0102()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0100();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0103()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0101();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // C
+ CompositionSpriteShape SpriteShape_0104()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0102();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: t
+ CompositionSpriteShape SpriteShape_0105()
+ {
+ // Offset:<86, 101>
+ var geometry = PathGeometry_0103();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 86F, 101F), ThemeColor_Color_FFFFFF_1());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0106()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0104();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // e
+ CompositionSpriteShape SpriteShape_0107()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0105();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // v
+ CompositionSpriteShape SpriteShape_0108()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0106();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0109()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0107();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // e
+ CompositionSpriteShape SpriteShape_0110()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0108();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // s
+ CompositionSpriteShape SpriteShape_0111()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0109();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // e
+ CompositionSpriteShape SpriteShape_0112()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0110();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0113()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0111();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // s
+ CompositionSpriteShape SpriteShape_0114()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0112();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0115()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0113();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0116()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0114();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0117()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0115();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0118()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0116();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0119()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0117();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // l
+ CompositionSpriteShape SpriteShape_0120()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0118();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // l
+ CompositionSpriteShape SpriteShape_0121()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0119();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0122()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0120();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // -
+ CompositionSpriteShape SpriteShape_0123()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0121();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // e
+ CompositionSpriteShape SpriteShape_0124()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0122();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // s
+ CompositionSpriteShape SpriteShape_0125()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0123();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0126()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0124();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // e
+ CompositionSpriteShape SpriteShape_0127()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0125();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // c
+ CompositionSpriteShape SpriteShape_0128()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0126();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0129()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0127();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0130()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0128();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0131()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0129();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // I
+ CompositionSpriteShape SpriteShape_0132()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0130();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // M
+ CompositionSpriteShape SpriteShape_0133()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0131();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0134()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0132();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // e
+ CompositionSpriteShape SpriteShape_0135()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0133();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0136()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0134();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // ShapeGroup: d
+ CompositionSpriteShape SpriteShape_0137()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0135();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - PreComp layer: Comp 1
+ // Opacity for layer: Comp 1
+ // U
+ CompositionSpriteShape SpriteShape_0138()
+ {
+ // Offset:<115.5, 129.5>
+ var geometry = PathGeometry_0136();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 115.5F, 129.5F), ThemeColor_Color_FFFFFF_2());;
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0139()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0137());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0140()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0138());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0141()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0139());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0142()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0140());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0143()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0141());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0144()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0142());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0145()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0143());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0146()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0144());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0147()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0145());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0148()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0146());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0149()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0147());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0150()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0148());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0151()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0149());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0152()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0150());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0153()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0151());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0154()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0152());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0155()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0153());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0156()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0154());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0157()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0155());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0158()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0156());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0159()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0157());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0160()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0158());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0161()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0159());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0162()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0160());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0163()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0161());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0164()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0162());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0165()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0163());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0166()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0164());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0167()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0165());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0168()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0166());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0169()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0167());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0170()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0168());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0171()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0169());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0172()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0170());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0173()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0171());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0174()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0172());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0175()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0173());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0176()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0174());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0177()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0175());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0178()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0176());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0179()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0177());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0180()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0178());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0181()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0179());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0182()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0180());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0183()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0181());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0184()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0182());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0185()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0183());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0186()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0184());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0187()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0185());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0188()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0186());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0189()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0187());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0190()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0188());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0191()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0189());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0192()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0190());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0193()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0191());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0194()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0192());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0195()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0193());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0196()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0194());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0197()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0195());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0198()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0196());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0199()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0197());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0200()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0198());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0201()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0199());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0202()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0200());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0203()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0201());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0204()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0202());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0205()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0203());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0206()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0204());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0207()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0205());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0208()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0206());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0209()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0207());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0210()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0208());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0211()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0209());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0212()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0210());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0213()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0211());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0214()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0212());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0215()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0213());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0216()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0214());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0217()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0215());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0218()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0216());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0219()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0217());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0220()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0218());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0221()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0219());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0222()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0220());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0223()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0221());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0224()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0222());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0225()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0223());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0226()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0224());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0227()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0225());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0228()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0226());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0229()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0227());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0230()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0228());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0231()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0229());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0232()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0230());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0233()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0231());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0234()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0232());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0235()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0233());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0236()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0234());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0237()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0235());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0238()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0236());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0239()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0237());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0240()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0238());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0241()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0239());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0242()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0240());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0243()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0241());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0244()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0242());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0245()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0243());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0246()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0244());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0247()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0245());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0248()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0246());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0249()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0247());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0250()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0248());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0251()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0249());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0252()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0250());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0253()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0251());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0254()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0252());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0255()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0253());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0256()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0254());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0257()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0255());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0258()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0256());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0259()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0137());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0260()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0138());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0261()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0139());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0262()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0140());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0263()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0141());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0264()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0142());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0265()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0143());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0266()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0144());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0267()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0145());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0268()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0146());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0269()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0147());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0270()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0148());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0271()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0149());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0272()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0150());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0273()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0151());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0274()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0152());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0275()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0153());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0276()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0154());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0277()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0155());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0278()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0156());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0279()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0157());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0280()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0158());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0281()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0159());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0282()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0160());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0283()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0161());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0284()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0162());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0285()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0163());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0286()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0164());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0287()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0165());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0288()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0166());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0289()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0167());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0290()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0168());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0291()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0169());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0292()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0170());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0293()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0171());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0294()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0172());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0295()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0173());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0296()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0174());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0297()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0175());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0298()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0176());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0299()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0177());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0300()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0178());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0301()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0179());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0302()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0180());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0303()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0181());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0304()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0182());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0305()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0183());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0306()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0184());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0307()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0185());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0308()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0186());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0309()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0187());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0310()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0188());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0311()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0189());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0312()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0190());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0313()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0191());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0314()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0192());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0315()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0193());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0316()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0194());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0317()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0195());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0318()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0196());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0319()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0197());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0320()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0198());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0321()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0199());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0322()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0200());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0323()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0201());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0324()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0202());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0325()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0203());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0326()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0204());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0327()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0205());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0328()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0206());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0329()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0207());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0330()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0208());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0331()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0209());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0332()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0210());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0333()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0211());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0334()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0212());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0335()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0213());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0336()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0214());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0337()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0215());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0338()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0216());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0339()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0217());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0340()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0218());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0341()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0219());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0342()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0220());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0343()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0221());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0344()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0222());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0345()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0223());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0346()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0224());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0347()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0225());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0348()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0226());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0349()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0227());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0350()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0228());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0351()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0229());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0352()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0230());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0353()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0231());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0354()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0232());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0355()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0233());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0356()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0234());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0357()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0235());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0358()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0236());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0359()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0237());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0360()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0238());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0361()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0239());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0362()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0240());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0363()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0241());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0364()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0242());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0365()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0243());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0366()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0244());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0367()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0245());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0368()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0246());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0369()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0247());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0370()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0248());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0371()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0249());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0372()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0250());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0373()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0251());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0374()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0252());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0375()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0253());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0376()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0254());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0377()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0255());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0378()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0256());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0379()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0137());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0380()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0138());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0381()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0139());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0382()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0140());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0383()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0141());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0384()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0142());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0385()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0143());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0386()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0144());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0387()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0145());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0388()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0146());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0389()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0147());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0390()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0148());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0391()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0149());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0392()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0150());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0393()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0151());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0394()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0152());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0395()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0153());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0396()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0154());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0397()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0155());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0398()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0156());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0399()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0157());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0400()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0158());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0401()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0159());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0402()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0160());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0403()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0161());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0404()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0162());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0405()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0163());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0406()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0164());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0407()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0165());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0408()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0166());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0409()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0167());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0410()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0168());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0411()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0169());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0412()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0170());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0413()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0171());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0414()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0172());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0415()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0173());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0416()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0174());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0417()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0175());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0418()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0176());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0419()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0177());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0420()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0178());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0421()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0179());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0422()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0180());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0423()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0181());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0424()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0182());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0425()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0183());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0426()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0184());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0427()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0185());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0428()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0186());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0429()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0187());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0430()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0188());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0431()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0189());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0432()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0190());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0433()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0191());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0434()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0192());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0435()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0193());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0436()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0194());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0437()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0195());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0438()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0196());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0439()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0197());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0440()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0198());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0441()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0199());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0442()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0200());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0443()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0201());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0444()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0202());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0445()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0203());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0446()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0204());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0447()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0205());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0448()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0206());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0449()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0207());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0450()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0208());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0451()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0209());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0452()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0210());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0453()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0211());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0454()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0212());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0455()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0213());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0456()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0214());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0457()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0215());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0458()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0216());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0459()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0217());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0460()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0218());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0461()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0219());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0462()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0220());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0463()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0221());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0464()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0222());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0465()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0223());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0466()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0224());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0467()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0225());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0468()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0226());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0469()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0227());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0470()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0228());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0471()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0229());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0472()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0230());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0473()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0231());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0474()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0232());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0475()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0233());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0476()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0234());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0477()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0235());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0478()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0236());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0479()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0237());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0480()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0238());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0481()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0239());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0482()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0240());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0483()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0241());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0484()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0242());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0485()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0243());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0486()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0244());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0487()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0245());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0488()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0246());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0489()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0247());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0490()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0248());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0491()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0249());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0492()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0250());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0493()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0251());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0494()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0252());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0495()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0253());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0496()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0254());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0497()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0255());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0498()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0256());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0499()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0137());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0500()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0138());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0501()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0139());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0502()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0140());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0503()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0141());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0504()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0142());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0505()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0143());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0506()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0144());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0507()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0145());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0508()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0146());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0509()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0147());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0510()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0148());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0511()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0149());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0512()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0150());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0513()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0151());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0514()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0152());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0515()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0153());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0516()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0154());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0517()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0155());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0518()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0156());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0519()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0157());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0520()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0158());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0521()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0159());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0522()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0160());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0523()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0161());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0524()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0162());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0525()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0163());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0526()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0164());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0527()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0165());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0528()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0166());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0529()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0167());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0530()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0168());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0531()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0169());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0532()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0170());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0533()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0171());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0534()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0172());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0535()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0173());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0536()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0174());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0537()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0175());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0538()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0176());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0539()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0177());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0540()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0178());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0541()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0179());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0542()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0180());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0543()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0181());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0544()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0182());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0545()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0183());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0546()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0184());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0547()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0185());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0548()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0186());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0549()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0187());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0550()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0188());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0551()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0189());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0552()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0190());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0553()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0191());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0554()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0192());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0555()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0193());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0556()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0194());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0557()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0195());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0558()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0196());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0559()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0197());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0560()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0198());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0561()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0199());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0562()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0200());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0563()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0201());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0564()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0202());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0565()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0203());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0566()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0204());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0567()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0205());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0568()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0206());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0569()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0207());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0570()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0208());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0571()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0209());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0572()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0210());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0573()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0211());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0574()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0212());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0575()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0213());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0576()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0214());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0577()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0215());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0578()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0216());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0579()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0217());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0580()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0218());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0581()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0219());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0582()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0220());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0583()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0221());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0584()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0222());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0585()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0223());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0586()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0224());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0587()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0225());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0588()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0226());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0589()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0227());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0590()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0228());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0591()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0229());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0592()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0230());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0593()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0231());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0594()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0232());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0595()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0233());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0596()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0234());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0597()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0235());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0598()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0236());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0599()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0237());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0600()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0238());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0601()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0239());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0602()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0240());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0603()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0241());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0604()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0242());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0605()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0243());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0606()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0244());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0607()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0245());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0608()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0246());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0609()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0247());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0610()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0248());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0611()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0249());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0612()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0250());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0613()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0251());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0614()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0252());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0615()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0253());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0616()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0254());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0617()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0255());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0618()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0256());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0619()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0137());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0620()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0138());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0621()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0139());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0622()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0140());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0623()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0141());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0624()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0142());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0625()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0143());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0626()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0144());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0627()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0145());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0628()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0146());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0629()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0147());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0630()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0148());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0631()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0149());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0632()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0150());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0633()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0151());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0634()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0152());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0635()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0153());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0636()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0154());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0637()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0155());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0638()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0156());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0639()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0157());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0640()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0158());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0641()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0159());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0642()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0160());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0643()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0161());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0644()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0162());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0645()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0163());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0646()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0164());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0647()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0165());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0648()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0166());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0649()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0167());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0650()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0168());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0651()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0169());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0652()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0170());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0653()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0171());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0654()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0172());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0655()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0173());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0656()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0174());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0657()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0175());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0658()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0176());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0659()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0177());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0660()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0178());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0661()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0179());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0662()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0180());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0663()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0181());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0664()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0182());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0665()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0183());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0666()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0184());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0667()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0185());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0668()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0186());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0669()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0187());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0670()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0188());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0671()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0189());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0672()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0190());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0673()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0191());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0674()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0192());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0675()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0193());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0676()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0194());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0677()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0195());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0678()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0196());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0679()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0197());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0680()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0198());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0681()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0199());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0682()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0200());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0683()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0201());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0684()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0202());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0685()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0203());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0686()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0204());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0687()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0205());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0688()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0206());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0689()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0207());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0690()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0208());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0691()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0209());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0692()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0210());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0693()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0211());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0694()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0212());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0695()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0213());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0696()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0214());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0697()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0215());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0698()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0216());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0699()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0217());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0700()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0218());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0701()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0219());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0702()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0220());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // G
+ CompositionSpriteShape SpriteShape_0703()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0221());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0704()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0222());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0705()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0223());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0706()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0224());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0707()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0225());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0708()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0226());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0709()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0227());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0710()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0228());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0711()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0229());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0712()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0230());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0713()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0231());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0714()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0232());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0715()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0233());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0716()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0234());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0717()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0235());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0718()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0236());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0719()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0237());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0720()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0238());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0721()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0239());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0722()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0240());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0723()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0241());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0724()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0242());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // S
+ CompositionSpriteShape SpriteShape_0725()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0243());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0726()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0244());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0727()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0245());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0728()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0246());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0729()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0247());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0730()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0248());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // C
+ CompositionSpriteShape SpriteShape_0731()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0249());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0732()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0250());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0733()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0251());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0734()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0252());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0735()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0253());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0736()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0254());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0737()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0255());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // - - - PreComp layer: Comp 1
+ // - - Opacity for layer: Comp 1
+ // - Opacity for layer: Pre-comp 2
+ // Layer:
+ // #1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP#1312#ACAB#RESETINDONESIA#INDONESIAGELAP
+ // 2 Outlines
+ // ShapeGroup: P
+ CompositionSpriteShape SpriteShape_0738()
+ {
+ var result = _c.CreateSpriteShape(PathGeometry_0256());
+ result.FillBrush = ThemeColor_Color_FFFFFF_3();
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0739()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0257();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0740()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0258();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0741()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0259();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0742()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0260();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // -
+ CompositionSpriteShape SpriteShape_0743()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0261();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0744()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0262();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0745()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0263();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // e
+ CompositionSpriteShape SpriteShape_0746()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0264();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0747()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0265();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // s
+ CompositionSpriteShape SpriteShape_0748()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0266();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0749()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0267();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // s
+ CompositionSpriteShape SpriteShape_0750()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0268();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0751()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0269();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0752()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0270();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0753()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0271();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ,
+ CompositionSpriteShape SpriteShape_0754()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0272();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0755()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0273();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // Layer aggregator
+ // ShapeGroup: n
+ CompositionSpriteShape SpriteShape_0756()
+ {
+ // Offset:<128, 166>
+ var geometry = PathGeometry_0274();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 128F, 166F), ThemeColor_Color_FFFFFF_4());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // .
+ CompositionSpriteShape SpriteShape_0757()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0275();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0758()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0276();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0759()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0277();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0760()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0278();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0761()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0279();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0762()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0280();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0763()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0281();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0764()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0282();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0765()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0283();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0766()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0284();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0767()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0285();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0768()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0286();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0769()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0287();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0770()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0288();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0771()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0289();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0772()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0290();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0773()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0291();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0774()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0292();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0775()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0293();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0776()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0294();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0777()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0295();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0778()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0296();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0779()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0297();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0780()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0298();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0781()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0299();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0782()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0300();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0783()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0301();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0784()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0302();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0785()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0303();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_0786()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0304();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0787()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0305();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0788()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0306();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0789()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0307();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0790()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0308();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0791()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0309();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_0792()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0310();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0793()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0311();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0794()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0312();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0795()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0313();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0796()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0314();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0797()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0315();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0798()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0316();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0799()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0317();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0800()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0318();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0801()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0319();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0802()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0320();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0803()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0321();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0804()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0322();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0805()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0323();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0806()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0324();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0807()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0325();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0808()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0326();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0809()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0327();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0810()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0328();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0811()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0329();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0812()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0330();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0813()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0331();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0814()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0332();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0815()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0333();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0816()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0334();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0817()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0335();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0818()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0336();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0819()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0337();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0820()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0338();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0821()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0339();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0822()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0340();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0823()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0341();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0824()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0342();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0825()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0343();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0826()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0344();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0827()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0345();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0828()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0346();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0829()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0347();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0830()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0348();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0831()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0349();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0832()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0350();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0833()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0351();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0834()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0352();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_0835()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0353();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0836()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0354();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ,
+ CompositionSpriteShape SpriteShape_0837()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0355();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0838()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0356();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0839()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0357();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0840()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0358();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0841()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0359();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0842()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0360();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0843()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0361();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0844()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0362();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0845()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0363();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_0846()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0364();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0847()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0365();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0848()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0366();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0849()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0367();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0850()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0368();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0851()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0369();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0852()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0370();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0853()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0371();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0854()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0372();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0855()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0373();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0856()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0374();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0857()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0375();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0858()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0376();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0859()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0377();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0860()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0378();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0861()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0379();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0862()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0380();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0863()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0381();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0864()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0382();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0865()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0383();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0866()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0384();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0867()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0385();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0868()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0386();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0869()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0387();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0870()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0388();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0871()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0389();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0872()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0390();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0873()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0391();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0874()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0392();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0875()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0393();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0876()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0394();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0877()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0395();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0878()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0396();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0879()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0397();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0880()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0398();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0881()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0399();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0882()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0400();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0883()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0401();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0884()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0402();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_0885()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0403();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // I
+ CompositionSpriteShape SpriteShape_0886()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0404();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ,
+ CompositionSpriteShape SpriteShape_0887()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0405();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0888()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0406();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0889()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0407();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0890()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0408();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0891()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0409();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0892()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0410();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0893()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0411();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Firstly, I would like to apologize for this sudden announcement but, I would
+ // like to bring you some information regarding what is currently happening in
+ // Indonesia. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0894()
+ {
+ // Offset:<964, 609>
+ var geometry = PathGeometry_0412();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 609F), ThemeColor_Color_FFFFFF_5());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // .
+ CompositionSpriteShape SpriteShape_0895()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0413();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0896()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0414();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0897()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0415();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0898()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0416();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0899()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0417();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0900()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0418();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0901()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0419();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0902()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0420();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0903()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0421();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0904()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0422();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0905()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0423();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0906()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0424();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0907()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0425();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0908()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0426();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0909()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0427();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0910()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0428();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_0911()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0429();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0912()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0430();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0913()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0431();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0914()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0432();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0915()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0433();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0916()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0434();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0917()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0435();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0918()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0436();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0919()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0437();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0920()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0438();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_0921()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0439();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0922()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0440();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0923()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0441();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0924()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0442();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0925()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0443();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_0926()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0444();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0927()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0445();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // v
+ CompositionSpriteShape SpriteShape_0928()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0446();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0929()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0447();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0930()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0448();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0931()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0449();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0932()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0450();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0933()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0451();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0934()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0452();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0935()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0453();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0936()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0454();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0937()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0455();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0938()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0456();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0939()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0457();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0940()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0458();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0941()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0459();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0942()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0460();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0943()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0461();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0944()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0462();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0945()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0463();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0946()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0464();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0947()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0465();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0948()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0466();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0949()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0467();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ,
+ CompositionSpriteShape SpriteShape_0950()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0468();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0951()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0469();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0952()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0470();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0953()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0471();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0954()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0472();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0955()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0473();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0956()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0474();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0957()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0475();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0958()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0476();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_0959()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0477();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0960()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0478();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0961()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0479();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0962()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0480();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0963()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0481();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0964()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0482();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0965()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0483();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_0966()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0484();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0967()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0485();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0968()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0486();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0969()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0487();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0970()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0488();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0971()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0489();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0972()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0490();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0973()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0491();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0974()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0492();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // .
+ CompositionSpriteShape SpriteShape_0975()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0493();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0976()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0494();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0977()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0495();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0978()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0496();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0979()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0497();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0980()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0498();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0981()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0499();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0982()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0500();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_0983()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0501();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0984()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0502();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0985()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0503();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0986()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0504();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0987()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0505();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0988()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0506();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_0989()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0507();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0990()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0508();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0991()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0509();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0992()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0510();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0993()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0511();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0994()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0512();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0995()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0513();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0996()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0514();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0997()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0515();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0998()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0516();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_0999()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0517();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1000()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0518();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1001()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0519();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1002()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0520();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1003()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0521();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_1004()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0522();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1005()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0523();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1006()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0524();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1007()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0525();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1008()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0526();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1009()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0527();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1010()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0528();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1011()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0529();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1012()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0530();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1013()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0531();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1014()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0532();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1015()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0533();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1016()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0534();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1017()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0535();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1018()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0536();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1019()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0537();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1020()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0538();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1021()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0539();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1022()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0540();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1023()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0541();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1024()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0542();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1025()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0543();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1026()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0544();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1027()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0545();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1028()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0546();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1029()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0547();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // -
+ CompositionSpriteShape SpriteShape_1030()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0548();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1031()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0549();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1032()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0550();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1033()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0551();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1034()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0552();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1035()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0553();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1036()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0554();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1037()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0555();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1038()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0556();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1039()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0557();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1040()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0558();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1041()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0559();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1042()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0560();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1043()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0561();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1044()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0562();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ,
+ CompositionSpriteShape SpriteShape_1045()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0563();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1046()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0564();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1047()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0565();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1048()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0566();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1049()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0567();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // -
+ CompositionSpriteShape SpriteShape_1050()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0568();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1051()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0569();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1052()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0570();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1053()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0571();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1054()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0572();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1055()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0573();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1056()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0574();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1057()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0575();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1058()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0576();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1059()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0577();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1060()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0578();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1061()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0579();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1062()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0580();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1063()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0581();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1064()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0582();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1065()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0583();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1066()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0584();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1067()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0585();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1068()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0586();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1069()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0587();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1070()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0588();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1071()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0589();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1072()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0590();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1073()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0591();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1074()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0592();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1075()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0593();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1076()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0594();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // -
+ CompositionSpriteShape SpriteShape_1077()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0595();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1078()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0596();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1079()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0597();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1080()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0598();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1081()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0599();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1082()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0600();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1083()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0601();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1084()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0602();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1085()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0603();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1086()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0604();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1087()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0605();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1088()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0606();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1089()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0607();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1090()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0608();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1091()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0609();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1092()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0610();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1093()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0611();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1094()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0612();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1095()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0613();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1096()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0614();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1097()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0615();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1098()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0616();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1099()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0617();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1100()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0618();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1101()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0619();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1102()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0620();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // )
+ CompositionSpriteShape SpriteShape_1103()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0621();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1104()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0622();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1105()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0623();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1106()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0624();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1107()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0625();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // (
+ CompositionSpriteShape SpriteShape_1108()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0626();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1109()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0627();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1110()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0628();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_1111()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0629();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1112()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0630();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1113()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0631();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1114()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0632();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1115()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0633();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1116()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0634();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1117()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0635();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1118()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0636();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1119()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0637();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1120()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0638();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1121()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0639();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1122()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0640();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ,
+ CompositionSpriteShape SpriteShape_1123()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0641();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1124()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0642();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1125()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0643();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1126()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0644();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1127()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0645();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1128()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0646();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1129()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0647();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1130()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0648();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1131()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0649();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1132()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0650();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1133()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0651();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // -
+ CompositionSpriteShape SpriteShape_1134()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0652();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1135()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0653();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1136()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0654();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1137()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0655();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1138()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0656();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1139()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0657();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1140()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0658();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1141()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0659();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1142()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0660();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1143()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0661();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1144()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0662();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1145()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0663();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1146()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0664();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1147()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0665();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1148()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0666();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1149()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0667();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1150()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0668();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1151()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0669();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1152()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0670();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1153()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0671();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1154()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0672();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1155()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0673();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1156()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0674();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1157()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0675();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1158()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0676();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1159()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0677();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1160()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0678();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1161()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0679();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1162()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0680();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1163()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0681();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1164()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0682();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1165()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0683();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1166()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0684();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ,
+ CompositionSpriteShape SpriteShape_1167()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0685();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1168()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0686();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1169()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0687();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1170()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0688();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1171()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0689();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1172()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0690();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1173()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0691();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1174()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0692();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1175()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0693();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1176()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0694();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1177()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0695();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1178()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0696();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1179()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0697();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1180()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0698();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1181()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0699();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1182()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0700();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1183()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0701();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1184()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0702();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1185()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0703();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1186()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0704();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1187()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0705();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1188()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0706();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1189()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0707();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1190()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0708();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1191()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0709();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1192()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0710();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1193()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0711();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1194()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0712();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1195()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0713();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1196()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0714();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1197()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0715();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1198()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0716();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1199()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0717();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1200()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0718();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1201()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0719();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1202()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0720();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1203()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0721();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1204()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0722();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1205()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0723();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1206()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0724();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1207()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0725();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1208()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0726();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1209()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0727();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1210()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0728();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1211()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0729();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1212()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0730();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1213()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0731();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1214()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0732();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1215()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0733();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1216()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0734();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1217()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0735();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1218()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0736();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1219()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0737();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1220()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0738();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1221()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0739();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1222()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0740();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1223()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0741();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1224()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0742();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1225()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0743();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1226()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0744();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1227()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0745();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1228()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0746();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1229()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0747();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1230()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0748();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_1231()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0749();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1232()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0750();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1233()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0751();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1234()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0752();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1235()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0753();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1236()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0754();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1237()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0755();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1238()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0756();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1239()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0757();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1240()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0758();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1241()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0759();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1242()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0760();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1243()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0761();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1244()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0762();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1245()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0763();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // .
+ CompositionSpriteShape SpriteShape_1246()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0764();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1247()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0765();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1248()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0766();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1249()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0767();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1250()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0768();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1251()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0769();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1252()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0770();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1253()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0771();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1254()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0772();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1255()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0773();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1256()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0774();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1257()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0775();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1258()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0776();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1259()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0777();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1260()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0778();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1261()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0779();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1262()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0780();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1263()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0781();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1264()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0782();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1265()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0783();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1266()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0784();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1267()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0785();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1268()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0786();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1269()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0787();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1270()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0788();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1271()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0789();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1272()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0790();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1273()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0791();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1274()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0792();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1275()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0793();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1276()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0794();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1277()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0795();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1278()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0796();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ,
+ CompositionSpriteShape SpriteShape_1279()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0797();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1280()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0798();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1281()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0799();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1282()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0800();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1283()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0801();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1284()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0802();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1285()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0803();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1286()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0804();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1287()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0805();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1288()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0806();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1289()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0807();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1290()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0808();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1291()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0809();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1292()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0810();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1293()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0811();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1294()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0812();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ’
+ CompositionSpriteShape SpriteShape_1295()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0813();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1296()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0814();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1297()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0815();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1298()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0816();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1299()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0817();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1300()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0818();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1301()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0819();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1302()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0820();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1303()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0821();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1304()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0822();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1305()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0823();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1306()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0824();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1307()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0825();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1308()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0826();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1309()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0827();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1310()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0828();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1311()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0829();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1312()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0830();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1313()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0831();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1314()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0832();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1315()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0833();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1316()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0834();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1317()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0835();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1318()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0836();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1319()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0837();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1320()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0838();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1321()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0839();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1322()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0840();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1323()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0841();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1324()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0842();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1325()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0843();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1326()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0844();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_1327()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0845();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1328()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0846();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1329()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0847();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1330()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0848();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1331()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0849();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1332()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0850();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1333()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0851();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1334()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0852();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1335()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0853();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1336()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0854();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1337()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0855();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1338()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0856();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1339()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0857();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1340()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0858();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1341()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0859();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1342()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0860();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1343()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0861();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1344()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0862();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1345()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0863();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1346()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0864();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1347()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0865();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1348()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0866();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1349()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0867();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1350()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0868();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1351()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0869();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // I
+ CompositionSpriteShape SpriteShape_1352()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0870();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ,
+ CompositionSpriteShape SpriteShape_1353()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0871();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1354()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0872();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1355()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0873();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1356()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0874();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1357()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0875();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1358()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0876();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1359()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0877();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1360()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0878();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // w
+ CompositionSpriteShape SpriteShape_1361()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0879();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1362()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0880();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1363()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0881();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1364()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0882();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1365()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0883();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1366()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0884();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1367()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0885();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1368()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0886();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1369()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0887();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1370()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0888();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1371()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0889();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1372()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0890();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1373()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0891();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1374()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0892();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1375()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0893();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: For the last following days, Indonesia is currently under windespread unrest
+ // due to government’s unfair policies, oppression and violence by the police. This
+ // results in a widerange anger from the citizens and an absolute untrust to the
+ // government, amid the killing of a young online bike-taxi driver, Affan Kurniawan
+ // (21 yo) on August 27th 2025 by the anti-protest barricade vehicle ran-over, drove
+ // by the anti-protest police forces even he was not a part of the demonstration.
+ // Reportedly as of August 31st, there are number of other victims who passed away in
+ // the hospital. Outlines
+ // ShapeGroup: .
+ CompositionSpriteShape SpriteShape_1376()
+ {
+ // Offset:<964, 726>
+ var geometry = PathGeometry_0412();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 726F), ThemeColor_Color_FFFFFF_6());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // )
+ CompositionSpriteShape SpriteShape_1377()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0894();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1378()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0895();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1379()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0896();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1380()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0897();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1381()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0898();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1382()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0899();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1383()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0900();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1384()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0901();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1385()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0902();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1386()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0903();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // w
+ CompositionSpriteShape SpriteShape_1387()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0904();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1388()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0905();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1389()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0906();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // .
+ CompositionSpriteShape SpriteShape_1390()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0907();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1391()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0908();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1392()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0909();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1393()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0910();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1394()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0911();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1395()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0912();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1396()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0913();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1397()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0914();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // w
+ CompositionSpriteShape SpriteShape_1398()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0915();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1399()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0916();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1400()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0917();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1401()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0918();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1402()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0919();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1403()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0920();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1404()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0921();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1405()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0922();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1406()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0923();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1407()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0924();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1408()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0925();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // l
+ CompositionSpriteShape SpriteShape_1409()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0926();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1410()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0927();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1411()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0928();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1412()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0929();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1413()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0930();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1414()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0931();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // c
+ CompositionSpriteShape SpriteShape_1415()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0932();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1416()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0933();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1417()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0934();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1418()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0935();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1419()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0936();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1420()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0937();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1421()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0938();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1422()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0939();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1423()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0940();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1424()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0941();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1425()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0942();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1426()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0943();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1427()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0944();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1428()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0945();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1429()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0946();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1430()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0947();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1431()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0948();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1432()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0949();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // e
+ CompositionSpriteShape SpriteShape_1433()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0950();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // v
+ CompositionSpriteShape SpriteShape_1434()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0951();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1435()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0952();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1436()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0953();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1437()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0954();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // u
+ CompositionSpriteShape SpriteShape_1438()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0955();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1439()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0956();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // w
+ CompositionSpriteShape SpriteShape_1440()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0957();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1441()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0958();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1442()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0959();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1443()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0960();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1444()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0961();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // s
+ CompositionSpriteShape SpriteShape_1445()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0962();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1446()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0963();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1447()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0964();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1448()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0965();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // .
+ CompositionSpriteShape SpriteShape_1449()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0966();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1450()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0967();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1451()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0968();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1452()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0969();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1453()
+ {
+ // Offset:<964, 1018>
+ var geometry = PathGeometry_0970();
+ var result = CreateSpriteShape(geometry, new Matrix3x2(1F, 0F, 0F, 1F, 964F, 1018F), ThemeColor_Color_FFFFFF_7());;
+ return result;
+ }
+
+ // - Layer aggregator
+ // Layer: Meanwhile, the government and the police started to oppress the protesters
+ // with violence and began to open fire to the protesters without any reason. They
+ // began to force censorship across social media platform, starting from TikTok,
+ // Instagram and X (formerly Twitter) and TV broadcasters are completely silenced. It
+ // reportedly that some military forces have been deployed in case of a next wave of
+ // demonstration and might potentialy lead the country under its martial law by making
+ // fabricated scenarios and slanders to divide the nation, which will cause more chaos
+ // and confusion to citizens (yes, I’m not kidding. This is how our government tries
+ // to gain control over their own people. How shameless) Outlines
+ // ShapeGroup: )
+ CompositionSpriteShape SpriteShape_1454()
+ {
+ // Offset:<